kubernetes_versions
Creates, updates, deletes, gets or lists a kubernetes_versions
resource.
Overview
Name | kubernetes_versions |
Type | Resource |
Id | azure.hybrid_aks.kubernetes_versions |
Fields
Name | Datatype | Description |
---|---|---|
extendedLocation | object | Extended location pointing to the underlying infrastructure |
properties | object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | customLocationResourceUri | Lists the supported kubernetes versions for the specified custom location |
list | SELECT | customLocationResourceUri | Lists the supported kubernetes versions for the specified custom location |
delete | DELETE | customLocationResourceUri | Delete the default kubernetes versions resource type |
put | REPLACE | customLocationResourceUri | Puts the default kubernetes version resource type (one time operation, before listing the kubernetes versions) |
SELECT
examples
Lists the supported kubernetes versions for the specified custom location
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.kubernetes_versions
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}';
REPLACE
example
Replaces all fields in the specified kubernetes_versions
resource.
/*+ update */
REPLACE azure.hybrid_aks.kubernetes_versions
SET
extendedLocation = '{{ extendedLocation }}'
WHERE
customLocationResourceUri = '{{ customLocationResourceUri }}';
DELETE
example
Deletes the specified kubernetes_versions
resource.
/*+ delete */
DELETE FROM azure.hybrid_aks.kubernetes_versions
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}';