StatefulNsgConfiguration¶
-
class
oci.vn_monitoring.models.
StatefulNsgConfiguration
(**kwargs)¶ Bases:
oci.vn_monitoring.models.allowed_security_configuration.AllowedSecurityConfiguration
Defines the stateful network security group configuration that allowed the traffic.
Attributes
TYPE_EGRESS_SECURITY_LIST
str(object=’’) -> str TYPE_INGRESS_SECURITY_LIST
str(object=’’) -> str TYPE_NSG
str(object=’’) -> str TYPE_STATEFUL_EGRESS_SECURITY_LIST
str(object=’’) -> str TYPE_STATEFUL_INGRESS_SECURITY_LIST
str(object=’’) -> str TYPE_STATEFUL_NSG
str(object=’’) -> str nsg_id
[Required] Gets the nsg_id of this StatefulNsgConfiguration. security_rule
[Required] Gets the security_rule of this StatefulNsgConfiguration. type
[Required] Gets the type of this AllowedSecurityConfiguration. Methods
__init__
(**kwargs)Initializes a new StatefulNsgConfiguration object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
TYPE_EGRESS_SECURITY_LIST
= 'EGRESS_SECURITY_LIST'¶
-
TYPE_INGRESS_SECURITY_LIST
= 'INGRESS_SECURITY_LIST'¶
-
TYPE_NSG
= 'NSG'¶
-
TYPE_STATEFUL_EGRESS_SECURITY_LIST
= 'STATEFUL_EGRESS_SECURITY_LIST'¶
-
TYPE_STATEFUL_INGRESS_SECURITY_LIST
= 'STATEFUL_INGRESS_SECURITY_LIST'¶
-
TYPE_STATEFUL_NSG
= 'STATEFUL_NSG'¶
-
__init__
(**kwargs)¶ Initializes a new StatefulNsgConfiguration object with values from keyword arguments. The default value of the
type
attribute of this class isSTATEFUL_NSG
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - type (str) – The value to assign to the type property of this StatefulNsgConfiguration. Allowed values for this property are: “NSG”, “STATEFUL_NSG”, “INGRESS_SECURITY_LIST”, “STATEFUL_INGRESS_SECURITY_LIST”, “EGRESS_SECURITY_LIST”, “STATEFUL_EGRESS_SECURITY_LIST”
- nsg_id (str) – The value to assign to the nsg_id property of this StatefulNsgConfiguration.
- security_rule (oci.vn_monitoring.models.SecurityRule) – The value to assign to the security_rule property of this StatefulNsgConfiguration.
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
nsg_id
¶ [Required] Gets the nsg_id of this StatefulNsgConfiguration. The OCID of the network security group that allowed the traffic.
Returns: The nsg_id of this StatefulNsgConfiguration. Return type: str
-
security_rule
¶ [Required] Gets the security_rule of this StatefulNsgConfiguration.
Returns: The security_rule of this StatefulNsgConfiguration. Return type: oci.vn_monitoring.models.SecurityRule
-
type
¶ [Required] Gets the type of this AllowedSecurityConfiguration. The type of the allowed security configuration.
Allowed values for this property are: “NSG”, “STATEFUL_NSG”, “INGRESS_SECURITY_LIST”, “STATEFUL_INGRESS_SECURITY_LIST”, “EGRESS_SECURITY_LIST”, “STATEFUL_EGRESS_SECURITY_LIST”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this AllowedSecurityConfiguration. Return type: str
-