proxy_artifact_states
Creates, updates, deletes, gets or lists a proxy_artifact_states resource.
Overview
| Name | proxy_artifact_states |
| Type | Resource |
| Id | azure.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update | update | resourceGroupName, publisherName, artifactStoreName, artifactName, artifactVersionName, subscriptionId | Change 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.
| Name | Datatype | Description |
|---|---|---|
artifactName | string | The name of the artifact. |
artifactStoreName | string | The name of the artifact store. |
artifactVersionName | string | The name of the artifact version. |
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. |
UPDATE examples
- update
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;