Skip to main content

proxy_artifacts

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

Overview

Nameproxy_artifacts
TypeResource
Idazure.hybrid_network.proxy_artifacts

Fields

The following fields are returned by SELECT queries:

Request is successful. The operation returns a list of available artifacts.

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, publisherName, artifactStoreName, subscriptionIdLists all the available artifacts in the parent Artifact Store.
getselectresourceGroupName, publisherName, artifactStoreName, artifactName, subscriptionIdGet 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.

NameDatatypeDescription
artifactNamestringThe name of the artifact.
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

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
;