Skip to main content

appliances_keys

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

Overview

Nameappliances_keys
TypeResource
Idazure.resource_connector.appliances_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
artifactProfilesobjectMap of artifacts that contains a list of ArtifactProfile used to upload artifacts such as logs.
kubeconfigsarrayThe list of appliance kubeconfigs.
sshKeysobjectMap of Customer User Public, Private SSH Keys and Certificate when available.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, resourceNameartifactTypeReturns the cluster customer credentials for the dedicated appliance.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringAppliances name.
subscriptionIdstringThe ID of the target subscription.
artifactTypestringThis sets the type of artifact being returned, when empty no artifact endpoint is returned.

SELECT examples

Returns the cluster customer credentials for the dedicated appliance.

SELECT
artifactProfiles,
kubeconfigs,
sshKeys
FROM azure.resource_connector.appliances_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND artifactType = '{{ artifactType }}'
;