deployed_application_infos
Creates, updates, deletes, gets or lists a deployed_application_infos resource.
Overview
| Name | deployed_application_infos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.deployed_application_infos |
Fields
The following fields are returned by SELECT queries:
- get_deployed_application_info
| Name | Datatype | Description |
|---|---|---|
HealthState | string | |
Id | string | |
LogDirectory | string | |
Name | string | |
Status | string | |
TempDirectory | string | |
TypeName | string | |
TypeVersion | string | |
WorkDirectory | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_deployed_application_info | select | application_id, node_name, endpoint | timeout, IncludeHealthState | Gets the information about an application deployed on a Service Fabric node. This query returns system application information if the application ID provided is for system application. Results encompass deployed applications in active, activating, and downloading states. This query requires that the node name corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service Fabric nodes on the 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.
| Name | Datatype | Description |
|---|---|---|
application_id | string | The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme. Starting from version 6.0, hierarchical names are delimited with the " |
endpoint | string | The service endpoint host (no scheme). (default: ) |
node_name | string | The name of the node. |
IncludeHealthState | boolean | Include the health state of an entity. If this parameter is false or not specified, then the health state returned is "Unknown". When set to true, the query goes in parallel to the node and the health system service before the results are merged. As a result, the query is more expensive and may take a longer time. |
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_deployed_application_info
Gets the information about an application deployed on a Service Fabric node. This query returns system application information if the application ID provided is for system application. Results encompass deployed applications in active, activating, and downloading states. This query requires that the node name corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service Fabric nodes on the cluster.
SELECT
HealthState,
Id,
LogDirectory,
Name,
Status,
TempDirectory,
TypeName,
TypeVersion,
WorkDirectory
FROM azure.service_fabric_dataplane.deployed_application_infos
WHERE application_id = '{{ application_id }}' -- required
AND node_name = '{{ node_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
AND IncludeHealthState = '{{ IncludeHealthState }}'
;