Skip to main content

available_skus

Creates, updates, deletes, gets or lists an available_skus resource.

Overview

Nameavailable_skus
TypeResource
Idazure.data_box_edge.available_skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe 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)
apiVersionsarrayThe API versions in which Sku is available.
availabilitystringLinks to the next set of results. Known values are: "Available" and "Unavailable". (Available, Unavailable)
capabilitiesarrayThe capability info of the SKU.
costsarrayThe pricing info of the Sku.
familystringThe Sku family.
kindstringThe Sku kind.
locationInfoarrayAvailability of the Sku for the location/zone/site.
locationsarrayAvailability of the Sku for the region.
resourceTypestringThe type of the resource.
shipmentTypesarrayList of Shipment Types supported by this SKU.
signupOptionstringSku can be signed up by customer or not. Known values are: "None" and "Available". (None, Available)
sizestringThe Sku kind.
tierstringThe Sku tier. "Standard" (Standard)
versionstringAvailability of the Sku as preview/stable. Known values are: "Stable" and "Preview". (Stable, Preview)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idList 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.

NameDatatypeDescription
subscription_idstring

SELECT examples

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
;