次の方法で共有


取得

アプリケーション リソースを取得します。

指定した名前のアプリケーション リソースに関する情報を取得します。 この情報には、アプリケーションのサービスとその他のランタイム プロパティに関する情報が含まれます。

Request

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

パラメーター

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

subscriptionId

: string
必須: はい

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


resourceGroupName

: string
必須: はい

Azure リソース グループ名


applicationName

: string
必須: はい

アプリケーションの ID。


api-version

: string
必須: はい
既定値:

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

応答

HTTP 状態コード 説明 応答スキーマ
200 (OK) OK
ApplicationResourceDescription
その他すべての状態コード エラー
ErrorModel

使用例

ApplicationGet

要求

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

200 応答

本文
{
  "type": "Microsoft.ServiceFabricMesh/applications",
  "location": "eastus",
  "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldAppWindows",
  "name": "helloWorldAppWindows",
  "tags": {},
  "properties": {
    "provisioningState": "Succeeded",
    "description": "SeaBreeze HelloWorld Application!",
    "healthState": "Ok",
    "serviceNames": [
      "helloWorldService"
    ],
    "status": "Ready"
  }
}