artifact_stores_private_end_points
Creates, updates, deletes, gets or lists an artifact_stores_private_end_points resource.
Overview
| Name | artifact_stores_private_end_points |
| Type | Resource |
| Id | azure.hybrid_network.artifact_stores_private_end_points |
Fields
The following fields are returned by SELECT queries:
- list
Request is successful.
| Name | Datatype | Description |
|---|---|---|
manualPrivateEndPointConnections | array | list of private endpoints. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resourceGroupName, publisherName, artifactStoreName, subscriptionId | List 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.
| Name | Datatype | Description |
|---|---|---|
artifactStoreName | string | The name of the artifact store. |
publisherName | string | The name of the publisher. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- list
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
;