hybrid_identity_metadata
Creates, updates, deletes, gets or lists a hybrid_identity_metadata
resource.
Overview
Name | hybrid_identity_metadata |
Type | Resource |
Id | azure.hybrid_aks.hybrid_identity_metadata |
Fields
- vw_hybrid_identity_metadata
- hybrid_identity_metadata
Name | Datatype | Description |
---|---|---|
connectedClusterResourceUri | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_key | text | field from the properties object |
resource_uid | text | field from the properties object |
system_data | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Defines the resource properties for the hybrid identity metadata. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | connectedClusterResourceUri | Get the hybrid identity metadata proxy resource. |
list_by_cluster | SELECT | connectedClusterResourceUri | Lists the hybrid identity metadata proxy resource in a provisioned cluster instance. |
delete | DELETE | connectedClusterResourceUri | Deletes the hybrid identity metadata proxy resource. |
put | REPLACE | connectedClusterResourceUri, data__properties | Creates the hybrid identity metadata proxy resource that facilitates the managed identity provisioning. |
SELECT
examples
Get the hybrid identity metadata proxy resource.
- vw_hybrid_identity_metadata
- hybrid_identity_metadata
SELECT
connectedClusterResourceUri,
provisioning_state,
public_key,
resource_uid,
system_data
FROM azure.hybrid_aks.vw_hybrid_identity_metadata
WHERE connectedClusterResourceUri = '{{ connectedClusterResourceUri }}';
SELECT
properties,
systemData
FROM azure.hybrid_aks.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 }}';