API レプリカを取得する
特定のサービスの特定のレプリカを取得します。
アプリケーションの特定のサービスの指定されたレプリカに関する情報を取得します。 この情報には、レプリカ インスタンスのランタイム プロパティが含まれます。
Request
Method | 要求 URI |
---|---|
GET | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services/{serviceName}/replicas/{replicaName}?api-version=2018-07-01-preview |
パラメーター
名前 | Type | 必須 | 場所 |
---|---|---|---|
subscriptionId |
string | はい | パス |
resourceGroupName |
string | はい | パス |
applicationName |
string | はい | パス |
serviceName |
string | はい | パス |
replicaName |
string | はい | パス |
api-version |
string | はい | クエリ |
subscriptionId
型: string
必須: はい
顧客サブスクリプション識別子
resourceGroupName
型: string
必須: はい
Azure リソース グループ名
applicationName
型: string
必須: はい
アプリケーションの ID。
serviceName
型: string
必須: はい
サービスの ID。
replicaName
型: string
必須: はい
サービス レプリカの ID。
api-version
型: string
必須: はい
既定値:
API のバージョン。 このパラメーターは必須であり、その値は である 2018-07-01-preview
必要があります。
応答
HTTP 状態コード | 説明 | 応答スキーマ |
---|---|---|
200 (OK) | OK |
ServiceReplicaDescription |
使用例
ReplicaGet
要求
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp/services/helloWorldService/replicas/1?api-version=2018-07-01-preview
200 応答
本文
{
"osType": "Linux",
"codePackages": [
{
"name": "helloWorldCode",
"image": "seabreeze/sbz-helloworld:1.0-alpine",
"endpoints": [
{
"name": "helloWorldListener",
"port": "80"
}
],
"resources": {
"requests": {
"memoryInGB": "1",
"cpu": "1"
}
},
"instanceView": {
"restartCount": "1",
"currentState": {
"state": "Running",
"exitCode": "0"
},
"previousState": {
"state": "NotSpecified",
"exitCode": "0"
},
"events": [
{
"count": "3",
"firstTimestamp": "2018-04-05T22:37:20.9016844",
"lastTimestamp": "2018-04-06T06:36:06.0887046",
"name": "Created",
"message": "Container created and started.",
"type": "Normal"
},
{
"count": "1",
"firstTimestamp": "2018-04-06T06:34:00.6622454",
"lastTimestamp": "2018-04-06T06:34:00.6622454",
"name": "Stopped",
"message": "Container was stopped.",
"type": "Normal"
}
]
}
},
{
"name": "helloWorldSideCar",
"image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine",
"resources": {
"requests": {
"memoryInGB": "1",
"cpu": "1"
}
},
"instanceView": {
"restartCount": "1",
"currentState": {
"state": "Running",
"exitCode": "0"
},
"previousState": {
"state": "NotSpecified",
"exitCode": "0"
},
"events": [
{
"count": "3",
"firstTimestamp": "2018-04-05T22:37:20.906688",
"lastTimestamp": "2018-04-06T06:36:06.0827003",
"name": "Created",
"message": "Container created and started.",
"type": "Normal"
},
{
"count": "1",
"firstTimestamp": "2018-04-06T06:34:00.656241",
"lastTimestamp": "2018-04-06T06:34:00.656241",
"name": "Stopped",
"message": "Container was stopped.",
"type": "Normal"
}
]
}
}
],
"networkRefs": [
{
"name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork"
}
],
"replicaName": "1"
}