Skip to main content

artifact_manifests_credentials

Creates, updates, deletes, gets or lists an artifact_manifests_credentials resource.

Overview

Nameartifact_manifests_credentials
TypeResource
Idazure.hybrid_network.artifact_manifests_credentials

Fields

The following fields are returned by SELECT queries:

Request is successful. The operations returns the credential for publishing artifacts.

NameDatatypeDescription
credentialTypestringThe credential type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, publisherName, artifactStoreName, artifactManifestName, subscriptionIdList 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.

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

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
;