Skip to main content

artifact_stores_private_end_points

Creates, updates, deletes, gets or lists an artifact_stores_private_end_points resource.

Overview

Nameartifact_stores_private_end_points
TypeResource
Idazure.hybrid_network.artifact_stores_private_end_points

Fields

The following fields are returned by SELECT queries:

Request is successful.

NameDatatypeDescription
manualPrivateEndPointConnectionsarraylist of private endpoints.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, publisherName, artifactStoreName, subscriptionIdList manual private endpoints on artifact stores

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
artifactStoreNamestringThe name of the artifact store.
publisherNamestringThe name of the publisher.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

List manual private endpoints on artifact stores

SELECT
manualPrivateEndPointConnections
FROM azure.hybrid_network.artifact_stores_private_end_points
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND publisherName = '{{ publisherName }}' -- required
AND artifactStoreName = '{{ artifactStoreName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;