compose_deployment_status
Creates, updates, deletes, gets or lists a compose_deployment_status resource.
Overview
| Name | compose_deployment_status |
| Type | Resource |
| Id | azure.service_fabric_dataplane.compose_deployment_status |
Fields
The following fields are returned by SELECT queries:
- get_compose_deployment_status
| Name | Datatype | Description |
|---|---|---|
ApplicationName | string | |
Name | string | |
Status | string | |
StatusDetails | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_compose_deployment_status | select | deployment_name, endpoint | timeout | 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. |
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_status
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 }}'
;