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
The following fields are returned by SELECT
queries:
- get
- list
Lists the supported VM skus for the specified custom location
Name | Datatype | Description |
---|---|---|
extendedLocation | object | Extended location pointing to the underlying infrastructure |
properties | object |
Lists the supported VM skus 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 VM skus for the specified custom location | |
list | select | customLocationResourceUri | Lists the supported VM skus for the specified custom location | |
put | replace | customLocationResourceUri | Puts the default VM skus resource type (one time operation, before listing the VM skus) | |
delete | delete | customLocationResourceUri | Deletes the default VM skus 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 VM skus for the specified custom location
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.vm_skus
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}' -- required
;
Lists the supported VM skus for the specified custom location
SELECT
extendedLocation,
properties
FROM azure.hybrid_aks.vm_skus
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}' -- required
;
REPLACE
examples
- put
Puts the default VM skus resource type (one time operation, before listing the VM skus)
REPLACE azure.hybrid_aks.vm_skus
SET
data__extendedLocation = '{{ extendedLocation }}'
WHERE
customLocationResourceUri = '{{ customLocationResourceUri }}' --required
RETURNING
extendedLocation,
properties;
DELETE
examples
- delete
Deletes the default VM skus resource type
DELETE FROM azure.hybrid_aks.vm_skus
WHERE customLocationResourceUri = '{{ customLocationResourceUri }}' --required
;