다음을 통해 공유


Application Service 리소스 그룹별 목록

지정된 리소스 그룹의 모든 애플리케이션 리소스를 가져옵니다.

지정된 리소스 그룹의 모든 애플리케이션 리소스에 대한 정보를 가져옵니다. 이 정보에는 애플리케이션의 서비스 및 기타 런타임 속성에 대한 정보가 포함됩니다.

요청

메서드 요청 URI
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications?api-version=2018-07-01-preview

매개 변수

속성 형식 필수 위치
subscriptionId 문자열 경로
resourceGroupName 문자열 경로
api-version 문자열 쿼리

subscriptionId

형식: 문자열
필수: 예

고객 구독 식별자


resourceGroupName

형식: 문자열
필수: 예

Azure 리소스 그룹 이름


api-version

형식: 문자열
필수: 예
기본: 2018-07-01-preview

API 버전입니다. 이 매개 변수는 필수이며 해당 값은 이어야 2018-07-01-preview합니다.

응답

HTTP 상태 코드 설명 응답 스키마
200(확인) 정상
ApplicationResourceDescriptionList
다른 모든 상태 코드 오류
ErrorModel

예제

ApplicationList

요청

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

200 응답

본문
{
  "value": [
    {
      "type": "Microsoft.ServiceFabricMesh/applications",
      "location": "eastus",
      "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp",
      "name": "helloWorldApp",
      "tags": {},
      "properties": {
        "provisioningState": "Succeeded",
        "description": "SeaBreeze HelloWorld Application!",
        "healthState": "Ok",
        "serviceNames": [
          "helloWorldService"
        ],
        "status": "Ready"
      }
    },
    {
      "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"
      }
    }
  ]
}