Class LogSearchRuleResourcePatch
The log search rule resource for patch operations.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
[Microsoft.Rest.Serialization.JsonTransformation]
public class LogSearchRuleResourcePatch
Constructors
LogSearchRuleResourcePatch()
Initializes a new instance of the LogSearchRuleResourcePatch class.
Declaration
public LogSearchRuleResourcePatch ();
LogSearchRuleResourcePatch(IDictionary<String,String>, String)
Initializes a new instance of the LogSearchRuleResourcePatch class.
Declaration
public LogSearchRuleResourcePatch (System.Collections.Generic.IDictionary<string,string> tags = null, string enabled = null);
Parameters
|
IDictionary<String,String>
tags
Resource tags |
|
String
enabled
The flag which indicates whether the Log Search rule is enabled. Value should be true or false. Possible values include: 'true', 'false' |
Properties
Enabled
Gets or sets the flag which indicates whether the Log Search rule is enabled. Value should be true or false. Possible values include: 'true', 'false'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.enabled")]
public string Enabled { get; set; }
Property Value
|
String
|
Tags
Gets or sets resource tags
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tags")]
public System.Collections.Generic.IDictionary<string,string> Tags { get; set; }
Property Value
|
IDictionary<String,String>
|