ContainerAppPrivateEndpointConnectionsOperations Class
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:container_app_private_endpoint_connections> attribute.
Constructor
ContainerAppPrivateEndpointConnectionsOperations(*args, **kwargs)
Methods
| begin_create_or_update |
Update the state of a private endpoint connection for a given Container App. Creates a private endpoint connection or updates its connection state for a Container App. |
| begin_delete |
Delete a private endpoint connection for a given Container App. Deletes the specified private endpoint connection associated with a Container App. |
| get |
Get a private endpoint connection for a given Container App. Gets the details of a private endpoint connection associated with a Container App. |
| list |
List private endpoint connections for a given Container App. Lists all private endpoint connections associated with a Container App. |
begin_create_or_update
Update the state of a private endpoint connection for a given Container App.
Creates a private endpoint connection or updates its connection state for a Container App.
async begin_create_or_update(resource_group_name: str, container_app_name: str, private_endpoint_connection_name: str, private_endpoint_connection_envelope: _models.PrivateEndpointConnection, *, content_type: str = 'application/json', **kwargs: Any) -> AsyncLROPoller[_models.PrivateEndpointConnection]
Parameters
| Name | Description |
|---|---|
|
resource_group_name
Required
|
The name of the resource group. The name is case insensitive. Required. |
|
container_app_name
Required
|
Name of the Container App. Required. |
|
private_endpoint_connection_name
Required
|
Name of the Private Endpoint Connection. Required. |
|
private_endpoint_connection_envelope
Required
|
The resource of private endpoint and its properties. Is either a PrivateEndpointConnection type or a IO[bytes] type. Required. |
Returns
| Type | Description |
|---|---|
|
An instance of AsyncLROPoller that returns PrivateEndpointConnection. The PrivateEndpointConnection is compatible with MutableMapping |
Exceptions
| Type | Description |
|---|---|
begin_delete
Delete a private endpoint connection for a given Container App.
Deletes the specified private endpoint connection associated with a Container App.
async begin_delete(resource_group_name: str, container_app_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> AsyncLROPoller[None]
Parameters
| Name | Description |
|---|---|
|
resource_group_name
Required
|
The name of the resource group. The name is case insensitive. Required. |
|
container_app_name
Required
|
Name of the Container App. Required. |
|
private_endpoint_connection_name
Required
|
Name of the Private Endpoint Connection. Required. |
Returns
| Type | Description |
|---|---|
|
An instance of AsyncLROPoller that returns None |
Exceptions
| Type | Description |
|---|---|
get
Get a private endpoint connection for a given Container App.
Gets the details of a private endpoint connection associated with a Container App.
async get(resource_group_name: str, container_app_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> PrivateEndpointConnection
Parameters
| Name | Description |
|---|---|
|
resource_group_name
Required
|
The name of the resource group. The name is case insensitive. Required. |
|
container_app_name
Required
|
Name of the Container App. Required. |
|
private_endpoint_connection_name
Required
|
Name of the Private Endpoint Connection. Required. |
Returns
| Type | Description |
|---|---|
|
PrivateEndpointConnection. The PrivateEndpointConnection is compatible with MutableMapping |
Exceptions
| Type | Description |
|---|---|
list
List private endpoint connections for a given Container App.
Lists all private endpoint connections associated with a Container App.
list(resource_group_name: str, container_app_name: str, **kwargs: Any) -> AsyncItemPaged[PrivateEndpointConnection]
Parameters
| Name | Description |
|---|---|
|
resource_group_name
Required
|
The name of the resource group. The name is case insensitive. Required. |
|
container_app_name
Required
|
Name of the Container App. Required. |
Returns
| Type | Description |
|---|---|
|
An iterator like instance of PrivateEndpointConnection |
Exceptions
| Type | Description |
|---|---|