Skip to main content

proxy_artifact_states

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

Overview

Nameproxy_artifact_states
TypeResource
Idazure.hybrid_network.proxy_artifact_states

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
updateupdateresourceGroupName, publisherName, artifactStoreName, artifactName, artifactVersionName, subscriptionIdChange artifact state defined in artifact store.

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

UPDATE examples

Change artifact state defined in artifact store.

UPDATE azure.hybrid_network.proxy_artifact_states
SET
data__properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND publisherName = '{{ publisherName }}' --required
AND artifactStoreName = '{{ artifactStoreName }}' --required
AND artifactName = '{{ artifactName }}' --required
AND artifactVersionName = '{{ artifactVersionName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
RETURNING
properties;