provisioned_cluster_instances
Creates, updates, deletes, gets or lists a provisioned_cluster_instances
resource.
Overview
Name | provisioned_cluster_instances |
Type | Resource |
Id | azure.hybrid_aks.provisioned_cluster_instances |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Gets the provisionedClusterInstances resource
Name | Datatype | Description |
---|---|---|
extendedLocation | object | Extended location pointing to the underlying infrastructure |
properties | object | Properties of the provisioned cluster. |
Lists the ProvisionedClusterInstance resource associated with the ConnectedCluster
Name | Datatype | Description |
---|---|---|
extendedLocation | object | Extended location pointing to the underlying infrastructure |
properties | object | Properties of the provisioned cluster. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | connectedClusterResourceUri | Gets the provisioned cluster instance | |
list | select | connectedClusterResourceUri | Lists the ProvisionedClusterInstance resource associated with the ConnectedCluster | |
create_or_update | insert | connectedClusterResourceUri | Creates or updates the provisioned cluster instance | |
delete | delete | connectedClusterResourceUri | Deletes the provisioned cluster instance |
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
- get
- list
Gets the provisioned cluster instance
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' -- required
;
Lists the ProvisionedClusterInstance resource associated with the ConnectedCluster
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Creates or updates the provisioned cluster instance
INSERT INTO azure.hybrid_aks.provisioned_cluster_instances (
data__properties,
data__extendedLocation,
connectedClusterResourceUri
)
SELECT
'{{ properties }}',
'{{ extendedLocation }}',
'{{ connectedClusterResourceUri }}'
RETURNING
extendedLocation,
properties
;
# Description fields are for documentation purposes
- name: provisioned_cluster_instances
props:
- name: connectedClusterResourceUri
value: string
description: Required parameter for the provisioned_cluster_instances resource.
- name: properties
value: object
description: |
Properties of the provisioned cluster.
- name: extendedLocation
value: object
description: |
Extended location pointing to the underlying infrastructure
DELETE
examples
- delete
Deletes the provisioned cluster instance
DELETE FROM azure.hybrid_aks.provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' --required
;