SecureAccessControlRule¶
- 
class oci.data_flow.models.SecureAccessControlRule(**kwargs)¶
- Bases: - object- The access control rule for SECURE_ACCESS network type selection. - Attributes - IP_NOTATION_CIDR- A constant which can be used with the ip_notation property of a SecureAccessControlRule. - IP_NOTATION_IP_ADDRESS- A constant which can be used with the ip_notation property of a SecureAccessControlRule. - IP_NOTATION_VCN- A constant which can be used with the ip_notation property of a SecureAccessControlRule. - IP_NOTATION_VCN_OCID- A constant which can be used with the ip_notation property of a SecureAccessControlRule. - ip_notation- [Required] Gets the ip_notation of this SecureAccessControlRule. - value- [Required] Gets the value of this SecureAccessControlRule. - vcn_ips- Gets the vcn_ips of this SecureAccessControlRule. - Methods - __init__(**kwargs)- Initializes a new SecureAccessControlRule object with values from keyword arguments. - 
IP_NOTATION_CIDR= 'CIDR'¶
- A constant which can be used with the ip_notation property of a SecureAccessControlRule. This constant has a value of “CIDR” 
 - 
IP_NOTATION_IP_ADDRESS= 'IP_ADDRESS'¶
- A constant which can be used with the ip_notation property of a SecureAccessControlRule. This constant has a value of “IP_ADDRESS” 
 - 
IP_NOTATION_VCN= 'VCN'¶
- A constant which can be used with the ip_notation property of a SecureAccessControlRule. This constant has a value of “VCN” 
 - 
IP_NOTATION_VCN_OCID= 'VCN_OCID'¶
- A constant which can be used with the ip_notation property of a SecureAccessControlRule. This constant has a value of “VCN_OCID” 
 - 
__init__(**kwargs)¶
- Initializes a new SecureAccessControlRule object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - ip_notation (str) – The value to assign to the ip_notation property of this SecureAccessControlRule. Allowed values for this property are: “IP_ADDRESS”, “CIDR”, “VCN”, “VCN_OCID”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- value (str) – The value to assign to the value property of this SecureAccessControlRule.
- vcn_ips (str) – The value to assign to the vcn_ips property of this SecureAccessControlRule.
 
 - 
ip_notation¶
- [Required] Gets the ip_notation of this SecureAccessControlRule. The type of IP notation. - Allowed values for this property are: “IP_ADDRESS”, “CIDR”, “VCN”, “VCN_OCID”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The ip_notation of this SecureAccessControlRule. - Return type: - str 
 - 
value¶
- [Required] Gets the value of this SecureAccessControlRule. The associated value of the selected IP notation. - Returns: - The value of this SecureAccessControlRule. - Return type: - str 
 - 
vcn_ips¶
- Gets the vcn_ips of this SecureAccessControlRule. A comma-separated IP or CIDR address for VCN OCID IP notation selection. - Returns: - The vcn_ips of this SecureAccessControlRule. - Return type: - str 
 
-