Bagikan melalui


Dapatkan Replika API

Mendapatkan replika tertentu dari layanan tertentu.

Mendapatkan informasi tentang replika yang ditentukan dari layanan aplikasi tertentu. Informasi tersebut mencakup properti runtime instans replika.

Minta

Metode URI Permintaan
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services/{serviceName}/replicas/{replicaName}?api-version=2018-07-01-preview

Parameter

Nama Jenis Diperlukan Lokasi
subscriptionId string Ya Jalur
resourceGroupName string Ya Jalur
applicationName string Ya Jalur
serviceName string Ya Jalur
replicaName string Ya Jalur
api-version string Ya Kueri

subscriptionId

Jenis: string
Diperlukan: Ya

Pengidentifikasi langganan pelanggan


resourceGroupName

Jenis: string
Diperlukan: Ya

Nama grup sumber daya Azure


applicationName

Jenis: string
Diperlukan: Ya

Identitas aplikasi.


serviceName

Jenis: string
Diperlukan: Ya

Identitas layanan.


replicaName

Jenis: string
Diperlukan: Ya

Identitas replika layanan.


api-version

Jenis: string
Diperlukan: Ya
Default: 2018-07-01-preview

Versi API. Parameter ini diperlukan dan nilainya harus 2018-07-01-preview.

Respons

Kode Status HTTP Deskripsi Skema Respons
200 (OK) OK
ServiceReplicaDescription

Contoh

ReplikaGet

Minta

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

Respons 200

Isi
{
  "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"
}