proxy_artifacts
Creates, updates, deletes, gets or lists a proxy_artifacts
resource.
Overview
Name | proxy_artifacts |
Type | Resource |
Id | azure.hybrid_network.proxy_artifacts |
Fields
The following fields are returned by SELECT
queries:
- list
- get
Request is successful. The operation returns a list of available artifacts.
Name | Datatype | Description |
---|
Request is successful. The operation returns a proxy artifact overview.
Name | Datatype | Description |
---|---|---|
properties | object | Proxy Artifact overview properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , publisherName , artifactStoreName , subscriptionId | Lists all the available artifacts in the parent Artifact Store. | |
get | select | resourceGroupName , publisherName , artifactStoreName , artifactName , subscriptionId | Get a Artifact overview information. |
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 |
---|---|---|
artifactName | string | The name of the artifact. |
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
- get
Lists all the available artifacts in the parent Artifact Store.
SELECT
*
FROM azure.hybrid_network.proxy_artifacts
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND publisherName = '{{ publisherName }}' -- required
AND artifactStoreName = '{{ artifactStoreName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Get a Artifact overview information.
SELECT
properties
FROM azure.hybrid_network.proxy_artifacts
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND publisherName = '{{ publisherName }}' -- required
AND artifactStoreName = '{{ artifactStoreName }}' -- required
AND artifactName = '{{ artifactName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;