Skip to main content

compose_deployment_status

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

Overview

Namecompose_deployment_status
TypeResource
Idazure.service_fabric_dataplane.compose_deployment_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ApplicationNamestring
Namestring
Statusstring
StatusDetailsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_compose_deployment_statusselectdeployment_name, endpointtimeoutGets information about a Service Fabric compose deployment. Returns the status of the compose deployment that was created or in the process of being created in the Service Fabric cluster and whose name matches the one specified as the parameter. The response includes the name, status, and other details about the deployment.

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 information about a Service Fabric compose deployment. Returns the status of the compose deployment that was created or in the process of being created in the Service Fabric cluster and whose name matches the one specified as the parameter. The response includes the name, status, and other details about the deployment.

SELECT
ApplicationName,
Name,
Status,
StatusDetails
FROM azure.service_fabric_dataplane.compose_deployment_status
WHERE deployment_name = '{{ deployment_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;