cluster_configuration_upgrade_status
Creates, updates, deletes, gets or lists a cluster_configuration_upgrade_status resource.
Overview
| Name | cluster_configuration_upgrade_status |
| Type | Resource |
| Id | azure.service_fabric_dataplane.cluster_configuration_upgrade_status |
Fields
The following fields are returned by SELECT queries:
- get_cluster_configuration_upgrade_status
| Name | Datatype | Description |
|---|---|---|
ConfigVersion | string | |
Details | string | |
ProgressStatus | integer | |
UpgradeState | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_cluster_configuration_upgrade_status | select | endpoint | timeout | Get the cluster configuration upgrade status of a Service Fabric standalone cluster. Get the cluster configuration upgrade status details of a Service Fabric standalone cluster. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
SELECT examples
- get_cluster_configuration_upgrade_status
Get the cluster configuration upgrade status of a Service Fabric standalone cluster. Get the cluster configuration upgrade status details of a Service Fabric standalone cluster.
SELECT
ConfigVersion,
Details,
ProgressStatus,
UpgradeState
FROM azure.service_fabric_dataplane.cluster_configuration_upgrade_status
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;