Skip to main content

application_manifests

Creates, updates, deletes, gets or lists an application_manifests resource.

Overview

Nameapplication_manifests
TypeResource
Idazure.service_fabric_dataplane.application_manifests

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
Manifeststring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_application_manifestselectapplication_type_name, ApplicationTypeVersion, endpointtimeoutGets 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.

NameDatatypeDescription
ApplicationTypeVersionstringThe version of the application type.
application_type_namestringThe name of the application type.
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 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 }}'
;