application_manifests
Creates, updates, deletes, gets or lists an application_manifests resource.
Overview
| Name | application_manifests |
| Type | Resource |
| Id | azure.service_fabric_dataplane.application_manifests |
Fields
The following fields are returned by SELECT queries:
- get_application_manifest
| Name | Datatype | Description |
|---|---|---|
Manifest | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_application_manifest | select | application_type_name, ApplicationTypeVersion, endpoint | timeout | Gets the manifest describing an application type. The response contains the application manifest XML as a string. |
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 |
|---|---|---|
ApplicationTypeVersion | string | The version of the application type. |
application_type_name | string | The name of the application type. |
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_application_manifest
Gets the manifest describing an application type. The response contains the application manifest XML as a string.
SELECT
Manifest
FROM azure.service_fabric_dataplane.application_manifests
WHERE application_type_name = '{{ application_type_name }}' -- required
AND ApplicationTypeVersion = '{{ ApplicationTypeVersion }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;