다음을 통해 공유


API 서비스 가져오기

서비스의 속성을 가져옵니다.

작업은 서비스의 속성을 반환합니다.

요청

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

매개 변수

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

subscriptionId

형식: 문자열
필수: 예

고객 구독 식별자


resourceGroupName

형식: 문자열
필수: 예

Azure 리소스 그룹 이름


applicationName

형식: 문자열
필수: 예

애플리케이션 ID입니다.


serviceName

형식: 문자열
필수: 예

서비스 id입니다.


api-version

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

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

응답

HTTP 상태 코드 설명 응답 스키마
200(확인) 정상
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"
  }
}