Show / Hide Table of Contents

    Class ActivityLogAlertPatchBody

    An activity log alert object for the body of patch operations.

    Inheritance
    Object
    ActivityLogAlertPatchBody
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Monitor.dll
    Syntax
    [Microsoft.Rest.Serialization.JsonTransformation]
    public class ActivityLogAlertPatchBody

    Constructors

    ActivityLogAlertPatchBody()

    Initializes a new instance of the ActivityLogAlertPatchBody class.

    Declaration
    public ActivityLogAlertPatchBody ();

    ActivityLogAlertPatchBody(IDictionary<String,String>, Nullable<Boolean>)

    Initializes a new instance of the ActivityLogAlertPatchBody class.

    Declaration
    public ActivityLogAlertPatchBody (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 activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated.

    Properties

    Enabled

    Gets or sets indicates whether this activity log alert is enabled. If an activity log alert 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>

    Back to top Azure SDK for Net