Skip to main content

kubernetes_versions

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

Overview

Namekubernetes_versions
TypeResource
Idazure.hybrid_aks.kubernetes_versions

Fields

NameDatatypeDescription
extendedLocationobjectExtended location pointing to the underlying infrastructure
propertiesobject

Methods

NameAccessible byRequired ParamsDescription
getSELECTcustomLocationResourceUriLists the supported kubernetes versions for the specified custom location
listSELECTcustomLocationResourceUriLists the supported kubernetes versions for the specified custom location
deleteDELETEcustomLocationResourceUriDelete the default kubernetes versions resource type
putREPLACEcustomLocationResourceUriPuts 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 }}';