UpdatePublicEndpointDetails¶
-
class
oci.visual_builder.models.
UpdatePublicEndpointDetails
(**kwargs)¶ Bases:
oci.visual_builder.models.update_network_endpoint_details.UpdateNetworkEndpointDetails
Public endpoint configuration details (update).
Attributes
NETWORK_ENDPOINT_TYPE_PRIVATE
str(object=’’) -> str NETWORK_ENDPOINT_TYPE_PUBLIC
str(object=’’) -> str allowlisted_http_ips
Gets the allowlisted_http_ips of this UpdatePublicEndpointDetails. allowlisted_http_vcns
Gets the allowlisted_http_vcns of this UpdatePublicEndpointDetails. network_endpoint_type
[Required] Gets the network_endpoint_type of this UpdateNetworkEndpointDetails. Methods
__init__
(**kwargs)Initializes a new UpdatePublicEndpointDetails 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. -
NETWORK_ENDPOINT_TYPE_PRIVATE
= 'PRIVATE'¶
-
NETWORK_ENDPOINT_TYPE_PUBLIC
= 'PUBLIC'¶
-
__init__
(**kwargs)¶ Initializes a new UpdatePublicEndpointDetails object with values from keyword arguments. The default value of the
network_endpoint_type
attribute of this class isPUBLIC
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - network_endpoint_type (str) – The value to assign to the network_endpoint_type property of this UpdatePublicEndpointDetails. Allowed values for this property are: “PUBLIC”, “PRIVATE”
- allowlisted_http_ips (list[str]) – The value to assign to the allowlisted_http_ips property of this UpdatePublicEndpointDetails.
- allowlisted_http_vcns (list[oci.visual_builder.models.VirtualCloudNetwork]) – The value to assign to the allowlisted_http_vcns property of this UpdatePublicEndpointDetails.
-
allowlisted_http_ips
¶ Gets the allowlisted_http_ips of this UpdatePublicEndpointDetails. Source IP addresses or IP address ranges ingress rules. (ex: “168.122.59.5/32”, “10.20.30.0/26”) An invalid IP or CIDR block will result in a 400 response.
Returns: The allowlisted_http_ips of this UpdatePublicEndpointDetails. Return type: list[str]
-
allowlisted_http_vcns
¶ Gets the allowlisted_http_vcns of this UpdatePublicEndpointDetails. Virtual Cloud Networks allowed to access this network endpoint.
Returns: The allowlisted_http_vcns of this UpdatePublicEndpointDetails. Return type: list[oci.visual_builder.models.VirtualCloudNetwork]
-
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.
-
network_endpoint_type
¶ [Required] Gets the network_endpoint_type of this UpdateNetworkEndpointDetails. The type of network endpoint.
Allowed values for this property are: “PUBLIC”, “PRIVATE”
Returns: The network_endpoint_type of this UpdateNetworkEndpointDetails. Return type: str
-