EgressSecurityListConfiguration¶
-
class
oci.vn_monitoring.models.
EgressSecurityListConfiguration
(**kwargs)¶ Bases:
oci.vn_monitoring.models.allowed_security_configuration.AllowedSecurityConfiguration
Defines the subnet egress security list 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 security_list_id
[Required] Gets the security_list_id of this EgressSecurityListConfiguration. security_rule
[Required] Gets the security_rule of this EgressSecurityListConfiguration. type
[Required] Gets the type of this AllowedSecurityConfiguration. Methods
__init__
(**kwargs)Initializes a new EgressSecurityListConfiguration 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 EgressSecurityListConfiguration object with values from keyword arguments. The default value of the
type
attribute of this class isEGRESS_SECURITY_LIST
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 EgressSecurityListConfiguration. Allowed values for this property are: “NSG”, “STATEFUL_NSG”, “INGRESS_SECURITY_LIST”, “STATEFUL_INGRESS_SECURITY_LIST”, “EGRESS_SECURITY_LIST”, “STATEFUL_EGRESS_SECURITY_LIST”
- security_list_id (str) – The value to assign to the security_list_id property of this EgressSecurityListConfiguration.
- security_rule (oci.vn_monitoring.models.EgressSecurityRule) – The value to assign to the security_rule property of this EgressSecurityListConfiguration.
-
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.
-
security_list_id
¶ [Required] Gets the security_list_id of this EgressSecurityListConfiguration. The OCID of the security list that allowed the traffic.
Returns: The security_list_id of this EgressSecurityListConfiguration. Return type: str
-
security_rule
¶ [Required] Gets the security_rule of this EgressSecurityListConfiguration.
Returns: The security_rule of this EgressSecurityListConfiguration. Return type: oci.vn_monitoring.models.EgressSecurityRule
-
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
-