Class OrganizationAlertProfile
[DataContract]
public class OrganizationAlertProfile : IdentifiedItem
- Inheritance
-
OrganizationAlertProfile
- Inherited Members
Properties
AlertCondition
The conditions that determine if the alert triggers
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "alertCondition")]
public OrganizationAlertCondition AlertCondition { get; set; }
Property Value
Description
User supplied description of the alert
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "description")]
public string? Description { get; set; }
Property Value
Enabled
Enabled
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "enabled")]
public bool Enabled { get; set; }
Property Value
NetworkTags
Networks with these tags will be monitored for the alert
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "networkTags")]
public List<string> NetworkTags { get; set; }
Property Value
Recipients
List of recipients that will recieve the alert.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "recipients")]
public OrganizationAlertRecipients Recipients { get; set; }
Property Value
Type
The alert type
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "type")]
public string Type { get; set; }