Skip to main content

vm_skus

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

Overview

Namevm_skus
TypeResource
Idazure.hybrid_aks.vm_skus

Fields

NameDatatypeDescription
extendedLocationobjectExtended location pointing to the underlying infrastructure
propertiesobject

Methods

NameAccessible byRequired ParamsDescription
getSELECTcustomLocationResourceUriLists the supported VM skus for the specified custom location
listSELECTcustomLocationResourceUriLists the supported VM skus for the specified custom location
deleteDELETEcustomLocationResourceUriDeletes the default VM skus resource type
putREPLACEcustomLocationResourceUriPuts the default VM skus resource type (one time operation, before listing the VM skus)

SELECT examples

Lists the supported VM skus for the specified custom location

SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.vm_skus
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}';

REPLACE example

Replaces all fields in the specified vm_skus resource.

/*+ update */
REPLACE azure.hybrid_aks.vm_skus
SET
extendedLocation = '{{ extendedLocation }}'
WHERE
customLocationResourceUri = '{{ customLocationResourceUri }}';

DELETE example

Deletes the specified vm_skus resource.

/*+ delete */
DELETE FROM azure.hybrid_aks.vm_skus
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}';