Class ActionGroupPatchBody
An action group object for the body of patch operations.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
[Microsoft.Rest.Serialization.JsonTransformation]
public class ActionGroupPatchBody
Constructors
ActionGroupPatchBody()
Initializes a new instance of the ActionGroupPatchBody class.
Declaration
public ActionGroupPatchBody ();
ActionGroupPatchBody(IDictionary<String,String>, Nullable<Boolean>)
Initializes a new instance of the ActionGroupPatchBody class.
Declaration
public ActionGroupPatchBody (System.Collections.Generic.IDictionary<string,string> tags = null, Nullable<bool> enabled = null);
Parameters
|
IDictionary<String,String>
tags
Resource tags |
|
Nullable<Boolean>
enabled
Indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated. |
Properties
Enabled
Gets or sets indicates whether this action group is enabled. If an action group is not enabled, then none of its actions will be activated.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.enabled")]
public Nullable<bool> Enabled { get; set; }
Property Value
|
Nullable<Boolean>
|
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>
|