PrivateEndpointDetails

class oci.streaming.models.PrivateEndpointDetails(**kwargs)

Bases: object

Optional parameters if a private stream pool is requested.

Methods

__init__(**kwargs) Initializes a new PrivateEndpointDetails object with values from keyword arguments.

Attributes

nsg_ids Gets the nsg_ids of this PrivateEndpointDetails.
private_endpoint_ip Gets the private_endpoint_ip of this PrivateEndpointDetails.
subnet_id Gets the subnet_id of this PrivateEndpointDetails.
__init__(**kwargs)

Initializes a new PrivateEndpointDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • subnet_id (str) – The value to assign to the subnet_id property of this PrivateEndpointDetails.
  • private_endpoint_ip (str) – The value to assign to the private_endpoint_ip property of this PrivateEndpointDetails.
  • nsg_ids (list[str]) – The value to assign to the nsg_ids property of this PrivateEndpointDetails.
nsg_ids

Gets the nsg_ids of this PrivateEndpointDetails. The optional list of network security groups to be used with the private endpoint of the stream pool. That value cannot be changed.

Returns:The nsg_ids of this PrivateEndpointDetails.
Return type:list[str]
private_endpoint_ip

Gets the private_endpoint_ip of this PrivateEndpointDetails. The optional private IP you want to be associated with your private stream pool. That parameter can only be specified when the subnetId parameter is set. It cannot be changed. The private IP needs to be part of the CIDR range of the specified subnetId or the creation will fail. If not specified a random IP inside the subnet will be chosen. After the stream pool is created, a custom FQDN, pointing to this private IP, is created. The FQDN is then used to access the service instead of the private IP.

Returns:The private_endpoint_ip of this PrivateEndpointDetails.
Return type:str
subnet_id

Gets the subnet_id of this PrivateEndpointDetails. If specified, the stream pool will be private and only accessible from inside that subnet. Producing-to and consuming-from a stream inside a private stream pool can also only be done from inside the subnet. That value cannot be changed.

Returns:The subnet_id of this PrivateEndpointDetails.
Return type:str