compose_deployment_upgrade_progress
Creates, updates, deletes, gets or lists a compose_deployment_upgrade_progress resource.
Overview
| Name | compose_deployment_upgrade_progress |
| Type | Resource |
| Id | azure.service_fabric_dataplane.compose_deployment_upgrade_progress |
Fields
The following fields are returned by SELECT queries:
- get_compose_deployment_upgrade_progress
| Name | Datatype | Description |
|---|---|---|
ApplicationHealthPolicy | object | Defines a health policy used to evaluate the health of an application or one of its children entities. |
ApplicationName | string | |
ApplicationUnhealthyEvaluations | array | |
ApplicationUpgradeStatusDetails | string | |
CurrentUpgradeDomainDuration | string | |
CurrentUpgradeDomainProgress | object | Information about the current in-progress upgrade domain. Not applicable to node-by-node upgrades. |
DeploymentName | string | |
FailureReason | string | |
FailureTimestampUtc | string | |
ForceRestart | boolean | |
MonitoringPolicy | object | Describes the parameters for monitoring an upgrade in Monitored mode. |
RollingUpgradeMode | string | |
StartTimestampUtc | string | |
TargetApplicationTypeVersion | string | |
UpgradeDomainProgressAtFailure | object | Information about the upgrade domain progress at the time of upgrade failure. |
UpgradeDuration | string | |
UpgradeKind | string | |
UpgradeReplicaSetCheckTimeoutInSeconds | integer (int64) | |
UpgradeState | string | |
UpgradeStatusDetails | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_compose_deployment_upgrade_progress | select | deployment_name, endpoint | timeout | 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. |
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 |
|---|---|---|
deployment_name | string | The identity of the deployment. |
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_compose_deployment_upgrade_progress
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 }}'
;