你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Microsoft.Web hostingEnvironments/configurations 'networking' 2022-03-01

Bicep 资源定义

可以使用面向以下操作部署 hostingEnvironments/configurations 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

名称属性的选项

hostingEnvironments/configurations 资源根据 name 属性的值接受不同的属性。 本文介绍设置 name: 'networking'时可用的属性。

有关其他选项,请参阅:

资源格式

若要创建 Microsoft.Web/hostingEnvironments/configurations 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.Web/hostingEnvironments/configurations@2022-03-01' = {
  name: 'networking'
  kind: 'string'
  parent: resourceSymbolicName
  properties: {
    allowNewPrivateEndpointConnections: bool
    ftpEnabled: bool
    inboundIpAddressOverride: 'string'
    remoteDebugEnabled: bool
  }
}

属性值

hostingEnvironments/configurations-networking

名称 说明
name 资源名称

了解如何在 Bicep 中设置子资源的名称和类型。
“networking”
kind 资源类型。 字符串
父级 (parent) 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。

有关详细信息,请参阅 父资源之外的子资源
类型为的资源的符号名称: hostingEnvironments
properties AseV3NetworkingConfiguration 资源特定的属性 AseV3NetworkingConfigurationProperties

AseV3NetworkingConfigurationProperties

名称 说明
allowNewPrivateEndpointConnections 用于在 ASE 上启用和禁用新专用终结点连接创建的属性 bool
ftpEnabled 用于在 ASEV3 上启用和禁用 FTP 的属性 bool
inboundIpAddressOverride 客户提供的入站 IP 地址。 只能在 Ase create 上设置。 string
remoteDebugEnabled 用于在 ASEV3 上启用和禁用远程调试的属性 bool

ARM 模板资源定义

可以使用面向以下操作部署 hostingEnvironments/configurations 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

名称属性的选项

hostingEnvironments/configurations 资源根据 name 属性的值接受不同的属性。 本文介绍设置 name: 'networking'时可用的属性。

有关其他选项,请参阅:

资源格式

若要创建 Microsoft.Web/hostingEnvironments/configurations 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.Web/hostingEnvironments/configurations",
  "apiVersion": "2022-03-01",
  "name": "networking",
  "kind": "string",
  "properties": {
    "allowNewPrivateEndpointConnections": "bool",
    "ftpEnabled": "bool",
    "inboundIpAddressOverride": "string",
    "remoteDebugEnabled": "bool"
  }
}

属性值

hostingEnvironments/configurations-networking

名称 说明 Value
type 资源类型 'Microsoft.Web/hostingEnvironments/configurations'
apiVersion 资源 API 版本 '2022-03-01'
name 资源名称

了解如何在 JSON ARM 模板中设置子资源的名称和类型。
“networking”
kind 资源类型。 string
properties AseV3NetworkingConfiguration 资源特定的属性 AseV3NetworkingConfigurationProperties

AseV3NetworkingConfigurationProperties

名称 说明
allowNewPrivateEndpointConnections 用于在 ASE 上启用和禁用新专用终结点连接创建的属性 bool
ftpEnabled 用于在 ASEV3 上启用和禁用 FTP 的属性 bool
inboundIpAddressOverride 客户提供的入站 IP 地址。 只能在 Ase create 上设置。 字符串
remoteDebugEnabled 用于在 ASEV3 上启用和禁用远程调试的属性 bool

Terraform (AzAPI 提供程序) 资源定义

hostingEnvironments/configurations 资源类型可以通过针对以下操作进行部署:

  • 资源组

有关每个 API 版本中更改的属性的列表,请参阅 更改日志

名称属性的选项

hostingEnvironments/configurations 资源根据 name 属性的值接受不同的属性。 本文介绍设置 name: 'networking'时可用的属性。

有关其他选项,请参阅:

资源格式

若要创建 Microsoft.Web/hostingEnvironments/configurations 资源,请将以下 Terraform 添加到模板。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Web/hostingEnvironments/configurations@2022-03-01"
  name = "networking"
  parent_id = "string"
  body = jsonencode({
    properties = {
      allowNewPrivateEndpointConnections = bool
      ftpEnabled = bool
      inboundIpAddressOverride = "string"
      remoteDebugEnabled = bool
    }
    kind = "string"
  })
}

属性值

hostingEnvironments/configurations-networking

名称 说明 Value
type 资源类型 “Microsoft.Web/hostingEnvironments/configurations@2022-03-01”
name 资源名称 “networking”
parent_id 此资源的父资源 ID。 类型为:hostingEnvironments 的资源的 ID
kind 资源类型。 string
properties AseV3NetworkingConfiguration 资源特定属性 AseV3NetworkingConfigurationProperties

AseV3NetworkingConfigurationProperties

名称 说明
allowNewPrivateEndpointConnections 用于在 ASE 上启用和禁用新专用终结点连接创建的属性 bool
ftpEnabled 用于在 ASEV3 上启用和禁用 FTP 的属性 bool
inboundIpAddressOverride 客户提供的入站 IP 地址。 只能在 Ase create 上设置。 string
remoteDebugEnabled 用于在 ASEV3 上启用和禁用远程调试的属性 bool