Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.ml_services.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
identityobjectManaged service identity (system assigned and/or user assigned identities)
locationstringSame as workspace location.
propertiesobjectPrivate endpoint connection properties.
skuobjectThe resource model definition representing SKU
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobject
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, privateEndpointConnectionName
listselectsubscriptionId, resourceGroupName, workspaceName
create_or_updateinsertsubscriptionId, resourceGroupName, workspaceName, privateEndpointConnectionName
deletedeletesubscriptionId, resourceGroupName, workspaceName, privateEndpointConnectionName

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
privateEndpointConnectionNamestringNRP Private Endpoint Connection Name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringAzure Machine Learning Workspace Name

SELECT examples

The request was successful; the request was well-formed and received properly.

SELECT
id,
name,
identity,
location,
properties,
sku,
systemData,
tags,
type
FROM azure.ml_services.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure.ml_services.private_endpoint_connections (
data__identity,
data__location,
data__properties,
data__sku,
data__tags,
subscriptionId,
resourceGroupName,
workspaceName,
privateEndpointConnectionName
)
SELECT
'{{ identity }}',
'{{ location }}',
'{{ properties }}',
'{{ sku }}',
'{{ tags }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ workspaceName }}',
'{{ privateEndpointConnectionName }}'
RETURNING
id,
name,
identity,
location,
properties,
sku,
systemData,
tags,
type
;

DELETE examples

No description available.

DELETE FROM azure.ml_services.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;