Поделиться через


Получение реплики API

Возвращает определенное реплика данной службы.

Возвращает сведения об указанной реплика данной службы приложения. Эти сведения включают свойства среды выполнения экземпляра реплика.

Запрос

Метод Универсальный код ресурса (URI) запроса
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services/{serviceName}/replicas/{replicaName}?api-version=2018-07-01-preview

Параметры

Имя Тип Обязательно Расположение
subscriptionId строка Да Путь
resourceGroupName строка Да Путь
applicationName строка Да Путь
serviceName строка Да Путь
replicaName строка Да Путь
api-version строка Да Запрос

subscriptionId

Тип: string
Обязательный: да

Идентификатор подписки клиента


resourceGroupName

Тип: string
Обязательный: да

Имя группы ресурсов Azure


applicationName

Тип: string
Обязательный: да

Идентификатор приложения.


serviceName

Тип: string
Обязательный: да

Идентификатор службы.


replicaName

Тип: string
Обязательный: да

Удостоверение реплика службы.


api-version

Тип: string
Обязательный: да
По умолчанию: 2018-07-01-preview

Версия API. Этот параметр является обязательным и его значение должно иметь значение 2018-07-01-preview.

Ответы

Код состояния HTTP Описание схеме ответа.
200 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"
}