Skip to main content

service_type_infos

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

Overview

Nameservice_type_infos
TypeResource
Idazure.service_fabric_dataplane.service_type_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
IsServiceGroupboolean
ServiceManifestNamestring
ServiceManifestVersionstring
ServiceTypeDescriptionobjectDescribes 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:

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

NameDatatypeDescription
ApplicationTypeVersionstringThe version of the application type.
application_type_namestringThe name of the application type.
endpointstringThe service endpoint host (no scheme). (default: )
service_type_namestringSpecifies the name of a Service Fabric service type.
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 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 }}'
;