artifact_manifests_credentials
Creates, updates, deletes, gets or lists an artifact_manifests_credentials
resource.
Overview
Name | artifact_manifests_credentials |
Type | Resource |
Id | azure.hybrid_network.artifact_manifests_credentials |
Fields
The following fields are returned by SELECT
queries:
- list
Request is successful. The operations returns the credential for publishing artifacts.
Name | Datatype | Description |
---|---|---|
credentialType | string | The credential type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , publisherName , artifactStoreName , artifactManifestName , subscriptionId | List credential for publishing artifacts defined in artifact manifest. |
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 |
---|---|---|
artifactManifestName | string | The name of the artifact manifest. |
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 credential for publishing artifacts defined in artifact manifest.
SELECT
credentialType
FROM azure.hybrid_network.artifact_manifests_credentials
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND publisherName = '{{ publisherName }}' -- required
AND artifactStoreName = '{{ artifactStoreName }}' -- required
AND artifactManifestName = '{{ artifactManifestName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;