다음을 통해 공유


Microsoft.Web connectionGateways

Bicep 리소스 정의

connectionGateways 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Web/connectionGateways 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.Web/connectionGateways@2016-06-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  etag: 'string'
  properties: {
    backendUri: 'string'
    connectionGatewayInstallation: {
      id: 'string'
      location: 'string'
      name: 'string'
      type: 'string'
    }
    contactInformation: [
      'string'
    ]
    description: 'string'
    displayName: 'string'
    machineName: 'string'
    status: any()
  }
}

속성 값

connectionGateways

속성 Description
name 리소스 이름 string(필수)
위치 리소스 위치 문자열
tags 리소스 태그 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요.
etag 리소스 ETag 문자열
properties ConnectionGatewayDefinitionProperties

ConnectionGatewayDefinitionProperties

속성 Description
backendUri 백 엔드의 URI 문자열
connectionGatewayInstallation 게이트웨이 설치 참조 ConnectionGatewayReference
contactInformation 게이트웨이 관리자 string[]
description 게이트웨이 설명 문자열
displayName 게이트웨이 표시 이름 문자열
machineName 게이트웨이의 컴퓨터 이름 문자열
상태 게이트웨이 상태 Bicep의 경우 any() 함수를 사용할 수 있습니다.

ConnectionGatewayReference

속성 Description
id 리소스 참조 ID 문자열
위치 리소스 참조 위치 문자열
name 리소스 참조 이름 문자열
type 리소스 참조 유형 문자열

ARM 템플릿 리소스 정의

connectionGateways 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Web/connectionGateways 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.Web/connectionGateways",
  "apiVersion": "2016-06-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "etag": "string",
  "properties": {
    "backendUri": "string",
    "connectionGatewayInstallation": {
      "id": "string",
      "location": "string",
      "name": "string",
      "type": "string"
    },
    "contactInformation": [ "string" ],
    "description": "string",
    "displayName": "string",
    "machineName": "string",
    "status": {}
  }
}

속성 값

connectionGateways

속성 Description
형식 리소스 종류 'Microsoft.Web/connectionGateways'
apiVersion 리소스 api 버전 '2016-06-01'
name 리소스 이름 string(필수)
위치 리소스 위치 문자열
tags 리소스 태그 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요.
etag 리소스 ETag 문자열
properties ConnectionGatewayDefinitionProperties

ConnectionGatewayDefinitionProperties

속성 Description
backendUri 백 엔드의 URI 문자열
connectionGatewayInstallation 게이트웨이 설치 참조 ConnectionGatewayReference
contactInformation 게이트웨이 관리자 string[]
description 게이트웨이 설명 문자열
displayName 게이트웨이 표시 이름 문자열
machineName 게이트웨이의 컴퓨터 이름 문자열
상태 게이트웨이 상태

ConnectionGatewayReference

속성 Description
id 리소스 참조 ID 문자열
위치 리소스 참조 위치 문자열
name 리소스 참조 이름 문자열
type 리소스 참조 유형 문자열

Terraform(AzAPI 공급자) 리소스 정의

connectionGateways 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

  • 리소스 그룹

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Web/connectionGateways 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Web/connectionGateways@2016-06-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      backendUri = "string"
      connectionGatewayInstallation = {
        id = "string"
        location = "string"
        name = "string"
        type = "string"
      }
      contactInformation = [
        "string"
      ]
      description = "string"
      displayName = "string"
      machineName = "string"
    }
    etag = "string"
  })
}

속성 값

connectionGateways

속성 Description
형식 리소스 종류 "Microsoft.Web/connectionGateways@2016-06-01"
name 리소스 이름 string(필수)
위치 리소스 위치 문자열
parent_id 리소스 그룹에 배포하려면 해당 리소스 그룹의 ID를 사용합니다. string(필수)
tags 리소스 태그 태그 이름 및 값의 사전입니다.
etag 리소스 ETag 문자열
properties ConnectionGatewayDefinitionProperties

ConnectionGatewayDefinitionProperties

속성 Description
backendUri 백 엔드의 URI 문자열
connectionGatewayInstallation 게이트웨이 설치 참조 ConnectionGatewayReference
contactInformation 게이트웨이 관리자 string[]
description 게이트웨이 설명 문자열
displayName 게이트웨이 표시 이름 문자열
machineName 게이트웨이의 컴퓨터 이름 문자열
상태 게이트웨이 상태

ConnectionGatewayReference

속성 Description
id 리소스 참조 ID 문자열
위치 리소스 참조 위치 문자열
name 리소스 참조 이름 문자열
type 리소스 참조 유형 string