InboundNetworkingConfig¶
-
class
oci.generative_ai.models.InboundNetworkingConfig(**kwargs)¶ Bases:
objectInbound Networking configuration.
Attributes
ENDPOINT_MODE_PRIVATEA constant which can be used with the endpoint_mode property of a InboundNetworkingConfig. ENDPOINT_MODE_PUBLICA constant which can be used with the endpoint_mode property of a InboundNetworkingConfig. endpoint_mode[Required] Gets the endpoint_mode of this InboundNetworkingConfig. private_endpoint_idGets the private_endpoint_id of this InboundNetworkingConfig. Methods
__init__(**kwargs)Initializes a new InboundNetworkingConfig object with values from keyword arguments. -
ENDPOINT_MODE_PRIVATE= 'PRIVATE'¶ A constant which can be used with the endpoint_mode property of a InboundNetworkingConfig. This constant has a value of “PRIVATE”
-
ENDPOINT_MODE_PUBLIC= 'PUBLIC'¶ A constant which can be used with the endpoint_mode property of a InboundNetworkingConfig. This constant has a value of “PUBLIC”
-
__init__(**kwargs)¶ Initializes a new InboundNetworkingConfig object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - endpoint_mode (str) – The value to assign to the endpoint_mode property of this InboundNetworkingConfig. Allowed values for this property are: “PUBLIC”, “PRIVATE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- private_endpoint_id (str) – The value to assign to the private_endpoint_id property of this InboundNetworkingConfig.
-
endpoint_mode¶ [Required] Gets the endpoint_mode of this InboundNetworkingConfig. inbounding from public or private endpoint.
Allowed values for this property are: “PUBLIC”, “PRIVATE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The endpoint_mode of this InboundNetworkingConfig. Return type: str
-
private_endpoint_id¶ Gets the private_endpoint_id of this InboundNetworkingConfig. The [OCID] of Private Endpoint when endpointMode=Private
Returns: The private_endpoint_id of this InboundNetworkingConfig. Return type: str
-