PrivateEndpointsOperations Class
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:private_endpoints> attribute.
- Inheritance
-
builtins.objectPrivateEndpointsOperations
Constructor
PrivateEndpointsOperations(*args, **kwargs)
Methods
begin_create_or_update |
Creates or updates an private endpoint in the specified resource group. |
begin_delete |
Deletes the specified private endpoint. |
get |
Gets the specified private endpoint by resource group. |
list |
Gets all private endpoints in a resource group. |
list_by_subscription |
Gets all private endpoints in a subscription. |
begin_create_or_update
Creates or updates an private endpoint in the specified resource group.
begin_create_or_update(resource_group_name: str, private_endpoint_name: str, parameters: _models.PrivateEndpoint, *, content_type: str = 'application/json', **kwargs: Any) -> LROPoller[_models.PrivateEndpoint]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group. Required. |
private_endpoint_name
Required
|
The name of the private endpoint. Required. |
parameters
Required
|
Parameters supplied to the create or update private endpoint operation. Is either a PrivateEndpoint type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either PrivateEndpoint or the result of cls(response) |
Exceptions
Type | Description |
---|---|
begin_delete
Deletes the specified private endpoint.
begin_delete(resource_group_name: str, private_endpoint_name: str, **kwargs: Any) -> LROPoller[None]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group. Required. |
private_endpoint_name
Required
|
The name of the private endpoint. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get
Gets the specified private endpoint by resource group.
get(resource_group_name: str, private_endpoint_name: str, *, expand: str | None = None, **kwargs: Any) -> PrivateEndpoint
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group. Required. |
private_endpoint_name
Required
|
The name of the private endpoint. Required. |
Keyword-Only Parameters
Name | Description |
---|---|
expand
|
Expands referenced resources. Default value is None. |
Returns
Type | Description |
---|---|
PrivateEndpoint or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list
Gets all private endpoints in a resource group.
list(resource_group_name: str, **kwargs: Any) -> Iterable[PrivateEndpoint]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group. Required. |
Returns
Type | Description |
---|---|
An iterator like instance of either PrivateEndpoint or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_by_subscription
Gets all private endpoints in a subscription.
list_by_subscription(**kwargs: Any) -> Iterable[PrivateEndpoint]
Returns
Type | Description |
---|---|
An iterator like instance of either PrivateEndpoint or the result of cls(response) |
Exceptions
Type | Description |
---|---|
Attributes
models
models = <module 'azure.mgmt.network.models' from 'C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\azure\\mgmt\\network\\models\\__init__.py'>
Azure SDK for Python