available_skus
Creates, updates, deletes, gets or lists an available_skus resource.
Overview
| Name | available_skus |
| Type | Resource |
| Id | azure.data_box_edge.available_skus |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The Sku name. Known values are: "Gateway", "Edge", "TEA_1Node", "TEA_1Node_UPS", "TEA_1Node_Heater", "TEA_1Node_UPS_Heater", "TEA_4Node_Heater", "TEA_4Node_UPS_Heater", "TMA", "TDC", "TCA_Small", "GPU", "TCA_Large", "EdgeP_Base", "EdgeP_High", "EdgePR_Base", "EdgePR_Base_UPS", "EP2_64_1VPU_W", "EP2_128_1T4_Mx1_W", "EP2_256_2T4_W", "EdgeMR_Mini", "RCA_Small", "RCA_Large", "RDC", "Management", "EP2_64_Mx1_W", "EP2_128_GPU1_Mx1_W", "EP2_256_GPU2_Mx1", and "EdgeMR_TCP". (Gateway, Edge, TEA_1Node, TEA_1Node_UPS, TEA_1Node_Heater, TEA_1Node_UPS_Heater, TEA_4Node_Heater, TEA_4Node_UPS_Heater, TMA, TDC, TCA_Small, GPU, TCA_Large, EdgeP_Base, EdgeP_High, EdgePR_Base, EdgePR_Base_UPS, EP2_64_1VPU_W, EP2_128_1T4_Mx1_W, EP2_256_2T4_W, EdgeMR_Mini, RCA_Small, RCA_Large, RDC, Management, EP2_64_Mx1_W, EP2_128_GPU1_Mx1_W, EP2_256_GPU2_Mx1, EdgeMR_TCP) |
apiVersions | array | The API versions in which Sku is available. |
availability | string | Links to the next set of results. Known values are: "Available" and "Unavailable". (Available, Unavailable) |
capabilities | array | The capability info of the SKU. |
costs | array | The pricing info of the Sku. |
family | string | The Sku family. |
kind | string | The Sku kind. |
locationInfo | array | Availability of the Sku for the location/zone/site. |
locations | array | Availability of the Sku for the region. |
resourceType | string | The type of the resource. |
shipmentTypes | array | List of Shipment Types supported by this SKU. |
signupOption | string | Sku can be signed up by customer or not. Known values are: "None" and "Available". (None, Available) |
size | string | The Sku kind. |
tier | string | The Sku tier. "Standard" (Standard) |
version | string | Availability of the Sku as preview/stable. Known values are: "Stable" and "Preview". (Stable, Preview) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | List all the available Skus and information related to them. List all the available Skus and information related to them. |
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 |
|---|---|---|
subscription_id | string |
SELECT examples
- list
List all the available Skus and information related to them. List all the available Skus and information related to them.
SELECT
name,
apiVersions,
availability,
capabilities,
costs,
family,
kind,
locationInfo,
locations,
resourceType,
shipmentTypes,
signupOption,
size,
tier,
version
FROM azure.data_box_edge.available_skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;