Show / Hide Table of Contents

Class TemplateDetails

details for scheduled task using template

Inheritance
object
TemplateDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class TemplateDetails

Properties

TemplateId

Declaration
[Required(ErrorMessage = "TemplateId is required.")]
[JsonProperty(PropertyName = "templateId")]
public string TemplateId { get; set; }
Property Value
Type Description
string

The Config template Id of a particular template.

Remarks

Required

TemplateParams

Declaration
[JsonProperty(PropertyName = "templateParams")]
public List<TemplateParams> TemplateParams { get; set; }
Property Value
Type Description
List<TemplateParams>

To store macro params.

In this article
Back to top