Skip to main content

service_manifests

Creates, updates, deletes, gets or lists a service_manifests resource.

Overview

Nameservice_manifests
TypeResource
Idazure.service_fabric_dataplane.service_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_service_manifestselectapplication_type_name, ServiceManifestName, ApplicationTypeVersion, endpointtimeoutGets the manifest describing a service type. Gets the manifest describing a service type. The response contains the service 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.
ServiceManifestNamestringThe name of a service manifest registered as part of an application type in a Service Fabric cluster.
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 a service type. Gets the manifest describing a service type. The response contains the service manifest XML as a string.

SELECT
Manifest
FROM azure.service_fabric_dataplane.service_manifests
WHERE application_type_name = '{{ application_type_name }}' -- required
AND ServiceManifestName = '{{ ServiceManifestName }}' -- required
AND ApplicationTypeVersion = '{{ ApplicationTypeVersion }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;