API サービスを取得する

サービスのプロパティを取得します。

この操作は、サービスのプロパティを返します。

Request

Method 要求 URI
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services/{serviceName}?api-version=2018-07-01-preview

パラメーター

名前 Type 必須 場所
subscriptionId string はい パス
resourceGroupName string はい パス
applicationName string はい パス
serviceName string はい パス
api-version string はい クエリ

subscriptionId

: string
必須: はい

顧客サブスクリプション識別子


resourceGroupName

: string
必須: はい

Azure リソース グループ名


applicationName

: string
必須: はい

アプリケーションの ID。


serviceName

: string
必須: はい

サービスの ID。


api-version

: string
必須: はい
既定値:

API のバージョン。 このパラメーターは必須であり、その値は である 2018-07-01-preview必要があります。

応答

HTTP 状態コード 説明 応答スキーマ
200 (OK) OK
ServiceResourceDescription

使用例

ServiceGet

要求

GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp/services/helloWorldService?api-version=2018-07-01-preview

200 応答

本文
{
  "name": "helloWorldService",
  "type": "Microsoft.ServiceFabricMesh/services",
  "properties": {
    "osType": "Linux",
    "codePackages": [
      {
        "name": "helloWorldCode",
        "image": "seabreeze/sbz-helloworld:1.0-alpine",
        "endpoints": [
          {
            "name": "helloWorldListener",
            "port": "80"
          }
        ],
        "resources": {
          "requests": {
            "memoryInGB": "1",
            "cpu": "1"
          }
        }
      },
      {
        "name": "helloWorldSideCar",
        "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine",
        "resources": {
          "requests": {
            "memoryInGB": "1",
            "cpu": "1"
          }
        }
      }
    ],
    "networkRefs": [
      {
        "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork"
      }
    ],
    "description": "SeaBreeze Hello World Service.",
    "replicaCount": "2",
    "healthState": "Ok",
    "status": "Unknown"
  }
}