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

Microsoft.Network dnsZones/NS 2016-04-01

Bicep 资源定义

dnsZones/NS 资源类型可以部署到:

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

资源格式

若要创建 Microsoft.Network/dnsZones/NS 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.Network/dnsZones/NS@2016-04-01' = {
  name: 'string'
  parent: resourceSymbolicName
  etag: 'string'
  properties: {
    AAAARecords: [
      {
        ipv6Address: 'string'
      }
    ]
    ARecords: [
      {
        ipv4Address: 'string'
      }
    ]
    CNAMERecord: {
      cname: 'string'
    }
    metadata: {}
    MXRecords: [
      {
        exchange: 'string'
        preference: int
      }
    ]
    NSRecords: [
      {
        nsdname: 'string'
      }
    ]
    PTRRecords: [
      {
        ptrdname: 'string'
      }
    ]
    SOARecord: {
      email: 'string'
      expireTime: int
      host: 'string'
      minimumTTL: int
      refreshTime: int
      retryTime: int
      serialNumber: int
    }
    SRVRecords: [
      {
        port: int
        priority: int
        target: 'string'
        weight: int
      }
    ]
    TTL: int
    TXTRecords: [
      {
        value: [
          'string'
        ]
      }
    ]
  }
}

属性值

dnsZones/NS

名称 说明
name 资源名称

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

有关详细信息,请参阅 父资源之外的子资源
类型为资源的符号名称: dnsZones
etag 记录集的 etag。 string
properties 记录集的属性。 RecordSetProperties

RecordSetProperties

名称 说明
AAAARecords 记录集中的 AAAA 记录的列表。 AaaaRecord[]
ARecords 记录集中的 A 记录的列表。 ARecord[]
CNAMERecord 记录集中的 CNAME 记录。 CnameRecord
metadata 附加到记录集的元数据。 object
MXRecords 记录集中 MX 记录的列表。 MxRecord[]
NSRecords 记录集中的 NS 记录列表。 NsRecord[]
PTRRecords 记录集中的 PTR 记录列表。 PtrRecord[]
SOARecord 记录集中的 SOA 记录。 SoaRecord
SRVRecords 记录集中的 SRV 记录列表。 SrvRecord[]
TTL TTL (记录集中记录的生存时间) 。 int
TXTRecords 记录集中 TXT 记录的列表。 TxtRecord[]

AaaaRecord

名称 说明
ipv6Address 此 AAAA 记录的 IPv6 地址。 字符串

ARecord

名称 说明
ipv4Address 此 A 记录的 IPv4 地址。 字符串

CnameRecord

名称 说明
cname 此 CNAME 记录的规范名称。 字符串

MxRecord

名称 说明
交易所 此 MX 记录的邮件主机的域名。 字符串
preference 此 MX 记录的首选项值。 int

NsRecord

名称 说明
nsdname 此 NS 记录的名称服务器名称。 字符串

PtrRecord

名称 说明
ptrdname 此 PTR 记录的 PTR 目标域名。 字符串

SoaRecord

名称 说明
电子邮件 此 SOA 记录的电子邮件联系人。 字符串
expireTime 此 SOA 记录的过期时间。 int
host 此 SOA 记录的权威名称服务器的域名。 字符串
minimumTTL 此 SOA 记录的最小值。 按照约定,这用于确定负缓存持续时间。 int
refreshTime 此 SOA 记录的刷新值。 int
retryTime 此 SOA 记录的重试时间。 int
serialNumber 此 SOA 记录的序列号。 int

SrvRecord

名称 说明
port 此 SRV 记录的端口值。 int
priority 此 SRV 记录的优先级值。 int
目标 此 SRV 记录的目标域名。 字符串
重量 此 SRV 记录的权重值。 int

TxtRecord

名称 说明
value 此 TXT 记录的文本值。 string[]

ARM 模板资源定义

dnsZones/NS 资源类型可以部署到:

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

资源格式

若要创建 Microsoft.Network/dnsZones/NS 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.Network/dnsZones/NS",
  "apiVersion": "2016-04-01",
  "name": "string",
  "etag": "string",
  "properties": {
    "AAAARecords": [
      {
        "ipv6Address": "string"
      }
    ],
    "ARecords": [
      {
        "ipv4Address": "string"
      }
    ],
    "CNAMERecord": {
      "cname": "string"
    },
    "metadata": {},
    "MXRecords": [
      {
        "exchange": "string",
        "preference": "int"
      }
    ],
    "NSRecords": [
      {
        "nsdname": "string"
      }
    ],
    "PTRRecords": [
      {
        "ptrdname": "string"
      }
    ],
    "SOARecord": {
      "email": "string",
      "expireTime": "int",
      "host": "string",
      "minimumTTL": "int",
      "refreshTime": "int",
      "retryTime": "int",
      "serialNumber": "int"
    },
    "SRVRecords": [
      {
        "port": "int",
        "priority": "int",
        "target": "string",
        "weight": "int"
      }
    ],
    "TTL": "int",
    "TXTRecords": [
      {
        "value": [ "string" ]
      }
    ]
  }
}

属性值

dnsZones/NS

名称 说明 Value
type 资源类型 'Microsoft.Network/dnsZones/NS'
apiVersion 资源 API 版本 '2016-04-01'
name 资源名称

了解如何在 JSON ARM 模板中设置子资源的名称和类型。
字符串 (必需)
etag 记录集的 etag。 string
properties 记录集的属性。 RecordSetProperties

RecordSetProperties

名称 说明
AAAARecords 记录集中的 AAAA 记录的列表。 AaaaRecord[]
ARecords 记录集中的 A 记录的列表。 ARecord[]
CNAMERecord 记录集中的 CNAME 记录。 CnameRecord
metadata 附加到记录集的元数据。 object
MXRecords 记录集中 MX 记录的列表。 MxRecord[]
NSRecords 记录集中的 NS 记录列表。 NsRecord[]
PTRRecords 记录集中的 PTR 记录列表。 PtrRecord[]
SOARecord 记录集中的 SOA 记录。 SoaRecord
SRVRecords 记录集中的 SRV 记录列表。 SrvRecord[]
TTL TTL (记录集中记录的生存时间) 。 int
TXTRecords 记录集中 TXT 记录的列表。 TxtRecord[]

AaaaRecord

名称 说明
ipv6Address 此 AAAA 记录的 IPv6 地址。 字符串

ARecord

名称 说明
ipv4Address 此 A 记录的 IPv4 地址。 字符串

CnameRecord

名称 说明
cname 此 CNAME 记录的规范名称。 字符串

MxRecord

名称 说明
交易所 此 MX 记录的邮件主机的域名。 字符串
preference 此 MX 记录的首选项值。 int

NsRecord

名称 说明
nsdname 此 NS 记录的名称服务器名称。 字符串

PtrRecord

名称 说明
ptrdname 此 PTR 记录的 PTR 目标域名。 字符串

SoaRecord

名称 说明
电子邮件 此 SOA 记录的电子邮件联系人。 字符串
expireTime 此 SOA 记录的过期时间。 int
host 此 SOA 记录的权威名称服务器的域名。 字符串
minimumTTL 此 SOA 记录的最小值。 按照约定,这用于确定负缓存持续时间。 int
refreshTime 此 SOA 记录的刷新值。 int
retryTime 此 SOA 记录的重试时间。 int
serialNumber 此 SOA 记录的序列号。 int

SrvRecord

名称 说明
port 此 SRV 记录的端口值。 int
priority 此 SRV 记录的优先级值。 int
目标 此 SRV 记录的目标域名。 字符串
重量 此 SRV 记录的权重值。 int

TxtRecord

名称 说明
value 此 TXT 记录的文本值。 string[]

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

dnsZones/NS 资源类型可以部署到:

  • 资源组

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

资源格式

若要创建 Microsoft.Network/dnsZones/NS 资源,请将以下 Terraform 添加到模板。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/dnsZones/NS@2016-04-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      AAAARecords = [
        {
          ipv6Address = "string"
        }
      ]
      ARecords = [
        {
          ipv4Address = "string"
        }
      ]
      CNAMERecord = {
        cname = "string"
      }
      metadata = {}
      MXRecords = [
        {
          exchange = "string"
          preference = int
        }
      ]
      NSRecords = [
        {
          nsdname = "string"
        }
      ]
      PTRRecords = [
        {
          ptrdname = "string"
        }
      ]
      SOARecord = {
        email = "string"
        expireTime = int
        host = "string"
        minimumTTL = int
        refreshTime = int
        retryTime = int
        serialNumber = int
      }
      SRVRecords = [
        {
          port = int
          priority = int
          target = "string"
          weight = int
        }
      ]
      TTL = int
      TXTRecords = [
        {
          value = [
            "string"
          ]
        }
      ]
    }
    etag = "string"
  })
}

属性值

dnsZones/NS

名称 说明 Value
type 资源类型 “Microsoft.Network/dnsZones/NS@2016-04-01”
name 资源名称 字符串 (必需)
parent_id 此资源的父资源 ID。 类型为:dnsZones 的资源的 ID
etag 记录集的 etag。 string
properties 记录集的属性。 RecordSetProperties

RecordSetProperties

名称 说明
AAAARecords 记录集中的 AAAA 记录的列表。 AaaaRecord[]
ARecords 记录集中的 A 记录的列表。 ARecord[]
CNAMERecord 记录集中的 CNAME 记录。 CnameRecord
metadata 附加到记录集的元数据。 object
MXRecords 记录集中 MX 记录的列表。 MxRecord[]
NSRecords 记录集中的 NS 记录列表。 NsRecord[]
PTRRecords 记录集中的 PTR 记录列表。 PtrRecord[]
SOARecord 记录集中的 SOA 记录。 SoaRecord
SRVRecords 记录集中的 SRV 记录列表。 SrvRecord[]
TTL TTL (记录集中记录的生存时间) 。 int
TXTRecords 记录集中 TXT 记录的列表。 TxtRecord[]

AaaaRecord

名称 说明
ipv6Address 此 AAAA 记录的 IPv6 地址。 字符串

ARecord

名称 说明
ipv4Address 此 A 记录的 IPv4 地址。 字符串

CnameRecord

名称 说明
cname 此 CNAME 记录的规范名称。 字符串

MxRecord

名称 说明
交易所 此 MX 记录的邮件主机的域名。 字符串
preference 此 MX 记录的首选项值。 int

NsRecord

名称 说明
nsdname 此 NS 记录的名称服务器名称。 字符串

PtrRecord

名称 说明
ptrdname 此 PTR 记录的 PTR 目标域名。 字符串

SoaRecord

名称 说明
电子邮件 此 SOA 记录的电子邮件联系人。 字符串
expireTime 此 SOA 记录的过期时间。 int
host 此 SOA 记录的权威名称服务器的域名。 字符串
minimumTTL 此 SOA 记录的最小值。 按照约定,这用于确定负缓存持续时间。 int
refreshTime 此 SOA 记录的刷新值。 int
retryTime 此 SOA 记录的重试时间。 int
serialNumber 此 SOA 记录的序列号。 int

SrvRecord

名称 说明
port 此 SRV 记录的端口值。 int
priority 此 SRV 记录的优先级值。 int
目标 此 SRV 记录的目标域名。 字符串
重量 此 SRV 记录的权重值。 int

TxtRecord

名称 说明
value 此 TXT 记录的文本值。 string[]