Skip to main content

provisioned_cluster_instances

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

Overview

Nameprovisioned_cluster_instances
TypeResource
Idazure.hybrid_aks.provisioned_cluster_instances

Fields

The following fields are returned by SELECT queries:

Gets the provisionedClusterInstances resource

NameDatatypeDescription
extendedLocationobjectExtended location pointing to the underlying infrastructure
propertiesobjectProperties of the provisioned cluster.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectconnectedClusterResourceUriGets the provisioned cluster instance
listselectconnectedClusterResourceUriLists the ProvisionedClusterInstance resource associated with the ConnectedCluster
create_or_updateinsertconnectedClusterResourceUriCreates or updates the provisioned cluster instance
deletedeleteconnectedClusterResourceUriDeletes 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.

NameDatatypeDescription
connectedClusterResourceUristringThe fully qualified Azure Resource Manager identifier of the connected cluster resource.

SELECT examples

Gets the provisioned cluster instance

SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' -- required
;

INSERT examples

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
;

DELETE examples

Deletes the provisioned cluster instance

DELETE FROM azure.hybrid_aks.provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}' --required
;