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

用于 Python 的 Azure DNS 库

概述

Azure DNS 是 DNS 域的托管服务,它通过 Azure 基础结构提供 DNS 解析。

若要开始使用 Azure DNS,请参阅通过 Azure 门户开始使用 Azure DNS

管理 API

pip install azure-mgmt-dns

创建管理客户端

以下代码创建管理客户端的实例。

需要提供 subscription_id 可从 订阅列表中检索的 。

有关使用 Python SDK 处理 Azure Active Directory 身份验证以及创建 Credentials 实例的详细信息,请参阅资源管理身份验证

from azure.mgmt.dns import DnsManagementClient
from azure.common.credentials import UserPassCredentials

# Replace this with your subscription id
subscription_id = '33333333-3333-3333-3333-333333333333'

# See above for details on creating different types of AAD credentials
credentials = UserPassCredentials(
	'user@domain.com',  # Your user
	'my_password',      # Your password
)

dns_client = DnsManagementClient(
	credentials,
	subscription_id
)

创建 DNS 区域

# The only valid value is 'global', otherwise you will get a:
# The subscription is not registered for the resource type 'dnszones' in the location 'westus'.
zone = dns_client.zones.create_or_update(
	'MyResourceGroup',
	'pydns.com',
	{
	        'zone_type': 'Public', # or Private
		'location': 'global'
	}
)

创建记录集

record_set = dns_client.record_sets.create_or_update(
	'MyResourceGroup',
	'pydns.com',
	'MyRecordSet',
	'A',
	{
			"ttl": 300,
			"arecords": [
				{
				"ipv4_address": "1.2.3.4"
				},
				{
				"ipv4_address": "1.2.3.5"
				}
			]
	}
)