service_manifests
Creates, updates, deletes, gets or lists a service_manifests resource.
Overview
| Name | service_manifests |
| Type | Resource |
| Id | azure.service_fabric_dataplane.service_manifests |
Fields
The following fields are returned by SELECT queries:
- get_service_manifest
| Name | Datatype | Description |
|---|---|---|
Manifest | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_service_manifest | select | application_type_name, ServiceManifestName, ApplicationTypeVersion, endpoint | timeout | Gets 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.
| Name | Datatype | Description |
|---|---|---|
ApplicationTypeVersion | string | The version of the application type. |
ServiceManifestName | string | The name of a service manifest registered as part of an application type in a Service Fabric cluster. |
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_service_manifest
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 }}'
;