Class NotificationChannelDescriptor
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.
Implements
Inherited Members
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class NotificationChannelDescriptor : IDirectResponseSchema
Properties
Description
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.
Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
DisplayName
A human-readable name for the notification channel type. This form of the name is suitable for a user interface.
Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Labels
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.
Declaration
[JsonProperty("labels")]
public virtual IList<LabelDescriptor> Labels { get; set; }
Property Value
Type | Description |
---|---|
IList<LabelDescriptor> |
LaunchStage
The product launch stage for channels of this type.
Declaration
[JsonProperty("launchStage")]
public virtual string LaunchStage { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The full REST resource name for this descriptor. The format is: projects/[PROJECT_ID_OR_NUMBER]/notificationChannelDescriptors/[TYPE] In the above, [TYPE] is the value of the type field.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
SupportedTiers
The tiers that support this notification channel; the project service tier must be one of the supported_tiers.
Declaration
[JsonProperty("supportedTiers")]
public virtual IList<string> SupportedTiers { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
Type
The type of notification channel, such as "email" and "sms". To view the full list of channels, see Channel descriptors (https://cloud.google.com/monitoring/alerts/using-channels-api#ncd). Notification channel types are globally unique.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |