clusters_upgradable_versions
Creates, updates, deletes, gets or lists a clusters_upgradable_versions resource.
Overview
| Name | clusters_upgradable_versions |
| Type | Resource |
| Id | azure.service_fabric.clusters_upgradable_versions |
Fields
The following fields are returned by SELECT queries:
- list
The operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
supportedPath | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, clusterName | api-version | If a target is not provided, it will get the minimum and maximum versions available from the current cluster version. If a target is given, it will provide the required path to get from the current cluster version to the target version. |
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. |
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 "2021-06-01" for this specification. |
SELECT examples
- list
If a target is not provided, it will get the minimum and maximum versions available from the current cluster version. If a target is given, it will provide the required path to get from the current cluster version to the target version.
SELECT
supportedPath
FROM azure.service_fabric.clusters_upgradable_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND api-version = '{{ api-version }}'
;