Skip to main content

private_endpoint_connections

Creates, updates, deletes, gets or lists a private_endpoint_connections resource.

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.machine_learning_services.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResourceId of the private endpoint connection.
namestringFriendly name of the private endpoint connection.
privateEndpointobjectThe resource of private end point.
privateLinkServiceConnectionStateobjectA collection of information about the state of the connection between service consumer and provider.
provisioningStatestringThe provisioning state of the private endpoint connection resource. Known values are: "Succeeded", "Creating", "Deleting", and "Failed".
typestringResource type of private endpoint connection.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, workspace_name, private_endpoint_connection_name, subscription_idGets the specified private endpoint connection associated with the workspace.
deletedeleteresource_group_name, workspace_name, private_endpoint_connection_name, subscription_idDeletes the specified private endpoint connection associated with the workspace.
putexecresource_group_name, workspace_name, private_endpoint_connection_name, subscription_idUpdate the state of specified private endpoint connection associated with the workspace.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
private_endpoint_connection_namestringThe name of the private endpoint connection associated with the workspace. Required.
resource_group_namestringName of the resource group in which workspace is located. Required.
subscription_idstring
workspace_namestringName of Azure Machine Learning workspace. Required.

SELECT examples

Gets the specified private endpoint connection associated with the workspace.

SELECT
id,
name,
privateEndpoint,
privateLinkServiceConnectionState,
provisioningState,
type
FROM azure.machine_learning_services.private_endpoint_connections
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND private_endpoint_connection_name = '{{ private_endpoint_connection_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

DELETE examples

Deletes the specified private endpoint connection associated with the workspace.

DELETE FROM azure.machine_learning_services.private_endpoint_connections
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND workspace_name = '{{ workspace_name }}' --required
AND private_endpoint_connection_name = '{{ private_endpoint_connection_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Update the state of specified private endpoint connection associated with the workspace.

EXEC azure.machine_learning_services.private_endpoint_connections.put 
@resource_group_name='{{ resource_group_name }}' --required,
@workspace_name='{{ workspace_name }}' --required,
@private_endpoint_connection_name='{{ private_endpoint_connection_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"properties": "{{ properties }}"
}'
;