provisioned_cluster_instances_user_kubeconfigs
Creates, updates, deletes, gets or lists a provisioned_cluster_instances_user_kubeconfigs
resource.
Overview
Name | provisioned_cluster_instances_user_kubeconfigs |
Type | Resource |
Id | azure.hybrid_aks.provisioned_cluster_instances_user_kubeconfigs |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Operation Id |
name | string | Operation Name |
error | object | |
properties | object | |
resourceId | string (arm-id) | ARM Resource Id of the provisioned cluster instance |
status | string | Provisioning state of the resource |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | connectedClusterResourceUri | Lists the user 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.
Name | Datatype | Description |
---|---|---|
connectedClusterResourceUri | string | The fully qualified Azure Resource Manager identifier of the connected cluster resource. |
SELECT
examples
- list
Lists the user 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_user_kubeconfigs
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' -- required
;