Show / Hide Table of Contents

    Class EmailNotification

    Email notification of an autoscale event.

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

    Constructors

    EmailNotification()

    Initializes a new instance of the EmailNotification class.

    Declaration
    public EmailNotification ();

    EmailNotification(Nullable<Boolean>, Nullable<Boolean>, IList<String>)

    Initializes a new instance of the EmailNotification class.

    Declaration
    public EmailNotification (Nullable<bool> sendToSubscriptionAdministrator = null, Nullable<bool> sendToSubscriptionCoAdministrators = null, System.Collections.Generic.IList<string> customEmails = null);
    Parameters
    Nullable<Boolean> sendToSubscriptionAdministrator

    a value indicating whether to send email to subscription administrator.

    Nullable<Boolean> sendToSubscriptionCoAdministrators

    a value indicating whether to send email to subscription co-administrators.

    IList<String> customEmails

    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.

    Properties

    CustomEmails

    Gets or sets the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.

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

    SendToSubscriptionAdministrator

    Gets or sets a value indicating whether to send email to subscription administrator.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="sendToSubscriptionAdministrator")]
    public Nullable<bool> SendToSubscriptionAdministrator { get; set; }
    Property Value
    Nullable<Boolean>

    SendToSubscriptionCoAdministrators

    Gets or sets a value indicating whether to send email to subscription co-administrators.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="sendToSubscriptionCoAdministrators")]
    public Nullable<bool> SendToSubscriptionCoAdministrators { get; set; }
    Property Value
    Nullable<Boolean>

    Back to top Azure SDK for Net