Skip to main content

unsupported_vm_sizes

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

Overview

Nameunsupported_vm_sizes
TypeResource
Idazure.service_fabric.unsupported_vm_sizes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
sizestringVM Size name.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, vm_size, subscription_idGet unsupported vm size for Service Fabric Clusters. Get unsupported vm size for Service Fabric Clusters.
listselectlocation, subscription_idGet the lists of unsupported vm sizes for Service Fabric Clusters. Get the lists of unsupported vm sizes for Service Fabric Clusters.

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
locationstringThe name of the Azure region. Required.
subscription_idstring
vm_sizestringVM Size name. Required.

SELECT examples

Get unsupported vm size for Service Fabric Clusters. Get unsupported vm size for Service Fabric Clusters.

SELECT
id,
name,
size,
systemData,
type
FROM azure.service_fabric.unsupported_vm_sizes
WHERE location = '{{ location }}' -- required
AND vm_size = '{{ vm_size }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;