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

NameDatatypeDescription
agent_pool_profilestextfield from the properties object
auto_scaler_profiletextfield from the properties object
cloud_provider_profiletextfield from the properties object
cluster_vm_access_profiletextfield from the properties object
connectedClusterResourceUritextfield from the properties object
control_planetextfield from the properties object
extended_locationtextfield from the properties object
kubernetes_versiontextfield from the properties object
license_profiletextfield from the properties object
linux_profiletextfield from the properties object
network_profiletextfield from the properties object
provisioning_statetextfield from the properties object
statustextfield from the properties object
storage_profiletextfield from the properties object

Methods

NameAccessible byRequired 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

SELECT examples

Gets the provisioned cluster instance

SELECT
agent_pool_profiles,
auto_scaler_profile,
cloud_provider_profile,
cluster_vm_access_profile,
connectedClusterResourceUri,
control_plane,
extended_location,
kubernetes_version,
license_profile,
linux_profile,
network_profile,
provisioning_state,
status,
storage_profile
FROM azure.hybrid_aks.vw_provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}';

INSERT example

Use the following StackQL query and manifest file to create a new provisioned_cluster_instances resource.

/*+ create */
INSERT INTO azure.hybrid_aks.provisioned_cluster_instances (
connectedClusterResourceUri,
properties,
extendedLocation
)
SELECT
'{{ connectedClusterResourceUri }}',
'{{ properties }}',
'{{ extendedLocation }}'
;

DELETE example

Deletes the specified provisioned_cluster_instances resource.

/*+ delete */
DELETE FROM azure.hybrid_aks.provisioned_cluster_instances
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}';