你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzDnsRecordSet
获取 DNS 记录集。
语法
Get-AzDnsRecordSet
[-Name <String>]
-ZoneName <String>
-ResourceGroupName <String>
[-RecordType <RecordType>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzDnsRecordSet
[-Name <String>]
-Zone <DnsZone>
[-RecordType <RecordType>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzDnsRecordSet cmdlet 获取指定区域中具有指定名称和类型的域名系统(DNS)记录集。 如果未指定 Name 或 RecordType 参数,此 cmdlet 将返回区域中指定类型的所有记录集。 如果指定 RecordType 参数,但不指定 Name 参数,则此 cmdlet 将返回指定记录类型的所有记录集。 可以使用管道运算符将 DnsZone 对象传递给此 cmdlet,也可以将 DnsZone 对象作为 Zone 参数传递,或者也可以按名称指定区域和资源组。
示例
示例 1:获取具有指定名称和类型的记录集
$RecordSet = Get-AzDnsRecordSet -ResourceGroupName "MyResourceGroup" -ZoneName "myzone.com" -Name "www" -RecordType A
此命令获取指定资源组和区域中名为 www 的记录类型的记录集,然后将其存储在$RecordSet变量中。 由于指定了 Name 和 RecordType 参数,因此只返回一个 RecordSet 对象。
示例 2:获取指定类型的记录集
$RecordSets = Get-AzDnsRecordSet -ResourceGroupName "MyResourceGroup" -ZoneName "myzone.com" -RecordType A
此命令获取名为 MyResourceGroup 的资源组中名为 myzone.com 的区域中所有记录类型 A 的记录集的数组,然后将其存储在$RecordSets变量中。
示例 3:获取区域中的所有记录集
$RecordSets = Get-AzDnsRecordSet -ResourceGroupName "MyResourceGroup" -ZoneName "myzone.com"
此命令获取名为 MyResourceGroup 的资源组中名为 myzone.com 的区域中的所有记录集的数组,然后将这些记录集存储在$RecordSets变量中。
示例 4:使用 DnsZone 对象获取区域中的所有记录集
$Zone = Get-AzDnsZone -Name "myzone.com" -ResourceGroupName "MyResourceGroup"
$RecordSets = Get-AzDnsRecordSet -Zone $Zone
此示例等效于上面的示例 3。 这一次,区域是使用区域对象指定的。
参数
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定要获取的 RecordSet 的名称。 如果未指定 Name 参数,则返回指定类型的所有记录集。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-RecordType
指定此 cmdlet 获取的 DNS 记录的类型。 有效值为:
- 一个
- AAAA
- CNAME
- MX
- NAPTR
- NS
- PTR
- SOA
- SRV
- TXT 如果未指定 RecordType 参数,则还必须省略 Name 参数。 然后,此 cmdlet 返回区域中的所有记录集(所有名称和类型)。
类型: | Nullable<T>[RecordType] |
接受的值: | A, Aaaa, CAA, Cname, MX, NS, PTR, SOA, SRV, TXT, Tlsa, DS, Naptr |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定包含 DNS 区域的资源组。 还必须使用 ZoneName 参数指定区域名称。 或者,可以使用 Zone 参数传入 DnsZone 对象来指定区域和资源组。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Zone
指定包含此 cmdlet 获取的记录集的 DNS 区域。 或者,可以使用 ZoneName 和 ResourceGroupName 参数指定区域。
类型: | DnsZone |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ZoneName
指定要获取的记录集的 DNS 区域的名称。 还必须使用 ResourceGroupName 参数指定包含区域的资源组。 或者,可以使用 Zone 参数传入 DNS 区域对象来指定区域和资源组。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
Nullable<T>[[Microsoft.Azure.Management.Dns.Models.RecordType, Microsoft.Azure.Management.Dns, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]