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
The following fields are returned by SELECT queries:
- get
- list
The operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
id | string | VM Size id. |
name | string | VM Size name. |
properties | object | VM Size properties. |
type | string | VM Size type. |
The operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
id | string | VM Size id. |
name | string | VM Size name. |
properties | object | VM Size properties. |
type | string | VM Size type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location, subscriptionId, vmSize | api-version | Get unsupported vm size for Service Fabric Managed Clusters. |
list | select | location, subscriptionId | api-version | Get the lists of unsupported vm sizes for Service Fabric Managed 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.
| Name | Datatype | Description |
|---|---|---|
location | string | The location for the cluster code versions. This is different from cluster location. |
subscriptionId | string | The customer subscription identifier. |
vmSize | string | VM Size name. |
api-version | string | The version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2024-06-01-preview" for this specification. |
SELECT examples
- get
- list
Get unsupported vm size for Service Fabric Managed Clusters.
SELECT
id,
name,
properties,
type
FROM azure.service_fabric_managed_clusters.managed_unsupported_vm_sizes
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND vmSize = '{{ vmSize }}' -- required
AND api-version = '{{ api-version }}'
;
Get the lists of unsupported vm sizes for Service Fabric Managed Clusters.
SELECT
id,
name,
properties,
type
FROM azure.service_fabric_managed_clusters.managed_unsupported_vm_sizes
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;