Show / Hide Table of Contents

Class TemplateParams

Template key value params which can store template details like macro name and its parameter.

Inheritance
object
TemplateParams
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 TemplateParams

Properties

KeyField

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

Contains macro parameter's names.

Remarks

Required

ValueField

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

Contains macro parameter's value.

Remarks

Required

In this article
Back to top