Skip to main content

provisioned_cluster_instances_admin_kubeconfigs

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

Overview

Nameprovisioned_cluster_instances_admin_kubeconfigs
TypeResource
Idazure.hybrid_aks.provisioned_cluster_instances_admin_kubeconfigs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringOperation Id
namestringOperation Name
errorobject
propertiesobject
resourceIdstring (arm-id)ARM Resource Id of the provisioned cluster instance
statusstringProvisioning state of the resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectconnectedClusterResourceUriLists the admin credentials of the provisioned cluster (can only be used within private network)

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
connectedClusterResourceUristringThe fully qualified Azure Resource Manager identifier of the connected cluster resource.

SELECT examples

Lists the admin credentials of the provisioned cluster (can only be used within private network)

SELECT
id,
name,
error,
properties,
resourceId,
status
FROM azure.hybrid_aks.provisioned_cluster_instances_admin_kubeconfigs
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' -- required
;