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
The following fields are returned by SELECT queries:
- get
- list
Lists the supported kubernetes versions for the specified custom location
| Name | Datatype | Description |
|---|---|---|
extendedLocation | object | Extended location pointing to the underlying infrastructure |
properties | object |
Lists the supported kubernetes versions for the specified custom location
| Name | Datatype | Description |
|---|---|---|
extendedLocation | object | Extended location pointing to the underlying infrastructure |
properties | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional 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 | |
put | replace | customLocationResourceUri | Puts the default kubernetes version resource type (one time operation, before listing the kubernetes versions) | |
delete | delete | customLocationResourceUri | Delete the default kubernetes versions resource type |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
customLocationResourceUri | string | The fully qualified Azure Resource Manager identifier of the custom location resource. |
SELECT examples
- get
- list
Lists the supported kubernetes versions for the specified custom location
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.kubernetes_versions
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}' -- required
;
Lists the supported kubernetes versions for the specified custom location
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.kubernetes_versions
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}' -- required
;
REPLACE examples
- put
Puts the default kubernetes version resource type (one time operation, before listing the kubernetes versions)
REPLACE azure.hybrid_aks.kubernetes_versions
SET
data__extendedLocation = '{{ extendedLocation }}'
WHERE
customLocationResourceUri = '{{ customLocationResourceUri }}' --required
RETURNING
extendedLocation,
properties;
DELETE examples
- delete
Delete the default kubernetes versions resource type
DELETE FROM azure.hybrid_aks.kubernetes_versions
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}' --required
;