Struct google_monitoring3::NotificationChannelDescriptor[][src]

pub struct NotificationChannelDescriptor {
    pub supported_tiers: Option<Vec<String>>,
    pub display_name: Option<String>,
    pub description: Option<String>,
    pub labels: Option<Vec<LabelDescriptor>>,
    pub type_: Option<String>,
    pub name: Option<String>,
}

A description of a notification channel. The descriptor includes the properties of the channel and the set of labels or fields that must be specified to configure channels of a given type.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The tiers that support this notification channel; the project service tier must be one of the supported_tiers.

A human-readable name for the notification channel type. This form of the name is suitable for a user interface.

A human-readable description of the notification channel type. The description may include a description of the properties of the channel and pointers to external documentation.

The set of labels that must be defined to identify a particular channel of the corresponding type. Each label includes a description for how that field should be populated.

The type of notification channel, such as "email", "sms", etc. Notification channel types are globally unique.

The full REST resource name for this descriptor. The syntax is: projects/[PROJECT_ID]/notificationChannelDescriptors/[TYPE] In the above, [TYPE] is the value of the type field.

Trait Implementations

impl Default for NotificationChannelDescriptor
[src]

Returns the "default value" for a type. Read more

impl Clone for NotificationChannelDescriptor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NotificationChannelDescriptor
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for NotificationChannelDescriptor
[src]

Auto Trait Implementations