Skip to main content

compose_deployment_upgrade_progress

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

Overview

Namecompose_deployment_upgrade_progress
TypeResource
Idazure.service_fabric_dataplane.compose_deployment_upgrade_progress

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ApplicationHealthPolicyobjectDefines a health policy used to evaluate the health of an application or one of its children entities.
ApplicationNamestring
ApplicationUnhealthyEvaluationsarray
ApplicationUpgradeStatusDetailsstring
CurrentUpgradeDomainDurationstring
CurrentUpgradeDomainProgressobjectInformation about the current in-progress upgrade domain. Not applicable to node-by-node upgrades.
DeploymentNamestring
FailureReasonstring
FailureTimestampUtcstring
ForceRestartboolean
MonitoringPolicyobjectDescribes the parameters for monitoring an upgrade in Monitored mode.
RollingUpgradeModestring
StartTimestampUtcstring
TargetApplicationTypeVersionstring
UpgradeDomainProgressAtFailureobjectInformation about the upgrade domain progress at the time of upgrade failure.
UpgradeDurationstring
UpgradeKindstring
UpgradeReplicaSetCheckTimeoutInSecondsinteger (int64)
UpgradeStatestring
UpgradeStatusDetailsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_compose_deployment_upgrade_progressselectdeployment_name, endpointtimeoutGets details for the latest upgrade performed on this Service Fabric compose deployment. Returns the information about the state of the compose deployment upgrade along with details to aid debugging application health issues.

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
deployment_namestringThe identity of the deployment.
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

Gets details for the latest upgrade performed on this Service Fabric compose deployment. Returns the information about the state of the compose deployment upgrade along with details to aid debugging application health issues.

SELECT
ApplicationHealthPolicy,
ApplicationName,
ApplicationUnhealthyEvaluations,
ApplicationUpgradeStatusDetails,
CurrentUpgradeDomainDuration,
CurrentUpgradeDomainProgress,
DeploymentName,
FailureReason,
FailureTimestampUtc,
ForceRestart,
MonitoringPolicy,
RollingUpgradeMode,
StartTimestampUtc,
TargetApplicationTypeVersion,
UpgradeDomainProgressAtFailure,
UpgradeDuration,
UpgradeKind,
UpgradeReplicaSetCheckTimeoutInSeconds,
UpgradeState,
UpgradeStatusDetails
FROM azure.service_fabric_dataplane.compose_deployment_upgrade_progress
WHERE deployment_name = '{{ deployment_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;