Class SecurityPostureType
Contains security posture information.
Inherited Members
Namespace: I3SubNot
Assembly: Ng911Lib.dll
Syntax
public class SecurityPostureType
Fields
| Edit this page View SourceGreen
The entity is operating normally. Calls can be sent to this destination normally.
Declaration
public const string Green = "Green"
Field Value
| Type | Description |
|---|---|
| string |
Orange
The entity is receiving fraudulent calls/events, is stressed, but is able to continue most operations. Calls could be sent to this destination but doing so may precipitate that destination into an overloaded state.
Declaration
public const string Orange = "Orange"
Field Value
| Type | Description |
|---|---|
| string |
Red
The entity is under active attack and is overwhelmed. Calls must be sent to another destination.
Declaration
public const string Red = "Red"
Field Value
| Type | Description |
|---|---|
| string |
SecurityPostureValues
Allowable values for the security posture of a service. See Section 10.18 of NENA-STA-010.3b.
Declaration
public static readonly string[] SecurityPostureValues
Field Value
| Type | Description |
|---|---|
| string[] |
Yellow
The entity is receiving suspicious activity but is able to operate normally.Calls could be sent to this destination.
Declaration
public const string Yellow = "Yellow"
Field Value
| Type | Description |
|---|---|
| string |
Properties
| Edit this page View Sourceposture
Identifies the current security posture. Required.
Must be one of the values in the securityPosture registry. See Section 10.18 of NENA-STA-010.3. Allowable values: Green, Yelow, Orange, Red.
Use the one of the constant values defined in this class. For example: SercurityPostureType.Green.Declaration
public string posture { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
reason
Text containing the reason posture changed, if available. Otherwise, empty.
Declaration
public string reason { get; set; }
Property Value
| Type | Description |
|---|---|
| string |