Show / Hide Table of Contents

    Class AzNsActionGroup

    Azure action group

    Inheritance
    Object
    AzNsActionGroup
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Monitor.dll
    Syntax
    public class AzNsActionGroup

    Constructors

    AzNsActionGroup()

    Initializes a new instance of the AzNsActionGroup class.

    Declaration
    public AzNsActionGroup ();

    AzNsActionGroup(IList<String>, String, String)

    Initializes a new instance of the AzNsActionGroup class.

    Declaration
    public AzNsActionGroup (System.Collections.Generic.IList<string> actionGroup = null, string emailSubject = null, string customWebhookPayload = null);
    Parameters
    IList<String> actionGroup

    Azure Action Group reference.

    String emailSubject

    Custom subject override for all email ids in Azure action group

    String customWebhookPayload

    Custom payload to be sent for all webhook URI in Azure action group

    Properties

    ActionGroup

    Gets or sets azure Action Group reference.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="actionGroup")]
    public System.Collections.Generic.IList<string> ActionGroup { get; set; }
    Property Value
    IList<String>

    CustomWebhookPayload

    Gets or sets custom payload to be sent for all webhook URI in Azure action group

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="customWebhookPayload")]
    public string CustomWebhookPayload { get; set; }
    Property Value
    String

    EmailSubject

    Gets or sets custom subject override for all email ids in Azure action group

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="emailSubject")]
    public string EmailSubject { get; set; }
    Property Value
    String

    Back to top Azure SDK for Net