Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
Microsoft.Web connectionGateways
Bicep resource definition
The connectionGateways resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Web/connectionGateways resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Web/connectionGateways@2016-06-01' = {
etag: 'string'
location: 'string'
name: 'string'
properties: {
backendUri: 'string'
connectionGatewayInstallation: {
id: 'string'
location: 'string'
name: 'string'
type: 'string'
}
contactInformation: [
'string'
]
description: 'string'
displayName: 'string'
machineName: 'string'
status: any(...)
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Web/connectionGateways
| Name | Description | Value |
|---|---|---|
| etag | Resource ETag | string |
| location | Resource location | string |
| name | The resource name | string (required) |
| properties | ConnectionGatewayDefinitionProperties | |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ConnectionGatewayDefinitionProperties
| Name | Description | Value |
|---|---|---|
| backendUri | The URI of the backend | string |
| connectionGatewayInstallation | The gateway installation reference | ConnectionGatewayReference |
| contactInformation | The gateway admin | string[] |
| description | The gateway description | string |
| displayName | The gateway display name | string |
| machineName | The machine name of the gateway | string |
| status | The gateway status | any |
ConnectionGatewayReference
| Name | Description | Value |
|---|---|---|
| id | Resource reference id | string |
| location | Resource reference location | string |
| name | Resource reference name | string |
| type | Resource reference type | string |
TagsDictionary
| Name | Description | Value |
|---|
ARM template resource definition
The connectionGateways resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Web/connectionGateways resource, add the following JSON to your template.
{
"type": "Microsoft.Web/connectionGateways",
"apiVersion": "2016-06-01",
"name": "string",
"etag": "string",
"location": "string",
"properties": {
"backendUri": "string",
"connectionGatewayInstallation": {
"id": "string",
"location": "string",
"name": "string",
"type": "string"
},
"contactInformation": [ "string" ],
"description": "string",
"displayName": "string",
"machineName": "string",
"status": {}
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Web/connectionGateways
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2016-06-01' |
| etag | Resource ETag | string |
| location | Resource location | string |
| name | The resource name | string (required) |
| properties | ConnectionGatewayDefinitionProperties | |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Microsoft.Web/connectionGateways' |
ConnectionGatewayDefinitionProperties
| Name | Description | Value |
|---|---|---|
| backendUri | The URI of the backend | string |
| connectionGatewayInstallation | The gateway installation reference | ConnectionGatewayReference |
| contactInformation | The gateway admin | string[] |
| description | The gateway description | string |
| displayName | The gateway display name | string |
| machineName | The machine name of the gateway | string |
| status | The gateway status | any |
ConnectionGatewayReference
| Name | Description | Value |
|---|---|---|
| id | Resource reference id | string |
| location | Resource reference location | string |
| name | Resource reference name | string |
| type | Resource reference type | string |
TagsDictionary
| Name | Description | Value |
|---|
Usage Examples
Terraform (AzAPI provider) resource definition
The connectionGateways resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Web/connectionGateways resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Web/connectionGateways@2016-06-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
etag = "string"
properties = {
backendUri = "string"
connectionGatewayInstallation = {
id = "string"
location = "string"
name = "string"
type = "string"
}
contactInformation = [
"string"
]
description = "string"
displayName = "string"
machineName = "string"
status = ?
}
}
}
Property Values
Microsoft.Web/connectionGateways
| Name | Description | Value |
|---|---|---|
| etag | Resource ETag | string |
| location | Resource location | string |
| name | The resource name | string (required) |
| properties | ConnectionGatewayDefinitionProperties | |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Microsoft.Web/connectionGateways@2016-06-01" |
ConnectionGatewayDefinitionProperties
| Name | Description | Value |
|---|---|---|
| backendUri | The URI of the backend | string |
| connectionGatewayInstallation | The gateway installation reference | ConnectionGatewayReference |
| contactInformation | The gateway admin | string[] |
| description | The gateway description | string |
| displayName | The gateway display name | string |
| machineName | The machine name of the gateway | string |
| status | The gateway status | any |
ConnectionGatewayReference
| Name | Description | Value |
|---|---|---|
| id | Resource reference id | string |
| location | Resource reference location | string |
| name | Resource reference name | string |
| type | Resource reference type | string |
TagsDictionary
| Name | Description | Value |
|---|
Feedback
Was this page helpful?
