Skip to main content

service_infos

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

Overview

Nameservice_infos
TypeResource
Idazure.service_fabric_dataplane.service_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
HealthStatestring
Idstring
IsServiceGroupboolean
ManifestVersionstring
Namestring
ServiceKindstring
ServiceStatusstring
TypeNamestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_infoselectapplication_id, service_id, endpointtimeoutGets the information about the specific service belonging to the Service Fabric application. Returns the information about the specified service belonging to the specified Service Fabric application.

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
application_idstringThe identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme. Starting from version 6.0, hierarchical names are delimited with the "" character. For example, if the application name is "fabric:/myapp/app1", the application identity would be "myappapp1" in 6.0+ and "myapp/app1" in previous versions.
endpointstringThe service endpoint host (no scheme). (default: )
service_idstringThe identity of the service. This ID is typically the full name of the service without the 'fabric:' URI scheme. Starting from version 6.0, hierarchical names are delimited with the "" character. For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be "myappapp1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions.
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 the specific service belonging to the Service Fabric application. Returns the information about the specified service belonging to the specified Service Fabric application.

SELECT
HealthState,
Id,
IsServiceGroup,
ManifestVersion,
Name,
ServiceKind,
ServiceStatus,
TypeName
FROM azure.service_fabric_dataplane.service_infos
WHERE application_id = '{{ application_id }}' -- required
AND service_id = '{{ service_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;