Skip to main content

hybrid_identity_metadata

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

Overview

Namehybrid_identity_metadata
TypeResource
Idazure.hybrid_aks.hybrid_identity_metadata

Fields

NameDatatypeDescription
connectedClusterResourceUritextfield from the properties object
provisioning_statetextfield from the properties object
public_keytextfield from the properties object
resource_uidtextfield from the properties object
system_datatextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconnectedClusterResourceUriGet the hybrid identity metadata proxy resource.
list_by_clusterSELECTconnectedClusterResourceUriLists the hybrid identity metadata proxy resource in a provisioned cluster instance.
deleteDELETEconnectedClusterResourceUriDeletes the hybrid identity metadata proxy resource.
putREPLACEconnectedClusterResourceUri, data__propertiesCreates the hybrid identity metadata proxy resource that facilitates the managed identity provisioning.

SELECT examples

Get the hybrid identity metadata proxy resource.

SELECT
connectedClusterResourceUri,
provisioning_state,
public_key,
resource_uid,
system_data
FROM azure.hybrid_aks.vw_hybrid_identity_metadata
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}';

REPLACE example

Replaces all fields in the specified hybrid_identity_metadata resource.

/*+ update */
REPLACE azure.hybrid_aks.hybrid_identity_metadata
SET
properties = '{{ properties }}',
systemData = '{{ systemData }}'
WHERE
connectedClusterResourceUri = '{{ connectedClusterResourceUri }}'
AND data__properties = '{{ data__properties }}';

DELETE example

Deletes the specified hybrid_identity_metadata resource.

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