deployed_service_replica_detail_infos
Creates, updates, deletes, gets or lists a deployed_service_replica_detail_infos resource.
Overview
| Name | deployed_service_replica_detail_infos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.deployed_service_replica_detail_infos |
Fields
The following fields are returned by SELECT queries:
- get_deployed_service_replica_detail_info
- get_deployed_service_replica_detail_info_by_partition_id
| Name | Datatype | Description |
|---|---|---|
CurrentServiceOperation | string | |
CurrentServiceOperationStartTimeUtc | string (date-time) | |
PartitionId | string | |
ReportedLoad | array | |
ServiceKind | string | |
ServiceName | string |
| Name | Datatype | Description |
|---|---|---|
CurrentServiceOperation | string | |
CurrentServiceOperationStartTimeUtc | string (date-time) | |
PartitionId | string | |
ReportedLoad | array | |
ServiceKind | string | |
ServiceName | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_deployed_service_replica_detail_info | select | replica_id, partition_id, node_name, endpoint | timeout | Gets the details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information. |
get_deployed_service_replica_detail_info_by_partition_id | select | partition_id, node_name, endpoint | timeout | Gets the details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
node_name | string | The name of the node. |
partition_id | string | The identity of the partition. |
replica_id | string | The identifier of the replica. |
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_deployed_service_replica_detail_info
- get_deployed_service_replica_detail_info_by_partition_id
Gets the details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information.
SELECT
CurrentServiceOperation,
CurrentServiceOperationStartTimeUtc,
PartitionId,
ReportedLoad,
ServiceKind,
ServiceName
FROM azure.service_fabric_dataplane.deployed_service_replica_detail_infos
WHERE replica_id = '{{ replica_id }}' -- required
AND partition_id = '{{ partition_id }}' -- required
AND node_name = '{{ node_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;
Gets the details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information.
SELECT
CurrentServiceOperation,
CurrentServiceOperationStartTimeUtc,
PartitionId,
ReportedLoad,
ServiceKind,
ServiceName
FROM azure.service_fabric_dataplane.deployed_service_replica_detail_infos
WHERE partition_id = '{{ partition_id }}' -- required
AND node_name = '{{ node_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;