service_type_infos
Creates, updates, deletes, gets or lists a service_type_infos resource.
Overview
| Name | service_type_infos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.service_type_infos |
Fields
The following fields are returned by SELECT queries:
- get_service_type_info_by_name
| Name | Datatype | Description |
|---|---|---|
IsServiceGroup | boolean | |
ServiceManifestName | string | |
ServiceManifestVersion | string | |
ServiceTypeDescription | object | Describes a service type defined in the service manifest of a provisioned application type. The properties the ones defined in the service manifest. You probably want to use the sub-classes and not this class directly. Known sub-classes are: StatefulServiceTypeDescription, StatelessServiceTypeDescription All required parameters must be populated in order to send to Azure. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_service_type_info_by_name | select | application_type_name, service_type_name, ApplicationTypeVersion, endpoint | timeout | Gets the information about a specific service type that is supported by a provisioned application type in a Service Fabric cluster. Gets the information about a specific service type that is supported by a provisioned application type in a Service Fabric cluster. The provided application type must exist. Otherwise, a 404 status is returned. A 204 response is returned if the specified service type is not found in the cluster. |
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: ) |
service_type_name | string | Specifies the name of a Service Fabric service type. |
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_type_info_by_name
Gets the information about a specific service type that is supported by a provisioned application type in a Service Fabric cluster. Gets the information about a specific service type that is supported by a provisioned application type in a Service Fabric cluster. The provided application type must exist. Otherwise, a 404 status is returned. A 204 response is returned if the specified service type is not found in the cluster.
SELECT
IsServiceGroup,
ServiceManifestName,
ServiceManifestVersion,
ServiceTypeDescription
FROM azure.service_fabric_dataplane.service_type_infos
WHERE application_type_name = '{{ application_type_name }}' -- required
AND service_type_name = '{{ service_type_name }}' -- required
AND ApplicationTypeVersion = '{{ ApplicationTypeVersion }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;