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

Remove-AzDnsRecordSet

删除记录集。

语法

Remove-AzDnsRecordSet
      -Name <String>
      -RecordType <RecordType>
      -ZoneName <String>
      -ResourceGroupName <String>
      [-PassThru]
      [-DefaultProfile <IAzureContextContainer>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]
Remove-AzDnsRecordSet
      -Name <String>
      -RecordType <RecordType>
      -Zone <DnsZone>
      [-PassThru]
      [-DefaultProfile <IAzureContextContainer>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]
Remove-AzDnsRecordSet
      -RecordSet <DnsRecordSet>
      [-Overwrite]
      [-PassThru]
      [-DefaultProfile <IAzureContextContainer>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

说明

Remove-AzDnsRecordSet cmdlet 从指定区域中删除指定的记录集。 不能删除在区域顶点自动创建的 SOA 或名称服务器 (NS) 记录。 可以使用管道运算符或参数将 RecordSet 对象传递给此 cmdlet。 若要在不使用 RecordSet 对象的情况下按名称和类型标识记录集,必须使用管道运算符或参数将区域作为 DnsZone 对象传递给此 cmdlet,或者也可以指定 ZoneNameResourceGroupName 参数。 可以使用 Confirm 参数和 $ConfirmPreference Windows PowerShell 变量来控制 cmdlet 是否提示你进行确认。 使用 RecordSet 对象指定记录集时,如果记录集已在 Azure DNS 中更改,则不会删除记录集,因为已检索本地 RecordSet 对象。 这为并发更改提供保护。 可以使用 Overwrite 参数取消此操作,无论并发更改如何,该参数都会删除记录集。

示例

示例 1:删除记录集

$RecordSet = Get-AzDnsRecordSet -Name "www" -ResourceGroupName "MyResourceGroup" -ZoneName "myzone.com"
Remove-AzDnsRecordSet -RecordSet $RecordSet

第一个命令获取指定的记录集,然后将其存储在$RecordSet变量中。第二个命令删除$RecordSet中的记录集。

示例 2:删除记录集并取消所有确认

$RecordSet = Get-AzDnsRecordSet -Name "www" -ZoneName "myzone.com" -ResourceGroupName "MyResourceGroup"
Remove-AzDnsRecordSet -RecordSet $RecordSet -Confirm:$False -Overwrite

# Alternatively, the record set can be removed as follows.  In this case,
# because the record set is specified by name rather than by object, the
# Overwrite parameter is not applicable.

Remove-AzDnsRecordSet -Name "www" -ZoneName "myzone.com" -ResourceGroupName "MyResourceGroup" -Confirm:$False

第一个命令获取指定的记录集。 第二个命令将删除记录集,即使记录集在此期间已更改也是如此。 确认提示将被取消。

参数

-Confirm

在运行 cmdlet 之前,提示你进行确认。

类型:SwitchParameter
别名:cf
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

-DefaultProfile

用于与 azure 通信的凭据、帐户、租户和订阅

类型:IAzureContextContainer
别名:AzContext, AzureRmContext, AzureCredential
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-Name

指定要删除的 RecordSet 的名称。 按名称指定记录集时,必须使用 Zone 参数或 ZoneNameResourceGroupName 参数指定 DNS 区域。 或者,可以使用 RecordSet 对象(使用 RecordSet 参数传递)来指定记录集。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:False
接受通配符:False

-Overwrite

使用 RecordSet 对象指定记录集时,如果记录集已在 Azure DNS 中更改,则不会删除记录集,因为已检索本地 RecordSet 对象。 这为并发更改提供保护。 可以使用 Overwrite 参数取消此操作,无论并发更改如何,都会删除记录集。

类型:SwitchParameter
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-PassThru

passthru

类型:SwitchParameter
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-RecordSet

指定要删除的 RecordSet 对象。 或者,可以使用 名称区域 参数,或使用 名称ZoneNameResourceGroupName 参数指定记录集。

类型:DnsRecordSet
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-RecordType

指定 DNS 记录的类型。 有效值为:

  • 一个
  • AAAA
  • CNAME
  • MX
  • NAPTR
  • NS
  • PTR
  • SRV
  • 删除区域时,TXT SOA 记录会自动删除。 无法手动删除 SOA 记录。
类型:RecordType
接受的值:A, Aaaa, CAA, Cname, MX, NS, PTR, SOA, SRV, TXT, Tlsa, DS, Naptr
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-ResourceGroupName

指定要删除 RecordSet 的 DNS 区域的资源组。 仅当使用 名称ZoneName 参数指定记录集和 DNS 区域时,此参数才适用。 或者,可以使用 RecordSet 参数或 NameZone 参数指定记录集。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-WhatIf

显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。

类型:SwitchParameter
别名:wi
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

-Zone

指定要删除的 RecordSet 的 DNS 区域。 仅当使用 Name 参数指定记录集时,此参数才适用。 或者,可以使用 RecordSet 参数或 NameZoneNameResourceGroupName 参数指定记录集。

类型:DnsZone
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-ZoneName

指定要删除 RecordSet 的区域的名称。 还必须指定 名称ResourceGroupName 参数。 或者,可以使用 RecordSet 参数或 名称区域 参数指定记录集。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

输入

RecordType

String

DnsZone

DnsRecordSet

输出

Boolean

备注

可以使用 Confirm 参数来控制此 cmdlet 是否提示你进行确认。 默认情况下,如果 $ConfirmPreference Windows PowerShell 变量的值为“中”或“较低”,cmdlet 会提示你进行确认。 如果指定 确认Confirm:$True,则此 cmdlet 会在运行之前提示你进行确认。 如果指定 Confirm:$False,则 cmdlet 不会提示你进行确认。