Skip to main content

cluster_configuration_upgrade_status

Creates, updates, deletes, gets or lists a cluster_configuration_upgrade_status resource.

Overview

Namecluster_configuration_upgrade_status
TypeResource
Idazure.service_fabric_dataplane.cluster_configuration_upgrade_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ConfigVersionstring
Detailsstring
ProgressStatusinteger
UpgradeStatestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cluster_configuration_upgrade_statusselectendpointtimeoutGet 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.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme). (default: )
timeoutinteger (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 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 }}'
;