node_type_skus
Creates, updates, deletes, gets or lists a node_type_skus
resource.
Overview
Name | node_type_skus |
Type | Resource |
Id | azure.service_fabric_managed_clusters.node_type_skus |
Fields
The following fields are returned by SELECT
queries:
- list
The operation completed successfully.
Name | Datatype | Description |
---|---|---|
capacity | object | Provides information about how the node count can be scaled. |
resourceType | string | The type of resource the sku applies to. Value: Microsoft.ServiceFabric/managedClusters/nodeTypes. |
sku | object | The supported SKU for a for node type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , clusterName , nodeTypeName | api-version | Get a Service Fabric node type supported SKUs. |
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 |
---|---|---|
clusterName | string | The name of the cluster resource. |
nodeTypeName | string | The name of the node type. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The customer subscription identifier. |
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
- list
Get a Service Fabric node type supported SKUs.
SELECT
capacity,
resourceType,
sku
FROM azure.service_fabric_managed_clusters.node_type_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND nodeTypeName = '{{ nodeTypeName }}' -- required
AND api-version = '{{ api-version }}'
;