managed_unsupported_vm_sizes
Creates, updates, deletes, gets or lists a managed_unsupported_vm_sizes
resource.
Overview
Name | managed_unsupported_vm_sizes |
Type | Resource |
Id | azure.service_fabric_managed_clusters.managed_unsupported_vm_sizes |
Fields
- vw_managed_unsupported_vm_sizes
- managed_unsupported_vm_sizes
Name | Datatype | Description |
---|---|---|
id | text | VM Size id. |
name | text | VM Size name. |
location | text | field from the properties object |
size | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | VM Size type. |
vmSize | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | VM Size id. |
name | string | VM Size name. |
properties | object | VM Sizes properties. |
type | string | VM Size type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, subscriptionId, vmSize | Get unsupported vm size for Service Fabric Managed Clusters. |
list | SELECT | location, subscriptionId | Get the lists of unsupported vm sizes for Service Fabric Managed Clusters. |
SELECT
examples
Get the lists of unsupported vm sizes for Service Fabric Managed Clusters.
- vw_managed_unsupported_vm_sizes
- managed_unsupported_vm_sizes
SELECT
id,
name,
location,
size,
subscriptionId,
type,
vmSize
FROM azure.service_fabric_managed_clusters.vw_managed_unsupported_vm_sizes
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.service_fabric_managed_clusters.managed_unsupported_vm_sizes
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';