application_infos
Creates, updates, deletes, gets or lists an application_infos resource.
Overview
| Name | application_infos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.application_infos |
Fields
The following fields are returned by SELECT queries:
- get_application_info
| Name | Datatype | Description |
|---|---|---|
ApplicationDefinitionKind | string | |
HealthState | string | |
Id | string | |
ManagedApplicationIdentity | object | Managed application identity description. |
Name | string | |
Parameters | array | |
Status | string | |
TypeName | string | |
TypeVersion | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_application_info | select | application_id, endpoint | ExcludeApplicationParameters, timeout | Gets information about a Service Fabric application. Returns the information about the application 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, type, status, parameters, and other details about the application. |
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: ) |
ExcludeApplicationParameters | boolean | The flag that specifies whether application parameters will be excluded from the result. |
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_application_info
Gets information about a Service Fabric application. Returns the information about the application 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, type, status, parameters, and other details about the application.
SELECT
ApplicationDefinitionKind,
HealthState,
Id,
ManagedApplicationIdentity,
Name,
Parameters,
Status,
TypeName,
TypeVersion
FROM azure.service_fabric_dataplane.application_infos
WHERE application_id = '{{ application_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND ExcludeApplicationParameters = '{{ ExcludeApplicationParameters }}'
AND timeout = '{{ timeout }}'
;