vm_skus
Creates, updates, deletes, gets or lists a vm_skus
resource.
Overview
Name | vm_skus |
Type | Resource |
Id | azure.hybrid_aks.vm_skus |
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 VM skus for the specified custom location |
list | SELECT | customLocationResourceUri | Lists the supported VM skus for the specified custom location |
delete | DELETE | customLocationResourceUri | Deletes the default VM skus resource type |
put | REPLACE | customLocationResourceUri | Puts 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 }}';