From 3b335a19141bd70194d372547cc79494ee46ce7e Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 05:22:09 +0500 Subject: [PATCH 01/11] Adding CLI extension for Private DNS Public Preview. --- .github/CODEOWNERS | 4 +- src/dns/azext_dns/__init__.py | 30 + src/dns/azext_dns/_client_factory.py | 10 + src/dns/azext_dns/_help.py | 48 + src/dns/azext_dns/_params.py | 27 + src/dns/azext_dns/_validators.py | 42 + src/dns/azext_dns/commands.py | 18 + src/dns/azext_dns/custom.py | 43 + src/dns/azext_dns/dns/__init__.py | 18 + .../azext_dns/dns/dns_management_client.py | 88 + src/dns/azext_dns/dns/models/__init__.py | 56 + src/dns/azext_dns/dns/models/aaaa_record.py | 28 + src/dns/azext_dns/dns/models/arecord.py | 28 + src/dns/azext_dns/dns/models/caa_record.py | 37 + src/dns/azext_dns/dns/models/cname_record.py | 28 + .../dns/models/dns_management_client_enums.py | 32 + src/dns/azext_dns/dns/models/mx_record.py | 32 + src/dns/azext_dns/dns/models/ns_record.py | 28 + src/dns/azext_dns/dns/models/ptr_record.py | 28 + src/dns/azext_dns/dns/models/record_set.py | 103 + .../azext_dns/dns/models/record_set_paged.py | 27 + .../models/record_set_update_parameters.py | 29 + src/dns/azext_dns/dns/models/resource.py | 54 + src/dns/azext_dns/dns/models/soa_record.py | 54 + src/dns/azext_dns/dns/models/srv_record.py | 40 + src/dns/azext_dns/dns/models/sub_resource.py | 28 + src/dns/azext_dns/dns/models/txt_record.py | 28 + src/dns/azext_dns/dns/models/zone.py | 92 + src/dns/azext_dns/dns/models/zone_paged.py | 27 + src/dns/azext_dns/dns/models/zone_update.py | 28 + src/dns/azext_dns/dns/operations/__init__.py | 18 + .../dns/operations/record_sets_operations.py | 616 ++ .../dns/operations/zones_operations.py | 515 + src/dns/azext_dns/dns/version.py | 13 + src/dns/azext_dns/tests/__init__.py | 4 + src/dns/azext_dns/tests/latest/__init__.py | 4 + .../tests/latest/recordings/test_dns.yaml | 8703 ++++++++++++++++ .../latest/recordings/test_private_dns.yaml | 9232 +++++++++++++++++ .../tests/latest/test_dns_commands.py | 171 + src/dns/setup.cfg | 2 + src/dns/setup.py | 40 + src/index.json | 45 + 42 files changed, 20497 insertions(+), 1 deletion(-) create mode 100644 src/dns/azext_dns/__init__.py create mode 100644 src/dns/azext_dns/_client_factory.py create mode 100644 src/dns/azext_dns/_help.py create mode 100644 src/dns/azext_dns/_params.py create mode 100644 src/dns/azext_dns/_validators.py create mode 100644 src/dns/azext_dns/commands.py create mode 100644 src/dns/azext_dns/custom.py create mode 100644 src/dns/azext_dns/dns/__init__.py create mode 100644 src/dns/azext_dns/dns/dns_management_client.py create mode 100644 src/dns/azext_dns/dns/models/__init__.py create mode 100644 src/dns/azext_dns/dns/models/aaaa_record.py create mode 100644 src/dns/azext_dns/dns/models/arecord.py create mode 100644 src/dns/azext_dns/dns/models/caa_record.py create mode 100644 src/dns/azext_dns/dns/models/cname_record.py create mode 100644 src/dns/azext_dns/dns/models/dns_management_client_enums.py create mode 100644 src/dns/azext_dns/dns/models/mx_record.py create mode 100644 src/dns/azext_dns/dns/models/ns_record.py create mode 100644 src/dns/azext_dns/dns/models/ptr_record.py create mode 100644 src/dns/azext_dns/dns/models/record_set.py create mode 100644 src/dns/azext_dns/dns/models/record_set_paged.py create mode 100644 src/dns/azext_dns/dns/models/record_set_update_parameters.py create mode 100644 src/dns/azext_dns/dns/models/resource.py create mode 100644 src/dns/azext_dns/dns/models/soa_record.py create mode 100644 src/dns/azext_dns/dns/models/srv_record.py create mode 100644 src/dns/azext_dns/dns/models/sub_resource.py create mode 100644 src/dns/azext_dns/dns/models/txt_record.py create mode 100644 src/dns/azext_dns/dns/models/zone.py create mode 100644 src/dns/azext_dns/dns/models/zone_paged.py create mode 100644 src/dns/azext_dns/dns/models/zone_update.py create mode 100644 src/dns/azext_dns/dns/operations/__init__.py create mode 100644 src/dns/azext_dns/dns/operations/record_sets_operations.py create mode 100644 src/dns/azext_dns/dns/operations/zones_operations.py create mode 100644 src/dns/azext_dns/dns/version.py create mode 100644 src/dns/azext_dns/tests/__init__.py create mode 100644 src/dns/azext_dns/tests/latest/__init__.py create mode 100644 src/dns/azext_dns/tests/latest/recordings/test_dns.yaml create mode 100644 src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml create mode 100644 src/dns/azext_dns/tests/latest/test_dns_commands.py create mode 100644 src/dns/setup.cfg create mode 100644 src/dns/setup.py diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index fffbddb3278..dcac48ffb9d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -20,4 +20,6 @@ /src/alias/ @chewong @troydai -/src/managementpartner/ @jeffrey-ace \ No newline at end of file +/src/managementpartner/ @jeffrey-ace + +/src/dns/ @muwaqar \ No newline at end of file diff --git a/src/dns/azext_dns/__init__.py b/src/dns/azext_dns/__init__.py new file mode 100644 index 00000000000..45d6f98070d --- /dev/null +++ b/src/dns/azext_dns/__init__.py @@ -0,0 +1,30 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core import AzCommandsLoader +from azure.cli.core.profiles import ResourceType +from ._help import helps # pylint: disable=unused-import + + +class DnsCommandsLoader(AzCommandsLoader): + + def __init__(self, cli_ctx=None): + from azure.cli.core.commands import CliCommandType + dns_custom = CliCommandType(operations_tmpl='azext_dns.custom#{}') + super(DnsCommandsLoader, self).__init__(cli_ctx=cli_ctx, + resource_type=ResourceType.MGMT_NETWORK, + custom_command_type=dns_custom) + + def load_command_table(self, args): + from .commands import load_command_table + load_command_table(self, args) + return self.command_table + + def load_arguments(self, command): + from ._params import load_arguments + load_arguments(self, command) + + +COMMAND_LOADER_CLS = DnsCommandsLoader diff --git a/src/dns/azext_dns/_client_factory.py b/src/dns/azext_dns/_client_factory.py new file mode 100644 index 00000000000..8d107e24924 --- /dev/null +++ b/src/dns/azext_dns/_client_factory.py @@ -0,0 +1,10 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + + +def cf_dns_mgmt_zones(cli_ctx, _): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azext_dns.dns.dns_management_client import DnsManagementClient + return get_mgmt_service_client(cli_ctx, DnsManagementClient).zones diff --git a/src/dns/azext_dns/_help.py b/src/dns/azext_dns/_help.py new file mode 100644 index 00000000000..566bcb3b4f4 --- /dev/null +++ b/src/dns/azext_dns/_help.py @@ -0,0 +1,48 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from knack.help_files import helps + +# pylint: disable=line-too-long, too-many-lines + +helps['network dns'] = """ + type: group + short-summary: Manage DNS domains in Azure. +""" + +helps['network dns zone'] = """ + type: group + short-summary: Manage DNS zones. +""" + +helps['network dns zone create'] = """ + type: command + short-summary: Create a DNS zone. + parameters: + - name: --if-none-match + short-summary: Only create a DNS zone if one doesn't exist that matches the given name. + - name: --zone-type + short-summary: Type of the zone to be created. Valid values are 'Public' and 'Private'. + - name: --registration-vnets + short-summary: Space-separated names or IDs of virtual networks that register hostnames in this DNS zone. Only applies to 'Private' zones. + - name: --resolution-vnets + short-summary: Space-separated names or IDs of virtual networks that resolve records in this DNS zone. Only applies to 'Private' zones. + examples: + - name: Create a DNS zone using a fully qualified domain name. + text: > + az network dns zone create -g MyResourceGroup -n www.mysite.com +""" + +helps['network dns zone update'] = """ + type: command + short-summary: Update a DNS zone's properties. Does not modify DNS records within the zone. + parameters: + - name: --if-match + short-summary: Update only if the resource with the same ETAG exists. + - name: --registration-vnets + short-summary: Space-separated names or IDs of virtual networks that register hostnames in this DNS zone. Only applies to 'Private' zones. + - name: --resolution-vnets + short-summary: Space-separated names or IDs of virtual networks that resolve records in this DNS zone. Only applies to 'Private' zones. +""" \ No newline at end of file diff --git a/src/dns/azext_dns/_params.py b/src/dns/azext_dns/_params.py new file mode 100644 index 00000000000..155ad551311 --- /dev/null +++ b/src/dns/azext_dns/_params.py @@ -0,0 +1,27 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.commands.parameters import get_enum_type +from azext_dns.dns.models import ZoneType +from knack.arguments import CLIArgumentType + +from azext_dns._validators import (dns_zone_name_type, validate_metadata, get_vnet_validator) + +def load_arguments(self, _): + name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME') + + with self.argument_context('network dns') as c: + c.argument('record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.') + c.argument('relative_record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.') + c.argument('zone_name', options_list=('--zone-name', '-z'), help='The name of the zone.', type=dns_zone_name_type) + c.argument('metadata', nargs='+', help='Metadata in space-separated key=value pairs. This overwrites any existing metadata.', validator=validate_metadata) + + with self.argument_context('network dns zone') as c: + c.argument('zone_name', name_arg_type) + c.ignore('location') + + c.argument('zone_type', help='Type of DNS zone to create.', arg_type=get_enum_type(ZoneType)) + c.argument('registration_vnets', arg_group='Private Zone', nargs='+', help='Space-separated names or IDs of virtual networks that register hostnames in this DNS zone.', validator=get_vnet_validator('registration_vnets')) + c.argument('resolution_vnets', arg_group='Private Zone', nargs='+', help='Space-separated names or IDs of virtual networks that resolve records in this DNS zone.', validator=get_vnet_validator('resolution_vnets')) \ No newline at end of file diff --git a/src/dns/azext_dns/_validators.py b/src/dns/azext_dns/_validators.py new file mode 100644 index 00000000000..194b4e1e728 --- /dev/null +++ b/src/dns/azext_dns/_validators.py @@ -0,0 +1,42 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.commands.client_factory import get_subscription_id + +# pylint: disable=inconsistent-return-statements +def dns_zone_name_type(value): + if value: + return value[:-1] if value[-1] == '.' else value + +def validate_metadata(namespace): + if namespace.metadata: + namespace.metadata = dict(x.split('=', 1) for x in namespace.metadata) + +def get_vnet_validator(dest): + from msrestazure.tools import is_valid_resource_id, resource_id + + def _validate_vnet_name_or_id(cmd, namespace): + SubResource = cmd.get_models('SubResource') + subscription_id = get_subscription_id(cmd.cli_ctx) + + resource_group = namespace.resource_group_name + names_or_ids = getattr(namespace, dest) + ids = [] + + if names_or_ids == [""] or not names_or_ids: + return + + for val in names_or_ids: + if not is_valid_resource_id(val): + val = resource_id( + subscription=subscription_id, + resource_group=resource_group, + namespace='Microsoft.Network', type='virtualNetworks', + name=val + ) + ids.append(SubResource(id=val)) + setattr(namespace, dest, ids) + + return _validate_vnet_name_or_id \ No newline at end of file diff --git a/src/dns/azext_dns/commands.py b/src/dns/azext_dns/commands.py new file mode 100644 index 00000000000..0d54e92a41c --- /dev/null +++ b/src/dns/azext_dns/commands.py @@ -0,0 +1,18 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.commands import CliCommandType +from azext_dns._client_factory import (cf_dns_mgmt_zones) + +def load_command_table(self, _): + + network_dns_zone_sdk = CliCommandType( + operations_tmpl='azext_dns.dns.operations.zones_operations#ZonesOperations.{}', + client_factory=cf_dns_mgmt_zones + ) + + with self.command_group('network dns zone', network_dns_zone_sdk) as g: + g.custom_command('create', 'create_dns_zone', client_factory=cf_dns_mgmt_zones) + g.generic_update_command('update', custom_func_name='update_dns_zone') \ No newline at end of file diff --git a/src/dns/azext_dns/custom.py b/src/dns/azext_dns/custom.py new file mode 100644 index 00000000000..c85b0056799 --- /dev/null +++ b/src/dns/azext_dns/custom.py @@ -0,0 +1,43 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import print_function +from knack.log import get_logger +from azext_dns.dns.models import (Zone) + +logger = get_logger(__name__) + + +def create_dns_zone(client, resource_group_name, zone_name, location='global', tags=None, + if_none_match=False, zone_type='Public', resolution_vnets=None, registration_vnets=None): + zone = Zone(location=location, tags=tags) + + if hasattr(zone, 'zone_type'): + zone.zone_type = zone_type + zone.registration_virtual_networks = registration_vnets + zone.resolution_virtual_networks = resolution_vnets + + return client.create_or_update(resource_group_name, zone_name, zone, if_none_match='*' if if_none_match else None) + + +def update_dns_zone(instance, tags=None, zone_type=None, resolution_vnets=None, registration_vnets=None): + + if tags is not None: + instance.tags = tags + + if zone_type: + instance.zone_type = zone_type + + if resolution_vnets == ['']: + instance.resolution_virtual_networks = None + elif resolution_vnets: + instance.resolution_virtual_networks = resolution_vnets + + if registration_vnets == ['']: + instance.registration_virtual_networks = None + elif registration_vnets: + instance.registration_virtual_networks = registration_vnets + + return instance diff --git a/src/dns/azext_dns/dns/__init__.py b/src/dns/azext_dns/dns/__init__.py new file mode 100644 index 00000000000..07ed3e0ff7e --- /dev/null +++ b/src/dns/azext_dns/dns/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .dns_management_client import DnsManagementClient +from .version import VERSION + +__all__ = ['DnsManagementClient'] + +__version__ = VERSION + diff --git a/src/dns/azext_dns/dns/dns_management_client.py b/src/dns/azext_dns/dns/dns_management_client.py new file mode 100644 index 00000000000..e058dc4f77f --- /dev/null +++ b/src/dns/azext_dns/dns/dns_management_client.py @@ -0,0 +1,88 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.service_client import ServiceClient +from msrest import Serializer, Deserializer +from msrestazure import AzureConfiguration +from .version import VERSION +from .operations.record_sets_operations import RecordSetsOperations +from .operations.zones_operations import ZonesOperations +from . import models + + +class DnsManagementClientConfiguration(AzureConfiguration): + """Configuration for DnsManagementClient + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credentials: Credentials needed for the client to connect to Azure. + :type credentials: :mod:`A msrestazure Credentials + object` + :param subscription_id: Specifies the Azure subscription ID, which + uniquely identifies the Microsoft Azure subscription. + :type subscription_id: str + :param str base_url: Service URL + """ + + def __init__( + self, credentials, subscription_id, base_url=None): + + if credentials is None: + raise ValueError("Parameter 'credentials' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + if not base_url: + base_url = 'https://management.azure.com' + + super(DnsManagementClientConfiguration, self).__init__(base_url) + + self.add_user_agent('azure-mgmt-dns/{}'.format(VERSION)) + self.add_user_agent('Azure-SDK-For-Python') + + self.credentials = credentials + self.subscription_id = subscription_id + + +class DnsManagementClient(object): + """The DNS Management Client. + + :ivar config: Configuration for client. + :vartype config: DnsManagementClientConfiguration + + :ivar record_sets: RecordSets operations + :vartype record_sets: azure.mgmt.dns.operations.RecordSetsOperations + :ivar zones: Zones operations + :vartype zones: azure.mgmt.dns.operations.ZonesOperations + + :param credentials: Credentials needed for the client to connect to Azure. + :type credentials: :mod:`A msrestazure Credentials + object` + :param subscription_id: Specifies the Azure subscription ID, which + uniquely identifies the Microsoft Azure subscription. + :type subscription_id: str + :param str base_url: Service URL + """ + + def __init__( + self, credentials, subscription_id, base_url=None): + + self.config = DnsManagementClientConfiguration(credentials, subscription_id, base_url) + self._client = ServiceClient(self.config.credentials, self.config) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self.api_version = '2018-03-01-preview' + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + + self.record_sets = RecordSetsOperations( + self._client, self.config, self._serialize, self._deserialize) + self.zones = ZonesOperations( + self._client, self.config, self._serialize, self._deserialize) diff --git a/src/dns/azext_dns/dns/models/__init__.py b/src/dns/azext_dns/dns/models/__init__.py new file mode 100644 index 00000000000..43d1fc22007 --- /dev/null +++ b/src/dns/azext_dns/dns/models/__init__.py @@ -0,0 +1,56 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .arecord import ARecord +from .aaaa_record import AaaaRecord +from .mx_record import MxRecord +from .ns_record import NsRecord +from .ptr_record import PtrRecord +from .srv_record import SrvRecord +from .txt_record import TxtRecord +from .cname_record import CnameRecord +from .soa_record import SoaRecord +from .caa_record import CaaRecord +from .record_set import RecordSet +from .record_set_update_parameters import RecordSetUpdateParameters +from .sub_resource import SubResource +from .zone import Zone +from .zone_update import ZoneUpdate +from .resource import Resource +from .record_set_paged import RecordSetPaged +from .zone_paged import ZonePaged +from .dns_management_client_enums import ( + ZoneType, + RecordType, +) + +__all__ = [ + 'ARecord', + 'AaaaRecord', + 'MxRecord', + 'NsRecord', + 'PtrRecord', + 'SrvRecord', + 'TxtRecord', + 'CnameRecord', + 'SoaRecord', + 'CaaRecord', + 'RecordSet', + 'RecordSetUpdateParameters', + 'SubResource', + 'Zone', + 'ZoneUpdate', + 'Resource', + 'RecordSetPaged', + 'ZonePaged', + 'ZoneType', + 'RecordType', +] diff --git a/src/dns/azext_dns/dns/models/aaaa_record.py b/src/dns/azext_dns/dns/models/aaaa_record.py new file mode 100644 index 00000000000..69167abed96 --- /dev/null +++ b/src/dns/azext_dns/dns/models/aaaa_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class AaaaRecord(Model): + """An AAAA record. + + :param ipv6_address: The IPv6 address of this AAAA record. + :type ipv6_address: str + """ + + _attribute_map = { + 'ipv6_address': {'key': 'ipv6Address', 'type': 'str'}, + } + + def __init__(self, ipv6_address=None): + super(AaaaRecord, self).__init__() + self.ipv6_address = ipv6_address diff --git a/src/dns/azext_dns/dns/models/arecord.py b/src/dns/azext_dns/dns/models/arecord.py new file mode 100644 index 00000000000..430dd1b8cbf --- /dev/null +++ b/src/dns/azext_dns/dns/models/arecord.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ARecord(Model): + """An A record. + + :param ipv4_address: The IPv4 address of this A record. + :type ipv4_address: str + """ + + _attribute_map = { + 'ipv4_address': {'key': 'ipv4Address', 'type': 'str'}, + } + + def __init__(self, ipv4_address=None): + super(ARecord, self).__init__() + self.ipv4_address = ipv4_address diff --git a/src/dns/azext_dns/dns/models/caa_record.py b/src/dns/azext_dns/dns/models/caa_record.py new file mode 100644 index 00000000000..2115ebba386 --- /dev/null +++ b/src/dns/azext_dns/dns/models/caa_record.py @@ -0,0 +1,37 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class CaaRecord(Model): + """A CAA record. + + :param flags: The flags for this CAA record as an integer between 0 and + 255. + :type flags: int + :param tag: The tag for this CAA record. + :type tag: str + :param value: The value for this CAA record. + :type value: str + """ + + _attribute_map = { + 'flags': {'key': 'flags', 'type': 'int'}, + 'tag': {'key': 'tag', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__(self, flags=None, tag=None, value=None): + super(CaaRecord, self).__init__() + self.flags = flags + self.tag = tag + self.value = value diff --git a/src/dns/azext_dns/dns/models/cname_record.py b/src/dns/azext_dns/dns/models/cname_record.py new file mode 100644 index 00000000000..ddabfad1421 --- /dev/null +++ b/src/dns/azext_dns/dns/models/cname_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class CnameRecord(Model): + """A CNAME record. + + :param cname: The canonical name for this CNAME record. + :type cname: str + """ + + _attribute_map = { + 'cname': {'key': 'cname', 'type': 'str'}, + } + + def __init__(self, cname=None): + super(CnameRecord, self).__init__() + self.cname = cname diff --git a/src/dns/azext_dns/dns/models/dns_management_client_enums.py b/src/dns/azext_dns/dns/models/dns_management_client_enums.py new file mode 100644 index 00000000000..890749d4c90 --- /dev/null +++ b/src/dns/azext_dns/dns/models/dns_management_client_enums.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from enum import Enum + + +class ZoneType(Enum): + + public = "Public" + private = "Private" + + +class RecordType(Enum): + + a = "A" + aaaa = "AAAA" + caa = "CAA" + cname = "CNAME" + mx = "MX" + ns = "NS" + ptr = "PTR" + soa = "SOA" + srv = "SRV" + txt = "TXT" diff --git a/src/dns/azext_dns/dns/models/mx_record.py b/src/dns/azext_dns/dns/models/mx_record.py new file mode 100644 index 00000000000..6484a057c79 --- /dev/null +++ b/src/dns/azext_dns/dns/models/mx_record.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class MxRecord(Model): + """An MX record. + + :param preference: The preference value for this MX record. + :type preference: int + :param exchange: The domain name of the mail host for this MX record. + :type exchange: str + """ + + _attribute_map = { + 'preference': {'key': 'preference', 'type': 'int'}, + 'exchange': {'key': 'exchange', 'type': 'str'}, + } + + def __init__(self, preference=None, exchange=None): + super(MxRecord, self).__init__() + self.preference = preference + self.exchange = exchange diff --git a/src/dns/azext_dns/dns/models/ns_record.py b/src/dns/azext_dns/dns/models/ns_record.py new file mode 100644 index 00000000000..ccfa7d0ab80 --- /dev/null +++ b/src/dns/azext_dns/dns/models/ns_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class NsRecord(Model): + """An NS record. + + :param nsdname: The name server name for this NS record. + :type nsdname: str + """ + + _attribute_map = { + 'nsdname': {'key': 'nsdname', 'type': 'str'}, + } + + def __init__(self, nsdname=None): + super(NsRecord, self).__init__() + self.nsdname = nsdname diff --git a/src/dns/azext_dns/dns/models/ptr_record.py b/src/dns/azext_dns/dns/models/ptr_record.py new file mode 100644 index 00000000000..ea940466978 --- /dev/null +++ b/src/dns/azext_dns/dns/models/ptr_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class PtrRecord(Model): + """A PTR record. + + :param ptrdname: The PTR target domain name for this PTR record. + :type ptrdname: str + """ + + _attribute_map = { + 'ptrdname': {'key': 'ptrdname', 'type': 'str'}, + } + + def __init__(self, ptrdname=None): + super(PtrRecord, self).__init__() + self.ptrdname = ptrdname diff --git a/src/dns/azext_dns/dns/models/record_set.py b/src/dns/azext_dns/dns/models/record_set.py new file mode 100644 index 00000000000..f29c5f5bf8f --- /dev/null +++ b/src/dns/azext_dns/dns/models/record_set.py @@ -0,0 +1,103 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class RecordSet(Model): + """Describes a DNS record set (a collection of DNS records with the same name + and type). + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: The ID of the record set. + :vartype id: str + :ivar name: The name of the record set. + :vartype name: str + :ivar type: The type of the record set. + :vartype type: str + :param etag: The etag of the record set. + :type etag: str + :param metadata: The metadata attached to the record set. + :type metadata: dict[str, str] + :param ttl: The TTL (time-to-live) of the records in the record set. + :type ttl: long + :ivar fqdn: Fully qualified domain name of the record set. + :vartype fqdn: str + :param arecords: The list of A records in the record set. + :type arecords: list[~azure.mgmt.dns.models.ARecord] + :param aaaa_records: The list of AAAA records in the record set. + :type aaaa_records: list[~azure.mgmt.dns.models.AaaaRecord] + :param mx_records: The list of MX records in the record set. + :type mx_records: list[~azure.mgmt.dns.models.MxRecord] + :param ns_records: The list of NS records in the record set. + :type ns_records: list[~azure.mgmt.dns.models.NsRecord] + :param ptr_records: The list of PTR records in the record set. + :type ptr_records: list[~azure.mgmt.dns.models.PtrRecord] + :param srv_records: The list of SRV records in the record set. + :type srv_records: list[~azure.mgmt.dns.models.SrvRecord] + :param txt_records: The list of TXT records in the record set. + :type txt_records: list[~azure.mgmt.dns.models.TxtRecord] + :param cname_record: The CNAME record in the record set. + :type cname_record: ~azure.mgmt.dns.models.CnameRecord + :param soa_record: The SOA record in the record set. + :type soa_record: ~azure.mgmt.dns.models.SoaRecord + :param caa_records: The list of CAA records in the record set. + :type caa_records: list[~azure.mgmt.dns.models.CaaRecord] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'fqdn': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'metadata': {'key': 'properties.metadata', 'type': '{str}'}, + 'ttl': {'key': 'properties.TTL', 'type': 'long'}, + 'fqdn': {'key': 'properties.fqdn', 'type': 'str'}, + 'arecords': {'key': 'properties.ARecords', 'type': '[ARecord]'}, + 'aaaa_records': {'key': 'properties.AAAARecords', 'type': '[AaaaRecord]'}, + 'mx_records': {'key': 'properties.MXRecords', 'type': '[MxRecord]'}, + 'ns_records': {'key': 'properties.NSRecords', 'type': '[NsRecord]'}, + 'ptr_records': {'key': 'properties.PTRRecords', 'type': '[PtrRecord]'}, + 'srv_records': {'key': 'properties.SRVRecords', 'type': '[SrvRecord]'}, + 'txt_records': {'key': 'properties.TXTRecords', 'type': '[TxtRecord]'}, + 'cname_record': {'key': 'properties.CNAMERecord', 'type': 'CnameRecord'}, + 'soa_record': {'key': 'properties.SOARecord', 'type': 'SoaRecord'}, + 'caa_records': {'key': 'properties.caaRecords', 'type': '[CaaRecord]'}, + } + + def __init__(self, etag=None, metadata=None, ttl=None, arecords=None, aaaa_records=None, mx_records=None, ns_records=None, ptr_records=None, srv_records=None, txt_records=None, cname_record=None, soa_record=None, caa_records=None): + super(RecordSet, self).__init__() + self.id = None + self.name = None + self.type = None + self.etag = etag + self.metadata = metadata + self.ttl = ttl + self.fqdn = None + self.arecords = arecords + self.aaaa_records = aaaa_records + self.mx_records = mx_records + self.ns_records = ns_records + self.ptr_records = ptr_records + self.srv_records = srv_records + self.txt_records = txt_records + self.cname_record = cname_record + self.soa_record = soa_record + self.caa_records = caa_records diff --git a/src/dns/azext_dns/dns/models/record_set_paged.py b/src/dns/azext_dns/dns/models/record_set_paged.py new file mode 100644 index 00000000000..a4ba99f0e82 --- /dev/null +++ b/src/dns/azext_dns/dns/models/record_set_paged.py @@ -0,0 +1,27 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.paging import Paged + + +class RecordSetPaged(Paged): + """ + A paging container for iterating over a list of :class:`RecordSet ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[RecordSet]'} + } + + def __init__(self, *args, **kwargs): + + super(RecordSetPaged, self).__init__(*args, **kwargs) diff --git a/src/dns/azext_dns/dns/models/record_set_update_parameters.py b/src/dns/azext_dns/dns/models/record_set_update_parameters.py new file mode 100644 index 00000000000..7cefe40b9e3 --- /dev/null +++ b/src/dns/azext_dns/dns/models/record_set_update_parameters.py @@ -0,0 +1,29 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class RecordSetUpdateParameters(Model): + """Parameters supplied to update a record set. + + :param record_set: Specifies information about the record set being + updated. + :type record_set: ~azure.mgmt.dns.models.RecordSet + """ + + _attribute_map = { + 'record_set': {'key': 'RecordSet', 'type': 'RecordSet'}, + } + + def __init__(self, record_set=None): + super(RecordSetUpdateParameters, self).__init__() + self.record_set = record_set diff --git a/src/dns/azext_dns/dns/models/resource.py b/src/dns/azext_dns/dns/models/resource.py new file mode 100644 index 00000000000..6e436130699 --- /dev/null +++ b/src/dns/azext_dns/dns/models/resource.py @@ -0,0 +1,54 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class Resource(Model): + """Common properties of an Azure Resource Manager resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :param location: Resource location. + :type location: str + :param tags: Resource tags. + :type tags: dict[str, str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__(self, location, tags=None): + super(Resource, self).__init__() + self.id = None + self.name = None + self.type = None + self.location = location + self.tags = tags diff --git a/src/dns/azext_dns/dns/models/soa_record.py b/src/dns/azext_dns/dns/models/soa_record.py new file mode 100644 index 00000000000..e96c7ac113b --- /dev/null +++ b/src/dns/azext_dns/dns/models/soa_record.py @@ -0,0 +1,54 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SoaRecord(Model): + """An SOA record. + + :param host: The domain name of the authoritative name server for this SOA + record. + :type host: str + :param email: The email contact for this SOA record. + :type email: str + :param serial_number: The serial number for this SOA record. + :type serial_number: long + :param refresh_time: The refresh value for this SOA record. + :type refresh_time: long + :param retry_time: The retry time for this SOA record. + :type retry_time: long + :param expire_time: The expire time for this SOA record. + :type expire_time: long + :param minimum_ttl: The minimum value for this SOA record. By convention + this is used to determine the negative caching duration. + :type minimum_ttl: long + """ + + _attribute_map = { + 'host': {'key': 'host', 'type': 'str'}, + 'email': {'key': 'email', 'type': 'str'}, + 'serial_number': {'key': 'serialNumber', 'type': 'long'}, + 'refresh_time': {'key': 'refreshTime', 'type': 'long'}, + 'retry_time': {'key': 'retryTime', 'type': 'long'}, + 'expire_time': {'key': 'expireTime', 'type': 'long'}, + 'minimum_ttl': {'key': 'minimumTTL', 'type': 'long'}, + } + + def __init__(self, host=None, email=None, serial_number=None, refresh_time=None, retry_time=None, expire_time=None, minimum_ttl=None): + super(SoaRecord, self).__init__() + self.host = host + self.email = email + self.serial_number = serial_number + self.refresh_time = refresh_time + self.retry_time = retry_time + self.expire_time = expire_time + self.minimum_ttl = minimum_ttl diff --git a/src/dns/azext_dns/dns/models/srv_record.py b/src/dns/azext_dns/dns/models/srv_record.py new file mode 100644 index 00000000000..5ed7d4b25f8 --- /dev/null +++ b/src/dns/azext_dns/dns/models/srv_record.py @@ -0,0 +1,40 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SrvRecord(Model): + """An SRV record. + + :param priority: The priority value for this SRV record. + :type priority: int + :param weight: The weight value for this SRV record. + :type weight: int + :param port: The port value for this SRV record. + :type port: int + :param target: The target domain name for this SRV record. + :type target: str + """ + + _attribute_map = { + 'priority': {'key': 'priority', 'type': 'int'}, + 'weight': {'key': 'weight', 'type': 'int'}, + 'port': {'key': 'port', 'type': 'int'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__(self, priority=None, weight=None, port=None, target=None): + super(SrvRecord, self).__init__() + self.priority = priority + self.weight = weight + self.port = port + self.target = target diff --git a/src/dns/azext_dns/dns/models/sub_resource.py b/src/dns/azext_dns/dns/models/sub_resource.py new file mode 100644 index 00000000000..65eca8fcb11 --- /dev/null +++ b/src/dns/azext_dns/dns/models/sub_resource.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SubResource(Model): + """A reference to a another resource. + + :param id: Resource Id. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__(self, id=None): + super(SubResource, self).__init__() + self.id = id diff --git a/src/dns/azext_dns/dns/models/txt_record.py b/src/dns/azext_dns/dns/models/txt_record.py new file mode 100644 index 00000000000..5d1e5adfcf0 --- /dev/null +++ b/src/dns/azext_dns/dns/models/txt_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class TxtRecord(Model): + """A TXT record. + + :param value: The text value of this TXT record. + :type value: list[str] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[str]'}, + } + + def __init__(self, value=None): + super(TxtRecord, self).__init__() + self.value = value diff --git a/src/dns/azext_dns/dns/models/zone.py b/src/dns/azext_dns/dns/models/zone.py new file mode 100644 index 00000000000..729b4c4be26 --- /dev/null +++ b/src/dns/azext_dns/dns/models/zone.py @@ -0,0 +1,92 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource import Resource + + +class Zone(Resource): + """Describes a DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :param location: Resource location. + :type location: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param etag: The etag of the zone. + :type etag: str + :ivar max_number_of_record_sets: The maximum number of record sets that + can be created in this DNS zone. This is a read-only property and any + attempt to set this value will be ignored. + :vartype max_number_of_record_sets: long + :ivar number_of_record_sets: The current number of record sets in this DNS + zone. This is a read-only property and any attempt to set this value will + be ignored. + :vartype number_of_record_sets: long + :ivar name_servers: The name servers for this DNS zone. This is a + read-only property and any attempt to set this value will be ignored. + :vartype name_servers: list[str] + :param zone_type: The type of this DNS zone (Public or Private). Possible + values include: 'Public', 'Private'. Default value: "Public" . + :type zone_type: str or ~azure.mgmt.dns.models.ZoneType + :param registration_virtual_networks: A list of references to virtual + networks that register hostnames in this DNS zone. This is a only when + ZoneType is Private. + :type registration_virtual_networks: + list[~azure.mgmt.dns.models.SubResource] + :param resolution_virtual_networks: A list of references to virtual + networks that resolve records in this DNS zone. This is a only when + ZoneType is Private. + :type resolution_virtual_networks: + list[~azure.mgmt.dns.models.SubResource] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + 'max_number_of_record_sets': {'readonly': True}, + 'number_of_record_sets': {'readonly': True}, + 'name_servers': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'max_number_of_record_sets': {'key': 'properties.maxNumberOfRecordSets', 'type': 'long'}, + 'number_of_record_sets': {'key': 'properties.numberOfRecordSets', 'type': 'long'}, + 'name_servers': {'key': 'properties.nameServers', 'type': '[str]'}, + 'zone_type': {'key': 'properties.zoneType', 'type': 'ZoneType'}, + 'registration_virtual_networks': {'key': 'properties.registrationVirtualNetworks', 'type': '[SubResource]'}, + 'resolution_virtual_networks': {'key': 'properties.resolutionVirtualNetworks', 'type': '[SubResource]'}, + } + + def __init__(self, location, tags=None, etag=None, zone_type="Public", registration_virtual_networks=None, resolution_virtual_networks=None): + super(Zone, self).__init__(location=location, tags=tags) + self.etag = etag + self.max_number_of_record_sets = None + self.number_of_record_sets = None + self.name_servers = None + self.zone_type = zone_type + self.registration_virtual_networks = registration_virtual_networks + self.resolution_virtual_networks = resolution_virtual_networks diff --git a/src/dns/azext_dns/dns/models/zone_paged.py b/src/dns/azext_dns/dns/models/zone_paged.py new file mode 100644 index 00000000000..d0f6a3635c2 --- /dev/null +++ b/src/dns/azext_dns/dns/models/zone_paged.py @@ -0,0 +1,27 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.paging import Paged + + +class ZonePaged(Paged): + """ + A paging container for iterating over a list of :class:`Zone ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[Zone]'} + } + + def __init__(self, *args, **kwargs): + + super(ZonePaged, self).__init__(*args, **kwargs) diff --git a/src/dns/azext_dns/dns/models/zone_update.py b/src/dns/azext_dns/dns/models/zone_update.py new file mode 100644 index 00000000000..d9a94ed8f07 --- /dev/null +++ b/src/dns/azext_dns/dns/models/zone_update.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ZoneUpdate(Model): + """Describes a request to update a DNS zone. + + :param tags: Resource tags. + :type tags: dict[str, str] + """ + + _attribute_map = { + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__(self, tags=None): + super(ZoneUpdate, self).__init__() + self.tags = tags diff --git a/src/dns/azext_dns/dns/operations/__init__.py b/src/dns/azext_dns/dns/operations/__init__.py new file mode 100644 index 00000000000..0618026e6f2 --- /dev/null +++ b/src/dns/azext_dns/dns/operations/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .record_sets_operations import RecordSetsOperations +from .zones_operations import ZonesOperations + +__all__ = [ + 'RecordSetsOperations', + 'ZonesOperations', +] diff --git a/src/dns/azext_dns/dns/operations/record_sets_operations.py b/src/dns/azext_dns/dns/operations/record_sets_operations.py new file mode 100644 index 00000000000..b3dfbce58ba --- /dev/null +++ b/src/dns/azext_dns/dns/operations/record_sets_operations.py @@ -0,0 +1,616 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +import uuid +from msrest.pipeline import ClientRawResponse +from msrestazure.azure_exceptions import CloudError + +from .. import models + + +class RecordSetsOperations(object): + """RecordSetsOperations operations. + + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + :ivar api_version: Specifies the API version. Constant value: "2018-03-01-preview". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2018-03-01-preview" + + self.config = config + + def update( + self, resource_group_name, zone_name, relative_record_set_name, record_type, parameters, if_match=None, custom_headers=None, raw=False, **operation_config): + """Updates a record set within a DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param relative_record_set_name: The name of the record set, relative + to the name of the zone. + :type relative_record_set_name: str + :param record_type: The type of DNS record in this record set. + Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', + 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.dns.models.RecordType + :param parameters: Parameters supplied to the Update operation. + :type parameters: ~azure.mgmt.dns.models.RecordSet + :param if_match: The etag of the record set. Omit this value to always + overwrite the current record set. Specify the last-seen etag value to + prevent accidentally overwritting concurrent changes. + :type if_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: RecordSet or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.dns.models.RecordSet or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(parameters, 'RecordSet') + + # Construct and send request + request = self._client.patch(url, query_parameters) + response = self._client.send( + request, header_parameters, body_content, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('RecordSet', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}'} + + def create_or_update( + self, resource_group_name, zone_name, relative_record_set_name, record_type, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): + """Creates or updates a record set within a DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param relative_record_set_name: The name of the record set, relative + to the name of the zone. + :type relative_record_set_name: str + :param record_type: The type of DNS record in this record set. Record + sets of type SOA can be updated but not created (they are created when + the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', + 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.dns.models.RecordType + :param parameters: Parameters supplied to the CreateOrUpdate + operation. + :type parameters: ~azure.mgmt.dns.models.RecordSet + :param if_match: The etag of the record set. Omit this value to always + overwrite the current record set. Specify the last-seen etag value to + prevent accidentally overwritting any concurrent changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new record set to be + created, but to prevent updating an existing record set. Other values + will be ignored. + :type if_none_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: RecordSet or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.dns.models.RecordSet or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(parameters, 'RecordSet') + + # Construct and send request + request = self._client.put(url, query_parameters) + response = self._client.send( + request, header_parameters, body_content, stream=False, **operation_config) + + if response.status_code not in [200, 201]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('RecordSet', response) + if response.status_code == 201: + deserialized = self._deserialize('RecordSet', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}'} + + def delete( + self, resource_group_name, zone_name, relative_record_set_name, record_type, if_match=None, custom_headers=None, raw=False, **operation_config): + """Deletes a record set from a DNS zone. This operation cannot be undone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param relative_record_set_name: The name of the record set, relative + to the name of the zone. + :type relative_record_set_name: str + :param record_type: The type of DNS record in this record set. Record + sets of type SOA cannot be deleted (they are deleted when the DNS zone + is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', + 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.dns.models.RecordType + :param if_match: The etag of the record set. Omit this value to always + delete the current record set. Specify the last-seen etag value to + prevent accidentally deleting any concurrent changes. + :type if_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: None or ClientRawResponse if raw=true + :rtype: None or ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.delete.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.delete(url, query_parameters) + response = self._client.send(request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200, 204]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}'} + + def get( + self, resource_group_name, zone_name, relative_record_set_name, record_type, custom_headers=None, raw=False, **operation_config): + """Gets a record set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param relative_record_set_name: The name of the record set, relative + to the name of the zone. + :type relative_record_set_name: str + :param record_type: The type of DNS record in this record set. + Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', + 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.dns.models.RecordType + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: RecordSet or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.dns.models.RecordSet or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.get.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send(request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('RecordSet', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{relativeRecordSetName}'} + + def list_by_type( + self, resource_group_name, zone_name, record_type, top=None, recordsetnamesuffix=None, custom_headers=None, raw=False, **operation_config): + """Lists the record sets of a specified type in a DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param record_type: The type of record sets to enumerate. Possible + values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', + 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.dns.models.RecordType + :param top: The maximum number of record sets to return. If not + specified, returns up to 100 record sets. + :type top: int + :param recordsetnamesuffix: The suffix label of the record set name + that has to be used to filter the record set enumerations. If this + parameter is specified, Enumeration will return only records that end + with . + :type recordsetnamesuffix: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of RecordSet + :rtype: + ~azure.mgmt.dns.models.RecordSetPaged[~azure.mgmt.dns.models.RecordSet] + :raises: :class:`CloudError` + """ + def internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list_by_type.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + if recordsetnamesuffix is not None: + query_parameters['$recordsetnamesuffix'] = self._serialize.query("recordsetnamesuffix", recordsetnamesuffix, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send( + request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list_by_type.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}'} + + def list_by_dns_zone( + self, resource_group_name, zone_name, top=None, recordsetnamesuffix=None, custom_headers=None, raw=False, **operation_config): + """Lists all record sets in a DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param top: The maximum number of record sets to return. If not + specified, returns up to 100 record sets. + :type top: int + :param recordsetnamesuffix: The suffix label of the record set name + that has to be used to filter the record set enumerations. If this + parameter is specified, Enumeration will return only records that end + with . + :type recordsetnamesuffix: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of RecordSet + :rtype: + ~azure.mgmt.dns.models.RecordSetPaged[~azure.mgmt.dns.models.RecordSet] + :raises: :class:`CloudError` + """ + def internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list_by_dns_zone.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + if recordsetnamesuffix is not None: + query_parameters['$recordsetnamesuffix'] = self._serialize.query("recordsetnamesuffix", recordsetnamesuffix, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send( + request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list_by_dns_zone.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/recordsets'} + + def list_all_by_dns_zone( + self, resource_group_name, zone_name, top=None, record_set_name_suffix=None, custom_headers=None, raw=False, **operation_config): + """Lists all record sets in a DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param top: The maximum number of record sets to return. If not + specified, returns up to 100 record sets. + :type top: int + :param record_set_name_suffix: The suffix label of the record set name + that has to be used to filter the record set enumerations. If this + parameter is specified, Enumeration will return only records that end + with . + :type record_set_name_suffix: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of RecordSet + :rtype: + ~azure.mgmt.dns.models.RecordSetPaged[~azure.mgmt.dns.models.RecordSet] + :raises: :class:`CloudError` + """ + def internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list_all_by_dns_zone.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + if record_set_name_suffix is not None: + query_parameters['$recordsetnamesuffix'] = self._serialize.query("record_set_name_suffix", record_set_name_suffix, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send( + request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list_all_by_dns_zone.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/all'} diff --git a/src/dns/azext_dns/dns/operations/zones_operations.py b/src/dns/azext_dns/dns/operations/zones_operations.py new file mode 100644 index 00000000000..130319509bd --- /dev/null +++ b/src/dns/azext_dns/dns/operations/zones_operations.py @@ -0,0 +1,515 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +import uuid +from msrest.pipeline import ClientRawResponse +from msrestazure.azure_exceptions import CloudError +from msrest.exceptions import DeserializationError +from msrestazure.azure_operation import AzureOperationPoller + +from .. import models + + +class ZonesOperations(object): + """ZonesOperations operations. + + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + :ivar api_version: Specifies the API version. Constant value: "2018-03-01-preview". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2018-03-01-preview" + + self.config = config + + def create_or_update( + self, resource_group_name, zone_name, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): + """Creates or updates a DNS zone. Does not modify DNS records within the + zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param parameters: Parameters supplied to the CreateOrUpdate + operation. + :type parameters: ~azure.mgmt.dns.models.Zone + :param if_match: The etag of the DNS zone. Omit this value to always + overwrite the current zone. Specify the last-seen etag value to + prevent accidentally overwritting any concurrent changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new DNS zone to be + created, but to prevent updating an existing zone. Other values will + be ignored. + :type if_none_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: Zone or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.dns.models.Zone or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(parameters, 'Zone') + + # Construct and send request + request = self._client.put(url, query_parameters) + response = self._client.send( + request, header_parameters, body_content, stream=False, **operation_config) + + if response.status_code not in [200, 201]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('Zone', response) + if response.status_code == 201: + deserialized = self._deserialize('Zone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}'} + + + def _delete_initial( + self, resource_group_name, zone_name, if_match=None, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.delete.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.delete(url, query_parameters) + response = self._client.send(request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200, 202, 204]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + def delete( + self, resource_group_name, zone_name, if_match=None, custom_headers=None, raw=False, **operation_config): + """Deletes a DNS zone. WARNING: All DNS records in the zone will also be + deleted. This operation cannot be undone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param if_match: The etag of the DNS zone. Omit this value to always + delete the current zone. Specify the last-seen etag value to prevent + accidentally deleting any concurrent changes. + :type if_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :return: An instance of AzureOperationPoller that returns None or + ClientRawResponse if raw=true + :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + zone_name=zone_name, + if_match=if_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + if raw: + return raw_result + + # Construct and send request + def long_running_send(): + return raw_result.response + + def get_long_running_status(status_link, headers=None): + + request = self._client.get(status_link) + if headers: + request.headers.update(headers) + header_parameters = {} + header_parameters['x-ms-client-request-id'] = raw_result.response.request.headers['x-ms-client-request-id'] + return self._client.send( + request, header_parameters, stream=False, **operation_config) + + def get_long_running_output(response): + + if response.status_code not in [200, 202, 204]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + long_running_operation_timeout = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + return AzureOperationPoller( + long_running_send, get_long_running_output, + get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}'} + + def get( + self, resource_group_name, zone_name, custom_headers=None, raw=False, **operation_config): + """Gets a DNS zone. Retrieves the zone properties, but not the record sets + within the zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: Zone or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.dns.models.Zone or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.get.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send(request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('Zone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}'} + + def update( + self, resource_group_name, zone_name, if_match=None, tags=None, custom_headers=None, raw=False, **operation_config): + """Updates a DNS zone. Does not modify DNS records within the zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param zone_name: The name of the DNS zone (without a terminating + dot). + :type zone_name: str + :param if_match: The etag of the DNS zone. Omit this value to always + overwrite the current zone. Specify the last-seen etag value to + prevent accidentally overwritting any concurrent changes. + :type if_match: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: Zone or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.dns.models.Zone or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + parameters = models.ZoneUpdate(tags=tags) + + # Construct URL + url = self.update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'zoneName': self._serialize.url("zone_name", zone_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(parameters, 'ZoneUpdate') + + # Construct and send request + request = self._client.patch(url, query_parameters) + response = self._client.send( + request, header_parameters, body_content, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('Zone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}'} + + def list_by_resource_group( + self, resource_group_name, top=None, custom_headers=None, raw=False, **operation_config): + """Lists the DNS zones within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param top: The maximum number of record sets to return. If not + specified, returns up to 100 record sets. + :type top: int + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of Zone + :rtype: ~azure.mgmt.dns.models.ZonePaged[~azure.mgmt.dns.models.Zone] + :raises: :class:`CloudError` + """ + def internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list_by_resource_group.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send( + request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + deserialized = models.ZonePaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.ZonePaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones'} + + def list( + self, top=None, custom_headers=None, raw=False, **operation_config): + """Lists the DNS zones in all resource groups in a subscription. + + :param top: The maximum number of DNS zones to return. If not + specified, returns up to 100 zones. + :type top: int + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of Zone + :rtype: ~azure.mgmt.dns.models.ZonePaged[~azure.mgmt.dns.models.Zone] + :raises: :class:`CloudError` + """ + def internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send( + request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + deserialized = models.ZonePaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.ZonePaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Network/dnszones'} diff --git a/src/dns/azext_dns/dns/version.py b/src/dns/azext_dns/dns/version.py new file mode 100644 index 00000000000..8d86cf0470d --- /dev/null +++ b/src/dns/azext_dns/dns/version.py @@ -0,0 +1,13 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +VERSION = "2.0.0rc1" + diff --git a/src/dns/azext_dns/tests/__init__.py b/src/dns/azext_dns/tests/__init__.py new file mode 100644 index 00000000000..66794229797 --- /dev/null +++ b/src/dns/azext_dns/tests/__init__.py @@ -0,0 +1,4 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/dns/azext_dns/tests/latest/__init__.py b/src/dns/azext_dns/tests/latest/__init__.py new file mode 100644 index 00000000000..66794229797 --- /dev/null +++ b/src/dns/azext_dns/tests/latest/__init__.py @@ -0,0 +1,4 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml new file mode 100644 index 00000000000..0b2c4d81aa9 --- /dev/null +++ b/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml @@ -0,0 +1,8703 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzthRoaZadQCv3o_HVo_zl2DptbA5EBIc11hqdSl-Kq-WHenBHd15P8vVsbdHwHAYRqV0wrDhgPAO6LcHmO8wpJ4EgIAsFO4HsUJjNKFt0CyVrrkLvI_HpsDsZszPtQdulMabsecnSxOkHKbCEj2PTnzJZhtN2Nxgw5GH3EZPWyiQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075705","not_before":"1521071805","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgwNSwibmJmIjoxNTIxMDcxODA1LCJleHAiOjE1MjEwNzU3MDUsImFpbyI6IjQyUmdZR0MvcUJqQmVLVXk3RVdRb1Y2S2dLSWVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDV1eGdBQUEiLCJ2ZXIiOiIxLjAifQ.f2TJtVuz-2i2Ei0XuPhVHFT8f7w0OM6mmOrL1mqQS8Feo945W6hMquvz8UzJW04SMR5YRJcEvXDYkFtXf9fJ7rlhlUecvQ8moCmgIpAB1HvpZfVVT_vDNTH3UV-paWuZgBafWQWTHTX9fEldU8JCi_IQDfpr9QKGhCROdoUzyJoMC7Tz6XV4lG0-vo6v4tSU2HNEyakvaoCbXXyW9X1vdLozN6dRR0aOQYGbUmConwY96Bh-_90AhwXHnFPDvWwuEOu2CCo6GSZmBRNBeTG0EpwSxAgokbVnC0E0Fwfg-StNpoLdxPHovjHZSw7UUX4uvqanr30grwwoPOTddp8Beg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:45 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "tags": {"use": "az-test"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['50'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['328'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:47 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-1JXe-oXs5WPwsCua7mg4-OU3hq1y4skoRsVzz_q65IGbSwrNMFuu2_J2Kz71PRCekhT3n-g_FQ-LrbLCK6C74HAy9axTF-iSPWI1y0wISxq_eUf-T_2bq9h_rufToawynUa2Uj4qgmbVLlWTW4HXkL-w1laoHIZGWvRyfm9KjYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075711","not_before":"1521071811","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgxMSwibmJmIjoxNTIxMDcxODExLCJleHAiOjE1MjEwNzU3MTEsImFpbyI6IjQyUmdZRmcvWlpKRjZISFZ1VlliOTczazNSSmpBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVMUmtBQUEiLCJ2ZXIiOiIxLjAifQ.wbh2i--veUPfRz8g7HGbzy8R3IfPYMSX3XvAoHjwUH7TZiPZp5z8sPuL15xLvDJEsOHv2cDmDhLRBuWnCU9zUUIwu0Cv0ZNmZ-AVdZvGgc6NX7tbMCCbwlpeAt-scEekpigggufBw9stzmgJmd8kOdiOPS_YN67nDCCroAoJxp-fJ2G9OSgOeI8tnngrSec-wOWsWHOeUz6szRqIDO9EAGlGnvW2QLRBLygpdqf8qQF_JD_JK3oxeamniWxk07Be3Z8rreeRehUugTBS94KsHPX1AxYNaNtKRcS0VKlaug22gAIFAddjWnyNrftVbk4Scw5RyFVv1qpQSR9dk3dY5g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:51 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrandomgroup2\/providers\/Microsoft.Network\/dnszones\/armmove.test","name":"armmove.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5c2f-45e7b4ccd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg11366e27-2af5-4dd1-9637-aab4153031c32\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","name":"fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-7f28-2b68bc57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1a0a1f60-91f8-4868-867c-935e097256732\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","name":"fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-887b-1f77915bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1de4d643-137f-45cc-b880-c5f6b81456902\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","name":"fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9f40-e14be957d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1f97cd1e-c59b-480c-be67-063210865ac8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","name":"fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c54c-e6148c58d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg2964cd5a-0c75-43df-aadd-056bf241f6f52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","name":"fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-71ce-92aa7058d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg345e33d1-e3fc-45be-8ca3-95c3030a8827\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","name":"fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-334d-c2272e36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg350585d6-5c59-4a68-8d00-bf272faae66b2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","name":"fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-c017-1dab3959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg3a95092d-6084-4715-bed0-6de9880362a72\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","name":"fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-cbf4-7af40258d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg451cf024-71be-414a-98ef-e060dcf34e8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","name":"fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5411-11d957a3d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg45ee12ac-fa5b-4df8-af0d-57a81f489c0a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","name":"fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0e05-88375559d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4b050ceb-7c51-46a5-aa15-0b24caa54908\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","name":"fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-93d8-4904e6f0d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4d6686fd-d01c-4be4-acb0-e6af2040a475\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","name":"fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e435-d8106922d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg5d95213a-3b09-4f4a-9bd5-b8f7535b3fb8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","name":"fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f036-b07cf135d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg652edd88-186f-4432-9286-d7f048a0e7f82\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","name":"fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-6b14-26a0145ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg664c931e-caf0-4b67-89e6-9526a64c579f2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","name":"fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-76f9-46bd8158d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg66628ec0-570d-4126-889b-359bbda30731\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","name":"fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-de04-401d68abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg69881656-d2f7-49b7-a1b2-2979e8beadb12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","name":"fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-22f9-5c49ad57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg6bd7dc7f-beb0-417d-a718-0e9f7835b985\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","name":"fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d12e-6f828fc9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7276389c-6a59-4177-bccd-83ac96ea5ae3\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","name":"fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-926f-a5686621d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg74147c6a-238e-43ea-88cd-b43b20ab5713\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","name":"fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9255-78c02de9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c46cb75-0d01-4b20-ac1a-398c49b55c212\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","name":"fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-df38-b2af6978d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c89c527-fafb-436f-bb97-739f7ce3bcfc2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","name":"fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9c9a-ae874959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8ac60837-ce43-43e7-805c-e70cce6f83a12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","name":"fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-1b60-65e6db57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8f707ac9-7b19-46f7-b8da-acda6018f861\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","name":"fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-caab-1330706bd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg935c1881-65b2-4a29-ba07-656e85523d54\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","name":"fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1a33-1f2fbe33d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg9e1077b6-a187-4454-913a-dec03c9eaba52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","name":"fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-49f3-80c6a35bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverga4a64851-466d-402a-9ca9-6108cb6b4d8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","name":"fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f1f7-2744d148d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbe2e87b4-1d76-429a-860e-6d796e9e340b\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","name":"fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-00b1-2bdad9abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbf472a78-3508-4863-9a65-96795acfb1e22\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","name":"fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-ea7d-d0f9eaa7d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc47a312c-e8d6-4560-9bef-6797c0fa48c6\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","name":"fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cb07-5d5cac6bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc79de5d0-3a46-42e3-8daf-7dcee973d62a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","name":"fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4326-ddbd256bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf339632-52ce-43ca-ad38-e3fe3512aefb\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","name":"fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-803c-5c881e5ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf5472ae-78af-4e4e-8856-a4629c65571e2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","name":"fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f1d-e93c415bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergecb52982-7c98-4367-a6ed-e2830e11b79d2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","name":"fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9b25-eb214257d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergf019a24f-04b9-48c1-aa03-3d3e45383f30\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","name":"fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1349-3fc637c9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergff39196d-2180-4984-b5e8-12246e00de9a2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","name":"fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-d0e3-3596005ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_dns_zone1_importswmwoxwfjngvixnedygkjrr4ts527ofeswl7ac7oi3smnqmfuj3egni\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-79c5-56dab0b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/commontestgroup\/providers\/Microsoft.Network\/dnszones\/hitesh.test","name":"hitesh.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a431-27edb490d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk.com","name":"karthikbulk.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4d6-bbb8e5b5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":38003}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk2.com","name":"karthikbulk2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-aa47-222eeab5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":10001}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthiktest.com","name":"karthiktest.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-6e4e-118a22b5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3130-70c348c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/delegations.azuredns.internal.test","name":"delegations.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d77f-56f72428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":8}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com.1","name":"foo.com.1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a130-a1256405d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/supportedtypes.azuredns.internal.test","name":"supportedtypes.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8cc3-92c62428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":11}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f007-dd1e2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup1\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-145c-922b2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup2\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cc93-b7372528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup3\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b4bb-c2442528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup4\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eeb-48502528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup5\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1be2-835c2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup6\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8a62-18692528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup7\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3f6e-13752528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup8\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eda-b0802528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/albertozone.com","name":"albertozone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d006-58f3c480d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","name":"fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a58e-db8ebc9ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/ww.rules","name":"ww.rules","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0fc3-eeeaed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/wwa.rules","name":"wwa.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5b33-b520ee62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.ashx","name":"www.ashx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-15d8-d1d92a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.asmx","name":"www.asmx","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efd5-864f2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.aspq","name":"www.aspq","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-56d9-831f2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.axd","name":"www.axd","type":"Microsoft.Network\/dnszones","etag":"00000005-0000-0000-bcc5-f4142b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.cshtml","name":"www.cshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4b7c-a01b2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.rules","name":"www.rules","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-46df-cf84ed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.soap","name":"www.soap","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8118-96102b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.svc","name":"www.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-58fd-0ad32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtm","name":"www.vbhtm","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b34c-92cc2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtml","name":"www.vbhtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cf7-5cc32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.x","name":"www.x","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ff2d-55a12a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xamlx","name":"www.xamlx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-10cd-daaf2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xoml","name":"www.xoml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cbd9-aff82a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xshtml","name":"www.xshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e293-61182b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www2.rules","name":"www2.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6482-2ec84170d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www3.rules","name":"www3.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cd6-d6ca4270d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www4.rules","name":"www4.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f65a-85464370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www5.rules","name":"www5.rules","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-dcae-46d74370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www6.rules1","name":"www6.rules1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-effe-85c73a71d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg2296\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2982","name":"hydratest.dnszone.com2982","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8bf1-68346f44d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg6951\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com1418","name":"hydratest.dnszone.com1418","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4569-d7b1e86ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg7212\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2450","name":"hydratest.dnszone.com2450","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2f15-b18458bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg9513\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com4268","name":"hydratest.dnszone.com4268","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6224-f99658bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp.com","name":"jwesth-cloudapp.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b2a-01758cc2d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":7}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp1.com","name":"jwesth-cloudapp1.com","type":"Microsoft.Network\/dnszones","etag":"0000001c-0000-0000-f128-a14cdeded101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/169.181.185.in-addr.arpa","name":"169.181.185.in-addr.arpa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3734-04a70a66d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth-test1.com","name":"jwesth-test1.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0134-e43384bbd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth.com","name":"jwesth.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8ae-daeaea3ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130a\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a4a4-a9695b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130b\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f3c9-ac795b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130c\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e8ff-d2835b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130d\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4943-808f5b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130e\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cd92-64995b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt1.com","name":"karthikpvt1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c968-711cd333d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt2.com","name":"karthikpvt2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-63a7-a0a3f533d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/limitstestrg\/providers\/Microsoft.Network\/dnszones\/expect20.1.com","name":"expect20.1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-34c8-abfc977ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/mikebugbash\/providers\/Microsoft.Network\/dnszones\/mitest.com","name":"mitest.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4ec5-f6e23a36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1048\/providers\/Microsoft.Network\/dnszones\/onesdk8502.pstest.test","name":"onesdk8502.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-aded-5045bf2ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1060\/providers\/Microsoft.Network\/dnszones\/onesdk2287.pstest.test","name":"onesdk2287.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8f2b-2782ff52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1064\/providers\/Microsoft.Network\/dnszones\/onesdk4225.pstest.test","name":"onesdk4225.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cd3f-83d8711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1096\/providers\/Microsoft.Network\/dnszones\/onesdk6719.pstest.test","name":"onesdk6719.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1ead-eb9db81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['54995'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:53 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:54 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1ODjhPRrgpj8XnDkHhnnc-J0UR8QvgwMox7p4LELr_DJgDw6tcnVJZjL79scGlgUTHZIauJk63F8UpTNw4XD-fT-BaQQIiCXJ4eKaloDfR9hVQzAEstcWDVO8JG4qBLfRiNkTlD-cU0BEH2qmEqCUnGzui8uJ5tSuNb07bkMpR0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075717","not_before":"1521071817","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgxNywibmJmIjoxNTIxMDcxODE3LCJleHAiOjE1MjEwNzU3MTcsImFpbyI6IjQyUmdZUGptNGQxVVlDSmRaQ3lUdHNiMzFEcFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6ImZMZFFpdG1INDBDRjhxOUVrbllBQUEiLCJ2ZXIiOiIxLjAifQ.xWpwXW-xYitmM2MTbOnaViW-1DZI1wFr1Wl0NWcvwYFjsZ1r5ylAhipJucVCH0FembxY02ZSaGGayQmRLW_O4msYHAFkYxQl9ld-cCUt36sDiYimrRRNuAQUnvpgAQrP8Na-IHsKIfN2MhYq_6XDY0TxfNn6yA42iMKqGe353mbz81cHucxRJQWbNtwZ5Iqkps8kUozOC7ULU0Vtnw7UJtg4Xl_QAqOPCufB0YKHwI25cxaY9TPq_jtI32bEWVBb5tmMUmSFrai5nadlpVB0VkICYPKmKfRRYkxdn3Fyi-Xhc6OOo1dYJgujOQp698RMFK3mJZzqR7viLyPJx8Kg4g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:57 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1247\/providers\/Microsoft.Network\/dnszones\/onesdk2090.pstest.test","name":"onesdk2090.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4b0-2d82b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1281\/providers\/Microsoft.Network\/dnszones\/onesdk9190.pstest.test","name":"onesdk9190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cdb0-3151f51fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1282\/providers\/Microsoft.Network\/dnszones\/onesdk8326.pstest.test","name":"onesdk8326.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fc5a-0488fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk129\/providers\/Microsoft.Network\/dnszones\/onesdk989.pstest.test","name":"onesdk989.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3974-12df711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1293\/providers\/Microsoft.Network\/dnszones\/onesdk1432.pstest.test","name":"onesdk1432.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-db36-0bbe474ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1348\/providers\/Microsoft.Network\/dnszones\/onesdk5170.pstest.test","name":"onesdk5170.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39fc-657f611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1357\/providers\/Microsoft.Network\/dnszones\/onesdk1913.pstest.test","name":"onesdk1913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7cd3-4ba4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1363\/providers\/Microsoft.Network\/dnszones\/onesdk8210.pstest.test","name":"onesdk8210.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-221d-b4940a26d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1384\/providers\/Microsoft.Network\/dnszones\/onesdk6128.pstest.test","name":"onesdk6128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f69b-f78b6346d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1387\/providers\/Microsoft.Network\/dnszones\/onesdk3798.pstest.test","name":"onesdk3798.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-219f-67f28849d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1390\/providers\/Microsoft.Network\/dnszones\/onesdk7618.pstest.test","name":"onesdk7618.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b9b-604df12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1459\/providers\/Microsoft.Network\/dnszones\/onesdk4021.pstest.test","name":"onesdk4021.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-18f9-8b8ec853d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1481\/providers\/Microsoft.Network\/dnszones\/onesdk5772.pstest.test","name":"onesdk5772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4625-1c97721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1493\/providers\/Microsoft.Network\/dnszones\/onesdk1429.pstest.test","name":"onesdk1429.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b63d-0e021422d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1542\/providers\/Microsoft.Network\/dnszones\/onesdk7729.pstest.test","name":"onesdk7729.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f379-f423f81fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1562\/providers\/Microsoft.Network\/dnszones\/onesdk2146.pstest.test","name":"onesdk2146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7d8-7a690f39d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1575\/providers\/Microsoft.Network\/dnszones\/onesdk6718.pstest.test","name":"onesdk6718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfda-cfec711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1600\/providers\/Microsoft.Network\/dnszones\/onesdk8063.pstest.test","name":"onesdk8063.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a9f-cd19062ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1606\/providers\/Microsoft.Network\/dnszones\/onesdk7391.pstest.test","name":"onesdk7391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-63b9-87ae711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk162\/providers\/Microsoft.Network\/dnszones\/onesdk1843.pstest.test","name":"onesdk1843.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1675-ab60fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1621\/providers\/Microsoft.Network\/dnszones\/onesdk2482.pstest.test","name":"onesdk2482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3299-aa02f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1622\/providers\/Microsoft.Network\/dnszones\/onesdk1489.pstest.test","name":"onesdk1489.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-66f6-7b347337d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1624\/providers\/Microsoft.Network\/dnszones\/onesdk7204.pstest.test","name":"onesdk7204.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e360-5427d839d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1675\/providers\/Microsoft.Network\/dnszones\/onesdk7311.pstest.test","name":"onesdk7311.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-192e-7766f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1703\/providers\/Microsoft.Network\/dnszones\/onesdk7165.pstest.test","name":"onesdk7165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad1f-1074721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1727\/providers\/Microsoft.Network\/dnszones\/onesdk9804.pstest.test","name":"onesdk9804.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7742-7dbfee1fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1729\/providers\/Microsoft.Network\/dnszones\/onesdk7610.pstest.test","name":"onesdk7610.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29a5-a9263447d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1734\/providers\/Microsoft.Network\/dnszones\/onesdk8881.pstest.test","name":"onesdk8881.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bcd6-ba11f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1757\/providers\/Microsoft.Network\/dnszones\/onesdk3391.pstest.test","name":"onesdk3391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4fd-2496f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk178\/providers\/Microsoft.Network\/dnszones\/onesdk90.pstest.test","name":"onesdk90.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9aea-3f153f25d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1840\/providers\/Microsoft.Network\/dnszones\/onesdk8954.pstest.test","name":"onesdk8954.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-e73f-dba0e940d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1896\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9aee-3e3a0f4fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1904\/providers\/Microsoft.Network\/dnszones\/onesdk2093.pstest.test","name":"onesdk2093.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1986-77c0b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1918\/providers\/Microsoft.Network\/dnszones\/onesdk6500.pstest.test","name":"onesdk6500.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f0da-b94d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1987\/providers\/Microsoft.Network\/dnszones\/onesdk2408.pstest.test","name":"onesdk2408.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f5b1-94caee23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2018\/providers\/Microsoft.Network\/dnszones\/onesdk6598.pstest.test","name":"onesdk6598.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17d6-a1466623d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk5299.pstest.test","name":"onesdk5299.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-af69-c2a7711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.test","name":"onesdk7065.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c49-5b256623d201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.testa","name":"onesdk7065.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad8c-d0256623d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2172\/providers\/Microsoft.Network\/dnszones\/onesdk496.pstest.test","name":"onesdk496.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5f17-b3c6b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2304\/providers\/Microsoft.Network\/dnszones\/onesdk7239.pstest.test","name":"onesdk7239.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-113e-68072040d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2308\/providers\/Microsoft.Network\/dnszones\/onesdk1393.pstest.test","name":"onesdk1393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39b9-9de9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2310\/providers\/Microsoft.Network\/dnszones\/onesdk2284.pstest.test","name":"onesdk2284.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39f8-b070b541d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2333\/providers\/Microsoft.Network\/dnszones\/onesdk1256.pstest.test","name":"onesdk1256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e7e-de17fe3cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2380\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-88b4-d461c453d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2383\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-342f-78b3611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2398\/providers\/Microsoft.Network\/dnszones\/onesdk8782.pstest.test","name":"onesdk8782.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ed-87f2062ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2407\/providers\/Microsoft.Network\/dnszones\/onesdk7250.pstest.test","name":"onesdk7250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b310-a66e611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2421\/providers\/Microsoft.Network\/dnszones\/onesdk6907.pstest.test","name":"onesdk6907.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9d8-ca16721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk640.pstest.test","name":"onesdk640.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a55-f581721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk9998.pstest.test","name":"onesdk9998.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-550b-12bc711fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk5712.pstest.test","name":"onesdk5712.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb48-cd0cfa1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk7614.pstest.test","name":"onesdk7614.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1faf-3101fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2556\/providers\/Microsoft.Network\/dnszones\/onesdk7928.pstest.test","name":"onesdk7928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d950-d5e5711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2563\/providers\/Microsoft.Network\/dnszones\/onesdk4397.pstest.test","name":"onesdk4397.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b49-7420fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2573\/providers\/Microsoft.Network\/dnszones\/onesdk7056.pstest.test","name":"onesdk7056.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-43a9-215b1c22d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2585\/providers\/Microsoft.Network\/dnszones\/onesdk2458.pstest.test","name":"onesdk2458.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfe-4344fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk264\/providers\/Microsoft.Network\/dnszones\/onesdk2107.pstest.test","name":"onesdk2107.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6bb1-2861404ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2644\/providers\/Microsoft.Network\/dnszones\/onesdk2865.pstest.test","name":"onesdk2865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-d03b-00e8873ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2675\/providers\/Microsoft.Network\/dnszones\/onesdk4444.pstest.test","name":"onesdk4444.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2ea6-dc528d2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2715\/providers\/Microsoft.Network\/dnszones\/onesdk3768.pstest.test","name":"onesdk3768.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f1c-2b7def1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2743\/providers\/Microsoft.Network\/dnszones\/onesdk4.pstest.test","name":"onesdk4.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4c8f-60fa711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2745\/providers\/Microsoft.Network\/dnszones\/onesdk828.pstest.test","name":"onesdk828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-31db-1c44b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2807\/providers\/Microsoft.Network\/dnszones\/onesdk2558.pstest.test","name":"onesdk2558.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0255-15d3fd1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk2112.pstest.test","name":"onesdk2112.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e0d-2a26f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2835\/providers\/Microsoft.Network\/dnszones\/onesdk8180.pstest.test","name":"onesdk8180.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-297f-3f36fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2881\/providers\/Microsoft.Network\/dnszones\/onesdk8706.pstest.test","name":"onesdk8706.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ec87-e7f8fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2923\/providers\/Microsoft.Network\/dnszones\/onesdk8493.pstest.test","name":"onesdk8493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-066c-41fbf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2942\/providers\/Microsoft.Network\/dnszones\/onesdk2839.pstest.test","name":"onesdk2839.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-89cd-f76f512ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2963\/providers\/Microsoft.Network\/dnszones\/onesdk4380.pstest.test","name":"onesdk4380.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7fab-a6affc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3016\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-75ac-a5218a4fd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3052\/providers\/Microsoft.Network\/dnszones\/onesdk6450.pstest.test","name":"onesdk6450.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dfc9-7c482f29d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3077\/providers\/Microsoft.Network\/dnszones\/onesdk8057.pstest.test","name":"onesdk8057.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7330-6d80fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3082\/providers\/Microsoft.Network\/dnszones\/onesdk8403.pstest.test","name":"onesdk8403.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-754e-2e1ff91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3085\/providers\/Microsoft.Network\/dnszones\/onesdk8393.pstest.test","name":"onesdk8393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da3a-2e2df91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk315\/providers\/Microsoft.Network\/dnszones\/onesdk3996.pstest.test","name":"onesdk3996.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d50b-4608721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3157\/providers\/Microsoft.Network\/dnszones\/onesdk2650.pstest.test","name":"onesdk2650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f76c-aa52d739d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3172\/providers\/Microsoft.Network\/dnszones\/onesdk379.pstest.test","name":"onesdk379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6a8b-0297b91fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3192\/providers\/Microsoft.Network\/dnszones\/onesdk8717.pstest.test","name":"onesdk8717.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-15ae-8f21b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3306\/providers\/Microsoft.Network\/dnszones\/onesdk2738.pstest.test","name":"onesdk2738.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5007-cc5b611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk335\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-372f-00a5721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3390\/providers\/Microsoft.Network\/dnszones\/onesdk5878.pstest.test","name":"onesdk5878.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5e2e-ae7dfb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3478\/providers\/Microsoft.Network\/dnszones\/onesdk3730.pstest.test","name":"onesdk3730.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-235f-d463d126d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3497\/providers\/Microsoft.Network\/dnszones\/onesdk5097.pstest.test","name":"onesdk5097.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dadd-c0bfb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3557\/providers\/Microsoft.Network\/dnszones\/onesdk8390.pstest.test","name":"onesdk8390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a228-ad9a7c4dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3600\/providers\/Microsoft.Network\/dnszones\/onesdk2599.pstest.test","name":"onesdk2599.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-74a0-5ec1c648d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3626\/providers\/Microsoft.Network\/dnszones\/onesdk9818.pstest.test","name":"onesdk9818.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e0c-f6d4fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3668\/providers\/Microsoft.Network\/dnszones\/onesdk3479.pstest.test","name":"onesdk3479.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3c4a-9bd1711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3711\/providers\/Microsoft.Network\/dnszones\/onesdk8697.pstest.test","name":"onesdk8697.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-66ac-ddb3ad41d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3752\/providers\/Microsoft.Network\/dnszones\/onesdk5592.pstest.test","name":"onesdk5592.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfc2-9751b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3791\/providers\/Microsoft.Network\/dnszones\/onesdk4990.pstest.test","name":"onesdk4990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-320e-0706781fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3794\/providers\/Microsoft.Network\/dnszones\/onesdk1760.pstest.test","name":"onesdk1760.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea5-4b7c693bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3869\/providers\/Microsoft.Network\/dnszones\/onesdk7008.pstest.test","name":"onesdk7008.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a062-24088851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3872\/providers\/Microsoft.Network\/dnszones\/onesdk9743.pstest.test","name":"onesdk9743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-511e-6589b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3891\/providers\/Microsoft.Network\/dnszones\/onesdk8901.pstest.test","name":"onesdk8901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ef1-4eca611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3943\/providers\/Microsoft.Network\/dnszones\/onesdk7060.pstest.test","name":"onesdk7060.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6e4d-a628b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3946\/providers\/Microsoft.Network\/dnszones\/onesdk2283.pstest.test","name":"onesdk2283.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3283-64f5c548d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3956\/providers\/Microsoft.Network\/dnszones\/onesdk9718.pstest.test","name":"onesdk9718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fb2e-2f2aa150d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3957\/providers\/Microsoft.Network\/dnszones\/onesdk1310.pstest.test","name":"onesdk1310.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7057-b4cb5a55d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3963\/providers\/Microsoft.Network\/dnszones\/onesdk2916.pstest.test","name":"onesdk2916.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-055d-01af6c2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['51681'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:01:58 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzCP75ecfE00n177-1T4j9C1t6x_FRq6P88pqAyZRlQAYw0EwnKw5knSbu4j8LUifds-OxHEb6HbaWfynHfjnhaQJuHVOvTp0ADu_gIR8Ul2NXMipSX5nxNGv0nkkdwwauIZktNjUszR5VWoAjTDNU4Md0x-aAhfU8a99xu8KyBtsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075721","not_before":"1521071821","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgyMSwibmJmIjoxNTIxMDcxODIxLCJleHAiOjE1MjEwNzU3MjEsImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFDQndBQUEiLCJ2ZXIiOiIxLjAifQ.ea_NYO5H6Wjq7ON9UUO5-tTV-Gc8w7-NtXOrF-GXfWpjIIbEwtydLJQh6ckvNQafkvKnFgJAkkbonMrTEb_eDX0OLslgXys7wLIEqeladuwHv_rxbEDpz_PFdc5mFs2ZOXjETXL7YyTFCJAzrbHYzWauEmt_U_D3ryyldxLdJNMiIve9zVsduYb15_tDkCpNx51UkBtqs1Xx3zrYtxJKs6y2iWYvHkYqT0ZkZc00YkzanTx-rYM04nZEFrDge2PQfP-o0nuf31un9fKab0UdYR2CHzQNZyG1j_3rYcTWTO8X1pgiTh04hZmks2G1CzLd5UOYJZG0H-W_DBNOSABDsA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:01 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3997\/providers\/Microsoft.Network\/dnszones\/onesdk3527.pstest.test","name":"onesdk3527.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a8e-37c5fd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk401\/providers\/Microsoft.Network\/dnszones\/onesdk2615.pstest.test","name":"onesdk2615.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b3c2-2455eb4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4011\/providers\/Microsoft.Network\/dnszones\/onesdk4347.pstest.test","name":"onesdk4347.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5775-c6c10125d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk9742.pstest.test","name":"onesdk9742.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-116e-dd81f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4042\/providers\/Microsoft.Network\/dnszones\/onesdk6110.pstest.test","name":"onesdk6110.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3099-a3e3a234d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4050\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3d85-5731752cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4076\/providers\/Microsoft.Network\/dnszones\/onesdk6687.pstest.test","name":"onesdk6687.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-687b-8e0afb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4081\/providers\/Microsoft.Network\/dnszones\/onesdk2629.pstest.test","name":"onesdk2629.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3531-875d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4129\/providers\/Microsoft.Network\/dnszones\/onesdk5232.pstest.test","name":"onesdk5232.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3082-d9fd584ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4161\/providers\/Microsoft.Network\/dnszones\/onesdk3953.pstest.test","name":"onesdk3953.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-560e-1828fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4179\/providers\/Microsoft.Network\/dnszones\/onesdk6739.pstest.test","name":"onesdk6739.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-783a-1e50fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4201\/providers\/Microsoft.Network\/dnszones\/onesdk1912.pstest.test","name":"onesdk1912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-91c7-be08601fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4202\/providers\/Microsoft.Network\/dnszones\/onesdk8794.pstest.test","name":"onesdk8794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78df-63edf529d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4214\/providers\/Microsoft.Network\/dnszones\/onesdk8488.pstest.test","name":"onesdk8488.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a6e-07ff0d39d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4234\/providers\/Microsoft.Network\/dnszones\/onesdk7584.pstest.test","name":"onesdk7584.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-67f3-ac7e2629d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4263\/providers\/Microsoft.Network\/dnszones\/onesdk5331.pstest.test","name":"onesdk5331.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e2d-0b2fc82ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4302\/providers\/Microsoft.Network\/dnszones\/onesdk4345.pstest.test","name":"onesdk4345.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a69-f469fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4348\/providers\/Microsoft.Network\/dnszones\/onesdk5365.pstest.test","name":"onesdk5365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bee0-caf1fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4363\/providers\/Microsoft.Network\/dnszones\/onesdk1745.pstest.test","name":"onesdk1745.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb7f-8f30fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4371\/providers\/Microsoft.Network\/dnszones\/onesdk3277.pstest.test","name":"onesdk3277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c0f7-10b9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk438\/providers\/Microsoft.Network\/dnszones\/onesdk5801.pstest.test","name":"onesdk5801.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ff5-1397fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4412\/providers\/Microsoft.Network\/dnszones\/onesdk3735.pstest.test","name":"onesdk3735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5279-2d2e3447d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4449\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7b07-b5d6611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4462\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8858-f99a1b4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4474\/providers\/Microsoft.Network\/dnszones\/onesdk5545.pstest.test","name":"onesdk5545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-daee-9517fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4553\/providers\/Microsoft.Network\/dnszones\/onesdk7120.pstest.test","name":"onesdk7120.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7b6-ffc3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4573\/providers\/Microsoft.Network\/dnszones\/onesdk785.pstest.test","name":"onesdk785.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce8b-8b64721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4613\/providers\/Microsoft.Network\/dnszones\/onesdk8420.pstest.test","name":"onesdk8420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78c9-efd7fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk466\/providers\/Microsoft.Network\/dnszones\/onesdk8888.pstest.test","name":"onesdk8888.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c6e0-39d9502ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4668\/providers\/Microsoft.Network\/dnszones\/onesdk1495.pstest.test","name":"onesdk1495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c531-e005e422d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk471\/providers\/Microsoft.Network\/dnszones\/onesdk8865.pstest.test","name":"onesdk8865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-550f-fadbc43dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4743\/providers\/Microsoft.Network\/dnszones\/onesdk1635.pstest.test","name":"onesdk1635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-47bd-29c49a34d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4762\/providers\/Microsoft.Network\/dnszones\/onesdk1821.pstest.test","name":"onesdk1821.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5186-0a98d14fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4834\/providers\/Microsoft.Network\/dnszones\/onesdk9711.pstest.test","name":"onesdk9711.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0059-1d52b34cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk488\/providers\/Microsoft.Network\/dnszones\/onesdk8545.pstest.test","name":"onesdk8545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f58e-a75bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4891\/providers\/Microsoft.Network\/dnszones\/onesdk513.pstest.test","name":"onesdk513.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efee-a9bbfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4936\/providers\/Microsoft.Network\/dnszones\/onesdk2772.pstest.test","name":"onesdk2772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d091-83740e4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4958\/providers\/Microsoft.Network\/dnszones\/onesdk7482.pstest.test","name":"onesdk7482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e139-f513a03ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5061\/providers\/Microsoft.Network\/dnszones\/onesdk7650.pstest.test","name":"onesdk7650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce49-6a88f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5155\/providers\/Microsoft.Network\/dnszones\/onesdk97.pstest.test","name":"onesdk97.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d36f-3d97b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5202\/providers\/Microsoft.Network\/dnszones\/onesdk2445.pstest.test","name":"onesdk2445.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-355b-80f3711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5216\/providers\/Microsoft.Network\/dnszones\/onesdk5449.pstest.test","name":"onesdk5449.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c515-315cd126d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5228\/providers\/Microsoft.Network\/dnszones\/onesdk7389.pstest.test","name":"onesdk7389.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d957-ade1f71fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5231\/providers\/Microsoft.Network\/dnszones\/onesdk7994.pstest.test","name":"onesdk7994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2642-d6f4af25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5236\/providers\/Microsoft.Network\/dnszones\/onesdk3237.pstest.test","name":"onesdk3237.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d3af-963ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5267\/providers\/Microsoft.Network\/dnszones\/onesdk748.pstest.test","name":"onesdk748.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0320-77c76523d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5321\/providers\/Microsoft.Network\/dnszones\/onesdk9913.pstest.test","name":"onesdk9913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b17-e448fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5375\/providers\/Microsoft.Network\/dnszones\/onesdk6291.pstest.test","name":"onesdk6291.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3ca1-2d5bbf53d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5589\/providers\/Microsoft.Network\/dnszones\/onesdk548.pstest.test","name":"onesdk548.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-60c6-af58fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5598\/providers\/Microsoft.Network\/dnszones\/onesdk2400.pstest.test","name":"onesdk2400.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9df-ae1aaa36d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk560\/providers\/Microsoft.Network\/dnszones\/onesdk4022.pstest.test","name":"onesdk4022.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7b2f-a130f924d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5605\/providers\/Microsoft.Network\/dnszones\/onesdk6812.pstest.test","name":"onesdk6812.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e70-7f8f3e38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5613\/providers\/Microsoft.Network\/dnszones\/onesdk4887.pstest.test","name":"onesdk4887.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea3-46abf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk563\/providers\/Microsoft.Network\/dnszones\/onesdk5622.pstest.test","name":"onesdk5622.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35b6-0f3dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5633\/providers\/Microsoft.Network\/dnszones\/onesdk957.pstest.test","name":"onesdk957.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9794-b7bb721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5662\/providers\/Microsoft.Network\/dnszones\/onesdk5551.pstest.test","name":"onesdk5551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-ea04-868ff53cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5717\/providers\/Microsoft.Network\/dnszones\/onesdk8803.pstest.test","name":"onesdk8803.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-3693-7ac0e035d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5741\/providers\/Microsoft.Network\/dnszones\/onesdk4971.pstest.test","name":"onesdk4971.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-16d7-fe67fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5849\/providers\/Microsoft.Network\/dnszones\/onesdk6028.pstest.test","name":"onesdk6028.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9703-59baf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5891\/providers\/Microsoft.Network\/dnszones\/onesdk1490.pstest.test","name":"onesdk1490.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a513-4c577d4dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk1426.pstest.test","name":"onesdk1426.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3620-6eb4721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk75.pstest.test","name":"onesdk75.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d72-53dafd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6001\/providers\/Microsoft.Network\/dnszones\/onesdk7554.pstest.test","name":"onesdk7554.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e36-2123aa36d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk602\/providers\/Microsoft.Network\/dnszones\/onesdk3442.pstest.test","name":"onesdk3442.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05d9-d16cea40d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6031\/providers\/Microsoft.Network\/dnszones\/onesdk4501.pstest.test","name":"onesdk4501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1d39-ce5da623d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6043\/providers\/Microsoft.Network\/dnszones\/onesdk7277.pstest.test","name":"onesdk7277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b920-1869611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6125\/providers\/Microsoft.Network\/dnszones\/onesdk8691.pstest.test","name":"onesdk8691.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-16ad-47b51735d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6142\/providers\/Microsoft.Network\/dnszones\/onesdk3174.pstest.test","name":"onesdk3174.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-402f-2bd0611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6180\/providers\/Microsoft.Network\/dnszones\/onesdk1410.pstest.test","name":"onesdk1410.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-8076-e7087252d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6194\/providers\/Microsoft.Network\/dnszones\/onesdk2606.pstest.test","name":"onesdk2606.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8036-7ff3f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6218\/providers\/Microsoft.Network\/dnszones\/onesdk182.pstest.test","name":"onesdk182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e269-5f00fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6230\/providers\/Microsoft.Network\/dnszones\/onesdk794.pstest.test","name":"onesdk794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb5c-688ffa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6238\/providers\/Microsoft.Network\/dnszones\/onesdk1437.pstest.test","name":"onesdk1437.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c4ec-c2cafa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6270\/providers\/Microsoft.Network\/dnszones\/onesdk5966.pstest.test","name":"onesdk5966.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5adc-c19fa725d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6293\/providers\/Microsoft.Network\/dnszones\/onesdk8153.pstest.test","name":"onesdk8153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df7c-e132584ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk63\/providers\/Microsoft.Network\/dnszones\/onesdk9277.pstest.test","name":"onesdk9277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-492a-773cbf2ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk7018.pstest.test","name":"onesdk7018.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-837f-71ddf547d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk9735.pstest.test","name":"onesdk9735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b606-337b721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6360\/providers\/Microsoft.Network\/dnszones\/onesdk7945.pstest.test","name":"onesdk7945.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6d8c-0a0af91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6364\/providers\/Microsoft.Network\/dnszones\/onesdk9096.pstest.test","name":"onesdk9096.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e729-cdf0b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6456\/providers\/Microsoft.Network\/dnszones\/onesdk5828.pstest.test","name":"onesdk5828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5187-58e4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6478\/providers\/Microsoft.Network\/dnszones\/onesdk1379.pstest.test","name":"onesdk1379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2b8e-6425062ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6572\/providers\/Microsoft.Network\/dnszones\/onesdk6230.pstest.test","name":"onesdk6230.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68e8-4f34f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6588\/providers\/Microsoft.Network\/dnszones\/onesdk1156.pstest.test","name":"onesdk1156.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-765b-82c7302ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6593\/providers\/Microsoft.Network\/dnszones\/onesdk5086.pstest.test","name":"onesdk5086.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c920-1caa9a27d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6606\/providers\/Microsoft.Network\/dnszones\/onesdk9026.pstest.test","name":"onesdk9026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-03d3-7bc3711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6610\/providers\/Microsoft.Network\/dnszones\/onesdk6999.pstest.test","name":"onesdk6999.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad57-12c53f2dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6616\/providers\/Microsoft.Network\/dnszones\/onesdk3188.pstest.test","name":"onesdk3188.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5cfc-0989721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6626\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-26f8-16f3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6674\/providers\/Microsoft.Network\/dnszones\/onesdk7395.pstest.test","name":"onesdk7395.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a8e-dda2ef23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6713\/providers\/Microsoft.Network\/dnszones\/onesdk6982.pstest.test","name":"onesdk6982.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ac62-ac6eae23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6721\/providers\/Microsoft.Network\/dnszones\/onesdk9507.pstest.test","name":"onesdk9507.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b55f-a3ad323cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6749\/providers\/Microsoft.Network\/dnszones\/onesdk201.pstest.test","name":"onesdk201.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb32-dfa19a27d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6784\/providers\/Microsoft.Network\/dnszones\/onesdk3572.pstest.test","name":"onesdk3572.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a21-418dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6793\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-015a-23f5f529d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6848\/providers\/Microsoft.Network\/dnszones\/onesdk6703.pstest.test","name":"onesdk6703.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35e9-4ea3c53dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6880\/providers\/Microsoft.Network\/dnszones\/onesdk2778.pstest.test","name":"onesdk2778.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-752e-1cd4c43dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6898\/providers\/Microsoft.Network\/dnszones\/onesdk5795.pstest.test","name":"onesdk5795.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8ce2-6c62fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6906\/providers\/Microsoft.Network\/dnszones\/onesdk1794.pstest.test","name":"onesdk1794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cbce-d7b3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6917\/providers\/Microsoft.Network\/dnszones\/onesdk8494.pstest.test","name":"onesdk8494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c3eb-f5d2ee23d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['51879'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:03 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzj5mt6lF61Sc8pazKtoQKhtKfOG4ka2W-lL1l2JHzr4TtXSb3GO7hLp0QkdF92RgqSClGdCxoilWsP_i442TiDcbRY6sFIibygvqyu8w7aIaFFcnZMtEq-A90KzPHus6ipO6fklCPREJtdCwiVVoP1cu5jWSv5p1o0Sff9nPVKbkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075726","not_before":"1521071826","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgyNiwibmJmIjoxNTIxMDcxODI2LCJleHAiOjE1MjEwNzU3MjYsImFpbyI6IjQyUmdZSmlZbVA5MHo3ZlN5UXFCRXBjdERIZUpBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJheE1BQUEiLCJ2ZXIiOiIxLjAifQ.u_LAv-gbe5Rl-qvoMnwyHK1IiW_9VVvhZXlSpRHa5B-OJ8dn39oAAbwhzNV9UklpoBlskSpme34V0S12WV_Hmcl5rtTaDazl1mDrzOumYhLI9rby9jWl9cZMZ6zkzLf7M1xMm2XDxsNMS10aAFgG8dDA9CX2PGBz0ePdCoXJyF4v5eyVMr06Qh_daqsDCC_7vVLYnAOnACi5T-mHaNzLNy5gaBohM3YmwZs1LtsVVxXSC2By5ynJASJLktkeU7lSMIbTx6jk6AYTJX5GKiwdurR2_mwIG-NLYQB_dsaeTQ2c96nK9S7yPlISUfC_-268SKGYZxfe4XDhP7vKJaBVsQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:06 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q=","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7040\/providers\/Microsoft.Network\/dnszones\/onesdk6420.pstest.test","name":"onesdk6420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f329-8dfdc548d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7065\/providers\/Microsoft.Network\/dnszones\/onesdk7252.pstest.test","name":"onesdk7252.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f81d-071b3e52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7088\/providers\/Microsoft.Network\/dnszones\/onesdk6560.pstest.test","name":"onesdk6560.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ee5b-e561da4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7119\/providers\/Microsoft.Network\/dnszones\/onesdk551.pstest.test","name":"onesdk551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-10cf-30070e39d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7125\/providers\/Microsoft.Network\/dnszones\/onesdk8217.pstest.test","name":"onesdk8217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ea00-444df81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7136\/providers\/Microsoft.Network\/dnszones\/onesdk480.pstest.test","name":"onesdk480.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b1af-fa0e2040d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7140\/providers\/Microsoft.Network\/dnszones\/onesdk6605.pstest.test","name":"onesdk6605.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d5e1-5d0e2156d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7176\/providers\/Microsoft.Network\/dnszones\/onesdk9349.pstest.test","name":"onesdk9349.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb71-6f98e940d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7242\/providers\/Microsoft.Network\/dnszones\/onesdk4616.pstest.test","name":"onesdk4616.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e0eb-890cf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7332\/providers\/Microsoft.Network\/dnszones\/onesdk3587.pstest.test","name":"onesdk3587.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fe40-dd818b2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7337\/providers\/Microsoft.Network\/dnszones\/onesdk5635.pstest.test","name":"onesdk5635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-22bb-86338f54d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7344\/providers\/Microsoft.Network\/dnszones\/onesdk6001.pstest.test","name":"onesdk6001.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0395-d5c2f12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7355\/providers\/Microsoft.Network\/dnszones\/onesdk2943.pstest.test","name":"onesdk2943.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3842-9679333cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7356\/providers\/Microsoft.Network\/dnszones\/onesdk4147.pstest.test","name":"onesdk4147.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9c54-14ff382ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7406\/providers\/Microsoft.Network\/dnszones\/onesdk4171.pstest.test","name":"onesdk4171.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9b6c-1be1352dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk744\/providers\/Microsoft.Network\/dnszones\/onesdk9600.pstest.test","name":"onesdk9600.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5736-5a1fe322d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7442\/providers\/Microsoft.Network\/dnszones\/onesdk5915.pstest.test","name":"onesdk5915.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9cd7-ecca711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7466\/providers\/Microsoft.Network\/dnszones\/onesdk7233.pstest.test","name":"onesdk7233.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cfe4-e0368849d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7529\/providers\/Microsoft.Network\/dnszones\/onesdk6493.pstest.test","name":"onesdk6493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9549-bbb2b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7530\/providers\/Microsoft.Network\/dnszones\/onesdk3045.pstest.test","name":"onesdk3045.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7789-af31a150d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7535\/providers\/Microsoft.Network\/dnszones\/onesdk3217.pstest.test","name":"onesdk3217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a77-e81c593fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.test","name":"onesdk1523.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6aac-ab4a883ed201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.testa","name":"onesdk1523.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-432a-244b883ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk9365.pstest.test","name":"onesdk9365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d8c8-a5ac721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7594\/providers\/Microsoft.Network\/dnszones\/onesdk4695.pstest.test","name":"onesdk4695.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfd-8530903ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk763\/providers\/Microsoft.Network\/dnszones\/onesdk2995.pstest.test","name":"onesdk2995.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7016-c9d4f02dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7656\/providers\/Microsoft.Network\/dnszones\/onesdk4165.pstest.test","name":"onesdk4165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-154e-0c89ea4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7699\/providers\/Microsoft.Network\/dnszones\/onesdk746.pstest.test","name":"onesdk746.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da71-176d8a2bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7705\/providers\/Microsoft.Network\/dnszones\/onesdk632.pstest.test","name":"onesdk632.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-65e2-3a49611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7710\/providers\/Microsoft.Network\/dnszones\/onesdk4259.pstest.test","name":"onesdk4259.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ddc-badbb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk779\/providers\/Microsoft.Network\/dnszones\/onesdk1696.pstest.test","name":"onesdk1696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68dd-d707fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7822\/providers\/Microsoft.Network\/dnszones\/onesdk7725.pstest.test","name":"onesdk7725.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e203-be0c3f25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7837\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-75cd-825ad739d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7913\/providers\/Microsoft.Network\/dnszones\/onesdk5889.pstest.test","name":"onesdk5889.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1e44-8594ac41d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7964\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4548-76c96528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7983\/providers\/Microsoft.Network\/dnszones\/onesdk1262.pstest.test","name":"onesdk1262.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1107-69bf611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7991\/providers\/Microsoft.Network\/dnszones\/onesdk8675.pstest.test","name":"onesdk8675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-305d-d5319149d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8038\/providers\/Microsoft.Network\/dnszones\/onesdk3192.pstest.test","name":"onesdk3192.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ccea-1b31f652d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8043\/providers\/Microsoft.Network\/dnszones\/onesdk7041.pstest.test","name":"onesdk7041.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9055-fe90ea4bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8109\/providers\/Microsoft.Network\/dnszones\/onesdk6495.pstest.test","name":"onesdk6495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cf40-9859b34cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8122\/providers\/Microsoft.Network\/dnszones\/onesdk253.pstest.test","name":"onesdk253.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b190-2e52fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8154\/providers\/Microsoft.Network\/dnszones\/onesdk153.pstest.test","name":"onesdk153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-308d-cfad611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk822\/providers\/Microsoft.Network\/dnszones\/onesdk8520.pstest.test","name":"onesdk8520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b7de-e27efd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8222\/providers\/Microsoft.Network\/dnszones\/onesdk6033.pstest.test","name":"onesdk6033.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7374-4d746c46d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8268\/providers\/Microsoft.Network\/dnszones\/onesdk1602.pstest.test","name":"onesdk1602.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1dc5-edbdfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8272\/providers\/Microsoft.Network\/dnszones\/onesdk1083.pstest.test","name":"onesdk1083.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-08d9-5d7bf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8300\/providers\/Microsoft.Network\/dnszones\/onesdk5050.pstest.test","name":"onesdk5050.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6728-d2bef629d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8307\/providers\/Microsoft.Network\/dnszones\/onesdk128.pstest.test","name":"onesdk128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b309-a4eafc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8357\/providers\/Microsoft.Network\/dnszones\/onesdk52.pstest.test","name":"onesdk52.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d6b-4232721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8365\/providers\/Microsoft.Network\/dnszones\/onesdk708.pstest.test","name":"onesdk708.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a6a5-b75bfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8377\/providers\/Microsoft.Network\/dnszones\/onesdk7016.pstest.test","name":"onesdk7016.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ed2e-4a36b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8456\/providers\/Microsoft.Network\/dnszones\/onesdk1593.pstest.test","name":"onesdk1593.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b68d-8e9c611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8479\/providers\/Microsoft.Network\/dnszones\/onesdk9111.pstest.test","name":"onesdk9111.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-00d5-4f63611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8487\/providers\/Microsoft.Network\/dnszones\/onesdk6497.pstest.test","name":"onesdk6497.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bd89-2c7e711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8499\/providers\/Microsoft.Network\/dnszones\/onesdk2786.pstest.test","name":"onesdk2786.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-887c-5c2fb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8522\/providers\/Microsoft.Network\/dnszones\/onesdk8790.pstest.test","name":"onesdk8790.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b879-d2d4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8552\/providers\/Microsoft.Network\/dnszones\/onesdk4250.pstest.test","name":"onesdk4250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ef5e-96007252d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8559\/providers\/Microsoft.Network\/dnszones\/onesdk501.pstest.test","name":"onesdk501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b5b-734a3f38d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8580\/providers\/Microsoft.Network\/dnszones\/onesdk1493.pstest.test","name":"onesdk1493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-980c-f138721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8598\/providers\/Microsoft.Network\/dnszones\/onesdk2766.pstest.test","name":"onesdk2766.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b1c5-520f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8603\/providers\/Microsoft.Network\/dnszones\/onesdk1068.pstest.test","name":"onesdk1068.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-80e1-600a822bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8609\/providers\/Microsoft.Network\/dnszones\/onesdk9705.pstest.test","name":"onesdk9705.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-abd3-7179fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8625\/providers\/Microsoft.Network\/dnszones\/onesdk8944.pstest.test","name":"onesdk8944.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4d22-3d6ffb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8644\/providers\/Microsoft.Network\/dnszones\/onesdk4244.pstest.test","name":"onesdk4244.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-052f-06e3b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk869\/providers\/Microsoft.Network\/dnszones\/onesdk2868.pstest.test","name":"onesdk2868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cffa-aa45f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8699\/providers\/Microsoft.Network\/dnszones\/onesdk1043.pstest.test","name":"onesdk1043.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0235-60062156d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8708\/providers\/Microsoft.Network\/dnszones\/onesdk7157.pstest.test","name":"onesdk7157.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4281-8685234bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8840\/providers\/Microsoft.Network\/dnszones\/onesdk9197.pstest.test","name":"onesdk9197.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bc8-3777e135d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8869\/providers\/Microsoft.Network\/dnszones\/onesdk2810.pstest.test","name":"onesdk2810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29cd-5058b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8903\/providers\/Microsoft.Network\/dnszones\/onesdk3123.pstest.test","name":"onesdk3123.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4e1b-c219611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk891\/providers\/Microsoft.Network\/dnszones\/onesdk696.pstest.test","name":"onesdk696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8235-fe80de15d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8920\/providers\/Microsoft.Network\/dnszones\/onesdk2672.pstest.test","name":"onesdk2672.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f6b-9a38fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8924\/providers\/Microsoft.Network\/dnszones\/onesdk6190.pstest.test","name":"onesdk6190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e05-5051f63cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8932\/providers\/Microsoft.Network\/dnszones\/onesdk6647.pstest.test","name":"onesdk6647.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1ad4-0fa27c4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8951\/providers\/Microsoft.Network\/dnszones\/onesdk4871.pstest.test","name":"onesdk4871.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c83-fb77fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8967\/providers\/Microsoft.Network\/dnszones\/onesdk8737.pstest.test","name":"onesdk8737.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a41d-62d6f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8987\/providers\/Microsoft.Network\/dnszones\/onesdk3928.pstest.test","name":"onesdk3928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-88e8-86f64638d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8992\/providers\/Microsoft.Network\/dnszones\/onesdk8784.pstest.test","name":"onesdk8784.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f37-b762fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9005\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e7f3-8ab05155d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk901\/providers\/Microsoft.Network\/dnszones\/onesdk8722.pstest.test","name":"onesdk8722.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2c01-cc55721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9035\/providers\/Microsoft.Network\/dnszones\/onesdk7935.pstest.test","name":"onesdk7935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c10f-7074f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9049\/providers\/Microsoft.Network\/dnszones\/onesdk1994.pstest.test","name":"onesdk1994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4e15-b5578a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9068\/providers\/Microsoft.Network\/dnszones\/onesdk8660.pstest.test","name":"onesdk8660.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ef6-de152140d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9084\/providers\/Microsoft.Network\/dnszones\/onesdk8158.pstest.test","name":"onesdk8158.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-24fa-ba41fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9090\/providers\/Microsoft.Network\/dnszones\/onesdk4457.pstest.test","name":"onesdk4457.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e5d-cf1ba03ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9134\/providers\/Microsoft.Network\/dnszones\/onesdk6175.pstest.test","name":"onesdk6175.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c01a-2697f41fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9139\/providers\/Microsoft.Network\/dnszones\/onesdk417.pstest.test","name":"onesdk417.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f47e-5679d02ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9160\/providers\/Microsoft.Network\/dnszones\/onesdk6148.pstest.test","name":"onesdk6148.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0be8-c83f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9164\/providers\/Microsoft.Network\/dnszones\/onesdk9827.pstest.test","name":"onesdk9827.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df85-fbf87337d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9175\/providers\/Microsoft.Network\/dnszones\/onesdk5076.pstest.test","name":"onesdk5076.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-61d3-4f3bf91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9247\/providers\/Microsoft.Network\/dnszones\/onesdk6135.pstest.test","name":"onesdk6135.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d81b-f72a8f54d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9265\/providers\/Microsoft.Network\/dnszones\/onesdk5743.pstest.test","name":"onesdk5743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9d87-f284693bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9270\/providers\/Microsoft.Network\/dnszones\/onesdk5482.pstest.test","name":"onesdk5482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2d9-f811fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9323\/providers\/Microsoft.Network\/dnszones\/onesdk9813.pstest.test","name":"onesdk9813.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b8f8-b541fe47d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9361\/providers\/Microsoft.Network\/dnszones\/onesdk4646.pstest.test","name":"onesdk4646.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a19-0ac3721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9412\/providers\/Microsoft.Network\/dnszones\/onesdk4765.pstest.test","name":"onesdk4765.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a534-50e48a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9423\/providers\/Microsoft.Network\/dnszones\/onesdk8561.pstest.test","name":"onesdk8561.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40f2-c3a4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9462\/providers\/Microsoft.Network\/dnszones\/onesdk4580.pstest.test","name":"onesdk4580.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-704d-79befc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9466\/providers\/Microsoft.Network\/dnszones\/onesdk2434.pstest.test","name":"onesdk2434.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-204e-b882d44fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk947\/providers\/Microsoft.Network\/dnszones\/onesdk8857.pstest.test","name":"onesdk8857.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7103-354bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['51753'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:09 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:10 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUcjVqDGhAxJMzL2Nb1k3atnGD4jiJHrDK_59eQT--ZobU9iYD3FzXoAawMtN2v3FOG3MbPr58mLJJRkCunFih5gCtSqihxaX-xb5VfYszgENDOVyiRzQLcteQ07A-xpPBNb7XFazefbWdEBe6QQxFKGdLMB6jtWil3PddpmKk8MgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075731","not_before":"1521071831","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgzMSwibmJmIjoxNTIxMDcxODMxLCJleHAiOjE1MjEwNzU3MzEsImFpbyI6IjQyUmdZUGplZUs5dFNVRHloT3FsNS9UU3YyOElBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhNUk1BQUEiLCJ2ZXIiOiIxLjAifQ.WtQZRoIrxgfS6J0CF700JmMz2SOrS6wco7RJh2R6x1Lfi8i8HRD-Iq4XOG64suP6LIeFSPaNES3CBoKgOSIsq3zVPrG4ztmP53QxpP8Hs_lYEu_X6eT2JdOEny2Rg0VgWr_vT_kRq3ihF2KCVq_YO0IFuvSbHR7dtVmxoPG8PhiZ_0lZIKr66XNDw784PfUlnqHOuk3kjGuALqiXu0gTBjPykLw4TNQjDrRovj9K9uIf-wijDeNAK8d4HsV1vH6oouiDdKtGSAsqdI6wZmYx0KLyTRMIGfeqX2SDf7Kd1PCVm9I2xHRch_jlVP1JnC09KTE0ZGDtmyzXgl2NS-HpQw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:11 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q= + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9543\/providers\/Microsoft.Network\/dnszones\/onesdk8652.pstest.test","name":"onesdk8652.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7808-a7dfa03ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9551\/providers\/Microsoft.Network\/dnszones\/onesdk433.pstest.test","name":"onesdk433.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9d5f-94b8e035d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk957\/providers\/Microsoft.Network\/dnszones\/onesdk438.pstest.test","name":"onesdk438.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d859-f085fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9570\/providers\/Microsoft.Network\/dnszones\/onesdk3559.pstest.test","name":"onesdk3559.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-14b0-78a8611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9600\/providers\/Microsoft.Network\/dnszones\/onesdk8840.pstest.test","name":"onesdk8840.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2e0-930bb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9614\/providers\/Microsoft.Network\/dnszones\/onesdk27.pstest.test","name":"onesdk27.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-447a-b854f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9647\/providers\/Microsoft.Network\/dnszones\/onesdk6702.pstest.test","name":"onesdk6702.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c22-6176fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk3247.pstest.test","name":"onesdk3247.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5344-235b3547d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9700\/providers\/Microsoft.Network\/dnszones\/onesdk3208.pstest.test","name":"onesdk3208.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1821-f313f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9755\/providers\/Microsoft.Network\/dnszones\/onesdk1281.pstest.test","name":"onesdk1281.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-84be-b137fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9770\/providers\/Microsoft.Network\/dnszones\/onesdk7520.pstest.test","name":"onesdk7520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-684e-151ab91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9792\/providers\/Microsoft.Network\/dnszones\/onesdk4698.pstest.test","name":"onesdk4698.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4070-a5c1f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk98\/providers\/Microsoft.Network\/dnszones\/onesdk5779.pstest.test","name":"onesdk5779.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d0cb-1c90721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9865\/providers\/Microsoft.Network\/dnszones\/onesdk1690.pstest.test","name":"onesdk1690.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8100-507f6851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9877\/providers\/Microsoft.Network\/dnszones\/onesdk4260.pstest.test","name":"onesdk4260.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a704-b95ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9910\/providers\/Microsoft.Network\/dnszones\/onesdk8222.pstest.test","name":"onesdk8222.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-864f-9dacfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9986\/providers\/Microsoft.Network\/dnszones\/onesdk7796.pstest.test","name":"onesdk7796.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5661-d8b9b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9990\/providers\/Microsoft.Network\/dnszones\/onesdk3.pstest.test","name":"onesdk3.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b60d-8590b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9993\/providers\/Microsoft.Network\/dnszones\/onesdk6809.pstest.test","name":"onesdk6809.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ea8-8a46721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-634d-c14347c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com","name":"foo.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1f3d-d6f047c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1124\/providers\/Microsoft.Network\/dnszones\/ps5492.pstest.test","name":"ps5492.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da4b-753714b7d301","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1425\/providers\/Microsoft.Network\/dnszones\/ps6132.pstest.test","name":"ps6132.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fc37-d08c07bbd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2767\/providers\/Microsoft.Network\/dnszones\/ps5692.pstest.test","name":"ps5692.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3d2d-941151b6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2941\/providers\/Microsoft.Network\/dnszones\/ps1255.pstest.test","name":"ps1255.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-da42-547a4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5162\/providers\/Microsoft.Network\/dnszones\/ps6263.pstest.test","name":"ps6263.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cb12-6b2f4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5241\/providers\/Microsoft.Network\/dnszones\/ps2589.pstest.test","name":"ps2589.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-161e-19d617b7d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps7513\/providers\/Microsoft.Network\/dnszones\/ps7155.pstest.test","name":"ps7155.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-aa63-69cc4eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps8876\/providers\/Microsoft.Network\/dnszones\/ps3411.pstest.test","name":"ps3411.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-69dd-65024eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a2fd-97bef6d5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":9}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.net","name":"jt-test.net","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4753-2e0d1ec3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test2.com","name":"jt-test2.com","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-63a9-32a82bc3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg2\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c20f-4c6b21c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testclirg\/providers\/Microsoft.Network\/dnszones\/testcli.com","name":"testcli.com","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-8e54-7da7a8b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest.test","name":"onesdkrand.10500onesdk.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9a2-cbc94123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest1.1test","name":"onesdkrand.10500onesdk.pstest1.1test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4dd5-44834423d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest21.22test","name":"onesdkrand.10500onesdk.pstest21.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-afef-8d834c23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest22.22test","name":"onesdkrand.10500onesdk.pstest22.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2b55-ff294723d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest23.22test","name":"onesdkrand.10500onesdk.pstest23.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfac-f6bd5023d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest24.24test","name":"onesdkrand.10500onesdk.pstest24.24test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d222-73015123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest33.23test","name":"onesdkrand.10500onesdk.pstest33.23test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9eb-dfae4d23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/test.zone","name":"test.zone","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ec-78aeccd3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone34","name":"testsome.zone34","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ba21-2ccaeb23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone35","name":"testsome.zone35","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fddc-7d88f123d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone36","name":"testsome.zone36","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-72b6-45e90124d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone37","name":"testsome.zone37","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6b72-82e1db24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone38","name":"testsome.zone38","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a68-a1c2dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone39","name":"testsome.zone39","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4ba3-41d6dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone40","name":"testsome.zone40","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-004a-d1f0dc24d201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone41","name":"testsome.zone41","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35ec-c705dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone42","name":"testsome.zone42","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0653-37e9dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone43","name":"testsome.zone43","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bff9-0cb3de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone44","name":"testsome.zone44","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7627-24e6de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone45","name":"testsome.zone45","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6f69-5fbc0c25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone46","name":"testsome.zone46","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c2bf-b1e60e25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone47","name":"testsome.zone47","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6799-720a0f25d201","location":"global","tags":{"name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone49","name":"testsome.zone49","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-0b92-8ab20f25d201","location":"global","tags":{"Name":"tag1","Value":"tag2"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone1","name":"testsome1.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-faa0-5c2d0e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone2","name":"testsome1.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-378b-aa750e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone3","name":"testsome1.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c833-d5a90e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone4","name":"testsome1.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0160-e0a17d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone5","name":"testsome1.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17e8-90bf7d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone1","name":"testsome2.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2cb2-47267e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone10","name":"testsome2.zone10","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40b3-4aec9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone11","name":"testsome2.zone11","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7dfe-edeea025d201","location":"global","tags":{"value":"Value1","Name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone2","name":"testsome2.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c994-c0447e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone3","name":"testsome2.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-53f6-5e497e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone4","name":"testsome2.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a8a1-98dd8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone5","name":"testsome2.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8c9-b1ed8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone6","name":"testsome2.zone6","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e816-2ff78725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone7","name":"testsome2.zone7","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-529e-046a9125d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone8","name":"testsome2.zone8","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5fc0-64ac9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['35859'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:13 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:14 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzA63nyKCFhAfmYtwcikEN_C1bqNcrUc4zzCbMra3PJxMoOJK-Bvwbk422J4BEIkR19AobxMncDNf81Oera6SyWRC34uZUWB2XjTd7HMCmBL5pO_-Sm5rfysyHCKhtnCeoRG6tF52FjnvwGc8V-FxFaVZMZoA1v-c7x8BHZGfthJogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075737","not_before":"1521071837","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgzNywibmJmIjoxNTIxMDcxODM3LCJleHAiOjE1MjEwNzU3MzcsImFpbyI6IjQyUmdZTGk0TmViU2hRVWVWbnVlcHl5ZldidkJEd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6ImZMZFFpdG1INDBDRjhxOUVMM2dBQUEiLCJ2ZXIiOiIxLjAifQ.JsuGKJPAuJ5kUkhVpzbqP7zwswv33gduyPEquHh3OeSN8Vcdcr0Y5PYUiq7PUO-FMxt9-FSz7nSKSAmFm-9GJnD9503LIh1NveRQphND-8rDqlKAtiXZQQVRcdYj974K_4ULYt8_beG6b1O7N2cWlLfk_HyebEOtma1c4tCiM2n4rN1rCa-JCLWfmmAqW2ID_r5eo1NBEuIi5UMPtWf2xgFVIxSU8jRdj0i2GTaNAFAg2s8U9dK2_So__O3dmC_kELPhhMSXxTkvjKofQ0O47LyijpKS7UrqKK3gmfBtl5o5DUGHiea_yHtWljKei1lV2bEkTQA7poQ6BcRZHfHWLQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:17 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"location": "global", "properties": {"zoneType": "Public"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone create] + Connection: [keep-alive] + Content-Length: ['60'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} + headers: + cache-control: [private] + content-length: ['568'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:19 GMT'] + etag: [00000002-0000-0000-b23e-e0e2f0bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:21 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzI7qIMXeTLDikaaMXaAVdZa0eakawwc3BIkVUVVr9ZDkqueR1LxbROxBZzpwIs9Nxn_Di6vz23D48FZ2tTh124V7mGFdBqiz8GfZv5Mykjoxf6RGoM_t9EgnUHjHyejzTwphVcq55F7PUF0JQwwvZy970Lg9-5SpOKTloL65h1UogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075744","not_before":"1521071844","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg0NCwibmJmIjoxNTIxMDcxODQ0LCJleHAiOjE1MjEwNzU3NDQsImFpbyI6IjQyUmdZSGdsSmR3VEZ0dDV2WHZGMTF2YnB1WE1CQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFDUjRBQUEiLCJ2ZXIiOiIxLjAifQ.WuRtu9z38Kj1K_ucluD5HU1lpk2UsNWK2eiykSCN7wsIcWsJWSzWA_PErRTBh7rVhX7hG97q82jvK7ZxwH3ZKYrGVlqZLp-k8YZ4_k-tz76O34EcDqjsLSPg6dsvnGMbBq9fRZR4EtCC3pcAyrrkt0m5RVEzzr-3RDuTHTgzExk8WCQyqYcckrNIJFAvr-9uGd3xKmoMdxP6QCHgA2rx9kEuHfX9npb-tvpwfJJXeMCAnUt_0nQXFv7QXnw7l-ftf4nUpISnfRMeKU-GG_hoL085i0FUPD-Co1p2zfsbXYWL3WKgujbTzlfCPh_wOaYqU8tNQjvDsQiCohIEyKfsZQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:23 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:25 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:26 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzuDav1XjkJTqlDAAHnWI_uEoKjy-iEbqErIi_gjG_U_LCDWx8ZCp1NEFZgIfCa-5GwRmBKf8UOeg6e9nCg7AfCjCG-tqooJel3R3gj5Og6vAj4ZO2Vs1q1BcLVssEtGVTaimmWOaxEOO9bmxLF08wI4EQcudP26vD9XyQOzHVBDUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075748","not_before":"1521071848","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg0OCwibmJmIjoxNTIxMDcxODQ4LCJleHAiOjE1MjEwNzU3NDgsImFpbyI6IjQyUmdZQWlPWTYzdnNqdTFlTityU3ZzNWNTK1ZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpZaFVBQUEiLCJ2ZXIiOiIxLjAifQ.v7TLjGe5WYhXbo0_jZmeADJviEcNm97NjZpGaI7w5xs5FQn2jO4TM4c9cCjypri_sWcmssC19j0qv6xpWlWuD6733m83Cq8SzH_b_FRYDEhxX7TZGnW5hbJ9eWhhDkNY6Rp2lzRvRgiq42JxO9P3MeY1hlT-fl-kxMipqZQ103ML40gwc9xlhstT1nClarob-o3pexzKtJ42tghmcnkwEs2HCndWRf64tQPENDBW1IkhU8ZG5dabBpmpOa8NY6jP0fBNy4e6UcaYKZ0QncK_Sz7_dWCkNvbWhUjfPnvM5yZHFM1K0HxmqTGWdglvxSX_GL3v9ArdQyT7TcYEaGSRwg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:28 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}}'} + headers: + cache-control: [private] + content-length: ['548'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:29 GMT'] + etag: [00000002-0000-0000-b23e-e0e2f0bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:31 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzCuzdP6X7tBIa0IbFneaLUTdG7cLmqa1QIRb9hUiyFfxfY28qbmsHaGj4ZHLb_dTeIWVHcTnxWB2Yt6f_d4T2Krf35HaSIGcJFhTvXmLQTb4AsFeY-VdEOOJykChBBSZg-7BOqjiFtFuyDuqgaFFj8TXVIvC0wn6tn3QEzfSNdZQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075753","not_before":"1521071853","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg1MywibmJmIjoxNTIxMDcxODUzLCJleHAiOjE1MjEwNzU3NTMsImFpbyI6IjQyUmdZTGo5bXBsRmNkMlVWbGFSWTdwbUFqY1dBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamE3QjRBQUEiLCJ2ZXIiOiIxLjAifQ.j57bdiN6j1ikLN3L5x6-oIlzUaj7xHbCflieY_m0Gh3PgG-12hoMhaSWp_bdHubgvyFy2ErQQGdPpqrczuC8HVKsjuU8vbnyErpqrJE0lgkLJmeaHhZ-eNWCoegLLFCqTxStMk56gZF5FiSQW2Bl5bi75h3RVTnOLdKmUu8og1I8bSQaxf0rNRSN7crsW4oTPPbWVOFxZzdL2iLD4r34eIfcI6SyaSGp3DfwORs0n_Bt98uTvHBbxeqU8d1jh2RnRbet34Sg5aVy37DrUDZyzPntvqSErwexy_wJ6Lh2L4zwBBDyZGO1DeCL3tl1zPle8rmhC8YxJqWlyriuXU6HiQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:32 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"67ace931-0795-4416-9544-62ca4ae254c6","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['385'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:35 GMT'] + etag: [67ace931-0795-4416-9544-62ca4ae254c6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzHcdGfI_g0EvIomMIQXb75gEVpEHGtLb_-o7xmsLYJePi-AdtyLieyNF8Y2VuNNZLZckNXKv6FN-ltYCPaWPkxqQHmsMlb8gEoZbRf0POEv6PrvvP6_5Y6JTwsvmcvCpodDiY6w8QeAIJEQu2CprSq7V1t1iNNpcgrnH9MJGVoDggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075758","not_before":"1521071858","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg1OCwibmJmIjoxNTIxMDcxODU4LCJleHAiOjE1MjEwNzU3NTgsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhQUlVBQUEiLCJ2ZXIiOiIxLjAifQ.WPm1-H4UFtTNoMNpVNnqh76oN3Yc0A5uB3M5l97nIpMq3a9fKBZwYzLoeyunkZE574I-TIUnziLx4BCkfpNpgmwmRGFuOYCGZNua4zWDxvKH_L_PrUe3Hn-ZNWjs_FvzsflfCXbwet6PXMcXVE39SIuELf0KD-kvDm8Crx-cI2l1omB1Sp5Wp7THaevUgb9GLAKCLYxCGl8yrUO2z0paSqIGMgzRJA1BSbJFt5ZUKxk7WXiMq5hUR__hWInpHN6P71sm3oha5u1qg6ma52WHh-WAnnDaQfLVKtOyNReEG6wmGaU4ehFFynHTmSyB7RKAZO28Bmb2Kikf6oXEl0fDOQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:37 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"67ace931-0795-4416-9544-62ca4ae254c6","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['385'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:41 GMT'] + etag: [67ace931-0795-4416-9544-62ca4ae254c6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzZRrIuI2NDzW8qhX2WaNsYlZX6mRUvYrhn8AQ-Xp1g3mSP-AUrl-2nN5TSNoG59cin4eVFfFbEZNM-zGeFPOBZw-L0QYI9dO737DUCZTlc0FF_OgFqNx5G30wF7sSCbfWAlMu4m8OzeE8SzNCuc_qA-iOoFjgqVlrqvmO4I7jfgQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075765","not_before":"1521071865","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg2NSwibmJmIjoxNTIxMDcxODY1LCJleHAiOjE1MjEwNzU3NjUsImFpbyI6IjQyUmdZQ2l6MXZhNXZPbnhOdDMxaGJPVFhocjhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZVaWdBQUEiLCJ2ZXIiOiIxLjAifQ.fX_9OsjNPY343SSqbIBiozeRw_rL6YI3SGBAP5ZDy0r4hK44uDkTZkUW5YQMUqHMRAboNmSUzM3nVOv7qBQIdtTeSaLjV5qWO8lAYAfGAqziXFoaIMe3mgsz9GtLKkmnxjZ3v6TcPlqn_5KRvrj6H7qwW9dUVdKCyqN7BiNh_MEcxBxt-n3rWajThiE6CVREmS8N5JtnOcpD8JzSevtkuXJgtmVEWYcc-EWov5vstXZBuv1SdAsMjqUstUbVzHfGAgycvdUzCVuux5Tmj4kFxhzQ9dwbDLbop6cuK7VlPs-cbjUUZipy2XjtWyYb8FVeYJP1fetAqlZmpxuJePHIlQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:45 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "67ace931-0795-4416-9544-62ca4ae254c6", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7dd80698-b69e-4c02-92a8-3c5390afcc88","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + headers: + cache-control: [private] + content-length: ['412'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:47 GMT'] + etag: [7dd80698-b69e-4c02-92a8-3c5390afcc88] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:48 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzqTy-Ljva9sjzG--owV5vUD9D5qwnDipql0JzNelqdb5ILgkUZiMUHKnvYDzOpb6wSlt9RNfGZZRCKbuNi8tD4BgEHBo8MIGGZ6-Y_0Hmy7_xyoiYD00GI4BhAOII5sHaxacz_DrgJ8lrlVMGsYD7SzRgGxzb3kPKW41lxFKWQa4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075770","not_before":"1521071870","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg3MCwibmJmIjoxNTIxMDcxODcwLCJleHAiOjE1MjEwNzU3NzAsImFpbyI6IjQyUmdZSkQ3YjdocG51RE9FMXRtVEd4N043OWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3YyaWdBQUEiLCJ2ZXIiOiIxLjAifQ.gOpLVf05emm3g2qcGOO7LU2hwyDw7hu1yLuhlfH1rUG5wzGeHTlZ_OBKw52gbbwCcW2JCzAIvHO7nEM7Vo2H4bECmYm0lkmzKdAILdaWyrMV8IA7INMADUlK_ZRkEvKtR0ag1B9K2M_KiDdSP_z24hFhDvmnvzNrOKFhheGOE_lQQ13He4WFCUw-2MJdYUv690hjxjKieJp9rCrAIduc9mQx1m2UQQcM4tNyC2kUbVxaBrWT_mpBHk-R7o8ONHEK2r1LaMKqLt3e1dGuFMTkegaYZuU2shSuMNer_4MTEIByIeePDOA8LMoi_Uflq76NBm8UW3RfroAbBPLA-zAIbA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:50 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['229'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:51 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzIaqhn6L65df5k6ESPR1_A5tNIhFl7rv1xiIBwxoaAiUHTcyJTUXqtq3W64OieGCL39BHg6rxqju9MNewXiTdXTS8xPArl4sgh47RKRknUn5SvfakO9AsxccJpAo5-4P3cehhl9KtueHprYnfbYOQjhEnb4jSZDggyESWPnJ7Gz8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075774","not_before":"1521071874","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg3NCwibmJmIjoxNTIxMDcxODc0LCJleHAiOjE1MjEwNzU3NzQsImFpbyI6IjQyUmdZRWo4ZTd5TnNTTXdjbmZORGNFWjlWc21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVKUjhBQUEiLCJ2ZXIiOiIxLjAifQ.P2UQrAkBsu_zLRRYx9_RXNeo7R8LgaEi3Gbc5K_Hd7bzoDXvguts1Wuh6szjPcfL_mdxVMzelm4zTVt98QQP_1nbUWqARDbGJ30GGrDjzFqdvU070FX-SqeqqF0rw5q04uE_wbOISEBiU-DI4c-gRFhHmOrrAg5xGJROlb7WRBLjMBigtpj5XRHwu6Hhn-VHwJaw_2VBx1rbHb3QO_aXxt_FiAeLA8Ad6PUNzBA1MJUkIsDiMRDIKUJiEo--H2W6b0CBn3PKXOWCU_XNwkfPH64Urxtanp4rJPPq0LxPeB4Glk8mWUXz-ktUsQcghW4du_9YfB0y9wftXaalptOJNQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:54 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"127639d1-b346-4581-a119-f0738a6a3108","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + headers: + cache-control: [private] + content-length: ['421'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:57 GMT'] + etag: [127639d1-b346-4581-a119-f0738a6a3108] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzT8CQRuaoraYxLPC6HtaFArQ4lyk2tYZnZpCbaaCawpTOYlrhZwzDvsffQqAfkCWD28XJ9nnZ2fJYaQdGzsHrZZZ1MLojMiDz4HvGOWM5fTMigXMCdRG8Pjimult4oX1739NfR0SUo6s8UhJtObr8UXFi6IupZELa1rR_Z_vysFogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075779","not_before":"1521071879","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg3OSwibmJmIjoxNTIxMDcxODc5LCJleHAiOjE1MjEwNzU3NzksImFpbyI6IjQyUmdZSkRJYUowL3U2dy80dFpwd2RQMzc5eHNCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpKUmdBQUEiLCJ2ZXIiOiIxLjAifQ.KVbgIeWjNcYSUZQF9_Y3gYkFJg7HQJNc-v2SPMCp4ZDJ5ReFmQaLfy1iqTZPrbExVslz4CXI2Z0QFFRc6Ii2KU2tBjzpoE1Ca62KKq4gsIObwhEYJno6BdqF6Z_r2d5c-yJ-J3cvQNruMpX_0FKLcyPyO7M6V-qkLK2hRlit1c05RFiYnvKAgw2CqHdgAVSQdA3b9RlpGXS_odBCJP3cN-Qq3LvHPRmZ11oZW3HQD8CiXHY1AXh2PhPzaITmzHJiitJF1ls3nkc6Jcsw1X_nslrzuXQzmh42zQbpdcbFN8ITMx6wEXDAdW0cHXPCiD_Rci9nFZwGsyYiEe_5xJkS1w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:02:59 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"23ba99a0-b5b0-48af-adf0-87d6a2e76037","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['403'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:01 GMT'] + etag: [23ba99a0-b5b0-48af-adf0-87d6a2e76037] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:03 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYtyzUp_3ZNE4dNHqAUJJgdwL4cJhreVCNpeX2-CZ4o9otSGe1ERXQM-5V7Itrn8EMT_20-yAtdo1NlNtQkHCilYxvLYrDjTN_MddwWhXsHqOf6JIQtyhf1CqY6yN3iSZesySgivxDVDtzv-aK4Fi2bekqac6m11Qk4DQZSl9TLYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075785","not_before":"1521071885","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg4NSwibmJmIjoxNTIxMDcxODg1LCJleHAiOjE1MjEwNzU3ODUsImFpbyI6IjQyUmdZSEJWdVNraDlOQ3pVaTV2a2FlM3VmVldBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkNma2N4Zk0wcjBtSFBldFVFd2dBQUEiLCJ2ZXIiOiIxLjAifQ.lc1UR-uj3w5NJ7fMaXUkfpIVFcCqP8qoSVRQk71bA_j9mD2Obv3FAnBgZTOUV77v3Q1PSDvifGZqMt9DKeEfsPVX-WLbiKLFbx-JALPXaM0Mdiya6mlWQrXo7_p1Itixowb9TjSNJMYNoklkf0i47daJtKupLwrfIDU16XhUv-DoT66-nxnfq8weQywZ46slQqTm4nzcy2LXwgf1qbktvL1LHfD0TOivCDPQdGlBOCCMTJEalRhKoDsWhbdpiQp0xEQM55rRe14e_hF_v1c4ena_uf5YsuCBltyuC2BZy-FEWNzzV48EFvqXbisvEM8Wrh-Hs2Ue7BOC3oNdP6sqVA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:04 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"23ba99a0-b5b0-48af-adf0-87d6a2e76037","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['403'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:06 GMT'] + etag: [23ba99a0-b5b0-48af-adf0-87d6a2e76037] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz3urv6hVyk5cx6TxWq4ZFOjd10JyI-kH6wUbNDjjqfjXIZrmUN0zNpR_gosDGRk6ayhwDw3wUoFfHyqnvyz_Umz3beUGTQheONR4mFMtXTZf_sPv7BRgbYbScCLxMMOakJTbL3szHWtQjy0va__WPp4j1yX7kJ7ov0Gd0HfnGztEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075789","not_before":"1521071889","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg4OSwibmJmIjoxNTIxMDcxODg5LCJleHAiOjE1MjEwNzU3ODksImFpbyI6IjQyUmdZUENUM20vM3N1akpUdU90R1Y0UFN2OWZCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamE3eUlBQUEiLCJ2ZXIiOiIxLjAifQ.aWdjeMWntZB78onIJPh-6AvmCwf5rooFLWi5VNSZqc_RH7sZ6WZ2S_oxlBVIWTBK0n-CJ7-JBXXp7wbgo0gGOc5u0o7htBFDTS_2DEvasyMK-wWk8Zf0TI7lfJlcQsNUfMaX-ULE_APDIHFqC_QfMlSzjioOg64cdy47Jc_AWf0I8W8QlM4gyA5y3PDSECdRoIXhNPA9xocd3QxOxDTMHsC27t8cK6eOAMXlKXHgtr7Apaxw4ce4XCALhePsJIfD_GoG5oytYOsZgVN5q8gYRATqrUgsZ3YCi7bH0wGLDnyd6leBclgGT8Ib6HyvZNJ0vDvT9wMMuC385QsTJ7-v_w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:09 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "23ba99a0-b5b0-48af-adf0-87d6a2e76037", "properties": {"TTL": + 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Length: ['135'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"48442c36-83b3-49cd-b8f8-ae352f47f0a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + headers: + cache-control: [private] + content-length: ['441'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:11 GMT'] + etag: [48442c36-83b3-49cd-b8f8-ae352f47f0a4] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:12 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzLPsW2a_zVWd_H-psjQTHCeku1k34MD7XDzGZOcaFKRGcARiU3GjgI67-yRUm2R6IX30L9CCHpBgAYDfSodyfqW0vtcq5DrjkPv37PMykE0tPsv4mZRB3gBdvOOjgWr0IVX5R_umaGiTB6OH-Zck281relvW1G8bTT44bFkIc3AwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075794","not_before":"1521071894","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg5NCwibmJmIjoxNTIxMDcxODk0LCJleHAiOjE1MjEwNzU3OTQsImFpbyI6IjQyUmdZR2c5c0liN28wUG1wNm8wKzFWYkZESnpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3YxQ3NBQUEiLCJ2ZXIiOiIxLjAifQ.Y_2FXf6dj6dttCDcQWgypShmcfrWHAFmkDJA_VjFMnxtAH2K8JVVGKYD0XTVfgc9o_92elXujCYo6KVeWBiUjvclghgzV72puw4wpSIU5G31jL5AzRw7fMwk7O5QtKb62XIQoBwku_KR7LLB7BiYrDkz8seBGeTLVrBrmm527kozMbO6297va_VjfbycNMKDIoLqzkGires0b8c_CWipaOXNKmBK1SrsvxIPmdKP9kqalYappRz6U51i5oAwk96R9RZPN1sjLcrf8xrM8igCGmOCDbI_ne7D1YuVckZWBx59XMxBSscGzbsuku8edG4u1HCyah7055GI9GfNS1PXvQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:14 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['232'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:15 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:17 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-WlevDUAGudd4c3KxIPTIuAQ6nkDKJDqgH8ZkYTQuOwBlK5M7m2akCAU7RlA44lvVGXxplX9N_hfi9YC0Ic8Jxu1QtmTnYAa2Ywj2PATvIGWA-_92mkzPeO6Fn1vzkLywfzJCA2La0CwCaOSKvcceyqApScCCprQR0_OMyq0PscgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075799","not_before":"1521071899","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg5OSwibmJmIjoxNTIxMDcxODk5LCJleHAiOjE1MjEwNzU3OTksImFpbyI6IjQyUmdZTGhTdjYrLzJ2L0E5OFJJYm92b0xaeXpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZreXdBQUEiLCJ2ZXIiOiIxLjAifQ.DMZGMR7R81R6Ya5ws4bA29giOLtI5Jwzzcj-Tg7if8zi6dF_y0HXGmWkQqxedKAgeOaEWbdQ8sYa4k0bLw6u_yMj_v-RSVpuRVVE0JDDFVrsZXAQXqo0q2vBm3wH_uvUAp0-HH94O72AddooLLs7w_m5o4DH0AVCG_cvISh3zzoNNrmIqR4YZR-SeH-kWZqAbm6Q_sZRKK0OlJ86QKWdFtuNO3q_0tBHAuo8i2lMGx2DnIrK-YKWpAokzETOsnaYXVtwD_lWJHlknmQhQIfNDsmirLsqtLaCBQCinTj5jq8atZ5ThwYOeHLVG0BmUZDDnP8c6Yt9mW6GQ-fLDeNLtQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:19 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Length: ['87'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"d26138bc-e96b-4490-bdb4-ad1c14c25ace","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + headers: + cache-control: [private] + content-length: ['450'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:20 GMT'] + etag: [d26138bc-e96b-4490-bdb4-ad1c14c25ace] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:22 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzexqUFcOD-yMbBmCeKfnUDOsTLW_rQLwcwI2HpEJc31Q34Fo8I3Mlye5L_bmYdmeUHJNaj5IwpUGJC1wOaEHz_CIwqdBawAPeD3wWj56Slw9WcQ-n5VDYEptfm1OMyaB_3Mo5TlB70epIZER9-uQRZfqX_O9TCkepNNZzJmrflgogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075805","not_before":"1521071905","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkwNSwibmJmIjoxNTIxMDcxOTA1LCJleHAiOjE1MjEwNzU4MDUsImFpbyI6IjQyUmdZSmhVdUhuOWt4TEpnSWpqQzFUV3YxaVpCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamEyQ1FBQUEiLCJ2ZXIiOiIxLjAifQ.YX_c2P7s8yQPFX7kc83jkHfRjdDkT85U6B9_mI7GzwTHd6XRq6vwOyYUGat475jTH8lqzTREoDdQp5_tlUCFP5ZxTRxJWdQ1JrdvYg0N4PX0B63b6asPJxHxOfTf2RMdTTup9izgoLhToOj6pp_fe8kz8_ufq89jWxkGsC49jOYN7bXKGZ5_Yh9n6pGqmiMnwv7HXRIvmZp1z5fn78WMV-Wm006gkFjPVRvXwb9j2BZBzcwsHBK8lnwmZBnYpqfgORNM-Swltf0a45Cm79iF_Q6WKjxFqxvkb-6Wq0GBE1Rs_eg8_y5Dy7DFCXb_TISnGTf6BC8TAd1Nl5TCus_SSA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:25 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"55246620-0aa4-4fb8-a720-e68942b5a8dd","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:26 GMT'] + etag: [55246620-0aa4-4fb8-a720-e68942b5a8dd] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:27 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzys5Eq0kG24INV82SeTKJT4oRbaKx9sqakM2BQl7Qfyy6iGu0kO58fIruuosdOdloXvB0RljjdgM3p9eYj2r7c7S4mE7rCs0hvsz32vN_QKc5XkhQCv6ZBax1y_DnrBhUGAET68-o2VBr8IEJehn-o5Sq5km-V17Eo3OLcL6XOBAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075810","not_before":"1521071910","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkxMCwibmJmIjoxNTIxMDcxOTEwLCJleHAiOjE1MjEwNzU4MTAsImFpbyI6IjQyUmdZTEEzTmJOODVkQVVtUkFWNTZ0MmIvOXFBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkprQnNBQUEiLCJ2ZXIiOiIxLjAifQ.eA_JhZCe4h4_T2iCCEBqHj7OvUclAQYTAbxiof0wLBM9TSJd7RhAK1QYa_44-KVuqnSpIRvSM_5Rxfh120-xblno4WLuGhNUnyF8c9kQqjHJD24V8pQfPKPu-xVt9bDByQKvGagz8TXgmo21vCfxaJk9PAVSS3yFrV2z5yAPLQktSrUVvVlwZfCOsq8oLegCRS-7J4nrF1F0-wBLQ_px26QQIpA7vCOeIJ4EfSIUQKafFWQF5IiXE-DbGdgaCmJCnaA-0CQwtXP2c18-4jKPnYHdF4GSpzyD6NfeUczbSxCkjF0fWfPXlean9JfSnIUKvdFv1x0H-DDBVnJilI0Imw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:30 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"55246620-0aa4-4fb8-a720-e68942b5a8dd","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:31 GMT'] + etag: [55246620-0aa4-4fb8-a720-e68942b5a8dd] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzashknnnt1Edk712OKhVi7MxjrgktmOCq4ou_OmZhlW6i5_rGyvW8F6qUuXSEyOEdYwffccj7WzDkTxpRGHCWqUQeL8YaSnnEAPSnSG0046dG5d08IYw2xtP0Vb0j0f8vlxmqhwHWl_E-4DOjHIwmQGauRE2iYesgyFOQRR-FUiYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075815","not_before":"1521071915","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkxNSwibmJmIjoxNTIxMDcxOTE1LCJleHAiOjE1MjEwNzU4MTUsImFpbyI6IjQyUmdZRGkyemt2VGE4UEpsLzNpZjhVOU9mNnlBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFg3aG9BQUEiLCJ2ZXIiOiIxLjAifQ.YLnznoE3lbR65njSbRyzAa9eHeBrM0_J-T6L0FMC_XClGmgilfkSVntUcc_i8FZhqduTfoIK1QavjbBAzEV4ASC-NTMeCygQMHDkV_hdtvYDNWzLDGwo8cyzY2w3ZTBrebTE7AulyDYWEQCZOxe1nzou04Sz4gkoFjeHLQ5c7_AB_uKd9bauS63w6U8irh5S8eIyGSkkgyueaZuxZr5snOij00Mc9WDyNajezpO_VKxRTPBLHqV0np15hbgqlnEgjBKdj8T01v6V2TY6C0h4c7mwNOGwNvXEK22_HyvvaL7_rCa6vvxvyQZzPVKTglYoyxVAmzHVfvMVkzomYigPgA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:35 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "55246620-0aa4-4fb8-a720-e68942b5a8dd", "properties": {"TTL": + 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Length: ['142'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"eb5b853b-04ec-43fe-a934-97f9e586c6e6","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} + headers: + cache-control: [private] + content-length: ['439'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:37 GMT'] + etag: [eb5b853b-04ec-43fe-a934-97f9e586c6e6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:38 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzSf_NVkEWsO5u7Ar3Zs6Cse1N8akL_inFn-cPp_pMbdSVlg2TAeqGGvhGSOdlBCUP_k4jkEqa6QeXJ06zZpof1LKkDd-e12Y1hzJOuZBhDU-A8PwKNLXfw3vd9i3mkeLynKOGP7VslpzSO2Advcd7o4teERFXE0Z86IRfdMarYskgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075820","not_before":"1521071920","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkyMCwibmJmIjoxNTIxMDcxOTIwLCJleHAiOjE1MjEwNzU4MjAsImFpbyI6IjQyUmdZS2htRmE2cVgzWmxRK3VOVTlFQmhaWjVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpwUndBQUEiLCJ2ZXIiOiIxLjAifQ.DVKODT_0dQzdr3H_AfKBpZQq_mrrj89pPo2ahAuQ5lCb_mbbLL1SmzJLolq3MbHHwelxVAjpV05x7sSzfqyHAc-9hDDdfdYEp54g-1kVGJJOpPguwvh0L4AwwTcZNnswfTkk7qVik4AU0x6hSMTjKn5MfvDSmI6pwVAZLXUABy7_pP2JFdIu33-DyJPJ7Ja4-jSV_HhHqEIdONYZfk7C6jItuelVjZzooUS0t0CcxndXuZ1G2gZJ83n3g2nn32MOB34quhwPN4jIPvHnDSLrxrDl4XHcNrzas8svX5UK7wtA3t9D06mdCfavtDqbhf-OI3zmuvrAeh_RXTsdpvyuig"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:40 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:41 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz95_Fy9LSQo3TGt2rP2MkvAh4MolIy3fu1CIJDkRT3Ysyy26WbEOfqIf9f3NP-Y4WbuI8Uq-ccAP9EvbPP3PjGD-MS-HuJvWTmqmqrGxqnY3okd-RpE8giiSgNA6ow7Jj-QWzSqyCjLP90dN8Xk8ChZzxWzFpgdyyKJFPtghbHiwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075825","not_before":"1521071925","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkyNSwibmJmIjoxNTIxMDcxOTI1LCJleHAiOjE1MjEwNzU4MjUsImFpbyI6IjQyUmdZQWorcnJCTXgxY2lzdEZ4VWJTRzhidGFBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZyaThBQUEiLCJ2ZXIiOiIxLjAifQ.f0OPQ4wZM8NkbGRk9T-LtledJ-T8gyoGZBcIPxH8r3gksr5B_0PNv8kNpz5ohkwbEBJhj_7mHRVsR4frXx7eIuPw8-7UB4wwEKvaJdvC9vJ565VC7JZ-JHGGAY8CzyrMTaWjjRlGNhyBdfT8b_8SYIrcVVLcVeipcl1u2quE8mjA1boJd5PpxuAKKtWzFFPPt9RmouUtkPlbp1ISkA_kUWjPxFOaNS8-_Fs5Taa7f6YIasccK3ImX5A-JseaQUtX8pCr-X20bPKnMv1h7mTJ72Ct1Cy3JodpXFUDOLSmKqBR4rP2BhDQFpFz2dZQumxFKsrSO2wBBLq9bGN6zWGAiQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:45 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", + "value": "my value"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Length: ['94'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"09ac2abc-ae05-45c2-b6ec-f05f9da195f0","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} + headers: + cache-control: [private] + content-length: ['448'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:46 GMT'] + etag: [09ac2abc-ae05-45c2-b6ec-f05f9da195f0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:48 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz--ZBxIvI4hZXeg_FVG9-f8G6p9uxMnOQjxnCjklst9058qRWyhoAoUBFfiIfKXVh59zhJwRAqyioX9lQkD1BU2BYb-tFtPG-8dIILolp4xkiE7opwkHIOkMfdMTNvKNYhacfL-H51Rtvvmz5WgakEgHVoBo9eT4kkh79elugGM4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075831","not_before":"1521071931","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkzMSwibmJmIjoxNTIxMDcxOTMxLCJleHAiOjE1MjEwNzU4MzEsImFpbyI6IjQyUmdZRWhpbEtoWjl1ckdGamFlWTlxYXZzczBBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1WWkxMOU14ZDBDOGdnZEZRaGtBQUEiLCJ2ZXIiOiIxLjAifQ.RJS4q_hABCbGZ9omhl17o_NnfYgs8GYK9kIF_7PB9mBVe-sH5TuR49w1EjNA-wM9Nz4RD8CDrHrMzP6YNpUX_bYVqnPKPy6JUoJKkgdJZzJrZHue3VPX-iP-8N4hBHD8LgsjT4uD50Ua-3sU0i80NBuYVsm6kHqJpqM3mMxRIe7Y6KHvTykK_IklIq5pMcjXptdapWhWSv2jsPyrmqt6v5wsy4reunj8WxT8JWRxZCNjLeMCBouvSztjK4t0afRKfmEx9DM7habRgIGl0OA8R6nricwRYeFbjUSaPFqts7Ovpk32KnRyeUPLO6x2GXip-7I09bV0OttCnELIOTpDww"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:51 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"52043d42-eec7-4da8-8990-7198eacfc8c5","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} + headers: + cache-control: [private] + content-length: ['391'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:52 GMT'] + etag: [52043d42-eec7-4da8-8990-7198eacfc8c5] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:54 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzyQeiPksCKlNH28itm9VrakAeIGCHh-aMBa20vesvBz2aLnyPtoq_Aw8e_JO8tWQ5OJgW3iHLmZHQZqKELr2XQuL6Wh6eRHGf3s8vDKEOsKI9QhQU7wUCOJCXk4MjjE2eJiPecqOhgjaHThw7QmbBeZdp0eTzqVfMDJqrlSHNdE8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075836","not_before":"1521071936","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkzNiwibmJmIjoxNTIxMDcxOTM2LCJleHAiOjE1MjEwNzU4MzYsImFpbyI6IjQyUmdZRGdrb2hTek9HV25OYXZ0b1VOWGwvcjhCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpneDRBQUEiLCJ2ZXIiOiIxLjAifQ.M-VW-e8IFUFTc8GP5MB3kpcDl3zv5lpHtD5H68_7WfeFFJYkaJxk_5__SPfhT2w193q7tMAf6Gr-P_fLdJMwmKUtEBwS5nfz1Hbl_pAK0z6Q5FGV2p5tm1pwuzpeJ5enzDUpOaM0n7vifh9Yohx7c_eawpYZOk9WgDkuZEUhXiypRnRWPFgQeOsUxv2f4V1BoKhcZghUfY8SOz_gkBlGLeQZqwyoe5rrjIsqCE69-talQ74Yk-WE5pQwhj8snnOV43s3b6Nm4KLg1obDFdb7i6PYeW2OEAWNIoWNYD2-oNDn9xtpIKHOU8Cz0YgHG_oLc1tMEeGIH888hs_X1PLcXA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:56 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"52043d42-eec7-4da8-8990-7198eacfc8c5","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} + headers: + cache-control: [private] + content-length: ['391'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:57 GMT'] + etag: [52043d42-eec7-4da8-8990-7198eacfc8c5] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:03:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzuHiNQKvHd30x7iATcx2DdBcDzc3LIQqC-7HfVm7oc_nyW6Y-iA_0S9cMFkYJkdrgii1n1Xag0tgWixnL40c_7rGg4mRoeK8Wf4LBa9myad5Lrc-3sem-JzPV13BsPfjM4L4IjB6AzWGnJN5_WmxGQ9KRsiaT8S6GLnVWNF-BGNsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075841","not_before":"1521071941","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk0MSwibmJmIjoxNTIxMDcxOTQxLCJleHAiOjE1MjEwNzU4NDEsImFpbyI6IjQyUmdZQWpNL1BvMGxQdjJ4Ujd2emRzWUJGTnVBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFwaWtBQUEiLCJ2ZXIiOiIxLjAifQ.djZ12ws5F1disyE890DT8SCqztJH0U2wtEjc9V04w7WDoQ4qtyPmh4fIc6XacLhyippJBBtN7o6QrZ5RPXZOsCnm_0OyAZUOywkyfGlZt-gODr98seMpabZcKP9gedrDpWUsDzjC-7JXoRANygjP3HXczJ737NVDkxnbbW6JBWkZDcmiMEXLASn4bHmmqVW09TYrtSOJ-CVjF4mcy6NZ60H68Q9cKcyPDVKLPzSCZQfICBOjGjnnWScGdXT_v4aTbhlFE-cQMdxATTr-Dualn9myzHvRPMeLPjOcRqS0mFptSsBPFfxTXkyjCWkbzfcroOG3xu3apML9WRs5fU5GCA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:00 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "52043d42-eec7-4da8-8990-7198eacfc8c5", "properties": {"TTL": + 3600, "CNAMERecord": {"cname": "mycname"}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Length: ['114'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1660bb94-d459-4fcd-85c4-1821901d53f0","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + headers: + cache-control: [private] + content-length: ['425'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:03 GMT'] + etag: [1660bb94-d459-4fcd-85c4-1821901d53f0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:03 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzExP7YapBtSDdTUV--okm3v8xyOuueioeuLyT04VEmi7Ns4SMRqWEcFakLRubNbElTVPJTcwiRmk1rSM7x2KlOhTyLLLnC8U_dhW8fiMTqWOtS2QLYVVyyXqQWH_zosDzJvYpq-pkKrNv-tw0QHZOAUg8Q4mZZOcCSLfwSaXhvEwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075846","not_before":"1521071946","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk0NiwibmJmIjoxNTIxMDcxOTQ2LCJleHAiOjE1MjEwNzU4NDYsImFpbyI6IjQyUmdZUGhsOTY3Qi8xVDVoenVWUGVwTkhTRXZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFoU29BQUEiLCJ2ZXIiOiIxLjAifQ.m8meT55MaOIzbN9t1Q3Ygox7dgj1kzlzM4jif_QtzEz56OMvvierZLWxgVHHBI9BdicEBHnoSdyafe15S1-VabQ1WKIrRk0vDsjS3FGoVgpqi7pkVNoqrrfP5y6Gu_Gh-CnV6CVR4IsP9uUwmu9yGZauVn2jK419FpMQeLpta5Z4j9WSFlogqtutooIc9G-EBstOhfbrTXvrhm6m6IroIyHWh160wAe-WK21OQb_6LjsPG4JZt5LpPDXQa5ZletbwAQAJhUayR86VedGXnnUBQw6xU-avLl0w8XBaEEWv3sPKzdFhtR0G_-Ldt_Q6T7XydgOjjK6pt4HqK-15w-ubg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:05 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['233'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:07 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:08 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6prLE9o6lYG0bOCHqMPMThDG5Kbi_mFkq4O9zJ9908Y2bOCHUA_LIBDTcS8UjVEMbgEWRqHJbIJYbB1xCS__mT4wi1gnMQuQOOF2Wj63NR798fjquSinV0k4whZmiWwPh7QqM3NrGT-rwgPDoJzE5ZSmTJ5N2XgN52JWA0ofDvUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075851","not_before":"1521071951","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk1MSwibmJmIjoxNTIxMDcxOTUxLCJleHAiOjE1MjEwNzU4NTEsImFpbyI6IjQyUmdZREM4VVhVcDZxVy8vbkgya1BUbWxFMTNBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpCeUFBQUEiLCJ2ZXIiOiIxLjAifQ.Gqw2wLHGMfGpCTYdYEtDD2RiqAOUdyUBcJDAPdORDhkgGmdwtW56YEEBlqRfxSSbhESEvHmk2EeDkyekCSj7wprxRhPgTj8De92FATwika7ALD8nJB4AFWjNcmahqrg62hMIDy-xHMaxdf0NGICEAFKD6g8FVImqyjQWNQ0icF-w9Gge09Mc64HUi35rV5NRu3MnhbQeF7NWOI1au3McQEiR5_H2D57z2A_XlX1nS3vr6I4VzGBhYjWdi2JCM3X_GTwfAtcHOzKYWwaXygLCB72c9L4XqjFaKQwXbLVeluzFfVGrtEGaNKET2J9YKAsG7NCST2IyvTT67qF4N8wMVA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:11 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Length: ['66'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"28334082-46fd-42f2-921e-c5a84c5ad707","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + headers: + cache-control: [private] + content-length: ['434'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:13 GMT'] + etag: [28334082-46fd-42f2-921e-c5a84c5ad707] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:13 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_kbUcf0Twcsxrwk5CLjvmIVMtLfmpq91sPwi5oXTO7a01WVwZ1t3rKcZovr2gFf7hoTd_MHJjU3A0kA-Mthf1BLtRn2xpt7l-q1jN7OHIoqrkSfJkKcbQMcyv2Qpr3e15NI9OBwrGtchLe7H5DavvuX4xT8PWmswSj7z49e3hx8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075855","not_before":"1521071955","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk1NSwibmJmIjoxNTIxMDcxOTU1LCJleHAiOjE1MjEwNzU4NTUsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhwQjhBQUEiLCJ2ZXIiOiIxLjAifQ.MJQFwUhc-MBx6hA9PIghV4jiwbGupZgqb6ZLCs0kGtVbJi_gnkXhZ6oIdp_f7KcWyUsQYZSJxxmRjOE9KcfcsefVCPGUU-plUklsBJrdmlC_qS4o4yfyfgsvMlQ1Q6l-xcR9amBYVcuXpWrM6BbqZTXHzLGRb5MrECTpj68nI0JhHFNri1nxDaEubITze7UrzmDZCLcgDdfO7ceOyQ8aM343q-XAYyd1zcksgNgNztQPWS29FrNWqmxpUIQj6LxFfXs4TfnQHWpCoLvGauHarkTMn8iw59LZ3jYkiC583zdSaAxZibzqWqfuKLATO-u0jL0VLF9eA5SMQIiB13MDLg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:15 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"74dbcfac-4d78-4a3b-af0c-28e8ba293382","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['391'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:17 GMT'] + etag: [74dbcfac-4d78-4a3b-af0c-28e8ba293382] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:18 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzZzFnbY8NrsV3Dj2GmpoVMNvvqjS046QpQ31LFV61N5XoWg_qDyOczkipepw3nktqrWBR9CWfbf1zLLx1gMCaIz-1N-pqP_mNF4gyloHW9lkJUw5JBvTXEfdN8eI04hlU9aKyQGx4ez09Sio_oHxjf9g4wGy0Ge9DjbQ1jZjbMz0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075861","not_before":"1521071961","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk2MSwibmJmIjoxNTIxMDcxOTYxLCJleHAiOjE1MjEwNzU4NjEsImFpbyI6IjQyUmdZRENzbUxFNVlQT0xyU25ucGlmcTMwMytEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVyU2tBQUEiLCJ2ZXIiOiIxLjAifQ.SDMpWFbW2wjiNaIAHLqq60PVtWf-dxhOTK7mTGI6ILnncs-F_wuX2KcLBRGWF3unReXqxCgJTFhameIdxs3RsIiXbLEY7j52jOhHvpvXJTsh4fFN9umsANlzqXZtwIm1I1cR1Xien_OUR9WI2fjHwBdLDPRdMC1Op97GXvFrXe32NNgHzP7CB5Kfp9n0Hd0NZKofQGaPGwYBuCDUm8RQOu4n3gOy87S3ltjhLcamjG0BmgWguc2JQomB71UFZYaQW33yLU8Q7Ycwjay4-nUNUfapTZe4V8QpjmkaV8o1H0Iux0S22BVyqJW4Fyz6zs0uUWakHnNn4Otqvu1WfAP4Ng"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:21 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"74dbcfac-4d78-4a3b-af0c-28e8ba293382","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['391'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:22 GMT'] + etag: [74dbcfac-4d78-4a3b-af0c-28e8ba293382] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:23 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzQozpBLHHWkeOvp9-w_3jD1-XOGUEyYe0yjH6Qv016rTIWk-WpRVo70FJBpkS_jmOlGS6DkYs3pM9_ifuYajkVCgD6pyQWH3rl2DFpm2Rp1zJ-c9TcLvtgD7NQZQplJaPrFkMVCGhr5u0RGL2-cqKt-yqSQxlXZp3OPubmerQltEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075866","not_before":"1521071966","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk2NiwibmJmIjoxNTIxMDcxOTY2LCJleHAiOjE1MjEwNzU4NjYsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZiVFFBQUEiLCJ2ZXIiOiIxLjAifQ.WBLBR9_BFvFWss-NDkLQCQNakwMB11SSDJBJ8j-5zV7enKmq5_OG2etspocFc0d-4VglcThRZfFixvUHp76pkzq_K2t-3oN2KrNQO64bOrLHR0U5n8agqJfn6y6Z0aZAz-Uo71-2Ai_tdk-nSaS9qwJ9xI5VV9hxhRe2JlthAWaPUAQb4T2mo2HVtIy_7bzzfNnNNGYJtvZwjcbQ9Q2itykvFP5Kl_7qFSfXKi866Ru_9JwwteCciJTwaKEstKOGeu5JX_ym9_plfK_vF2zIkOmh6dQZGrgsWmP8-n7e1fGE7nsvSeteJAsH_DOyq1fts2JhJBLzh8m1yrtn7hB34Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:26 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "74dbcfac-4d78-4a3b-af0c-28e8ba293382", "properties": {"TTL": + 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Length: ['130'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"163fe323-0a5e-469d-9800-dd0d937ce764","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + headers: + cache-control: [private] + content-length: ['424'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:27 GMT'] + etag: [163fe323-0a5e-469d-9800-dd0d937ce764] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMV-LDVKEOQIAxBuk3o7WkYPsSftNjX_Ep0mUghd641GhIqZU-XvsY1cc9zTm0LDxho6X43zTPoo-nkhYCwpjzruKOVIr_nLz6a-P4SUuNKel7pAuE2DtKqARf3cNZQSIV8kyhvr23ywxZ5oxCNAo9AmPlHaXOUbFqbyB8e4v3TcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075871","not_before":"1521071971","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk3MSwibmJmIjoxNTIxMDcxOTcxLCJleHAiOjE1MjEwNzU4NzEsImFpbyI6IjQyUmdZTmo4YnRPNXBIb2wzZWZYbms0UXZXYnZCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpaaUlBQUEiLCJ2ZXIiOiIxLjAifQ.NdTNTXzlCdD-aaWQii6jX9D6z_W2HUiBytlSGydY7DH2AY88bM76POBi9iB8V8HOwwF2c5iZQF4H_uRjzYbDNlsOCahySxel0Z0Hz2l0Z05mDpop5eVrkcNP229GDnDgxut67lxgmGTATO5aPcwqHevd_bJCSaucMs-t66EnbwBpDeZ6bzG0vhP4m8ecSP-9JU_gf5FACJeOG4wlHA5FM84eeaYdu7-ayBzIPauSwNktTYjBEx2J9butve4k1MxD9VLxMcMEUw8ivjLWYxZXnTB1r5wqznAiFMT46OHH0EialKyNHxrj4amJWwZjnABIhEK0ra7SizFot5BchidzRQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:30 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['230'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:32 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9r7HovNBbbzzcdhbcb-pZyJjvhgn72atZnKVQg6o1TR-NGXdo40icYKEFUA6Dh2yirekclEjVfZheGV1b9wEu94cgFBBxqxbNOrUfTldHCtGe6ol02KYIAg4JTDzCZQHK0Btix9qUgjZW9wKQDGTfaapDFa73WOSFHhoQBJPk7UgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075875","not_before":"1521071975","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk3NSwibmJmIjoxNTIxMDcxOTc1LCJleHAiOjE1MjEwNzU4NzUsImFpbyI6IjQyUmdZUEQyL2FmN08zcmFZNzJ5VlFtYlBjOEhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJieVFBQUEiLCJ2ZXIiOiIxLjAifQ.lVcidSHDGema9nNgXfRM5rzt-kVWTzgqU8-qW7oRYkfVRLyjW3gJuMuMBkaunj5Vgb2a-tpou-6eBBdn1wkz3J0vcpPRsDGYhVU6bo3Ns6AAuRHjiFoesbj7N_hwQ_q5Ppeo6OApA4scse6Lp7ZRxEzbn5GRtAZfLaz12zdE_StmTKHcsLcCB8Uuc-FygUagQBNY9ipxZZ9o3uQz6wzp7gImQn5RszIG2VwL5zzuvTtFGxkezXgT1tIsTqVQ2RBbytLq4oMVa0mWEJ7zWLxG9q4WmwGp1IKx1WHnUWJVlCygPvyphiqTjuE2Uh3HKrf_3rKzDQHBdY7gWKymH99mOg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:36 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": + "12"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Length: ['82'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"85e65bc7-452c-49a0-8b27-7b7f1dcb3655","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + headers: + cache-control: [private] + content-length: ['433'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:38 GMT'] + etag: [85e65bc7-452c-49a0-8b27-7b7f1dcb3655] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzoBUpLPfk0wpM4srrChNTmw8eG-EMV_KOoy5SoBDRGlHDq4-4ZgGxmX1giFl2YC-jxPUW5hF4qgSEvckMAKs_PEnNjRP1h2V_mqN9vdWwLcF8zr5B9FB20V7GxgcEGHvxvZnU1DWrCrNHbbB3xb9lbM89fnaW4U-uPhZOi_8sniwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075881","not_before":"1521071981","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk4MSwibmJmIjoxNTIxMDcxOTgxLCJleHAiOjE1MjEwNzU4ODEsImFpbyI6IjQyUmdZRGc0SlMzNXVrUE0vTDNhdDR4YUpxcnlBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpQQ01BQUEiLCJ2ZXIiOiIxLjAifQ.xbwstfT1Xhh4X2z8A2fiZTLMGgxwGl-45iGY8mGDTY3cDIFBbZj3dQamjw2tCvv0wTnR2Uud9iJ1PmaI3ex9WKvlIAddN9PeC3WEVkKClB5aroA5y-6BN7TtQcTSFHkTFMDdJi4vSOSO74RbFaYQfQeoqui8C7BGd8FnRFcdqFl3TuBkzHhsE1SSKAeOR_B5Rd78Vaw40JdD8lWvRsYq4wmsR2jmfeGSmm5McckrtkY7MA9MXmHLSvvJkIzSlxGeFB7DlfOoLqimjpXUMbgN0Idaed5R01OUBMTgqcZmTlv6HbSMOg-sah2__mRmXd5vr4YJNTx96b8if4NCTRgkGw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:41 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8c1d20a6-1b47-4cd6-a0d0-12219c4040d2","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['391'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:43 GMT'] + etag: [8c1d20a6-1b47-4cd6-a0d0-12219c4040d2] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1_nDUqvPEJX0Rq1hdhKJrrfqHhrQXjvfvFkOUis0tuKJDIlZJc6gsN7zMhRGK3e0LWiIKyx8E0J2ow1QVpsObsvnB--vjZFlLk7vaoBETCMjnSEaLxmUmP8kT91VshiOzBePwNPq6tek2UNMKDeWR-42O5pqdV1SX4evRd9sU4ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075886","not_before":"1521071986","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk4NiwibmJmIjoxNTIxMDcxOTg2LCJleHAiOjE1MjEwNzU4ODYsImFpbyI6IjQyUmdZUGdxbjZ5VnRuUDY4N3RHZnoyY0dEN2NBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVTQzBBQUEiLCJ2ZXIiOiIxLjAifQ.pQD3sRQlbPQd4RJY_PaHGZJaIup5vJrunMjHa0Q8pdwfZ1vLspINShGtdoIKL-UIK2SQ0ZHLK9-vnqjSGowMlnaqRmHjEyZpnMLv2jPaB0pnLlf1aM1xRDlSc7A0-Z8V1xQH3dYl93BC-T5JC3NKlKF6Pz-qZC-1LloJH_qaBSoYeAB4EX6y4Y_J-Ln7YvHynZHCF-WBynoGWzblFkd-2EvVS88hsa4jBftdKmiOCc4vALv6gc4YRVt7421nnmzwc_Ce3Zqbr79F9ulSURPRhc-G-0iSBOmPgDEOj_rP2rXOpZwl0-SHdJu-oMIfrvqbQ9dOcJ6DxQAVCw5LSuRpfg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:46 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8c1d20a6-1b47-4cd6-a0d0-12219c4040d2","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['391'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:48 GMT'] + etag: [8c1d20a6-1b47-4cd6-a0d0-12219c4040d2] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz8auhmBttnqRU1J5vPJyMejczgv8JqsL_Ivrfptp8D0F9uhqzYsJ5Alw4uPQv6FKkQkj8-AHmyuC2Z5IDv_G1xBLDYvNxYHpaaV0b8P7LDAq3Q99lZ2Sv5Co-MSdHCSC1dEM6dq5Cn096zkIf6aSxPIC2dzaIV0Q8zkICrb6ruKogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075891","not_before":"1521071991","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk5MSwibmJmIjoxNTIxMDcxOTkxLCJleHAiOjE1MjEwNzU4OTEsImFpbyI6IjQyUmdZQkRxcVRYL1hpemxFTHY3Y25xWmVmOFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJLQ1lBQUEiLCJ2ZXIiOiIxLjAifQ.KLwlZOlFWEWbB_xC6MrhxN18LX6-TAUsiBkeJqkjx_MRSGHbnSR1iyH3jIxpfKBfASVSWqVn110KdMwNdciHZklKTS6MXm1dNljHzhy2HEXXMEY8VEHfvsZxfVgeBtsHpbDhzavCSBX_JoS0tNQIG4G00G_71_N7V0_zveSg0KkUeuGYKGon5raHel188av3T4K7Fdbrcst6d1qKJSsqEkA-YLQ5tm9M89As80E-JhBETwooMq3v52lPZ0fd6lxgvk3osFaMYAALGJJjfRz_5aWPhQQFQjOS09QU3YauIEWWXTxcwuAR1nt66fg3npoMaLeq3LoIT04JHrUeVY9CvA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:51 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "8c1d20a6-1b47-4cd6-a0d0-12219c4040d2", "properties": {"TTL": + 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] + Connection: [keep-alive] + Content-Length: ['119'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"5dc0eed4-bac9-44e9-a163-54e39bb9b964","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['415'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:52 GMT'] + etag: [5dc0eed4-bac9-44e9-a163-54e39bb9b964] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:54 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMXv0wAd7axhPhX6rs7s2GiowqflUe36cu0f9ggeT-MFWONklyyeayW1S-2ZVs7w_fNtZWuG2Lq2pHQtCRwjn5CAxuIWojl4m1bmTwuVA1vsgACusvJ_f-xDBVD4Ow3blY_et_nmLSj0dgqLzbXjQ01ib_z2RHrCE85n0WxHdIJogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075897","not_before":"1521071997","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk5NywibmJmIjoxNTIxMDcxOTk3LCJleHAiOjE1MjEwNzU4OTcsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZEemdBQUEiLCJ2ZXIiOiIxLjAifQ.v-TvLxqHnZXKe-G3jGyIE_IaLGZUc3_usE3xxYGzZwmfP1eII9fKBpmuc_l-phICEV3w1QikZUToblHSjDt20_Eup2MdHTiKNU2DgzcBjGOrRXH3Bub6rfk16K-0tw0w8BjTSb7yfZN2_WkQ0hDN_kLMIi7ZetQ4jHgIaTPAh7uGpqgK6s1HD2RK0_1HnZ3VGVTnha5wiJ2Hq4YT_QxmEF3RfRAizlnbTHLtxY--CYKaokGq-8h-RUUms-ErUgLC2u401iiaFU6IWl3wjGTpPPx5eRrMChoipK0A95kr4dcRwaLJNmVYbWNdhJx20OlWvEFD34zZ5JReu5uNq6XCnA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:57 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsnsalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['230'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:04:59 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:01 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzGBMntyE9lnBkUD_eM1tkddSaEph7qpL_lnIl4jWTN5lHPWlv3DyT2LOQ8Q8O7W9zNevLqL45P_0vko_Gl644GNE1G-YIUM2frBKDXmvGei2uCzWpU_bkJ5QprhQ793D6NWHPqSdaSrwZBstY-DGt2EyX7R60aONMdHiQqOWmuFcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075903","not_before":"1521072003","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAwMywibmJmIjoxNTIxMDcyMDAzLCJleHAiOjE1MjEwNzU5MDMsImFpbyI6IjQyUmdZR0ExTzdwQzAvbmpCKzJLckx6T2xVbHhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpiQ1VBQUEiLCJ2ZXIiOiIxLjAifQ.YMdF6DJRchFy_uXDDV090mAU8FSHYDSfZDcAkonFWfwTyIb1DL7w7Y8eC7SYKqgj4gVLOweKq3knCsaFYP13ueXBK8M3auh8TZboLsuB2xDrQmOnGHKT_nXGcSfA-zQE9s9oGviz_sdAJuVhRll3Zi35aXgQB2xmE0Va8JrDciY8m1OFLZ6qA_iKRcGwkkma1HMA7SCSXkC5-e3dE-z25mUuFzYJPVoJhjbOPz74AyT9svEAr-YNGbFszYz5F0tYNxh2sH3SaHja9tyoiiXljFJiLCSLxctXt1drm3GokYYnlkzFsQu0Q0ajzRtB79PMuTOYLvYdTLxv3PcPtXa20w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:03 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] + Connection: [keep-alive] + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"90fbca1b-c758-4ad8-a10e-a79ddf2c2e9e","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['424'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:04 GMT'] + etag: [90fbca1b-c758-4ad8-a10e-a79ddf2c2e9e] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:06 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_q59Y11C4FYVzyWMfbL9HIE5R6HP9StnL4tw9efpFYYvl9xhJ8zo3mvNEBpozEtOFKo2zk-AyGYPYb9jS4H0uVZxJ-xi1SukxYfbmhMIN_HUYGKqD-yGJv52YbhLSZ8ymUZOpgP6fiieFYilnZkWkkq1OK9Ep2kWh4WDyP_KTY0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075908","not_before":"1521072008","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAwOCwibmJmIjoxNTIxMDcyMDA4LCJleHAiOjE1MjEwNzU5MDgsImFpbyI6IjQyUmdZRGl3ZitIbi9yTDUzaHRmVnVTcmlMMy9BUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnI5eWNBQUEiLCJ2ZXIiOiIxLjAifQ.CvGoXQ0hhHB1WFzuDaDq0Jqcr6yAyt4qylovV021OYbUiR-aCa-kPMEd92yoEfMnYNawfMqYvZOiuXlyrKWHcnRLlH4bNstWQZim8lzXuti-4kwGNLamX5DdV8b5nsK-b9ZVHKWrkemfhuACiMIt2BlrFO-ZaCnBgAZvxVRuR_rgo0ewyFO9K10MkWOV9se5Sr4FISiVmUST1Qn4wT59rFa0p662AAIi_PurTvQqZ7wM0C8wRGJZtY3a6R4xeh1TCM5kJPQDJrg84N8LpAudKCIY5BScmoNVcGod6VSCUuQNtTvOuW3U8wD18HoeZoQpduDQiTZZMkIl3-3JGeV7qw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:08 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"185d4bd0-67b5-4212-b169-4455e2d8705b","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:09 GMT'] + etag: [185d4bd0-67b5-4212-b169-4455e2d8705b] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYZewcjm2a_andR5os-4ycuySgGsTdHrltmwioPIaQxCxDaZTy0QLYIBlGNFnHiONX8bP2af-paKkMwOLzIT3qrae9RBu9g59YrsPSwSF_53hOVbg1fn7MUJj0Io-8DrTIEDKIhhCWYCP43jk3IbJC3IuWOB-u-rdm_L3JAJ66I4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075912","not_before":"1521072012","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAxMiwibmJmIjoxNTIxMDcyMDEyLCJleHAiOjE1MjEwNzU5MTIsImFpbyI6IjQyUmdZTGplSjhraWUyekgwU3EySHQ4TlcvOCtBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpvQ1lBQUEiLCJ2ZXIiOiIxLjAifQ.GmQCRgLEYdunQEBYm963Q6zS9OTj2NT7uG7Ljd2imF2ENwRnP7fhSUYtocwQUvBP0_vsdv0Jpx9VKA37-1QmXkcozhuad9T3fADZ1sywXfk1CFb_-obm0ZUfJ1LhbS0izZjM9CWpFNTZl8DjZQo7q8YQ9CF5EpT4UsMNJ5KyIA4xzYOqnrg5WYu1CWgTIAWGA6t4h2HOVreGrj0EkHYwOLLS2UaQqcJ7EAe8meHNH3j_ZDEqpaFWO5TSHIrTPpjbex4ZgwKMoBg9BfK9puLnFC3ruNMK8laeyo8li4aUG-P3cywtx5MdFK0oW14-CeR4c2oSDcf6hVKhoyw5doov2A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"185d4bd0-67b5-4212-b169-4455e2d8705b","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:14 GMT'] + etag: [185d4bd0-67b5-4212-b169-4455e2d8705b] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzU6RblKU9voSywZPOauo46u7fNriko31tkdK4BqhGGmtJxaWdarjxVxRz1zOLKai8JQP2Yn2B1j1a1wGL4r6RHHW_sztbbJdDxKT8lbzW5i4J6oBK7Z4yVgEDgOAIdg1d1yC3IpUCxZ4ZxA9hTGjgbqHgsiGsdfAHspaNFZFAHJcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075917","not_before":"1521072017","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAxNywibmJmIjoxNTIxMDcyMDE3LCJleHAiOjE1MjEwNzU5MTcsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVCekFBQUEiLCJ2ZXIiOiIxLjAifQ.XejLz5OgxAmoqmmru_8P87ie5fMOhe0jw8DOVXtrRRATv4A_bg3ySnTYmFRPdLeJUIj4tu7V8QIW36py5FJda_km1-tJAFrwc57S1Upwxvk5CHeyaZRe_5hNMaxbA2eFuUkID3k9rRFsIqRPNCW3etI7pXAbCjaYNoVQaMnqX0xYmpc8K-9mkAGtaouqjOTUr7QFjeZpiSKJ30ana00ajhhIZgzblqw2UL8zi1rZQDUbPWTCxl9AlAlI08CmNi4c_0HG_3vT5V0bRGxBQanho8OkxQF_CHgD4XcZyg-IruRVzUWizGiPueG8kdkkWvVKcpSKxnAuq9FAT9oBWKkqSA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:17 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "185d4bd0-67b5-4212-b169-4455e2d8705b", "properties": {"TTL": + 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"27353eee-6852-4c15-b812-8d22c3d33836","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['422'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:18 GMT'] + etag: [27353eee-6852-4c15-b812-8d22c3d33836] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzOtvpRnmQ7MiKqYetU5Yu3uPTa7PNxodcEuHHB8bUVCu5BWTm885wpFTJuwV2qZ-geT5L2SgXpNY9YL0zrpEd_Yc75Fhiai3eXsDgrVrX5muGRoYcuYO83vZVnsysekzj0dyLrojXjcTw8q8jxcIqblL65qban8FmngbGHfRzRy8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075922","not_before":"1521072022","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAyMiwibmJmIjoxNTIxMDcyMDIyLCJleHAiOjE1MjEwNzU5MjIsImFpbyI6IjQyUmdZRmd5ZmYyem9oZVpueUp2Vk1iNjErbkpBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVsVEFBQUEiLCJ2ZXIiOiIxLjAifQ.Y9rMljliGIei5U3s0U3cFl0dh7z41cpZ6ZWwWT-Kdw6I5Dl1IlYiPvUvjU9ZDP6NorRMh3ALJKapVq8MPlY2QbQmv2ir1FDIFYWgJ1buR3X3OeJ0_ldawcVESJA-JyIFahinRptuGQ-BSqR1wNL1wQwa7MjcADRFKRB5d46-tBNheKiG927iMbW08q5XCYRvrkK6KvBUOKCG65-CjVYlfkS83itlULCauwOSmUoxZINAEVnuAzmRLGsV4NT0oZ7S96UGl3gl0PqFQk_Pr5p0m8YvxFc4UCDC1dnA-x0CGAED-sE_cOMqeOzCYUpSiM1SoAwsClD9aZFNAdTF7lx0mw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:22 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:23 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJTB8uto2K2Ql9l-TtVeCJ3vWVq4nHeW1aatY8syoQEWD_oIbaHO0pj3DsFxMuZlWO_7gPzs8OIoH7ZH34WQ-fo3BAaJXUduSzp2OfWJvd48NlIF5d5vu-V6xF1vcrRiLu6ISF0SUBPKKRWdGxAwzYLVwZu54T1wZyQe8yg8YTJggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075926","not_before":"1521072026","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAyNiwibmJmIjoxNTIxMDcyMDI2LCJleHAiOjE1MjEwNzU5MjYsImFpbyI6IjQyUmdZR2cyTzZpdzlNTWRtMHNaZDdsTUQvWHhBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpPeWdBQUEiLCJ2ZXIiOiIxLjAifQ.ABpUSSJwuBpKGPpIBGXhSg8AXI1sK1wA-6LUN6H7AAamivB46zLl8DoRic3KMt2hDYvQ9AyE0UO_Wd1TVqvtbE8mnmr4cPaR4FGmwB9LcU-gGTcI8HaqbegjDtFwd0GUjawezdcU5pjtP0RlwULofwV8X4AzYF5H1GG3vxIiqFKIpcFobGwPSaxU4KX4MZfU_kJo-J0UJ0w6LV4V7NH4CObnLpWl2gBy1Rd-qa7XG-wl-ETLMCb_v3K8zRMqBr0CxVj7-llyMDoKCPcuqFvHU_pESprPl5NQJFBfzGr8OhZCnAQbM8GXjcgGSUfna3wma_sf33f1_0a7pjBKxGNsvg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:26 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"0bbc8be1-3cb4-432b-b458-a7f494f17272","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['431'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:28 GMT'] + etag: [0bbc8be1-3cb4-432b-b458-a7f494f17272] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz3S1fK0CEpm0GSkI0RqFWe7f-D1QKXqn069KysCx54sRyvXQAfQJWfy2FTkD4jbvldXfO7tJ82B8c1VddDQeKlZDjh3RKu9Z5U2kG2h0_VvJXcSQlqfqwsqjtMaIupKt6Kjhbblf9t59KQmVwI1e3UBxQtTuaUHLF3t_9StTBBpIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075931","not_before":"1521072031","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAzMSwibmJmIjoxNTIxMDcyMDMxLCJleHAiOjE1MjEwNzU5MzEsImFpbyI6IjQyUmdZUEFOWUYzd2U5MlNtNVBUT1J3TUZCYlZBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkoweWdBQUEiLCJ2ZXIiOiIxLjAifQ.rXM_3KsetdNnTKuPRwhE7zzdfomK3aMqeY_9CUREBGxx_jjWCqi5eYyiiuIJwJudDG7YhTplr5vmzUcA8wnJ8IxZNCDSBv0ElgkljFs4WTpz4uagiIf8UcX5E56P3h28de5NPtkjXM1WuZtQ5a7016UNNk2aB8ChwOZA7SfITOwMertv4C6y32WU9OfP4c0b8qywZfYGjACPEKCmdBVMMx7k2tFT_U0bxpC_a2WIe-nbFC4kpfUNsTF9AOSPACLAjaNwtme76q0bDW5UCz_htP3VkbdO9LrErbZ9pTcmQa1y6Felpv-9rGgjIyj2MOcEL_gNbntnQaT5QgjySj42aA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:31 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b452992-2973-45a8-9450-26b7533697fc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:32 GMT'] + etag: [9b452992-2973-45a8-9450-26b7533697fc] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_CUw8XwLlf4nFPhqfjEsgt1NXPto6zV1NP--a4cjXwS_zx13n2DZawqnvQaySpIeuPKwEHYvl9K6YtjYakjGD8CHSX9spFLcmV0D1gV2FKJygYkCntB376ohtouNt2P2uZqjhwOrl7n5jJ8vJ-CRpSrM76Nhuq20O6GPDouB26MgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075936","not_before":"1521072036","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAzNiwibmJmIjoxNTIxMDcyMDM2LCJleHAiOjE1MjEwNzU5MzYsImFpbyI6IjQyUmdZRENiWGJkblFvL0JXb3VxS2Y5dkwvNHlIUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFGelVBQUEiLCJ2ZXIiOiIxLjAifQ.XMs1SH118Q7t7-HidgqgXjO8OehFzRnfPwS2LPU0rRSIvY4rmayc_bZwZSLCFBrEnJYXSVfK8gNPAYi46PkHspBwWAiei9umzM5PNO_Pa0UJFzYlHbUKA26Pt-9rHhwozskgI9ycEl47RoESR2bMXA_ijOZEB4E8ko8xmil_dwFqTfRD5e0_Dzg4QLEzuZyNVyltIqrLhaCZi0PpRf2ArynoRtlWRvM4XJZAzrRmAyvJffMtXd-lFl1hGfykWOfiDcXju8e9mXNwwsBLyikuI02bc8mo62kiH2NpjN1U7c4znUy_DjTL9FCJV1YSG1w9y8TNYo-mpopApfwpAFz83w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:35 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b452992-2973-45a8-9450-26b7533697fc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:38 GMT'] + etag: [9b452992-2973-45a8-9450-26b7533697fc] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:38 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzsi0wB-gtJfUIAb42TSGNedIAksw0HwhlRu-T2qR8tPsd3pSiP56P2M-rrqfX31unkmSTudtsFnbETPaJYItCaRSi5u9o-brTTbbfYOot8bMGDD-7u65dUcayUGeUoZp3P9te1pqCTaVSoxpY7r7WpQbaCeTeBq3xY9-GQjqANMwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075941","not_before":"1521072041","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA0MSwibmJmIjoxNTIxMDcyMDQxLCJleHAiOjE1MjEwNzU5NDEsImFpbyI6IjQyUmdZR0FwYWdwZmYwMDE3RWo2cjRzbjk4VkpBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkowaWtBQUEiLCJ2ZXIiOiIxLjAifQ.FZZBKsqtUqUmFt5uAfwXMXy1CBraD9tzSS6D9GFFOMdipwmaqutbiDQaKdomP_pqHoJxQEquEl1c6CmCMX75NWDkbyA4-_Afwu1ZD9O2sZRTAYd6C4QIV3VoRN-LiHOn5mWKjcHan0foQmlWuq_TfqfPbiKEsI-6gkZaxtUzaYcc7dxY4EWCMnD4W2MFXekUmGviNxsWnseFRCPeqNOuPeoW2HUiqXUIgtmBGUOVFkhm6_m-ce8U-m8Rza3puNewMYgyxUBNsVJIPPHlLiKUhVh_t-tZHmXRI6Jj0Uz6natbo8v8yfYSj9B1LcO_ZXuhE19uLpO3uooK6VsQtDOZCQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:41 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "9b452992-2973-45a8-9450-26b7533697fc", "properties": {"TTL": + 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Length: ['162'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f019bd41-5ab7-41bf-a303-c0d646707610","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + headers: + cache-control: [private] + content-length: ['457'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:42 GMT'] + etag: [f019bd41-5ab7-41bf-a303-c0d646707610] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5vNVlftDZYIodAO3d3lBAQ83LZhY3HxtlnDIkI0fbXekfRbBXu1dYLUwn8U-LqA3v-zw_AEyvdVdw6kCPWuMaRQExDnf_-y6CbEKwZ6Tpj7TGdZqsx3B6L8VN1q7D1p7ak9y-WHIfci9Ik0RgPrVL5Dylq0-GOC7-6DpFLEWH-MgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075945","not_before":"1521072045","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA0NSwibmJmIjoxNTIxMDcyMDQ1LCJleHAiOjE1MjEwNzU5NDUsImFpbyI6IjQyUmdZSGdkekg1UC9mQW4xNVNVQlk5T2M5eitEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhYU29BQUEiLCJ2ZXIiOiIxLjAifQ.SkhLpqFTeBwRq1ZQqMVJ9FFfBhzcRgNjWS6kzsUQaqo4kAg8MGTLUDr64JcOSDCARbVXlhhrH4k0q2k5D-e7T3ktbzKvWKHPNKUb4amxGxO4n0PZv4b66TG0JKyKLpNALAj7R0J59MqSezl4bGxIP72dZQJo4g28dhyaAwo8BdnFY6XA4AY1IG58RAKBAtSsYT7ToEpcefbwSNj3SOcNxvWG5uPR27jIYu6JL_zd6MwyW1FI2gK1bVSAMbEFOYb-MC9VqjzTzVN5MkgtEU2owBtrkWMt7SWg1nJa0OicuipcLMUfJ54YJeGAADBoMlXcqPljBRzPyn5hYrgxsAxQUA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:45 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:46 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzRXFkLFjVjYaOMNGl8zJOXQGHsXLFkk-BtWMf3l-hQozvZnfJNma9s590t2fnegM04OXJw517gVGSg5dEU-98vc9LX7953wYV4wu2C53n5gFgXsRE5hIeORZXF1nMh98bS_N49BNaVSO1uC3hCeOXV4iY6g-l7h36e12hSlgp0wggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075950","not_before":"1521072050","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA1MCwibmJmIjoxNTIxMDcyMDUwLCJleHAiOjE1MjEwNzU5NTAsImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InY5QWdKd3k3bTBxM2U3ckhJZ1FBQUEiLCJ2ZXIiOiIxLjAifQ.VwTtS33d8QRRjsL02_hT13XQU7rDT7K_HwLpU9LAaBHHxHIPPKpVsMP5jng_Z_s_lGNibUto-bJObfLSZvbfXJnK5rIRFvaHkbPTYCNnljxHBR3GRR-_cJbUrTgKv6cpKpox9RRlNN_0UcHojiZwMnVXczusEUKh1-kIfbXMegW65rIV5oKwh6H42KbN4qlTSeyBKp600V_Hz7fDQqLubR6D5VqxNZi9D2_YBZMvjWbf9jAchzX-YuPZMJ1fMbti3EIeQW2mj8-ywve3fu97yGa-Dsh16-r6M8lgf__yxavXenVZhaLtg53zKaTb8NBAoHUeBsO2i5PcvKLJevgGuA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:50 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, + "port": 1234, "target": "target.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Length: ['114'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b2f87cf-6544-468f-9cbc-fe29696a3224","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + headers: + cache-control: [private] + content-length: ['466'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:52 GMT'] + etag: [9b2f87cf-6544-468f-9cbc-fe29696a3224] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzxtzlILzjVKVjp8-FpQfTo27SyywQXDkM7NfmzObtwSC1Aa0krfxEUT61Z1t7kDQ6L2FPbc0xqL-wh3xwOWQK3CDaD8irQqQHTs9GQg-gEuKaOHoxsKy10Vy_vWRUYl_nZVZp7LiNJwvAvfkL6WOs_SW2pWLrvpmV7xJMooaxt30gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075956","not_before":"1521072056","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA1NiwibmJmIjoxNTIxMDcyMDU2LCJleHAiOjE1MjEwNzU5NTYsImFpbyI6IjQyUmdZQ2cxVVg2NVYvcEpxRnhiOFNSaHUvcEZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJ5QzBBQUEiLCJ2ZXIiOiIxLjAifQ.JgXmVhko59_o3m-fmDTzpWxth3AmoBWg6mXrqCV10h5_Nr-MJaemKgpFK9D2DHVHBq6WemVMDtVqJqfBVLkcMGA4hKwKpgMN_b_QiQIwayIcC8lZW5giy2VYdxoiTSwVtyii7Uv6BEttLyAkGUIzMHFB041HHeW0UXeYMxaPhomKUl1j1ihQ83uZqOEVpDT0N_L9rv3KyniyHqKgjYthCX1IAPFLSbIReohPlYM07BxAGl_e1BecYppss8oSqvErEOHRgTDD93SubjJQt2U7g8zgetjx8I54umxpk1QlX1EeJ1D3l2W388GHsegvMIEHgRNgwsxXFgCTzBm-XGOchg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:55 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"851d878e-022e-4ae6-93d3-7d4b9e43e23d","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:58 GMT'] + etag: [851d878e-022e-4ae6-93d3-7d4b9e43e23d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:05:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzBxiggTLcwVn30x7DNIW89_Tm5u9eL01W-7hxVGBKznsBEu6bJWIaJdSbYRCc1qV0XlpeJ0k8ryMHXTPIMOVhReS2tUN7VilVxBT61bZX8st9U2I6DYyVPiObRRC5n0xBFh5Pk0rrux48jnS7SskGV1pcvzUErLWRvzNxrzDWZvUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075962","not_before":"1521072062","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA2MiwibmJmIjoxNTIxMDcyMDYyLCJleHAiOjE1MjEwNzU5NjIsImFpbyI6IjQyUmdZUGpQbTNqcSs3dFVsaGx4YTJyMjNQNm5DUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InAxSmJkbXZsLWtlcFg4dk9zU3NBQUEiLCJ2ZXIiOiIxLjAifQ.LBB7hMJUN_jB6TLtUFhF8GDhUhHXnYdiprp8uXKqo9poAPQFAHAr-TP3pHGY8NB0uuocY8WXRBXsEZmsg_94htsu7o21v8EEbgnOP7lKg9zD74j7zhOLxseSXeKYmp4Bqtoy4LQtrfZ-f4P-uJaE_VsQ5AOeSYb2rL5oLkWlnAPeoJH815CEWN7mRyTN7oMy_WZc9rltjyjxKMiLIqs2OGnW57bvUl-xjXZUPfgvsuPnzVn0X_n1g24l1cffD7RO88OouuT8WBM4Qpk51yJ2blEY1baZe-iDIzG5_tXjvineh7gzZSMEVZzyk-xeqAYTll469z2Xx8k3yxmDiN3MRg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:01 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"851d878e-022e-4ae6-93d3-7d4b9e43e23d","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['397'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:03 GMT'] + etag: [851d878e-022e-4ae6-93d3-7d4b9e43e23d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzBAxMNjrlxXxT2m6gO-aNygXaTVUF9n3xMtmE5uGiWRlIpPuBvsb2sE5debPT6kerlpT8TENOlYSnBTYKL4uxlrIDdOPBAPGcvfq2MO2B31271oXNE6Ic49ykNb0PjfUKFm6eikGWE1DfNRqFxEjDuZS4JzdtPpdzKevEQ__Xb5kgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075966","not_before":"1521072066","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA2NiwibmJmIjoxNTIxMDcyMDY2LCJleHAiOjE1MjEwNzU5NjYsImFpbyI6IjQyUmdZTmo4bzVsanRyVzgxY3Y3c3dzdnYyRFVBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJRaThBQUEiLCJ2ZXIiOiIxLjAifQ.MkkXWdJvN9U5eTje0oYGhvGimyVzAYTvWMVXjzLcdZinoR5Ietb90sTQ5ikbmfs91QrpQWwqo0oF0Sky7rL3jndPjyZePMeq5c3o1NJA2PQOyVgjF2IdclhnilxrasrEDCcHyA175uF9Bb30sBSSbXztGn8b-3lYq_q5Wd2kbYhD6XLOnoQTWHv2VrUIzi5ZsXG0RknKURlIfnzvdzgeJZBn_WUfeCU93FJJBGsCbmYMx7pJjnboROAkCEMByuJfKq-g_RNSB4cc1r8GnjC9PYgY3LbXPHgRbUo8tFBgK-mDPu8WWZPX-DaZGx0V-pRExYG14RrmP4LyjQ4kLhOetA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:07 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "851d878e-022e-4ae6-93d3-7d4b9e43e23d", "properties": {"TTL": + 3600, "TXTRecords": [{"value": ["some_text"]}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Length: ['119'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + headers: + cache-control: [private] + content-length: ['420'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:08 GMT'] + etag: [93ee860d-495b-46ac-80ac-20b6aef63e10] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:09 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz3iycMtb4yw1iKwAdzsvkMLk35pVyvvUZKXKc3ny3O7esn9gS0tQG8AjqdNtiggG_tYlfGD8U8zlL3noz2otw2Q1OYqORB5YfZd5xiADhNb8yJIlk9FcvM5YZ6ribfogy6qZQ-MxZCsE3BDKIpjqoAfjjQe6ngEdOAsvUy2deUBQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075971","not_before":"1521072071","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA3MSwibmJmIjoxNTIxMDcyMDcxLCJleHAiOjE1MjEwNzU5NzEsImFpbyI6IjQyUmdZQ2pYV1JueEtkUWswOFlxL2RZQjc0VFRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpneTRBQUEiLCJ2ZXIiOiIxLjAifQ.clYMClu7Z-rPnVRMBv8TeLqREp9UaRM8IL7f2hITCnZR-3GA_qNvnxSUzpdC5c3NrZNq2cVPDqKLhgyoD1-iYoApsuDol4wUihpzjSrXmhHiyAhyPsJH229JURtaAXfHzK8RBJ2g_mcbtF8zflRSMh1aiYMPxISJieavIpnPYpgaF00IgkJoRGznPogIO6y0DdXVRLReZbFt9pxdBGnQPGErJnDuXVeUCOhew8Qqhb6lqUscPfTTX2BnJtbYJeHTQmYREbWTQebObfZVBOltNchds9JMQHZWpdWZ5WvFQRBT-UM5gLVgLmGpXJhLuX4Vtor98kk9ZtVCoCcRU5DN1g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:11 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:12 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:14 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz2t5EPYpzqupR40Q8HW5dhWJITp2KEOsIr9xfYhhawz97-AYTePt60XK7Q8b4Lhn5ko24BC87_STmeRWGyfLfVf6h-pNAdeLFmhKyMmdbT41CjpZhpHo6uL-QRc0iIpEcGj6vcLKqbh-D0kFz8uYNQG29_iAVzQSgNG129Dop5A4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075976","not_before":"1521072076","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA3NiwibmJmIjoxNTIxMDcyMDc2LCJleHAiOjE1MjEwNzU5NzYsImFpbyI6IjQyUmdZSmhVdUhuOWt4TEpnSWpqQzFUV3YxaVpCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFSem9BQUEiLCJ2ZXIiOiIxLjAifQ.N5gnlyvjVPP6GRAStNmUkOQ2Jepfy5BuehNZ1ts2_vOP0mlwtAUGcrOkHZhNBvuHtWPFtvtntr22HjiPIz0NEozmYBGCtjJPLBrWRGZCXOfrJLqw09GiCGvGK7vdAdzrs7SvjlkfV-3z-Fze_xdimMaF0Y5PoFracK2Lc0DC2LvBb0dXyRQcR1HXVT379SquxwgmgzDfHSONz-1aKg3IninpLcoSxTpdd6RC7Thv19ake9ozSJ7eH5ALDmKSnFKqMQFrwTYjJVanTI4L8BgvaTTaU7yCiuDqCOGiyHDV_Ex4Cn8IDx_vBcW3oG2tjjcXTnKvkzj5yp-JKrjfzjUFvw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:16 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + headers: + cache-control: [private] + content-length: ['429'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:18 GMT'] + etag: [1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzKqASEb_xfMQHv7CFZ37MajJPdTBOXR1yHnr4PQxlvXUN3ozpWqj4OStXGhMbJqZW69IZrzJiiBb9PZUvmWAkoYXwI0PBJH_OqUOGbqEez2Z4og03tbBVDXXmEPmeRXG113vBOgInKAgFz49OtNi3cea8lxeFwUjTcIMdStEjJyEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075981","not_before":"1521072081","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA4MSwibmJmIjoxNTIxMDcyMDgxLCJleHAiOjE1MjEwNzU5ODEsImFpbyI6IjQyUmdZRGpWcDNEMXNUbGZYSTI5K3YwZDUxMW1BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJwekVBQUEiLCJ2ZXIiOiIxLjAifQ.DwA1vdJ3jtQ75N_ThkC3tDA0wK7D2T47G2k6ASrB1bZtsg6JdQ9gUV09DqAXxjmhdAflxCaXH0ho5sLeXXlRqRve9PSUKRv_cyGPLG-G7qJHIJ4JPoHZsyv0xJKbgb-cvZuPe5sG-zmrjM9bNK0qePHzgoVRdlELppiJFyKNkf865rghMNBN_THCQbslSPKyP4nPEGnkLcbfBZZL-fSzLfhJGV7bqV0RUbgYlS4dK86arhfbqJp9KYgTEPiB58gp5T9aOeLKzUY8eybdbsjm3IxTstORmDLWPOAeZ-IsQsMx3NVIOmjZ8zzdHbzW3yxo4eip8IYCcjUvnbfHp4793A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:21 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7dd80698-b69e-4c02-92a8-3c5390afcc88","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + headers: + cache-control: [private] + content-length: ['412'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:23 GMT'] + etag: [7dd80698-b69e-4c02-92a8-3c5390afcc88] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzHEAUbaKDxDeIaSNXh5ZGtnvfD0Bxw29N0dtN71kruJazeCup4PwKOrMzW-OHlnpkii8_idITw6EUpKuAMU6xm8TqPB27Q8YnZhM8ijdSG4LN_QCLReFPfaHwGlooBOKVh7qN-j9j3Mife_ZBN_zHUcoVY9ZhHogNQcF503-qNmkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075986","not_before":"1521072086","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA4NiwibmJmIjoxNTIxMDcyMDg2LCJleHAiOjE1MjEwNzU5ODYsImFpbyI6IjQyUmdZTGlUa000eHFhdjkrNTdGZmN2Ty9HdnVCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamF1RHNBQUEiLCJ2ZXIiOiIxLjAifQ.yCWQN3t-rNfoubSIQP1tVmZ-hXwbE6Banmy1MjdL8sTjg7qrhR10T8CMaGAkCbNs89oGqrYQ6qnEXttPZEs_EIJO1haLBy5a_Y1hX4-apSGxukwIrlxxD0HdqmRfMPJZKDWY1sAHPjX8QseRzG29O69vmed4O4TyuiSJm_keUU7-BIZxqPdIoQ16IqlqeRRDGvodjyAmgeG2j9e32mbmdjYzaFOr31PXLQPavzzTA_Ig-rVDxcrPCVgLyQcgwKVmJr0JG3HZALvRraZMw0QvChYk5AUNkaZCbeWv-DYg09W0EO9YZixbJts1kt5UoI81xBXQeZ6dneMDMjSQiMBvdQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:25 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "7dd80698-b69e-4c02-92a8-3c5390afcc88", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Length: ['151'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['440'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:28 GMT'] + etag: [143789d6-f585-4490-8663-0815a75bc641] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzP0AsGxSq77KeRf4KHI76wr7bV8YcS1lz1yX8o1fmLVt4onH-cnfgk8qaLOJRW6LEz7oIxO2KA1-VvNoyRBDCzNHINjTL_pBTC-JxWQWwpKlVPEQukQfz6ALFAaM7zL0W0XuBYbZMzDsWb92M0ra9jaKxJXBT8FmCeEe2FRPR9KMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075991","not_before":"1521072091","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA5MSwibmJmIjoxNTIxMDcyMDkxLCJleHAiOjE1MjEwNzU5OTEsImFpbyI6IjQyUmdZSGlVTENnbk9EVmVjWEhQNXgyL1pVOTRBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFWendBQUEiLCJ2ZXIiOiIxLjAifQ.JpqJGplxjeLxDOCcv5TUqKKlDE--2UhCKpSB2ufPgscXCZOtFOKeb3pGZp48C7bDaKomwEwMNQx1qFCTkZ-SjBP0lbzt7gpN_p3_xfO-zNKek5-C0i8vSC8A3WgEQXNTUYX9UhQ0yJNIWar3JtaKBJpuoZPCZlfaAgsNnCOip6TE5W4JBIxktirX8ZuXjIOImx5nEov2stvpu51T1NcWreWP2pNYRPOnabrScNH_T6TsFGAkY6WTSlwyhzpCA1Fe3wz3GcFPtEVGTa0p6mw6I7nEStMDLa-nK6ZGY78AcbqmKCpHRV_pyqKhVBhAm2ZB8G4llyTuK1BZpDCi6UCPdA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:31 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"095e7cb5-5a17-4e7b-a2ff-4e0701e22932","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + headers: + cache-control: [private] + content-length: ['546'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:33 GMT'] + etag: [095e7cb5-5a17-4e7b-a2ff-4e0701e22932] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUvMM7cpOgMVQGuUxHER7_r0AsFkeg2w-ak9c4WjmKaxVThDEmlS8tOILa_xke5djwM7Cg7FeJXP3d2fq1qTtYlZHzua00oh7eF_QXRV2vsr1dGxNCnFB1bslgL-YIPtCAdsirmwOQoYj2SRS1Lkp_WUC1U2RCp3WvKmttEkfZicgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075996","not_before":"1521072096","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA5NiwibmJmIjoxNTIxMDcyMDk2LCJleHAiOjE1MjEwNzU5OTYsImFpbyI6IjQyUmdZR2hLYlJjcy9sWlRPeWR5d3RscmhtR2xBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJWalFBQUEiLCJ2ZXIiOiIxLjAifQ.rh6yfI3jzwpd6r889D9MpnkHlBRQTqW0f5x9-6gMqfsMlBB4x5AzKgVrZ05sjxv6x2TSTmMxXUyOYzaOdtazaeAtof8JKwQQwgP--zBXc0OE-UDIwpPp6iVD36kJkIkT0-mZWGd_TLIYmJLM5-cCRRM1CWJWsHTAJ9sf8ogcgVeaIOL0VgRAvXrMT54zcB8FtT-2Xi-jh_QTEWB7TzWS9JusSKz-m3tpFYvJOtnmZPCU4r8V08RANen1_jVn_VXWdmrCpwYYWawCDr4O_LkI7F4XLGV46ZTOU0swG8BJQLatp-xZqlzEBUES9l1y4diJa5FPsvC-fjRne4d6wqOJSg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:36 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"095e7cb5-5a17-4e7b-a2ff-4e0701e22932","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + headers: + cache-control: [private] + content-length: ['546'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:37 GMT'] + etag: [095e7cb5-5a17-4e7b-a2ff-4e0701e22932] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:38 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz4A0Ku1AadSHQI-7ziRyzNt9jn1PioU1QDv6U1vm6vGi653F-kxyRxJMdNHa9yH3xd49VzCyT1gyOyjUQ6L_RdKWD6x_asmmeYfv9vbM8noN7U8pL-mvafbmStT-EOepV80xQ_fDu_Y-R8nn3iHBNBApNmCFJui-GoTV2gSXuAXkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076001","not_before":"1521072101","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEwMSwibmJmIjoxNTIxMDcyMTAxLCJleHAiOjE1MjEwNzYwMDEsImFpbyI6IjQyUmdZT2crcjJSK3ljM3RmY0xXekpOMU9SRWNBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkppRFFBQUEiLCJ2ZXIiOiIxLjAifQ.LihIVUZffcuhIWPt5UEtZ8EldDPXUjIiXIndGnRmAWCKnKR28GjW2YRYsiP2yNZMsCzLAyG8LQrFyouON6xEoCXdlBvCwc03pw-rnB9H4aYa6MH_0_FYalT_SbAZSzFN94H-gp-x7hpv1WHKGxiPwuy_zRgWWPFDYo09r6Aj9WCO6N08k3RT7Zgsu013tq_jxUcXMmyuBAzDJupIJ2ClESfFHyy9dhj0KmaGKdBv0DUSutFixF8SVZptPEdj2mKce_hba-bkJfD38vL-r4cHzKgUOHAKpSliPWbPtbhbgCP0sMV1vjQbFvd4hFBR2O5C-apbN8sDbNkyLOjCcTt4sw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:40 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "095e7cb5-5a17-4e7b-a2ff-4e0701e22932", "properties": {"TTL": + 3600, "SOARecord": {"host": "ns1-08.daily.azure-dns.com.", "email": "foo.com", + "serialNumber": 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": + 20}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] + Connection: [keep-alive] + Content-Length: ['244'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"edee9221-8cab-4155-8237-e6985ba18e13","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} + headers: + cache-control: [private] + content-length: ['513'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:42 GMT'] + etag: [edee9221-8cab-4155-8237-e6985ba18e13] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:44 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzhowOwYJcsVPMY5wpcdkFHW9QuNxmd5OQhip9O4tlLIwrFCKNqmgS1lg3bvgbgQjdyT_HoDTVnuqT44FjPbyd3PGQlmAKCktRwO-MvMc2tGBKa03WGfsYcwEL_AeHCCbGCvX_T_KfzbKlJLz5yxiexoyb1g9Hk-dVAuAjJlt3H0AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076006","not_before":"1521072106","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEwNiwibmJmIjoxNTIxMDcyMTA2LCJleHAiOjE1MjEwNzYwMDYsImFpbyI6IjQyUmdZRmdySFMvOTUxM3YrV2RQYnlyTFhKb3RDd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVBRGtBQUEiLCJ2ZXIiOiIxLjAifQ.QoFrRpaSSFYHPGwwoQvCs9-OyGiFmPuTjMHNKozBjpPC6jmaacr-kb_P3f0fb92H_o6zi-kUu3ilpEQP6WmrJTvxraGBOOotmZbfBTv2WNpg2FgaD78JgLDDnjB42QFW72QRdkrTMsyuGXCX7qaPCUZ0yubbV5KxDCpDpLM8tNS9p2qaYrnKIaRiv7iOskKLSYabmzEapBEhKh0GQ685dAOBGKA-9IsPXYI3be6ikAP_j281F-WBE4R_aBzgWCBka_9kyrqS2CH8zRF9g0nxRBDgBGMJvP9o9iUuI4vSuqhJ6e_TuXTtPQME0KNARp3ReLQ42GB8DiJZdR_MqzbD3A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:45 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['228'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:47 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:48 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzTHsvoLJL00HiPloRXphB2F9V2t-Bjv3IQWo4PsUsAuJC9ZnDikbAjSpmDyQEJN5wS6qG5nGUhQvdIQeMn7NfQFXNMljhaCqzyb6_dEO7EGwHMg39g_w38u7Bl5dhmzcHu48whokhpXEn5x5q22MRDNRx05fJcAo2caDuJVrClCEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076011","not_before":"1521072111","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjExMSwibmJmIjoxNTIxMDcyMTExLCJleHAiOjE1MjEwNzYwMTEsImFpbyI6IjQyUmdZTGk0TmViU2hRVWVWbnVlcHl5ZldidkJEd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnIzellBQUEiLCJ2ZXIiOiIxLjAifQ.PNWBuvGYoBhQMkXM2Zkf0RdJDxBMRXSvV32kMwNJs8UM0Zp5V9zbNUQcIkreyJbvqwNFLaRpkytnqPtA3B4ldF7DgHNCvX6d0Uk7SEW4iq867ThVM-LsBJzHwgo-aZ4n6TjSyW41LTPFOFnY_5jQdySH9siXIIOWWvvWgfJobfXUxvWhd45M0djzvAyUSwvL7BdcEV6KKaTXV5m-uFe0Fyh49xPW-6arT3lqXIlEz-7if69iUkNaPRYB43RLwpKKB7ERJcLEMtEd2p9KYk8mHafJf_wEqbIMiECCIzqZgKUG45DQDYDqWllsKURWDgqLo4ljZAY2Pq5J2ZCN_qXZEw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:50 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", + "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Length: ['566'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"37d17ddf-645d-40ab-b971-6679c47c354e","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} + headers: + cache-control: [private] + content-length: ['914'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:53 GMT'] + etag: [37d17ddf-645d-40ab-b971-6679c47c354e] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:54 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzZpJc-A-k2ncbWLviiS7n_btvvP22_FMtYvAbep_2Gj0k_qNe0XCvL3fQY-VJbHrrcX9pydu6BzgVg_XtudDN2Nj8J7pI1cljaHm9CJgmK_JII-a2PDu_UUD2ImsJdLkCs79AvKmQg4kRoUxgsLtNdPmcG_IC5BRJRyfU3BDFCeEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076016","not_before":"1521072116","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjExNiwibmJmIjoxNTIxMDcyMTE2LCJleHAiOjE1MjEwNzYwMTYsImFpbyI6IjQyUmdZRGpWcDNEMXNUbGZYSTI5K3YwZDUxMW1BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFwRUFBQUEiLCJ2ZXIiOiIxLjAifQ.aze6pGGUORrXZQvKyqwZRP2gfnEio7wryaTtzLhC_cm12LKPZEd3lFqhGkGcjaYueb42O2WuaCrGIUIA749kPZWm9loVTFKDVAzW23paSH42r8o1xaIEiQhz6vT9bS7RX1NOcmrv2eWFDmOi2D1S1GcQHsQY5q9hzMpIoEyj6KvwnGSgc5Hqem3YSpkRVdY7AJrTBQ6ovwR8KP4yxF42QN40Ffvp3F3ybm3puTL4srqcssYd8N8nNhOGUraavHqHqipefy4mEHrgalBkIHy12Ur-gSR18n9NEEJYcP-DBsowCMeRX6386sCcs0acgkeuVFxrOJr6vUnusa5DElPlPg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:56 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":21}}'} + headers: + cache-control: [private] + content-length: ['549'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:57 GMT'] + etag: [00000002-0000-0000-b23e-e0e2f0bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:06:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzaX1lm21LUdDUKw9iUBATO2yVCrMDc2dYiLD1f6gFUmbKizE3-ANyVVS6agk57JYrFbamV5yF2povSYSC9YiI52Qm7cvQYt2XPpD22XVqb7YuvwkSIAOswoYIvJifBiHK4Ld5MnM_Lpq75GMb8_DuG5UEUNdkvVR8ztMhvZXH6pQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076022","not_before":"1521072122","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEyMiwibmJmIjoxNTIxMDcyMTIyLCJleHAiOjE1MjEwNzYwMjIsImFpbyI6IjQyUmdZQWo2L1d2MzBldDlUejBGUFMrOW1PbjhId0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhlamtBQUEiLCJ2ZXIiOiIxLjAifQ.TFw0O7yvYsQGHwB1-IHJu6DB9Y-a7DaAQr4_Uw1imsqvj-5lAtHmqSMy7g7fIt8CK05w4wgYqFNlJFQhjQtwpVFtb8egqD0Gva58e31iO1Cb2VLYruot5xO6M8Zf_FhLuHv_WAcZpN7TWNp-H_vv7_-73KIKbXcfqLiB13VOjfW8id3g4EwegO0patOxsmOwFzPakleF_qyHTkOoL9Qx6i6B1zJZMu9JqfTH4vy31FvJtrJTSYrBnyBIOaIpVsHW-vTXyaQzufDtxYjj20bB0cyz9q4_G5H6PMwqTq5r1Djc-eBZ1aP2IUYDr0TH4EDrWkYAo7sRBFtaampRqpb-Eg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:02 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['440'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:04 GMT'] + etag: [143789d6-f585-4490-8663-0815a75bc641] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:05 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzpuNifk6p8i_ayA8kYLb1CCzNhM_hQNz1gTZuSk4asD4WC7te1dD5zuOHrzB-QMQEu9WGZKNoRgyHcsew61wjimiLBxSnRxGV-ug9r8_JQDryzYvKBIkw9wAuUr8tMD_mHfmSs8YXa6ia1Z-lGAgZT6XG2S42TS7NxWK-R2prAfAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076027","not_before":"1521072127","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEyNywibmJmIjoxNTIxMDcyMTI3LCJleHAiOjE1MjEwNzYwMjcsImFpbyI6IjQyUmdZUGhwT3RHcU5lSFhwQU0zdi9MY25oNnBEQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhqVG9BQUEiLCJ2ZXIiOiIxLjAifQ.RY9uFUHhXlWFQv125X-BV9MPMeaNCO2-NNUn3fP6Qvc3Q68OTeGb3ClH23H8uv-Iwln0jFKjG9oKLdbcShmkW6dKsoB__xc_J_3VPkOrLC9EJV-mil8xDey-BoHRKpkMZsJ1mE01P78QgDkzJAGZzM731olwGkJ8qVvj4p21nva0lsbmQf0YVMaAgDZAmRIY9hNBhkUH3nFfHWh2NqyQ99-wCpxWAdAlk256yT6kVAUgn5Ra_MTSd5IPF6WhXbl7Nlpc8dA28vIq0AxO3xS_CoEIZfUFwkuE1GtzcI1oPMLOiUwmSx45WUm6-mIeBll4KwZV2-jXsdl1ThS1I_-YUg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:07 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01 + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"b17cc8d8-c26b-4b50-b9f8-b93e40e14d67","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-08.daily.azure-dns.com."},{"nsdname":"ns2-08.daily.azure-dns.net."},{"nsdname":"ns3-08.daily.azure-dns.org."},{"nsdname":"ns4-08.daily.azure-dns.info."}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"edee9221-8cab-4155-8237-e6985ba18e13","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"37d17ddf-645d-40ab-b971-6679c47c354e","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"48442c36-83b3-49cd-b8f8-ae352f47f0a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"d26138bc-e96b-4490-bdb4-ad1c14c25ace","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"127639d1-b346-4581-a119-f0738a6a3108","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"eb5b853b-04ec-43fe-a934-97f9e586c6e6","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"09ac2abc-ae05-45c2-b6ec-f05f9da195f0","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1660bb94-d459-4fcd-85c4-1821901d53f0","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"28334082-46fd-42f2-921e-c5a84c5ad707","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"163fe323-0a5e-469d-9800-dd0d937ce764","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"85e65bc7-452c-49a0-8b27-7b7f1dcb3655","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"5dc0eed4-bac9-44e9-a163-54e39bb9b964","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"90fbca1b-c758-4ad8-a10e-a79ddf2c2e9e","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"27353eee-6852-4c15-b812-8d22c3d33836","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"0bbc8be1-3cb4-432b-b458-a7f494f17272","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f019bd41-5ab7-41bf-a303-c0d646707610","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b2f87cf-6544-468f-9cbc-fe29696a3224","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + headers: + cache-control: [private] + content-length: ['9822'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:09 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:10 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6-v51EDB2LupwyJ0rj3Xtp35NkfzfyMqce8SCF_74bkIjr97h4xBdahPLMbCR1-v0moAyZjWkhWrIOfdEAJOxLAxGEoepfjvImyWwVsYQgoCCfJizG00Bq37A8PveG9Sg2SZtPwKHiJLr0AMhuNlJIaaa8lVEf84pRT-52KyjUQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076033","not_before":"1521072133","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEzMywibmJmIjoxNTIxMDcyMTMzLCJleHAiOjE1MjEwNzYwMzMsImFpbyI6IjQyUmdZRWhpbEtoWjl1ckdGamFlWTlxYXZzczBBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFnRU1BQUEiLCJ2ZXIiOiIxLjAifQ.Kv0AgHdZGfLLirUq169DVo3_2TjZVubOOXSkOKgJ4vG-8FOrW0_n57iTRp_dvYgzHXJXBfSuQcS9fbHvRV-Rvyqvr03vqMkXzCklWINpOZk64g-t05yW8rMCBP_CDe8uMdAziZHj2F4yxXQwfHfYKk-7caU4yTkq6LN3YstMr1VCHxFzp3IInvQYOzcdhTodo9pOQMrUEpoS5nymktN1CuN-1TXYYmMRemxq9UJtFb6QBA82Muih0n9ajeESb6sT8fU5TkhKUQRiO-7TgGoxnKpfWv3UNB8ukYJS_XE2CjCXErwyfD2913W-A3W7quk6ZkF1qXIzEJbDLN-XuR9GUA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2017-09-01 + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"37d17ddf-645d-40ab-b971-6679c47c354e","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + headers: + cache-control: [private] + content-length: ['1777'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:13 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9krAdnklTIN1SJUxSx4qGOv28NzGUtT8nJu50rAxXIxO5oXfGYozX9PzPGR3yufDn-30XsXIi4y0Kg9i_nr7IrvOqXxqtiFO95spJ6MX4a27DCpPcI0w0VzL1ohZhIFXUF64bk8t3zqv97MxrLk3NmHoQKFqe3o68WLC6T0P5cwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076037","not_before":"1521072137","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEzNywibmJmIjoxNTIxMDcyMTM3LCJleHAiOjE1MjEwNzYwMzcsImFpbyI6IjQyUmdZREJaRmZxMDFLTG1EOHZ1WHhjZjFkVDZBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnI0VG9BQUEiLCJ2ZXIiOiIxLjAifQ.DAsZr-_jA66SEpTXSK6LbBC74RXarl3gaHBiZXuBGEi6kQTwpRMJSyMWKYtit7LpddhkIWzoycY9Jn82QhDdIMcoBswIPl-vlLQ6mieRkKPohgK-gN6G7mTUPSdwQgre6LJEWcE3WFpH-GYFSMvZdGC5-YuEauthsQ4vrybOGoy1tDGgMIDhFQeCbvS0MmgeVGKCab7y98Vd47sxqgVHR-PQ2TWbRxN4QXsDKb7O9QAmGGQAtLUypNpOllVZpZmLNm-s21GnHkBir9CCVAvWrNcyMjvvAlP7MTztDuI2PfkIHZL29XHHmIJgefwu3hmsEpwOipEcxWQW1I1ue3BXdg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:16 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['440'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:18 GMT'] + etag: [143789d6-f585-4490-8663-0815a75bc641] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzKWhxOcTjP08bJaVHWLfJwGJ7hgaKbG8eu8QPHULvGF-lHpU9CFV-ZamvBNqrrmqwf7jvVAb5xCbIMdxUiOJNi5izFQDXqqigq5uxd3vwAzbFUWAMly8IF73I7pjtMaLCP6wiHrRLdqvnrWTh4SNkN5Hvh58aFzi_naxU3w_3pMYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076042","not_before":"1521072142","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE0MiwibmJmIjoxNTIxMDcyMTQyLCJleHAiOjE1MjEwNzYwNDIsImFpbyI6IjQyUmdZSmdkMGgwK1kvMU1ybEp1enljSmpoSHZBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkp0andBQUEiLCJ2ZXIiOiIxLjAifQ.uPjhmGKNesg1BBO1_ZPb48GsO7q3mM24UN8QFdA42M3mVQqO8oMeTN5U6rYpQCKuJtGcF2zBt1uQGbR6WsXWEicLRYjYvOTKutLvmpXkSAUxDMgoJcgHISkeh9F0FI91_4mcmrhESWqmk_DLGFrexGvDDd2iVMhI5WZSakHHN_Qfcpp_167w4EYcoWXVfym8XCHKDPQsNPjzvfznJOqCfdO3NBOFXwAlKlBEnAtdzfKL22awO1Ao7Tj2b1k5zOWI4cgR4oel8Rn9kxbbYb6WRwyT4CUOMBUmZy4Bi7FjIDtOm99vKbKQiSHAO6mY953itxhKr9jA8JNlfYZp2X6JCA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:21 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "143789d6-f585-4490-8663-0815a75bc641", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8f0ef234-7126-4409-bcef-6c3658449388","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['412'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:23 GMT'] + etag: [8f0ef234-7126-4409-bcef-6c3658449388] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:25 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1fD8fy0T-ZT3N8PKN0S1ngDmzKGsRiVg9GYYujugkiPL2h_xsS-G_huVOcDduqmy4AMfDCD5jSx5FFJn79LaxVh_tZ_u_UWrrRelvgzWwhk8r_wGchOwqb0uPJ_Uy8BDN-snhTKL4ncHgMMKLHlx81EdJRGp5NyAO_65Dl4oCw4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076047","not_before":"1521072147","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE0NywibmJmIjoxNTIxMDcyMTQ3LCJleHAiOjE1MjEwNzYwNDcsImFpbyI6IjQyUmdZSGlodjZlN3VQQ1k2WGIvMWQrdlBFaWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhzajBBQUEiLCJ2ZXIiOiIxLjAifQ.FjjHrttc3mqGExDeUSrIHOHJW6EaD1othtwtmCqxs3CCbkENPI2jK-EVsRwJcOptwWE87NgFdMyyaEYWpGw4W-bie2PF79pm3gLPCZOc-F5QDiFr3t4Yj60Y_SMNyiowPcSy8wdbPRupvwblHhVQuqYnFNIcTvAMV55lQNi_ExgTbZOhYNB9rONvtL_74o62cJ1znlkp_wiiovPl_I1MLTc61YXpalW9H6LgD3amhQrQdl-ayV5wEAXJ5yax_edkbK03BDDotNYDsK3mMgXQAqKdu7HYDsgG-ifeo0Ga2iftqCToMU_PZnsoRyhmEsDSBUZgGY61Vz21991LLoDNLA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:27 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"48442c36-83b3-49cd-b8f8-ae352f47f0a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + headers: + cache-control: [private] + content-length: ['441'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:29 GMT'] + etag: [48442c36-83b3-49cd-b8f8-ae352f47f0a4] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzhpgoNPgmam7vl6raLYwvrjB5nNAmt9YFmrh_9CnHdZU-ioIddzJamn9pRcON4HUNriIy_rEqZgm5iQSCRivR_TaobHUw9YdgO-g_VvUbipsr9f2jPjWdAts9u_wFJo0_JGV_XNgJI5_ViPAqZ5NWCk6psk_5rihhrx0X7khskIkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076053","not_before":"1521072153","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE1MywibmJmIjoxNTIxMDcyMTUzLCJleHAiOjE1MjEwNzYwNTMsImFpbyI6IjQyUmdZRkM3MW1GdjM1S25YOUhxa3ZPcGx1c0JBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFLRWdBQUEiLCJ2ZXIiOiIxLjAifQ.bUdCZkaq1rCTIH8MaCQDyQyLCTSMrlFuefbTWCR4PX5JMpf3DoBP4CBpLVC6yMuBywvNf3Z_IYQb8JVJ9iosz9vyPkHYv-IOrA7Evvm255UW1H90ROX0anIbuJHGmmNHQyexLblSCvOF5_wLTvIV-exdZyEvqnblPyHowqWb3w99gxAugK92ziHuwHzaU5CuhYyWMzX0mTDnT3bHuhxAqxvmEKYiHr9u5xKceOSRg6pHqE3vWQrN_9Na3zry9ZuTradQX-G1PpaiLHZbvxf7qhFpl1z0V9_dhnwpEjO5jWZOG2BGmiVVwEjHbiHKPb-Ckv4jCoUMMkC2K110AvBT0Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:32 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:07:34 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9gZEeechsZzTZRy_XQDOGN4LtL0gJ_2vUW32OA_1zRG4ghemfhH2RqfRzMVtWdclKhu1s0LQmm16TwUgIJA0LBSoGPlQPmg8oymUt33wp_H9c6fTIZmFOIUOWEGm-XKzOPCBq2ogF89X6foP5fXHSCbOofCjLXDJdkMeXmQMWnAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076058","not_before":"1521072158","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE1OCwibmJmIjoxNTIxMDcyMTU4LCJleHAiOjE1MjEwNzYwNTgsImFpbyI6IjQyUmdZQWlPWTYzdnNqdTFlTityU3ZzNWNTK1ZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklkZ0lBQUEiLCJ2ZXIiOiIxLjAifQ.jTjTnDKYJFa2qIYKlFwNkap1_Ulm9nE67qtZr1ANEYEFg5R3QhdRyCOIevMXzLsV3d2CPzH4moAXowMtOfMuBPgZ7JthT2lwwETBZ0lo6qgt7vpvzGlo5WBikCmQPl1-_pg5aizxZXAcH83x-q9CnYGVMGTE6VOl3wOSwwOgxlNGRexlMENelO94dlg9o-dGLD9w1qBL70y_S7mkeYvhMseFgU8g-MhsSnwr6r66OFkOaoBqf3WPSZuk3lqxAAmz-WZGMT43O2n-TTPl5exvKrcSdKG6PwLtm99Hmq_jp-S3VXBBmzGPMNlc1jqtYyBz1MELhAVeg_hRsjLq0SDMdw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:38 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"eb5b853b-04ec-43fe-a934-97f9e586c6e6","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} + headers: + cache-control: [private] + content-length: ['439'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:39 GMT'] + etag: [eb5b853b-04ec-43fe-a934-97f9e586c6e6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:40 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzm_a-0nCaG7VtOi1gCzXP0Kz2D8oFdf0Iva4yphZ2XxJDgL52eyKSWIIv9IQM8OLDCniI91kg2Uo7SMWaCKwAB3RyS8C5gggUIsz6clgMOPp6fni2PKKJckoXGuTzTjEYk51IOgRBRe3OYe5k2tX1eQ3ULxCMmm7Y8tLD7jKrcy0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076063","not_before":"1521072163","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE2MywibmJmIjoxNTIxMDcyMTYzLCJleHAiOjE1MjEwNzYwNjMsImFpbyI6IjQyUmdZR0FwYWdwZmYwMDE3RWo2cjRzbjk4VkpBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklGd01BQUEiLCJ2ZXIiOiIxLjAifQ.ZGMH9IMOJI10uKUZdYraPFDylBKhHdjBBmm8Hnahf-mnsZpKr5xnblPir0TKWJ8-Sn7RvMjZUq-yNtAPm_YMBO98d3nt3vQLdLtkV42gymAxQxPKXvyJju9lIGFRoQwjHU1EVxeA11gvzg_B8WVgNi_VoaY8KaZKH2hCp3HaCVpmd9khF0sNkal3fNWn8YdzHVlcfMsCb6mm9Cblkvu_mqkbJQsRnJYI-1BcbK9R_hijIG6toeaPhygMzd7eDUEcDBZBQb8F8f3cs_vjeJK-9hqHK0_FeGJPWGLSQKdn2dLV6RzFpNyyFxBw3YmWiroN2LIJWLH21CjddL3_PQ4mIQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:07:45 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:46 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-sIplHgQtUopcMN2E8cJsc5fpdNFjkHOdJMnZnMhgf3VUQ5yZq_iW9Zm4pINMVOyQwvIjumTgtyNmlt0-Y0mdULFOXgUK2nd40UIK73plqfdtk1sd4-8Lv2EgahR30y8e1N9WLVOq8NcOOgju6eesAWBkY3sjoRTVBO7WZJYcwsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076069","not_before":"1521072169","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE2OSwibmJmIjoxNTIxMDcyMTY5LCJleHAiOjE1MjEwNzYwNjksImFpbyI6IjQyUmdZTmo4YnRPNXBIb2wzZWZYbms0UXZXYnZCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhnMElBQUEiLCJ2ZXIiOiIxLjAifQ.FwoOJTgXhO3-nwCqHnZVxs19BozAcOSOOL77iOLhgDoI2ryroxcT1G2GlgKQrl6J1ve2hJOMhHvpN2qFFd4g5g9B5Z9wpoIE8Xxw5-N_PQCAsXKvOdTBMIsyOpXcqC2f7Z55SjCbralTMBldUaAjUOJQRubFd_NGYuD7f1eEj8xKyXX2uIjw3sL-OZ1W7Xv-mjqfyKmfd66q4RLxz1vtalIcy2-cREf2Gf4UGO2AVANxxw1dlEsf6A0Hg5F29vX8HHWLPjMNn82GzVqfQgOJvhRXujz5e5NNN8B-avoajoiSr8e4DcWxdNbfsqmIcY6grfHoPKca6CC9DiuDYK2qYw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:49 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1660bb94-d459-4fcd-85c4-1821901d53f0","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + headers: + cache-control: [private] + content-length: ['425'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:50 GMT'] + etag: [1660bb94-d459-4fcd-85c4-1821901d53f0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:52 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzenizGB75VijUzgk3GvTV5mUJ3q9iD5q_at6pA90FLzSDWmh8dc8NyvkXwYdW7OOh-ni0cGeWBdmqi4KzzEVsjDscPnAarG-32-wCCU0E-6AJZpBfdGBOkXTxIq-Fle2stBeAOFTyUnbMgzDHCR6vsgX-s7kbLRPHvqbkvVbR60ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076073","not_before":"1521072173","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE3MywibmJmIjoxNTIxMDcyMTczLCJleHAiOjE1MjEwNzYwNzMsImFpbyI6IjQyUmdZTmoxVElsOTdZdEhXZHhjQjVRWGw4YWVBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpSVU1BQUEiLCJ2ZXIiOiIxLjAifQ.TiQJz5FDXaG5U674GE6vZ9prXrqU6zrmBYXsnqJnurYWj7l3zokPIUjlImjt_rgggheeNyD5pcdG8yLQD-q1u9oBCW4uu0ofDLihuNIkUfvYLHUCBBhUInTHMC4LcUo1YAetITCto5ZeGqvv8DrB5U0aWlf7ctgTLaqV0UjLwb5c0W1iML7a3Jd0whAIWKFByoP88SFymmgBPJs2OIwBuc2rCXd2ArPcrxKPefuDoN8TqIz8xfcOgcY9qXpBr2iMs27GG0ND3wMYVXH8j3RfFIwbsECsRowEw08ItQr39AuB2cFqH3Q4NZACKmWVzVPxfW2_OYcEQdqCgOa072Iy1A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:53 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:07:55 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:56 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAbYBQI24GeZ4obCjLtEJnGtDTOHTVhCd2-moqMP-L4HvnuN_MYuhGlgqL77JNs2ugUBQLN-1V470AEBXWWTsu8Xu2WoDa_AeGPGOz7nf40fVnq0Qdoz5LPEBpFZlkcdKxAmbvNI-X6B5C2HbkFzXNvNiW8VBxOb8Tn-uuFXHL74gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076078","not_before":"1521072178","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE3OCwibmJmIjoxNTIxMDcyMTc4LCJleHAiOjE1MjEwNzYwNzgsImFpbyI6IjQyUmdZT2crcjJSK3ljM3RmY0xXekpOMU9SRWNBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpBMFFBQUEiLCJ2ZXIiOiIxLjAifQ.hVO8-nB5nGh3v5O8-zIF8symT7A8MSm6bATDPJit5PqJ2BgcEoQpahl-sxK42KJ8JDYi76yZ2Ke75YfCommhBa19H6bbcnznN_0sqU0ttIzJOXV-Wbxoj5U0DlgX08IEFu_DM9C4Vc57oa2OM4EdWGKgWcossCzh11kwAq971v5VNSjx-GqXpn4DRV7-ssIwsXMbVteIQj_miRnmVtAoLCCjsHmIbR3jZWOsocB_vPi4_wauL2ePZvNaQJNYQ2fJTppfaYIKLfUmzHMpUsI39cWFkVrYn-xd0v4nbOqeN5XwLllJK5i8mVBF1GSW1nR7M7Xi_NLRz_jMd44wUyiH-w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:58 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"163fe323-0a5e-469d-9800-dd0d937ce764","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + headers: + cache-control: [private] + content-length: ['424'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:07:59 GMT'] + etag: [163fe323-0a5e-469d-9800-dd0d937ce764] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:00 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzTgteI2iHKiHcBZcYgpbYitIDOfsXuJ6afnR9VROKNvkv1n0RbC3By9ilVkuz1hfpoWl9q4Q08lhrtfMsmL21xAiZDLFvsk5D7EahiBTMA0lKPRrgJk-LLDc79veFcXQMEfZ5Q_bqDYEOcrwtCgPtskvvOefGW0cI22cIbD8O5mEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076083","not_before":"1521072183","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE4MywibmJmIjoxNTIxMDcyMTgzLCJleHAiOjE1MjEwNzYwODMsImFpbyI6IjQyUmdZRWo4ZTd5TnNTTXdjbmZORGNFWjlWc21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Iks4Z2VVbHFtd0VxQ0RfdW5uaElBQUEiLCJ2ZXIiOiIxLjAifQ.AO8LqFjd82vAvCdpTqjjKO4TuliEb00SnDLjgm03rRMWmbg0t4uNQR-qa-KxR8gjyed0hGbesfaOnKTVgXHzc1IrYNOC263PFLsrMcGpe5d5u49UtLtbbW1oSFsPvfg8z2piflVBFxAa53wkIDsvKE-ltcUXgg2jLKJAlpsHd21qTnLrTJPNWTV3vorBBUkqncalF1fCHEYxez-lck3ttyEYehq1nulu-zQMaD6Zzsy--b15aez4eJ560DIDdjMXDGYuYfZyXbgJkdfcqoQK90e2hwE8eYrzu6F1i2bzObqvQe1fpmpEEKtvl18L4ALferoByj0iqIphG304XmZzMw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:03 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:08:05 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAKDrsQ5msnhv_085b3Ghjdx3_0nH38D2CWpmqCGfZR8ymax1hKwn0D9sAinEs2ad-ZItqhHpgZ9mfJUp7ppciBQ8PSDiwBbJkH-jb-uKNgsLh4swH0iubTbvEkPx2dnRDcMURy7epVyMrdhX4wQduV71X5gv7yUCjebX-KqhJ2cgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076089","not_before":"1521072189","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE4OSwibmJmIjoxNTIxMDcyMTg5LCJleHAiOjE1MjEwNzYwODksImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklEZ1lBQUEiLCJ2ZXIiOiIxLjAifQ.hviR6_P0hs0hejk_-kB4_WsMoe5k7N_OHfJrLWgMgNgAO8xmYmuBZeQrE_6K58skfVtSCjIXdEQycBsBusDs34fRvgDoPH2Li_HfsCceik3yX9m3H-0liTrldJQerIuMMqGK_n5Y75t2InPgvBgnqbO_7Ec-FDraVBg7t0QEvuwiyDlR1-0kP34l0F5Yk52aiEvKzGcUxzubQ3RhZVWmZ3OOp4nXaTT4EDSZfwWG5wbYcN3MAbbg_UjdugRALj9mp49NLlqiK_GsO6MFM82XlB8l7tcPBtmaXMUuUv5lD5tesHg0V78pboASz_O2KoRCWU_q40aPNRLiXh6_vCgG6g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:09 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"5dc0eed4-bac9-44e9-a163-54e39bb9b964","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['415'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:10 GMT'] + etag: [5dc0eed4-bac9-44e9-a163-54e39bb9b964] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:12 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzx_-wdCZ8cXPXKqlde3ZymMUtDGcPkxeppE4xqOvux19MNSBkeC1AxwOgoHcapIILA-ZoIaPs21MlOAWKjREyOk_XwrH23eZq0zNdQt59tzeK3m1bqLPPzOSYUB_83qJJy15_OmpOzfvqdFQgmAVs1lMes-jMBDCMbxZTbkRSEGwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076093","not_before":"1521072193","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE5MywibmJmIjoxNTIxMDcyMTkzLCJleHAiOjE1MjEwNzYwOTMsImFpbyI6IjQyUmdZRmk0bWkvaHljMjVuSWZqcExhdTlOd2hBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklxd1lBQUEiLCJ2ZXIiOiIxLjAifQ.wM44n--K6Sl81l7bQnYcGxMmxN4mN8QYMnmXjprbwgH7T-1-zygN4l32f4aFJ54LTmDRPwLGuPs8_7v3WlfQwY9ZLNHkE3Z_vBZ5gZojsdLzDR0W9BMJ_dgJme_qKmA8SFmN6Fp4_tfHj35-vMlxpLQ-WJ-txeJisn5pWmY8cCnp7y0CPEoEVPECHadXR1kZ1FRfTWb2lbp6MTdfkEI6Mk60SgIglH7yyxv8Je7FeKce6xgKDYpoW_rOpNCcZ7H1_zsSBcsu7X_48ArQ8apm4zY-NI-v4G-Kq6fxST5eX-0-e-6m5dsqmlqhTiP7tgy4OUzb3vNzQbH7BS1b6vUryw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:08:14 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzseCyDcVg2c7sn5-2sX7YBHlTv5D-fxSEW_jqpSfnxlv_ZjxAuKHrTujFYivO2BuxQUyjOB1rOQwtHqQeeK3UoAS5odJQHHQ611uQ-3EIoGDTkjM-zdr3eXTMgXX7ZCup-hSg5FHi0wlZ8FnyF5Gd0BZnJisY37GwelreaerqTwggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076098","not_before":"1521072198","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE5OCwibmJmIjoxNTIxMDcyMTk4LCJleHAiOjE1MjEwNzYwOTgsImFpbyI6IjQyUmdZQkRxcVRYL1hpemxFTHY3Y25xWmVmOFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklhUWNBQUEiLCJ2ZXIiOiIxLjAifQ.ZTHsiDwH9_OdygTSe16xYBgjvz_y0W7Cx1BxrFufhsgKEXxLKSTNfXG94ue-rRX68YdypsoGCvxEdBu_WWZXo3OleBhy2svIGcXw1Jq4hVlHBnjlMlV4CFhuQ6Xc9_dlTqtiMSxOgKIPlXXpnB0rm3xyqFvIDYXTBKcz9CTak-ODv9l-gCz8Lo91EURskKhK2P6HjK8MqZINux6LBDWaxj4eJyyYe-hbjSWPLLhI5SOi95oBqiogKWBQn1qzMXADJAMLdehgv3tA24eqi0DnJL7ExEZuyQKEiHWabNTfjgLWdNJJB9UumY-KGptHyMWJSCiifiNFc1CVG56BMT4udw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:17 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"27353eee-6852-4c15-b812-8d22c3d33836","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['422'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:20 GMT'] + etag: [27353eee-6852-4c15-b812-8d22c3d33836] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzEGWugJLXw25i9cmj78kY1T6ryDdMkYrqoFcfuwMx_KVhxM2lSlGe_2154-AjwTSAoUEGXAMCYniDhcS0TSNSRqu60Uwgoml5pJ_hBZr4OnTo9VrHXDLNkml7HZU0fc92e0Zl1JjD6ae6oEmWUSvCn8Jlf2CRsBIeIu3NsGpN3iEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076103","not_before":"1521072203","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIwMywibmJmIjoxNTIxMDcyMjAzLCJleHAiOjE1MjEwNzYxMDMsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpZMG9BQUEiLCJ2ZXIiOiIxLjAifQ.xkGKa6yZ-njBCJT3YA_XbqJiT48jAAWn1x2w-H5zCjaiR0RDw5W8nNBYiA9VcLJOTlKEvm2OJMaISJmwEc7B0njjcU8a2tTutUeL-GRD_4WegRnBTw-wsWw2hm900bNw_hAohP9rzdNVXcapcmBWYvvDefYWxMwnTiuKlbFBhFvr2XQek9cwO43WkLvxnrCfh4x7vl6ANhnju5ef7-wq9xnkAyA_y4DoxdIgKYPRTa1VbA7uSM58DVf06Eh9H3cM81GIo_cGoya_xEgo20JTZuMVgsU6DK27ALgL1I4tbJDfopERA669JYS6MbYMV-eXvtdWxCqpfQKwamT0sTbpUg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:23 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:08:24 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:25 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYXsVCjBBEiOosSgat7qq2kQAKw4g8EB26S36Hn_C3O_Yy6K0XHxSe8xTs9aoC2GQBml-c_iB4FEiYacOCJ0L7mrsffUg3WiIYtAtmJdpsMYYhbuLciZifxBMQv3CSOlLTF2UQqhOA_qewX1zrFhI-28mJzo5wcvzUGZBYFBBoZAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076108","not_before":"1521072208","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIwOCwibmJmIjoxNTIxMDcyMjA4LCJleHAiOjE1MjEwNzYxMDgsImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklZd2tBQUEiLCJ2ZXIiOiIxLjAifQ.gjBytm9I9Sno-jtkQwOrSXgK2eE58bEtBLCEAKuWe12FjIJzd4dbQoVg2gFXkTYVU2Adzhbgfgo4xQVtJ3RASprHfJ_WAxKiF9TvFq_KutwOJIgOK5RfulXV7JvHdMgCL5cVDTF4AXsIkzrFXCMepv5w9PxbCFK3CTCMFjHBjz7AvvzWWwBePJmWT7Z0p_t2ZHV-Dh8M-ITigUCOm4PnnItu_swzdKiqUcUEK053UNzYp62EvhyC4Y6mhXgJOgIBvSiZWYGxgfhbFw-EmG3CeCvvfb6RDbpMvuZcE65YncxSeixWgV8JCap_RmsGsJpeiTNG0n-M1Yv52O0cfXz7Zg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:28 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f019bd41-5ab7-41bf-a303-c0d646707610","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + headers: + cache-control: [private] + content-length: ['457'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:30 GMT'] + etag: [f019bd41-5ab7-41bf-a303-c0d646707610] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_phwNVEiNpwbuTGF-8CM54WPDQISrQV3m61FIWY_hnvwCTDYkFUojnivfsPCETf6yd7XDKe2Lw_WJm42riDcrJYj9wYfLIYhgkJReS9TtMGtYS-YGAW__W9yzHCG5G0eL9u5p5OmoR3Q8BeosknK0F-VAK0xDPJzCJgrkyOVYu4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076113","not_before":"1521072213","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIxMywibmJmIjoxNTIxMDcyMjEzLCJleHAiOjE1MjEwNzYxMTMsImFpbyI6IjQyUmdZUGcvd1QvaGRWUkE3eHp2ODJYZDV3cTdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhaRTBBQUEiLCJ2ZXIiOiIxLjAifQ.dCAO7qVz_YEG2hftMQq7MYVTj2Zcxi3KfKlOYoXuZMS7_s2VYX2bO66OzGdq0KHL2t7apVHRf_dwDGK0aTU0hTTx-TT5Hv_1XbkxmlCuzIJQvWCv3KWcyCqxD3hCM76h8rdIM_m-Fr_tp7vjXRw6msC_1plijwmd4lrtwNsVphE7top_Q0BC5SV1gf4kwUo4NCj_8tuOfl6WMS1rP7go6_Bmp7l3pfbjiPeuIZclQl5qR2HFEhWoqO4Y_CpsyDh-IzNsibVaMoieI1hZJTSkEuAElgrzGlUKL_LoSlATGXUNGttyaQguh9MGaZolSOq6PMA_ZSzdJW5HJJ2L3EN6GQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:33 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:08:35 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYIQSmfMvNZ-fA4C9cj0u44XQnnqa57ubyaG5XsEZRYhy2YZ8ZRYtryJYQ6d4_KCnVdbnaqtx6VfrgERwFIUih4RX3HmoFW4gG3y68VCkQwQY6FiQ-gatHL9pkiG2ianqqq_NMNkhf9i5Jml5v4W7Q_N9w5Ld1yG0Q4XJcVtf_NsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076118","not_before":"1521072218","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIxOCwibmJmIjoxNTIxMDcyMjE4LCJleHAiOjE1MjEwNzYxMTgsImFpbyI6IjQyUmdZT0NLRUxBT0RNazBMTFV3eVBEMEs5NE9BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklpQXNBQUEiLCJ2ZXIiOiIxLjAifQ.XP2gobgTRprD6D7jwGmHWIyP6fmHOw4yucF1JJZUJuCWHmsFdYhl7ZX0u1Uj4JtvwDGM1tXv7UDpbmE6CqqC8Z9KGrrOK_5FHDDXzVd4w_XjpwfxtOrG6G8bSVaP5zD1LWXyrGXxZ0SEW_4uFwVHynKCL5kbh113tfq6ulwLUFA15jPQf29qG6dcIIII949ALxNU_x-E7pG0Azv7_HGTkLVNcvBli3CbhTPYnq5QoyzhE7ik2uw5Cp3lAVwUxY-0nmKtpHfm6CLK7ibihVh76cLkBHZstkmNuWCmicE6clcJMZAN-J7-vTnSF44bcuMm2BiFNJhwKWAylKpLrbR8FQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:38 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + headers: + cache-control: [private] + content-length: ['420'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:40 GMT'] + etag: [93ee860d-495b-46ac-80ac-20b6aef63e10] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:40 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzCZRlVnQnE2W5U-WX8JON7VuSi_RW-5RHQ9q-MK2bZ438M-CiIzTyQBmbjvZhlX6-DnNeyPemUcD5lRtp2zqv9_9vDztM-Cm2C-oBjGa5oboj6nuRPHL58PxEloqo59UdcvDIGBX-zejMOl9hQs4cF_qfYWAG7ZnuVFLcc8PxdjcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076123","not_before":"1521072223","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIyMywibmJmIjoxNTIxMDcyMjIzLCJleHAiOjE1MjEwNzYxMjMsImFpbyI6IjQyUmdZUEQyL2FmN08zcmFZNzJ5VlFtYlBjOEhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFgyazhBQUEiLCJ2ZXIiOiIxLjAifQ.ZFCYpd6mQX86HzuvNdHWFKfngAgio2V9PhJ4XRxTDIMHN1vbVhOc5coU-dFVF-NDMXPdMjGhWWt09nUU_dglyWf84oopdzlr0o7y-LeKnmXSq43t3sK-qhEmCTXSZC9-ddOWXKB8cjTZHhK-bpSL9lDkj_i2w1O0fUHXP1qzeJKjoLVDebGQjXKqXr0WrgCBglfkDEI7KIZKhuXZDotWcEBeyIwPZzFqZUpeOIHk5iHtJ4QCjSHR1YcC_vfswPCJ4oyZnDTe3EaY02KY8e_hOC3si08DRhUsrsHTUWe5Q1m-ITJiR1w8-KghLhCjkCJUzgs8Qbup_XPspHlbFLvTeg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:08:45 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:46 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzlMK7Kmun2ShMq_mvpdOLohaPHrdPVcacWZSgpnba_PdxJ-H5KMbLC_4vaPIenXfhgtuMNipfUE7VGtptokLz-HwwlgsD1QTSDT1TYnXXO827krN-ClmL2PQbVmyz0SCAdCdhQwwYNKgnQ19lUKw-hEOMefJRj-dYfmFwRMdGe0cgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076129","not_before":"1521072229","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIyOSwibmJmIjoxNTIxMDcyMjI5LCJleHAiOjE1MjEwNzYxMjksImFpbyI6IjQyUmdZSmpLNGRDdzJxNW1pYXRxL2I4WFphVkxBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhORkVBQUEiLCJ2ZXIiOiIxLjAifQ.W1ZYz5_xaaJjrDyNiSnYhOS8cz4U-sWFLj9uQtp-dSF7ejwBbAl1qRQfitRBzK0UDQ6N01pnEi4BEt1GzKbX-fp62jYDgJp1B2FYA9OPexPsRhvuF2gN5VaSVoZ63CGKv1OGc9oFi1LL-VCOYFotcYQXANaN5N4wBWDwNQTqIhhmxnxcgvd5H3ScboRNaj4B2ULNH7bpM65gDHhXs4b3GLg4xptnYC-lFjIkx8GOF2qgHydWzY308PTdK6aKhwxm1a-hgNErwidWJB2ssba6cZqvKCcCN0PVDQFT5ZLXYiYvdB_fds-BUNx59nGuk-VYgSMy1X4YAtYy8ztOmSlwaQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:49 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8f0ef234-7126-4409-bcef-6c3658449388","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['412'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:50 GMT'] + etag: [8f0ef234-7126-4409-bcef-6c3658449388] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:51 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-kZ1NpVynMWWEh5t22QTUuNtfYTYBhwXO_hy8jL4WpvOWI1TeFEL7IQZ-yyAz0YHRYKQTrxwdc9442aOGATzjdDQUoR9SackwF_q6p8gkGzByBxJEOgF-JCHFEM-_auMigL-cChAdoIZsoeIj3VdUNqboalK6cCvw0MV5uXRA4YgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076135","not_before":"1521072235","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIzNSwibmJmIjoxNTIxMDcyMjM1LCJleHAiOjE1MjEwNzYxMzUsImFpbyI6IjQyUmdZUGgvUHk4OFhlVGVtUVBOYi9ybTM5KzNFZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklZZzhBQUEiLCJ2ZXIiOiIxLjAifQ.JYHni1o2jR4ZyI54vvXSPYO5EVAJyK5DL2YZdCwhnUa6niXrl6JH2Z3AauYoC5jL5r_c4_xEeIgxV-Aq9yplrSnmCOVR8avG-hJqMoc9HNPaZ42GVhvT33djokE_XYrqo27md5WNiIGME1FJQX6wh53h5RK84iEIy_GBCijZjJwgLjKy9-_hydWxkLCq6EitcaWnD0ikitzo19hU_RlY5dcm9ZlE1T9duGmNuOvSeV0EoXCipmRZgOwSqaUbtMKI7GKM9vUCBwO5n84JphHKgpSiVtDpDyYktmA2JXRU96dzeikFjevC6uFudBb8ZF-aPd6oyUaIVRcdUkyXDeFMsQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:54 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8f0ef234-7126-4409-bcef-6c3658449388","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['412'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:56 GMT'] + etag: [8f0ef234-7126-4409-bcef-6c3658449388] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:56 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzmz2t25VJ-aP9Rwp3XSHLz1VrdUAzOwygfC-aMD6dsO13XDJAYdefaXAqsOTX9WWapxAMpx0uUC8a7XMAor1VAfwe_apPhoq8OP9nq3mr8ffDsWBeNIeOmdsM7rIYGadVtJlSxOWYIUL6N2WSMOFQwX1ZsSWwOI3JWA06edon870gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076139","not_before":"1521072239","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIzOSwibmJmIjoxNTIxMDcyMjM5LCJleHAiOjE1MjEwNzYxMzksImFpbyI6IjQyUmdZQ2l6MXZhNXZPbnhOdDMxaGJPVFhocjhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpyVk1BQUEiLCJ2ZXIiOiIxLjAifQ.nrZ9prQGonVH0chOrwgPHe0S2mWIa8S9Z7ANlI6rD61C5Xy4x_rLBxrKTU63jUaHCvWQnTE1emxd2oZDLA8-ZVbyNo9Xp9OcykFcMuGYX_VTaeQhwpVgf2dc88rNXyetCKsHtslWHAAoUNA5rVUI5z-xhb8cDLw3I93B2oACHxYNaozwMG0xS4ardn8wjfkcfXj09vIARQHJUgS114znwtOipbTHzW_6Xa4qhNjDaagUa442UKrtOigN09tJ7Tm_O0wtNjdde7UmqkL7YdIWbrfLzZOaV5BAA2QSq20a-Nl0Zd1qswPCYY88ALPRO1r_9OhIQaZzTCMa6jFFdn00EA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:08:59 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:09:01 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:02 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-QcQIwsbeBvRd8aqY-EaGpIfpaip5slLyQpVr5V_meYOtt1TqmiMcbVENNk7bk4eklv6BTNS5Ly-N6aP8nJLVn3f_shqjaTBJ3iQHuoYELEaDRnQQAuyiqLCR4budMwvAu2qy5g8liwlrN8nR02NZm9hzGKnHqpQFsMZC0YY41ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076145","not_before":"1521072245","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI0NSwibmJmIjoxNTIxMDcyMjQ1LCJleHAiOjE1MjEwNzYxNDUsImFpbyI6IjQyUmdZRmhyblg2aHcveUY4NHJ6NGhkYytUZUxBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpYbFFBQUEiLCJ2ZXIiOiIxLjAifQ.e_xyrA9K3po9VUqcsdiNx7Qnpa9QiKFyZ4Oic3FG3w0J1y7xbZdv8BR_SOK8YAzbaeXdeK9yOJcLVDPBloUF9vCGih8rx5xzX0Hee4-E_YhXo72swWKHEHP9iWDOD1L5hGMY4u_IMzHZQqVJC5zF7KQocDvabvl-wqScdN9d_qS9oGFeupDXrDMXNJ2RxkKkIpYOWmHva3UkPS9bioET1FEt-eT4Y6aX2bt9XQFYp1OTWl56eySeGC20aUgfVMQ3VZEzmBJYHtLNPHSPbYy8f-tZbX-Ku3myTTY_7f3etCCTQJcCcLVCx73S7yCg7SMEwHRX1tXY69j1TxVTC-ZIKA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:04 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['226'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:06 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:08 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzi9lzZqWqu0wp-pRAed0r0CGneeU-gs-m0iD7lIOOnxgn4MqDvmN1l3puI1_XMLS-3YPZ4lif0vRb17EbnQ4nL-I2lkuNsy7dekZMxIBluvCIlYPJUykd-X7aKZkp-avDmQljkYhoOmqJu_V4cEKQFESoViqcEJQVm33LIj7FSCQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076150","not_before":"1521072250","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI1MCwibmJmIjoxNTIxMDcyMjUwLCJleHAiOjE1MjEwNzYxNTAsImFpbyI6IjQyUmdZR2hLYlJjcy9sWlRPeWR5d3RscmhtR2xBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUkl0Qk1BQUEiLCJ2ZXIiOiIxLjAifQ.QwNOduhRX4m6pQrhIDnDLGBS5miohZBSYNVX091KlmXDEYwmUM0uNf1hsUFNXjSwUNlWtrd_plyqNHqgDyFqBK9FZ5wcHb8ZY55tawCJYxgdG206zjCXm5XmJ7r0Ym-y8UfPFXOyT-Vhzwm4IwLB9CQnrgPynT1G35lwMmJhxCGG4ycDxkObtMkTldVLjz48dqDLCEAM3oguzwnzu52K2wwJbTG0gXaPJZqchFAnNSBFtgWPM-61LAPbLLKKhiiSvB2mkase-wvk2lGF4CYvH7pFs_v2k8s5TgfGLma4ggGqGM3pri_ylMI0-OUETstGEYCEkZYTrHUg0l5nK6KR3Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:10 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + date: ['Thu, 15 Mar 2018 00:09:12 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 204, message: No Content} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:13 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzL2shezWc7ZOI01IUOdZB1IGzuA90kP-SldXXqomDzcZL72p77jy2GoMz_goDmAp5MhX5cc5GL3t6NtAyTTBKw1Usq1-fOCyyG2RRVZDQWSzX4i276IkFLlxN1neOoQO0L5Y2_RcjIa7pxzRAiEmAjvqv2mJ_TevUcy8jCrAR6fwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076155","not_before":"1521072255","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI1NSwibmJmIjoxNTIxMDcyMjU1LCJleHAiOjE1MjEwNzYxNTUsImFpbyI6IjQyUmdZSmdudkU0MjVIOW03em5GWS9yWit4S25Bd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklseFVBQUEiLCJ2ZXIiOiIxLjAifQ.P0xJ3wetx6WflJ6ol16OPxqXsC7g9UW0fJnREeTx3A6kj1ZX8kRY0bOodCDUu81TWZwZV4mWk1sar-s_yQDrCV6UGEs34tGDXcdWQz21-3Ra-dwoNc4L_nAM-kORoT7gRvpa0je45zvSL8OqvTRWQRGckXvDZJGDo1LOpNUOucmAhsh0hJafAoFYauWoH5xq0rDUiNUp5R7J72xWrcacHSiXVW0NYS45eWXzZMgFx_rZz-ZJi0V5jyTp4kFvLK5DqrnrbkXKQ-osw8fpixWdLDJmuFzwuDB0ni5yLCS5MXHNN2HdRp0s4GtWeGBrRli-3q-JIJwz__9TcQeUpVtB6w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:17 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['226'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:18 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzB0xwtGZv5gXqNXhDRf5hK-KxXt3JRF_DtcDhk8lStyIlsTssuF5cZjRMg6-y4jrxeamZxP3Ubl00-X3BK1jeRKyEEUQOloy-u1kOipC48r5nknJU0m1yL9cBEDzbpUGGYAjflV8CJms1O8UQBBEU2eNoGlkcmCFacebL-4qaP44gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076163","not_before":"1521072263","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI2MywibmJmIjoxNTIxMDcyMjYzLCJleHAiOjE1MjEwNzYxNjMsImFpbyI6IjQyUmdZSWhMZmRteGIydDBoK1hXcHNQTm9VZVBBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklDaGdBQUEiLCJ2ZXIiOiIxLjAifQ.Fthl8zwh0hLa0vy__MBGTEdq0gFIadOn1WUqIGHyKdlWrNmZ44CERPw2ePYrN9Y6wYrSZgIuu19m3-yXFWRdCQoBoBMVtpFc8HDWK6cdUjGz-q1Cinup1s9r01FoAtiwG3Bc6laOxDOoR7Ix0tPB-YxRvG5Yn-N0tWQDz1fhDClJhQcvlmotzNIY9AD5axtftr63SWgQ-jZzeOqh17IDh2eqTA7DzwQS8CAm3CblbxCKn3g6UGJK43mGC92lp3L97wjNbXb5kpYLeho_BbAVVD0GKBHx9levf8qYPl5LjXpnfjLSr9U_gKbi_WUS5k20aKFO8IBrpOpUGq9BNk69PQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:23 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566693685575580ddba2ca2?api-version=2017-09-01'] + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:09:28 GMT'] + location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566693685575580ddba2ca2?api-version=2017-09-01'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHznaNDlwYFuQxc7kUI7p3dLcxJe8_TEwJ7hQPMX3S8a8eZmPyVCcidUGK8a5VRZaXGIwuuyc97VlktCl9vtQ3_99iZ-LH1h7WHnEx41YEPos-CSLHWiodphnJMOK10DqqcmwrJyObauTDsV7BwjARBxdL4sTb6TIH_12PiyuVJ-Y8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076176","not_before":"1521072276","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI3NiwibmJmIjoxNTIxMDcyMjc2LCJleHAiOjE1MjEwNzYxNzYsImFpbyI6IjQyUmdZTWhwa1dLN3ZGWXQrLzZ1ZGNLTm44VldBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklOeHdBQUEiLCJ2ZXIiOiIxLjAifQ.CqdGNsZwodhEEv3qmCLfhCsbXxDIKvA0mrD4nfPTDlZXuQoWFxTUwOlf5iGf2dzLf09b4r0iIK3v5pJTorl4-65-GtBpuWNKGs7-5a5cOvwQDo6Kh4Z_Ig4LlgicxWweHQtsxxi9eKM7wT0FWwDq0Ge3jQiXPMZisQknTVgSIoV9YtTVK-JO3O9MUdhKLbvZVzSx0Zc3rMocBRo2mWVBNLz10tWOpWkvDRQhXcOJn4w-X2y_OmzS3E6pdhfiHZEs3VP10tI4EQ9OjlmW4PbFQJk_KTCCxov40D2ueubS_MIvgMaq7yNQwWsRVkJFez3D1cTV-Bpia7CQnFVi1OFF2g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:36 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566693685575580ddba2ca2?api-version=2017-09-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [private] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:37 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzyQ_GUG0MsmfCu-6eNhjOSZUfL3STbUd0hVRZhi29_IDRdiDE1OUfzd7USF5BqAV8TI-Y_mbuX1DrpGJrJDUIBsYPqn8FhGAb3WgvqvwdCsYGcdUQrEZ_ZsKH3EVf3ZQD5AoOVG6jx-0DrHCDGxoQdL7MPpB9SA9F1H252hNWrwogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076181","not_before":"1521072281","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI4MSwibmJmIjoxNTIxMDcyMjgxLCJleHAiOjE1MjEwNzYxODEsImFpbyI6IjQyUmdZRERYRDYxWUxWYnFaWjR1eFhwMVcwQWJBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhJRmdBQUEiLCJ2ZXIiOiIxLjAifQ.ZwZfBb6-J-C7gItL5_UAOdMMej4Ch8G0T2iv2SyxzDnSiUdcb7hs5RySxEyuc8W74bGaG-j5BSpb0F0jlmADsDXpJTSJpxrqfIm8eIzg2F4RV0XdaTaYqZqJvY4tDeMDLUBrEeJURD_byDnD2rsLTAXv8sK865Iv7p-8AcCPfOYdD3SGbKfByCFKKcpmkvvaBXkEPenVEByCSmn3a387qYfpQilSP7AwTSqHDHfuqqpnqoD_3-f85NMNtv7-D6AY8zph-T9oFgeBrWSxCSvaBXTypbl3ZS6zRtic-LJpivbx77_Koz03UGFDQLTQ4f8k5xduOZmMTWnGxEvpfQXHhg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:41 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:09:42 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TWkFNTFFGTU1MTUlURDdaR1VaSEU3WFJLUlIySFFaNXwyNTRCQkM3MkNGMTA4NzgxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml new file mode 100644 index 00000000000..e8c7b8e8313 --- /dev/null +++ b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml @@ -0,0 +1,9232 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:47 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzk2TpGcsgfA3F0za_vN1b9mPwezEjt_tERoCYx0RklcUfdm9sRfyOoH_SbNdma-K3PAttEmtC1MHhFcbAFp78fGgR2udVeHPwAQ_o_fYecv-wiHi625fAcbYNrzIBh8wpt3sG5_e--6BWh12xC4hQqht7rc_rVoGmeDbMjPHVzoMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076195","not_before":"1521072295","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI5NSwibmJmIjoxNTIxMDcyMjk1LCJleHAiOjE1MjEwNzYxOTUsImFpbyI6IjQyUmdZT0NLRUxBT0RNazBMTFV3eVBEMEs5NE9BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjBnRzhMTzV0ODAyUklMZGVUd0VBQUEiLCJ2ZXIiOiIxLjAifQ.j5uAPQhAU9MSC8QH2-NcmtajvTr0leZdFMm4U1u-MvdZz9Y_6oHWROzSmiblbwPCqN665uGMThhbzmFHb8WsUd7VQbnibwBDHjDEIGHyavYH-q_5d9dE9BQxpQSd7X12Wzt60gPt4OpoJzQflpnyBCAcpafdGUf3oHoKbrXS7SeBvf6VMoNdmsprNWol6rjVENGMcqGW_Jzs5yt9_icsJ-W4kznk3E1Dm-V8H94C6Vh3obBui6QDEEkKdpXlV4aWoCQ6rhK0Pc5dAfMJt-EI4ogrxrG0MsZ6q7YHEqYcqpPVm25pkHceF-ZltOmn6CIj_mVmVuoKpdAUpiRfB5sndw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:54 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "tags": {"use": "az-test"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group create] + Connection: [keep-alive] + Content-Length: ['50'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['328'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:09:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzsjKNvU8E5VDj__7ywQX7eSTq6ZWMifQzCA8hdt2GM8ac5Dv85NdXBwEZHEYTO9MOePK-n1UhUNkyV634NK1M1aCSmXnInK9kEsA3gpNhKQ3rrfWWI1elFEJBvFczZL46LtCKeq6QlmVAhaA8Hu5RTOPfKX7wjvbhEAj7ZvEObIsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076208","not_before":"1521072308","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjMwOCwibmJmIjoxNTIxMDcyMzA4LCJleHAiOjE1MjEwNzYyMDgsImFpbyI6IjQyUmdZREFJUzF0WWU3YlhsdU9sNUV2YmJUWVBBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Iks4Z2VVbHFtd0VxQ0RfdW5leHNBQUEiLCJ2ZXIiOiIxLjAifQ.asET4qYXJe-F2y6Ny7CQ_7VcJuQhE8fkfuzwdIDGrp0G7IShnhsoAUszO6gf_4zu1AVtJIe8SjAbD7tUxlIK3D_wczNydzm7CF8fWxY4CJoGdL7aMr3So9wr8TYynkgkDd9VCN1XVFBf8Lf-Tsn_7bW-paf_NO6-d8vnjp5QokUpzAFAYEW9Yguwlex_b71qC_Bjx1kc-KEGtlVWff39dfse0wdqbOx2bt_ICtfKn_RjGajpx3M-No-mf0Mo5IF2b32hsYeqHvZgSxyDhQFSgoJjEeQtUY8HQnvMT_51UliLTKD8auEvnPjW52BebnrvRn23ZKJPs92bDyrLcbO2rw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:07 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['328'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:10 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzivwypTne__QQ-q36BqJdkU5OL3FYWLICgxCi3GjuK0kexrdAttfDNp7j5PUqa0ELulJXubclTesdK7hNlO3Xzfgr4nW77rk3jKUTox6WXrm-oRUYTEPVaS1sk1BXbfuKce_xUMTEZsPdx-xj2uJIUkz4tA87X87S_v7lCRThFpMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076218","not_before":"1521072318","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjMxOCwibmJmIjoxNTIxMDcyMzE4LCJleHAiOjE1MjEwNzYyMTgsImFpbyI6IjQyUmdZTEErcUtUSEVuM0w4cXo2cHNzRkxwOWlBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGFPQmNBQUEiLCJ2ZXIiOiIxLjAifQ.XDeZVbDm-mj5U7c9jNgFW44dRgDX9aSZ4jdYf1SesbTaJLIp2d089ziPnGufW3SFL2WKzDh-y-1H5dCoEHb0EnZTVvlcoun5A8cQowyvSd8X8YZ26vP16lvENNxmyfOKD2UsnX6WJ9pw_ZXM2T9vdycXhammP5DP0tG_5UWOjXHDJpBHxyZp9AfvdwXIm7WqF0tZ4hybIjnhE3XsnihQ5eUNhnvqH211jrW5NgWHebOH6V9ocZGw-AR4IE0b06iFd9kLoYUXpW8Nmb2AJqoHu2lMNBZF214rnlT04BiRrfk4GuZBPtVqJ6RddfIH_H0accjcQftkg0Sl2kPEXNxbng"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:18 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Length: ['123'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 + response: + body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ + ,\r\n \"etag\": \"W/\\\"1ba5f175-4416-4ba1-8a3c-a1afc3300c7e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"12e330ee-e63a-4642-afc0-e07ec1b397c7\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}"} + headers: + azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/12c0594c-57d0-4f65-9369-bbb61bc730af?api-version=2017-11-01'] + cache-control: [no-cache] + content-length: ['770'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMykv0nzAzWYjDqw2PqsT6sUAM4GMSYpHkMAjBDuFU5rAhMERDRB8TDxcyGypsSv0JmAK5UW0kkAXpONqdRL228zUiuoPnImbgH_Iwgkm2a_iqeTlzvlIqppeR9McodFJWiMPVLKD_cE33Ekle8Ql7ngoyM0EtvcWvKrESUv9z0IgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076233","not_before":"1521072333","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjMzMywibmJmIjoxNTIxMDcyMzMzLCJleHAiOjE1MjEwNzYyMzMsImFpbyI6IjQyUmdZRmdySFMvOTUxM3YrV2RQYnlyTFhKb3RDd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGF6UmdBQUEiLCJ2ZXIiOiIxLjAifQ.GAftsjfLtb9uE-AjNxMh_nBZdPaN5Uf6NoYecBTRopdnyGkjKh_PZBbBiQfKjzPyjcB56DtGlFS5ZpxDylewwg-kUW-cybfgcCoRL3DaUUO69uOS1mZkg0BdYxuuR9QX-9gkWMbY8wu6QURz9JoHNL10Ffb_BJN40nK6Fwzr9X7qu9saxqBBPPWYwJbJ1f6MIX3Rp9pv_qinLmRhB_4AMZWQYIu5hLGpm5Sqg01qJzGxqT4Wmac6pje6R5PnqOcTznUTXiSQ55jFTHprO3fDsngRp1wFDYOCEIueeN22iOkG-ofEm8BHUVxn4aCOOtdEQwXQJOQ3j8GEt9ZyTOQ36A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:32 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/12c0594c-57d0-4f65-9369-bbb61bc730af?api-version=2017-11-01 + response: + body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:34 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzfm6TMk17NcmSI4eQU1EOLxxBMS0X0gEg0pJgI2Y3fy-3e-pr-fKdkYI0tn1qwtpKj2fgttuzcQQiDWgShDY5RzSFppEBDlOuORv25w9_q5m7q3ONGIxnaR32EtrnLE2aQvLTCrLoFTVfF0jyecWxUm6VPr-uLbHX_9inrwpdPosgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076242","not_before":"1521072342","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM0MiwibmJmIjoxNTIxMDcyMzQyLCJleHAiOjE1MjEwNzYyNDIsImFpbyI6IjQyUmdZUGplZUs5dFNVRHloT3FsNS9UU3YyOElBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNNZWZPOHBTRFVtQk1fOFNfUndBQUEiLCJ2ZXIiOiIxLjAifQ.EAHHZfEGJeyxdYMZQ40FYZUu-5S3JaoZMtH8DZY5WRaW2PAqZOuVy60bHxmZG1H3ylzaawzLUU8ggB4LOxW1xmEiFE47CA0_xplxvwIZDmWFmr21R_4nmr_T_pyw8dk2NFHzqpG4bhdsrQRTMYglsnjHorws-yYQcp7ugEbmnxJbjZdsiRg0xey1bzdvKm0-KFrJUHPCMlAJG9kzmkuokDjJdCtky-Clb_uqTrnWY8P9UeeCkHv4RP4Ls9qOpzSDpMKONJD96lMHjTzGElLSOyV6YJQ9ubZiExHdzVGLpfVQcv4J4_7USiRIkaQFd4ewHzDj97e3vTcfliQYMIni9g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:42 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 + response: + body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ + ,\r\n \"etag\": \"W/\\\"a7325933-4a54-4b2a-be85-9de2afd63e81\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"12e330ee-e63a-4642-afc0-e07ec1b397c7\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['771'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:44 GMT'] + etag: [W/"a7325933-4a54-4b2a-be85-9de2afd63e81"] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzVaJcyrWSpy_z23P7Ba0dfaDZGA1j2-_v1CivSc5l-NGeogWeQczD20LzsUFjUzlliTzyV2U0MoW7fvcanmvNkLK5GEjH6H2h6S9ZJD09YH5On46I4KLmo71EYfusNDW9tDVoGdXSZf91_PYaM3o36sZ_xUfu-0fVOaJotNJNSsEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076250","not_before":"1521072350","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM1MCwibmJmIjoxNTIxMDcyMzUwLCJleHAiOjE1MjEwNzYyNTAsImFpbyI6IjQyUmdZSGdmNFhwWTZmRHh2Sm5wZTZZL3VMRzVGUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNNZWZPOHBTRFVtQk1fOFNLQjRBQUEiLCJ2ZXIiOiIxLjAifQ.VsdB_-rCSRd4sfpAK9UQqOVYOU0EFJu9mogpr4VpzYsj_Is3tkIOpMoM3ioW6XdZmLq0XwMfO1V9Ts7tjyvE4vORylbOApjYyHJW7jPMEwSl1dnU7GcTqZpWcRh8m83-cvUe6TmOdca2O70KFcMiRQhUDy7Le4qcgZZqSDfXpDH6l-r0gHEPHA9xtrAC7MaJAtqXighCkL0Du6VA7QaGr13uIiOa-qxKWCHkuuKmqkN0ia3u4DsG_NjGyCQQIJa-CKj6qG3uIdXhCRY9U7Na3KVewTUifpQxkj61e-AS-LbtYQFkJjhHGTlQSkrB6RVnIeT1Oohu3hJheD0Pq26I9g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:50 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} + headers: + cache-control: [no-cache] + content-length: ['328'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:51 GMT'] + expires: ['-1'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzgGWOspiNEqMj0_htxRwhPbLS0a7ZAsxE-c9X9QuazRDVveaU4oJsl5dmYoI_Qo7s6BwfPE9vWPBTcfwT3PVmG8FIt3bTlSTM6cfmgeEimSy0K0hVjzBTnKj12M7FdIlng6HvUhuSDkHExjH4FmV_y1GFsKmWS7LErvUFFdkYZ2YgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076258","not_before":"1521072358","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM1OCwibmJmIjoxNTIxMDcyMzU4LCJleHAiOjE1MjEwNzYyNTgsImFpbyI6IjQyUmdZSGdmNFhwWTZmRHh2Sm5wZTZZL3VMRzVGUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3Vmp5d2dBQUEiLCJ2ZXIiOiIxLjAifQ.tXV0T72yv7LBbxF_nhyNXTucZBAb2wEPNdiaCG3wjgNP_B3pc2Dqc1ViXsdxoTQQXu3OX_CE1EOpc7yBkLeLBEWbnfXeqsj5WbzF_7TDpBsVmb_96BK_5ojJ8UBw2TCWlek-sWxw1KgVe6-uGU5oIRWnFVWSYrCkunnhhtOKLAOBt1U-yv4Va24vGl8nj0nSuTb5MbRVNxUHbk4Wat2VCjRQSK7QUuviIlRlYIduFG6LfSXPmmgQlMrojdfjJ4DseEfLeAquZjV1o8m-ot67qvkIj1WZR2a_3ohbYWUTxEmMSbBSANy6nggTIdzz5AX2DhlTOL7zCcGJ7zs20gr8xA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:58 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Length: ['123'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 + response: + body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ + ,\r\n \"etag\": \"W/\\\"1dc88bdc-f181-4f63-b5b9-e4b3e892d65a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"f86d12d8-e6b2-43b6-8568-dbcc71c51047\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}"} + headers: + azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/89f03c31-6f13-4100-ada4-e0c6aa13cbee?api-version=2017-11-01'] + cache-control: [no-cache] + content-length: ['770'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:10:59 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzU8ZDUtWeSn726W2_eR4o6mAuZ9X4DlQfkxDpFEv1I4ZSVmkUFJTtyrYXQE9Gwx4KjSw4E06GRqRpXfajKecIE084KxQtbDlOAlhszzS_jHoJnW-hKfd_2UsAGjAbquQEOYEIFszFxNFJdBzGexm_z1F0BGfogGSBLt-gn-3HpPYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076272","not_before":"1521072372","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM3MiwibmJmIjoxNTIxMDcyMzcyLCJleHAiOjE1MjEwNzYyNzIsImFpbyI6IjQyUmdZSmpLNGRDdzJxNW1pYXRxL2I4WFphVkxBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjBnRzhMTzV0ODAyUklMZGVWd2tBQUEiLCJ2ZXIiOiIxLjAifQ.R8JTBWAzOrSUOkR6Me2jY5nkGpIC34-Q4Qrqu31RkT0SgPxIHUYnujzbcT_no9quQnvwVSv3Hli3FB0IyQSXm4mmJsTgh4WejeFCH0M2pnyK0quiZzY-6boNi0wgtndqpveFsknGYWhwPm6oEZgk4ZZhxRXtaa2qP2qEkL37M7l5EJwudbei-TVGStKX0sur5fqr3GO8Tuk6uEhWT0ZA2Mh_aXTRM9ocPcjQpu1B0pXR4sdkbkBLOlK31LzBlXYF_LJslgP6OVEgfQOX273DVij2T57T84kk791HnaqXZip8ZLIpgOpoYRH2S-RTa-nWI97rlqtffTrEuhOZk9DE3Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:12 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/89f03c31-6f13-4100-ada4-e0c6aa13cbee?api-version=2017-11-01 + response: + body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['29'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:14 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:15 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzfStI0RkQBjj67P0LTikOPrmW38eQkFjcCfJYLmFIviANXn0mbdDsV02GYaIt0APoZlCX7Tls4ainDuFNUJVOdqp_6ClTGFYnR-Nb6zKBKzElvqR-rtjRY3QSxZD7vo9Jnno59rP6zPEOUx6mRy0VdlLxZIv1srfASj7F8YPFVc8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076279","not_before":"1521072379","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM3OSwibmJmIjoxNTIxMDcyMzc5LCJleHAiOjE1MjEwNzYyNzksImFpbyI6IjQyUmdZRENzbUxFNVlQT0xyU25ucGlmcTMwMytEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGF2aDRBQUEiLCJ2ZXIiOiIxLjAifQ.mtdqiIkqXwbfFMvIMMynBGd_llonRHRAQuP-gFLNMp4Bl3z8ALvC7zfCcoVoS0ZIz8sWwu8ksCj4TrC0PbQbDRKvw0Db14kwZZTT9Bk_oWSZkyQy-qCzkzQ9qIETujICAhFPtWnPr747aPlJmIs6LBQu7opqBiJOkGgB-MV0CX1ctW63VRZV_k8kfXTkQxEFcsQQgTEcs5edYyNZDGfsmba3j32gQCh2f37_sPojCdY974sW-tsXdjJs_z51oZNwQLe9eX7kc0vX3PB650CSdich7AnseAnOWD0egPchOqGAvhDs2UtuhC4alcitOdoohTMagebUnasB1gX3nFVNTg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:19 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network vnet create] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 + response: + body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ + ,\r\n \"etag\": \"W/\\\"31095c7a-844a-4288-9317-da41d4cbc2c9\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f86d12d8-e6b2-43b6-8568-dbcc71c51047\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}"} + headers: + cache-control: [no-cache] + content-length: ['771'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:21 GMT'] + etag: [W/"31095c7a-844a-4288-9317-da41d4cbc2c9"] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:22 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzv9wBbyEp0Jt7-M2N9XEKJYHn4zte7fR-9v7RS2JbHQzZOYUSJF_8I7ha1Xz1F4wwbVSfiiC8oyUqZOMr6ckiNDxRn4GvHsWlKu0HjMrN6HP1phjSZeNSUt_12ijvc6ay8bXT0ZdsEWe3zjpipelBBmwL_gpFOn0Sd_e9MAWPZrcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076287","not_before":"1521072387","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM4NywibmJmIjoxNTIxMDcyMzg3LCJleHAiOjE1MjEwNzYyODcsImFpbyI6IjQyUmdZT0M1c0diZG45UWZlaGQyU3gxOXY2Q2FGd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGE3QjhBQUEiLCJ2ZXIiOiIxLjAifQ.kndIUEl8ZbWP6ZBbNJTuitFFDVI1N9oY2vMwD_vay7Su_84U-BS2EF173AaXF0fWG90_3gcAgyGfzQol9Nug--un92-MOxb-EyXw80_kOryLY8mnfE3m-jCqx4e6-jnAHKfKZbs52ZsMvt-mKPE02QkacvWqobNOZSG0n8lcUQBcILvBzHw1c_Mb4TtzzlpNOuJ3qti0VmkDYbe1MvfuwamM-33gSFRQME4Hwv1djUNbYl7WRoljmknoXj1CIkRsca0cK3xa1Nyuo1cfyis87K6V_5ESfUHKMOhGrOjOrIb1OJA3eSsx5qS2BPsyP8olmm6bSTwvOSUHYKvWxbcAGw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:26 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrandomgroup2\/providers\/Microsoft.Network\/dnszones\/armmove.test","name":"armmove.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5c2f-45e7b4ccd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg11366e27-2af5-4dd1-9637-aab4153031c32\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","name":"fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-7f28-2b68bc57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1a0a1f60-91f8-4868-867c-935e097256732\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","name":"fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-887b-1f77915bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1de4d643-137f-45cc-b880-c5f6b81456902\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","name":"fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9f40-e14be957d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1f97cd1e-c59b-480c-be67-063210865ac8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","name":"fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c54c-e6148c58d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg2964cd5a-0c75-43df-aadd-056bf241f6f52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","name":"fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-71ce-92aa7058d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg345e33d1-e3fc-45be-8ca3-95c3030a8827\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","name":"fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-334d-c2272e36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg350585d6-5c59-4a68-8d00-bf272faae66b2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","name":"fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-c017-1dab3959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg3a95092d-6084-4715-bed0-6de9880362a72\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","name":"fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-cbf4-7af40258d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg451cf024-71be-414a-98ef-e060dcf34e8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","name":"fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5411-11d957a3d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg45ee12ac-fa5b-4df8-af0d-57a81f489c0a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","name":"fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0e05-88375559d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4b050ceb-7c51-46a5-aa15-0b24caa54908\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","name":"fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-93d8-4904e6f0d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4d6686fd-d01c-4be4-acb0-e6af2040a475\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","name":"fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e435-d8106922d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg5d95213a-3b09-4f4a-9bd5-b8f7535b3fb8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","name":"fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f036-b07cf135d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg652edd88-186f-4432-9286-d7f048a0e7f82\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","name":"fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-6b14-26a0145ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg664c931e-caf0-4b67-89e6-9526a64c579f2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","name":"fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-76f9-46bd8158d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg66628ec0-570d-4126-889b-359bbda30731\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","name":"fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-de04-401d68abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg69881656-d2f7-49b7-a1b2-2979e8beadb12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","name":"fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-22f9-5c49ad57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg6bd7dc7f-beb0-417d-a718-0e9f7835b985\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","name":"fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d12e-6f828fc9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7276389c-6a59-4177-bccd-83ac96ea5ae3\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","name":"fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-926f-a5686621d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg74147c6a-238e-43ea-88cd-b43b20ab5713\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","name":"fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9255-78c02de9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c46cb75-0d01-4b20-ac1a-398c49b55c212\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","name":"fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-df38-b2af6978d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c89c527-fafb-436f-bb97-739f7ce3bcfc2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","name":"fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9c9a-ae874959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8ac60837-ce43-43e7-805c-e70cce6f83a12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","name":"fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-1b60-65e6db57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8f707ac9-7b19-46f7-b8da-acda6018f861\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","name":"fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-caab-1330706bd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg935c1881-65b2-4a29-ba07-656e85523d54\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","name":"fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1a33-1f2fbe33d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg9e1077b6-a187-4454-913a-dec03c9eaba52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","name":"fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-49f3-80c6a35bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverga4a64851-466d-402a-9ca9-6108cb6b4d8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","name":"fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f1f7-2744d148d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbe2e87b4-1d76-429a-860e-6d796e9e340b\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","name":"fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-00b1-2bdad9abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbf472a78-3508-4863-9a65-96795acfb1e22\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","name":"fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-ea7d-d0f9eaa7d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc47a312c-e8d6-4560-9bef-6797c0fa48c6\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","name":"fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cb07-5d5cac6bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc79de5d0-3a46-42e3-8daf-7dcee973d62a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","name":"fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4326-ddbd256bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf339632-52ce-43ca-ad38-e3fe3512aefb\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","name":"fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-803c-5c881e5ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf5472ae-78af-4e4e-8856-a4629c65571e2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","name":"fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f1d-e93c415bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergecb52982-7c98-4367-a6ed-e2830e11b79d2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","name":"fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9b25-eb214257d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergf019a24f-04b9-48c1-aa03-3d3e45383f30\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","name":"fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1349-3fc637c9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergff39196d-2180-4984-b5e8-12246e00de9a2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","name":"fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-d0e3-3596005ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_dns_zone1_importswmwoxwfjngvixnedygkjrr4ts527ofeswl7ac7oi3smnqmfuj3egni\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-79c5-56dab0b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/commontestgroup\/providers\/Microsoft.Network\/dnszones\/hitesh.test","name":"hitesh.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a431-27edb490d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk.com","name":"karthikbulk.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4d6-bbb8e5b5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":38003}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk2.com","name":"karthikbulk2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-aa47-222eeab5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":10001}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthiktest.com","name":"karthiktest.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-6e4e-118a22b5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3130-70c348c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/delegations.azuredns.internal.test","name":"delegations.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d77f-56f72428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":8}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com.1","name":"foo.com.1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a130-a1256405d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/supportedtypes.azuredns.internal.test","name":"supportedtypes.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8cc3-92c62428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":11}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f007-dd1e2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup1\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-145c-922b2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup2\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cc93-b7372528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup3\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b4bb-c2442528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup4\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eeb-48502528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup5\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1be2-835c2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup6\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8a62-18692528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup7\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3f6e-13752528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup8\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eda-b0802528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/albertozone.com","name":"albertozone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d006-58f3c480d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","name":"fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a58e-db8ebc9ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/ww.rules","name":"ww.rules","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0fc3-eeeaed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/wwa.rules","name":"wwa.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5b33-b520ee62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.ashx","name":"www.ashx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-15d8-d1d92a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.asmx","name":"www.asmx","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efd5-864f2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.aspq","name":"www.aspq","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-56d9-831f2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.axd","name":"www.axd","type":"Microsoft.Network\/dnszones","etag":"00000005-0000-0000-bcc5-f4142b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.cshtml","name":"www.cshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4b7c-a01b2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.rules","name":"www.rules","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-46df-cf84ed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.soap","name":"www.soap","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8118-96102b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.svc","name":"www.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-58fd-0ad32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtm","name":"www.vbhtm","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b34c-92cc2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtml","name":"www.vbhtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cf7-5cc32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.x","name":"www.x","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ff2d-55a12a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xamlx","name":"www.xamlx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-10cd-daaf2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xoml","name":"www.xoml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cbd9-aff82a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xshtml","name":"www.xshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e293-61182b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www2.rules","name":"www2.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6482-2ec84170d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www3.rules","name":"www3.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cd6-d6ca4270d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www4.rules","name":"www4.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f65a-85464370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www5.rules","name":"www5.rules","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-dcae-46d74370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www6.rules1","name":"www6.rules1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-effe-85c73a71d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg2296\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2982","name":"hydratest.dnszone.com2982","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8bf1-68346f44d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg6951\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com1418","name":"hydratest.dnszone.com1418","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4569-d7b1e86ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg7212\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2450","name":"hydratest.dnszone.com2450","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2f15-b18458bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg9513\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com4268","name":"hydratest.dnszone.com4268","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6224-f99658bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp.com","name":"jwesth-cloudapp.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b2a-01758cc2d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":7}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp1.com","name":"jwesth-cloudapp1.com","type":"Microsoft.Network\/dnszones","etag":"0000001c-0000-0000-f128-a14cdeded101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/169.181.185.in-addr.arpa","name":"169.181.185.in-addr.arpa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3734-04a70a66d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth-test1.com","name":"jwesth-test1.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0134-e43384bbd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth.com","name":"jwesth.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8ae-daeaea3ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130a\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a4a4-a9695b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130b\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f3c9-ac795b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130c\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e8ff-d2835b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130d\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4943-808f5b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130e\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cd92-64995b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt1.com","name":"karthikpvt1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c968-711cd333d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt2.com","name":"karthikpvt2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-63a7-a0a3f533d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/limitstestrg\/providers\/Microsoft.Network\/dnszones\/expect20.1.com","name":"expect20.1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-34c8-abfc977ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/mikebugbash\/providers\/Microsoft.Network\/dnszones\/mitest.com","name":"mitest.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4ec5-f6e23a36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1048\/providers\/Microsoft.Network\/dnszones\/onesdk8502.pstest.test","name":"onesdk8502.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-aded-5045bf2ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1060\/providers\/Microsoft.Network\/dnszones\/onesdk2287.pstest.test","name":"onesdk2287.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8f2b-2782ff52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1064\/providers\/Microsoft.Network\/dnszones\/onesdk4225.pstest.test","name":"onesdk4225.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cd3f-83d8711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1096\/providers\/Microsoft.Network\/dnszones\/onesdk6719.pstest.test","name":"onesdk6719.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1ead-eb9db81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['54995'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:29 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMJdZ3mlNxzCAVJ3ZHD8WpeRwnjsdM1mROIuC7Lpfv5W5R3ra2AOHLDOn4wFqDN2sYFLJBCZXx0oZqbSK9HEv7gakyRD9DyOcjq2zVCDDPLMTLLBm2ryG9ZgfIIlxu7wgwVPPx-JaRzpYCDPBvm_9RSWVROfaMJQNmjubmg9RV7AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076300","not_before":"1521072400","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQwMCwibmJmIjoxNTIxMDcyNDAwLCJleHAiOjE1MjEwNzYzMDAsImFpbyI6IjQyUmdZUGhsOTY3Qi8xVDVoenVWUGVwTkhTRXZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjBnRzhMTzV0ODAyUklMZGVmUXdBQUEiLCJ2ZXIiOiIxLjAifQ.XCSVmu19dkhc6o9touNqCnBRoTvBqzCi_FZ6kUPCFv8QTJXokQ_kvvIvqajgnLCYm4Yxzc1wD9QAbb_eQpcRa4tCWKDMQEi9gUIHWMybIhs303sA7IKFFZTZuNSxLwNv5gZMEr6l0u0RklE8bqJzVgHAvifkTJ4wB5k8yadPPgcQNN6F3TXnJRJ1wexipn8K9O7giN5mNYVR3IxvkPXs6bjNiBjHJFEoItrxsbr42vescZr9-ymt0N64lF2m7cFwuPCHXUGXr7YBusJpvyf9CZMyc87ZriuonHHIieEx5z3GmXkAy2k8_T3YwECZfMR-kaqvUWJy5aP5kMNsTS0EGQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:41 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1247\/providers\/Microsoft.Network\/dnszones\/onesdk2090.pstest.test","name":"onesdk2090.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4b0-2d82b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1281\/providers\/Microsoft.Network\/dnszones\/onesdk9190.pstest.test","name":"onesdk9190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cdb0-3151f51fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1282\/providers\/Microsoft.Network\/dnszones\/onesdk8326.pstest.test","name":"onesdk8326.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fc5a-0488fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk129\/providers\/Microsoft.Network\/dnszones\/onesdk989.pstest.test","name":"onesdk989.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3974-12df711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1293\/providers\/Microsoft.Network\/dnszones\/onesdk1432.pstest.test","name":"onesdk1432.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-db36-0bbe474ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1348\/providers\/Microsoft.Network\/dnszones\/onesdk5170.pstest.test","name":"onesdk5170.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39fc-657f611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1357\/providers\/Microsoft.Network\/dnszones\/onesdk1913.pstest.test","name":"onesdk1913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7cd3-4ba4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1363\/providers\/Microsoft.Network\/dnszones\/onesdk8210.pstest.test","name":"onesdk8210.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-221d-b4940a26d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1384\/providers\/Microsoft.Network\/dnszones\/onesdk6128.pstest.test","name":"onesdk6128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f69b-f78b6346d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1387\/providers\/Microsoft.Network\/dnszones\/onesdk3798.pstest.test","name":"onesdk3798.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-219f-67f28849d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1390\/providers\/Microsoft.Network\/dnszones\/onesdk7618.pstest.test","name":"onesdk7618.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b9b-604df12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1459\/providers\/Microsoft.Network\/dnszones\/onesdk4021.pstest.test","name":"onesdk4021.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-18f9-8b8ec853d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1481\/providers\/Microsoft.Network\/dnszones\/onesdk5772.pstest.test","name":"onesdk5772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4625-1c97721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1493\/providers\/Microsoft.Network\/dnszones\/onesdk1429.pstest.test","name":"onesdk1429.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b63d-0e021422d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1542\/providers\/Microsoft.Network\/dnszones\/onesdk7729.pstest.test","name":"onesdk7729.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f379-f423f81fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1562\/providers\/Microsoft.Network\/dnszones\/onesdk2146.pstest.test","name":"onesdk2146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7d8-7a690f39d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1575\/providers\/Microsoft.Network\/dnszones\/onesdk6718.pstest.test","name":"onesdk6718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfda-cfec711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1600\/providers\/Microsoft.Network\/dnszones\/onesdk8063.pstest.test","name":"onesdk8063.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a9f-cd19062ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1606\/providers\/Microsoft.Network\/dnszones\/onesdk7391.pstest.test","name":"onesdk7391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-63b9-87ae711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk162\/providers\/Microsoft.Network\/dnszones\/onesdk1843.pstest.test","name":"onesdk1843.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1675-ab60fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1621\/providers\/Microsoft.Network\/dnszones\/onesdk2482.pstest.test","name":"onesdk2482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3299-aa02f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1622\/providers\/Microsoft.Network\/dnszones\/onesdk1489.pstest.test","name":"onesdk1489.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-66f6-7b347337d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1624\/providers\/Microsoft.Network\/dnszones\/onesdk7204.pstest.test","name":"onesdk7204.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e360-5427d839d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1675\/providers\/Microsoft.Network\/dnszones\/onesdk7311.pstest.test","name":"onesdk7311.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-192e-7766f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1703\/providers\/Microsoft.Network\/dnszones\/onesdk7165.pstest.test","name":"onesdk7165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad1f-1074721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1727\/providers\/Microsoft.Network\/dnszones\/onesdk9804.pstest.test","name":"onesdk9804.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7742-7dbfee1fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1729\/providers\/Microsoft.Network\/dnszones\/onesdk7610.pstest.test","name":"onesdk7610.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29a5-a9263447d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1734\/providers\/Microsoft.Network\/dnszones\/onesdk8881.pstest.test","name":"onesdk8881.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bcd6-ba11f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1757\/providers\/Microsoft.Network\/dnszones\/onesdk3391.pstest.test","name":"onesdk3391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4fd-2496f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk178\/providers\/Microsoft.Network\/dnszones\/onesdk90.pstest.test","name":"onesdk90.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9aea-3f153f25d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1840\/providers\/Microsoft.Network\/dnszones\/onesdk8954.pstest.test","name":"onesdk8954.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-e73f-dba0e940d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1896\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9aee-3e3a0f4fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1904\/providers\/Microsoft.Network\/dnszones\/onesdk2093.pstest.test","name":"onesdk2093.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1986-77c0b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1918\/providers\/Microsoft.Network\/dnszones\/onesdk6500.pstest.test","name":"onesdk6500.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f0da-b94d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1987\/providers\/Microsoft.Network\/dnszones\/onesdk2408.pstest.test","name":"onesdk2408.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f5b1-94caee23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2018\/providers\/Microsoft.Network\/dnszones\/onesdk6598.pstest.test","name":"onesdk6598.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17d6-a1466623d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk5299.pstest.test","name":"onesdk5299.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-af69-c2a7711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.test","name":"onesdk7065.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c49-5b256623d201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.testa","name":"onesdk7065.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad8c-d0256623d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2172\/providers\/Microsoft.Network\/dnszones\/onesdk496.pstest.test","name":"onesdk496.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5f17-b3c6b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2304\/providers\/Microsoft.Network\/dnszones\/onesdk7239.pstest.test","name":"onesdk7239.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-113e-68072040d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2308\/providers\/Microsoft.Network\/dnszones\/onesdk1393.pstest.test","name":"onesdk1393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39b9-9de9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2310\/providers\/Microsoft.Network\/dnszones\/onesdk2284.pstest.test","name":"onesdk2284.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39f8-b070b541d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2333\/providers\/Microsoft.Network\/dnszones\/onesdk1256.pstest.test","name":"onesdk1256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e7e-de17fe3cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2380\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-88b4-d461c453d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2383\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-342f-78b3611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2398\/providers\/Microsoft.Network\/dnszones\/onesdk8782.pstest.test","name":"onesdk8782.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ed-87f2062ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2407\/providers\/Microsoft.Network\/dnszones\/onesdk7250.pstest.test","name":"onesdk7250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b310-a66e611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2421\/providers\/Microsoft.Network\/dnszones\/onesdk6907.pstest.test","name":"onesdk6907.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9d8-ca16721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk640.pstest.test","name":"onesdk640.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a55-f581721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk9998.pstest.test","name":"onesdk9998.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-550b-12bc711fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk5712.pstest.test","name":"onesdk5712.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb48-cd0cfa1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk7614.pstest.test","name":"onesdk7614.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1faf-3101fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2556\/providers\/Microsoft.Network\/dnszones\/onesdk7928.pstest.test","name":"onesdk7928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d950-d5e5711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2563\/providers\/Microsoft.Network\/dnszones\/onesdk4397.pstest.test","name":"onesdk4397.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b49-7420fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2573\/providers\/Microsoft.Network\/dnszones\/onesdk7056.pstest.test","name":"onesdk7056.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-43a9-215b1c22d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2585\/providers\/Microsoft.Network\/dnszones\/onesdk2458.pstest.test","name":"onesdk2458.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfe-4344fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk264\/providers\/Microsoft.Network\/dnszones\/onesdk2107.pstest.test","name":"onesdk2107.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6bb1-2861404ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2644\/providers\/Microsoft.Network\/dnszones\/onesdk2865.pstest.test","name":"onesdk2865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-d03b-00e8873ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2675\/providers\/Microsoft.Network\/dnszones\/onesdk4444.pstest.test","name":"onesdk4444.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2ea6-dc528d2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2715\/providers\/Microsoft.Network\/dnszones\/onesdk3768.pstest.test","name":"onesdk3768.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f1c-2b7def1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2743\/providers\/Microsoft.Network\/dnszones\/onesdk4.pstest.test","name":"onesdk4.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4c8f-60fa711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2745\/providers\/Microsoft.Network\/dnszones\/onesdk828.pstest.test","name":"onesdk828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-31db-1c44b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2807\/providers\/Microsoft.Network\/dnszones\/onesdk2558.pstest.test","name":"onesdk2558.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0255-15d3fd1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk2112.pstest.test","name":"onesdk2112.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e0d-2a26f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2835\/providers\/Microsoft.Network\/dnszones\/onesdk8180.pstest.test","name":"onesdk8180.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-297f-3f36fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2881\/providers\/Microsoft.Network\/dnszones\/onesdk8706.pstest.test","name":"onesdk8706.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ec87-e7f8fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2923\/providers\/Microsoft.Network\/dnszones\/onesdk8493.pstest.test","name":"onesdk8493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-066c-41fbf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2942\/providers\/Microsoft.Network\/dnszones\/onesdk2839.pstest.test","name":"onesdk2839.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-89cd-f76f512ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2963\/providers\/Microsoft.Network\/dnszones\/onesdk4380.pstest.test","name":"onesdk4380.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7fab-a6affc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3016\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-75ac-a5218a4fd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3052\/providers\/Microsoft.Network\/dnszones\/onesdk6450.pstest.test","name":"onesdk6450.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dfc9-7c482f29d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3077\/providers\/Microsoft.Network\/dnszones\/onesdk8057.pstest.test","name":"onesdk8057.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7330-6d80fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3082\/providers\/Microsoft.Network\/dnszones\/onesdk8403.pstest.test","name":"onesdk8403.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-754e-2e1ff91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3085\/providers\/Microsoft.Network\/dnszones\/onesdk8393.pstest.test","name":"onesdk8393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da3a-2e2df91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk315\/providers\/Microsoft.Network\/dnszones\/onesdk3996.pstest.test","name":"onesdk3996.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d50b-4608721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3157\/providers\/Microsoft.Network\/dnszones\/onesdk2650.pstest.test","name":"onesdk2650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f76c-aa52d739d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3172\/providers\/Microsoft.Network\/dnszones\/onesdk379.pstest.test","name":"onesdk379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6a8b-0297b91fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3192\/providers\/Microsoft.Network\/dnszones\/onesdk8717.pstest.test","name":"onesdk8717.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-15ae-8f21b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3306\/providers\/Microsoft.Network\/dnszones\/onesdk2738.pstest.test","name":"onesdk2738.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5007-cc5b611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk335\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-372f-00a5721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3390\/providers\/Microsoft.Network\/dnszones\/onesdk5878.pstest.test","name":"onesdk5878.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5e2e-ae7dfb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3478\/providers\/Microsoft.Network\/dnszones\/onesdk3730.pstest.test","name":"onesdk3730.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-235f-d463d126d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3497\/providers\/Microsoft.Network\/dnszones\/onesdk5097.pstest.test","name":"onesdk5097.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dadd-c0bfb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3557\/providers\/Microsoft.Network\/dnszones\/onesdk8390.pstest.test","name":"onesdk8390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a228-ad9a7c4dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3600\/providers\/Microsoft.Network\/dnszones\/onesdk2599.pstest.test","name":"onesdk2599.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-74a0-5ec1c648d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3626\/providers\/Microsoft.Network\/dnszones\/onesdk9818.pstest.test","name":"onesdk9818.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e0c-f6d4fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3668\/providers\/Microsoft.Network\/dnszones\/onesdk3479.pstest.test","name":"onesdk3479.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3c4a-9bd1711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3711\/providers\/Microsoft.Network\/dnszones\/onesdk8697.pstest.test","name":"onesdk8697.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-66ac-ddb3ad41d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3752\/providers\/Microsoft.Network\/dnszones\/onesdk5592.pstest.test","name":"onesdk5592.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfc2-9751b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3791\/providers\/Microsoft.Network\/dnszones\/onesdk4990.pstest.test","name":"onesdk4990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-320e-0706781fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3794\/providers\/Microsoft.Network\/dnszones\/onesdk1760.pstest.test","name":"onesdk1760.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea5-4b7c693bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3869\/providers\/Microsoft.Network\/dnszones\/onesdk7008.pstest.test","name":"onesdk7008.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a062-24088851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3872\/providers\/Microsoft.Network\/dnszones\/onesdk9743.pstest.test","name":"onesdk9743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-511e-6589b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3891\/providers\/Microsoft.Network\/dnszones\/onesdk8901.pstest.test","name":"onesdk8901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ef1-4eca611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3943\/providers\/Microsoft.Network\/dnszones\/onesdk7060.pstest.test","name":"onesdk7060.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6e4d-a628b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3946\/providers\/Microsoft.Network\/dnszones\/onesdk2283.pstest.test","name":"onesdk2283.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3283-64f5c548d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3956\/providers\/Microsoft.Network\/dnszones\/onesdk9718.pstest.test","name":"onesdk9718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fb2e-2f2aa150d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3957\/providers\/Microsoft.Network\/dnszones\/onesdk1310.pstest.test","name":"onesdk1310.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7057-b4cb5a55d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3963\/providers\/Microsoft.Network\/dnszones\/onesdk2916.pstest.test","name":"onesdk2916.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-055d-01af6c2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['51681'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:42 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:11:43 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6e8gzsaKvOcgeI-LpsLUHClAzhOQ_li0dEPz10q32_LlV-y-g0U9zoJ1-dISiK7c-bXDYVRRDicEf481wFjxCQakfH3ZoQ4drHmvuowKB7QARJsIpHu3CAmc2lyyNWBVq8yRGqtVFkWE0aJOF6veVZC0HO-BVly4cj5xsyCFzlUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076338","not_before":"1521072438","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQzOCwibmJmIjoxNTIxMDcyNDM4LCJleHAiOjE1MjEwNzYzMzgsImFpbyI6IjQyUmdZSmc0NTduMXJTclBheCtYL09VTm1kNjdDQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGF6U1FBQUEiLCJ2ZXIiOiIxLjAifQ.Gb-OZ-kYK4dM7autHmeI5YaQGHXZ0RsEMPmPOhvd3SqswnmAPShMHVN0BIHVltBhn3kyML5S84i7cZdQXI6gp6MOID05HMC2zGiSMp4RNshMIhDzX4qb3ORVbyF3qB1F_rmkdMBOKd8ebGY_xLNIfgv3RbHSOQPHjdRX_NAr4aN9oBz0G4jpAQ6ZqcyU6fMiRS7zVWMHi7JU3-FgZFsG3Y8QY40Bh-aAEtLdFZXSpiR8fXasDWgDFB-8NM6dXgRalsm0ACgUJDwTR9zoNz2q2a9XdZ5QIDXFFxpO-C9ae9zeylrO47jT5InVfmWscVIplp0RjkmJKSZ0yD-Lyf-ghw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:17 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3997\/providers\/Microsoft.Network\/dnszones\/onesdk3527.pstest.test","name":"onesdk3527.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a8e-37c5fd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk401\/providers\/Microsoft.Network\/dnszones\/onesdk2615.pstest.test","name":"onesdk2615.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b3c2-2455eb4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4011\/providers\/Microsoft.Network\/dnszones\/onesdk4347.pstest.test","name":"onesdk4347.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5775-c6c10125d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk9742.pstest.test","name":"onesdk9742.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-116e-dd81f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4042\/providers\/Microsoft.Network\/dnszones\/onesdk6110.pstest.test","name":"onesdk6110.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3099-a3e3a234d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4050\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3d85-5731752cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4076\/providers\/Microsoft.Network\/dnszones\/onesdk6687.pstest.test","name":"onesdk6687.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-687b-8e0afb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4081\/providers\/Microsoft.Network\/dnszones\/onesdk2629.pstest.test","name":"onesdk2629.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3531-875d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4129\/providers\/Microsoft.Network\/dnszones\/onesdk5232.pstest.test","name":"onesdk5232.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3082-d9fd584ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4161\/providers\/Microsoft.Network\/dnszones\/onesdk3953.pstest.test","name":"onesdk3953.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-560e-1828fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4179\/providers\/Microsoft.Network\/dnszones\/onesdk6739.pstest.test","name":"onesdk6739.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-783a-1e50fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4201\/providers\/Microsoft.Network\/dnszones\/onesdk1912.pstest.test","name":"onesdk1912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-91c7-be08601fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4202\/providers\/Microsoft.Network\/dnszones\/onesdk8794.pstest.test","name":"onesdk8794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78df-63edf529d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4214\/providers\/Microsoft.Network\/dnszones\/onesdk8488.pstest.test","name":"onesdk8488.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a6e-07ff0d39d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4234\/providers\/Microsoft.Network\/dnszones\/onesdk7584.pstest.test","name":"onesdk7584.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-67f3-ac7e2629d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4263\/providers\/Microsoft.Network\/dnszones\/onesdk5331.pstest.test","name":"onesdk5331.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e2d-0b2fc82ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4302\/providers\/Microsoft.Network\/dnszones\/onesdk4345.pstest.test","name":"onesdk4345.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a69-f469fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4348\/providers\/Microsoft.Network\/dnszones\/onesdk5365.pstest.test","name":"onesdk5365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bee0-caf1fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4363\/providers\/Microsoft.Network\/dnszones\/onesdk1745.pstest.test","name":"onesdk1745.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb7f-8f30fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4371\/providers\/Microsoft.Network\/dnszones\/onesdk3277.pstest.test","name":"onesdk3277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c0f7-10b9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk438\/providers\/Microsoft.Network\/dnszones\/onesdk5801.pstest.test","name":"onesdk5801.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ff5-1397fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4412\/providers\/Microsoft.Network\/dnszones\/onesdk3735.pstest.test","name":"onesdk3735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5279-2d2e3447d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4449\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7b07-b5d6611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4462\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8858-f99a1b4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4474\/providers\/Microsoft.Network\/dnszones\/onesdk5545.pstest.test","name":"onesdk5545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-daee-9517fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4553\/providers\/Microsoft.Network\/dnszones\/onesdk7120.pstest.test","name":"onesdk7120.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7b6-ffc3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4573\/providers\/Microsoft.Network\/dnszones\/onesdk785.pstest.test","name":"onesdk785.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce8b-8b64721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4613\/providers\/Microsoft.Network\/dnszones\/onesdk8420.pstest.test","name":"onesdk8420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78c9-efd7fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk466\/providers\/Microsoft.Network\/dnszones\/onesdk8888.pstest.test","name":"onesdk8888.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c6e0-39d9502ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4668\/providers\/Microsoft.Network\/dnszones\/onesdk1495.pstest.test","name":"onesdk1495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c531-e005e422d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk471\/providers\/Microsoft.Network\/dnszones\/onesdk8865.pstest.test","name":"onesdk8865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-550f-fadbc43dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4743\/providers\/Microsoft.Network\/dnszones\/onesdk1635.pstest.test","name":"onesdk1635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-47bd-29c49a34d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4762\/providers\/Microsoft.Network\/dnszones\/onesdk1821.pstest.test","name":"onesdk1821.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5186-0a98d14fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4834\/providers\/Microsoft.Network\/dnszones\/onesdk9711.pstest.test","name":"onesdk9711.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0059-1d52b34cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk488\/providers\/Microsoft.Network\/dnszones\/onesdk8545.pstest.test","name":"onesdk8545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f58e-a75bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4891\/providers\/Microsoft.Network\/dnszones\/onesdk513.pstest.test","name":"onesdk513.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efee-a9bbfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4936\/providers\/Microsoft.Network\/dnszones\/onesdk2772.pstest.test","name":"onesdk2772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d091-83740e4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4958\/providers\/Microsoft.Network\/dnszones\/onesdk7482.pstest.test","name":"onesdk7482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e139-f513a03ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5061\/providers\/Microsoft.Network\/dnszones\/onesdk7650.pstest.test","name":"onesdk7650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce49-6a88f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5155\/providers\/Microsoft.Network\/dnszones\/onesdk97.pstest.test","name":"onesdk97.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d36f-3d97b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5202\/providers\/Microsoft.Network\/dnszones\/onesdk2445.pstest.test","name":"onesdk2445.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-355b-80f3711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5216\/providers\/Microsoft.Network\/dnszones\/onesdk5449.pstest.test","name":"onesdk5449.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c515-315cd126d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5228\/providers\/Microsoft.Network\/dnszones\/onesdk7389.pstest.test","name":"onesdk7389.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d957-ade1f71fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5231\/providers\/Microsoft.Network\/dnszones\/onesdk7994.pstest.test","name":"onesdk7994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2642-d6f4af25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5236\/providers\/Microsoft.Network\/dnszones\/onesdk3237.pstest.test","name":"onesdk3237.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d3af-963ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5267\/providers\/Microsoft.Network\/dnszones\/onesdk748.pstest.test","name":"onesdk748.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0320-77c76523d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5321\/providers\/Microsoft.Network\/dnszones\/onesdk9913.pstest.test","name":"onesdk9913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b17-e448fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5375\/providers\/Microsoft.Network\/dnszones\/onesdk6291.pstest.test","name":"onesdk6291.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3ca1-2d5bbf53d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5589\/providers\/Microsoft.Network\/dnszones\/onesdk548.pstest.test","name":"onesdk548.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-60c6-af58fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5598\/providers\/Microsoft.Network\/dnszones\/onesdk2400.pstest.test","name":"onesdk2400.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9df-ae1aaa36d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk560\/providers\/Microsoft.Network\/dnszones\/onesdk4022.pstest.test","name":"onesdk4022.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7b2f-a130f924d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5605\/providers\/Microsoft.Network\/dnszones\/onesdk6812.pstest.test","name":"onesdk6812.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e70-7f8f3e38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5613\/providers\/Microsoft.Network\/dnszones\/onesdk4887.pstest.test","name":"onesdk4887.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea3-46abf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk563\/providers\/Microsoft.Network\/dnszones\/onesdk5622.pstest.test","name":"onesdk5622.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35b6-0f3dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5633\/providers\/Microsoft.Network\/dnszones\/onesdk957.pstest.test","name":"onesdk957.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9794-b7bb721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5662\/providers\/Microsoft.Network\/dnszones\/onesdk5551.pstest.test","name":"onesdk5551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-ea04-868ff53cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5717\/providers\/Microsoft.Network\/dnszones\/onesdk8803.pstest.test","name":"onesdk8803.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-3693-7ac0e035d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5741\/providers\/Microsoft.Network\/dnszones\/onesdk4971.pstest.test","name":"onesdk4971.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-16d7-fe67fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5849\/providers\/Microsoft.Network\/dnszones\/onesdk6028.pstest.test","name":"onesdk6028.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9703-59baf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5891\/providers\/Microsoft.Network\/dnszones\/onesdk1490.pstest.test","name":"onesdk1490.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a513-4c577d4dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk1426.pstest.test","name":"onesdk1426.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3620-6eb4721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk75.pstest.test","name":"onesdk75.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d72-53dafd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6001\/providers\/Microsoft.Network\/dnszones\/onesdk7554.pstest.test","name":"onesdk7554.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e36-2123aa36d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk602\/providers\/Microsoft.Network\/dnszones\/onesdk3442.pstest.test","name":"onesdk3442.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05d9-d16cea40d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6031\/providers\/Microsoft.Network\/dnszones\/onesdk4501.pstest.test","name":"onesdk4501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1d39-ce5da623d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6043\/providers\/Microsoft.Network\/dnszones\/onesdk7277.pstest.test","name":"onesdk7277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b920-1869611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6125\/providers\/Microsoft.Network\/dnszones\/onesdk8691.pstest.test","name":"onesdk8691.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-16ad-47b51735d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6142\/providers\/Microsoft.Network\/dnszones\/onesdk3174.pstest.test","name":"onesdk3174.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-402f-2bd0611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6180\/providers\/Microsoft.Network\/dnszones\/onesdk1410.pstest.test","name":"onesdk1410.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-8076-e7087252d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6194\/providers\/Microsoft.Network\/dnszones\/onesdk2606.pstest.test","name":"onesdk2606.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8036-7ff3f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6218\/providers\/Microsoft.Network\/dnszones\/onesdk182.pstest.test","name":"onesdk182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e269-5f00fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6230\/providers\/Microsoft.Network\/dnszones\/onesdk794.pstest.test","name":"onesdk794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb5c-688ffa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6238\/providers\/Microsoft.Network\/dnszones\/onesdk1437.pstest.test","name":"onesdk1437.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c4ec-c2cafa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6270\/providers\/Microsoft.Network\/dnszones\/onesdk5966.pstest.test","name":"onesdk5966.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5adc-c19fa725d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6293\/providers\/Microsoft.Network\/dnszones\/onesdk8153.pstest.test","name":"onesdk8153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df7c-e132584ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk63\/providers\/Microsoft.Network\/dnszones\/onesdk9277.pstest.test","name":"onesdk9277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-492a-773cbf2ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk7018.pstest.test","name":"onesdk7018.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-837f-71ddf547d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk9735.pstest.test","name":"onesdk9735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b606-337b721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6360\/providers\/Microsoft.Network\/dnszones\/onesdk7945.pstest.test","name":"onesdk7945.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6d8c-0a0af91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6364\/providers\/Microsoft.Network\/dnszones\/onesdk9096.pstest.test","name":"onesdk9096.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e729-cdf0b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6456\/providers\/Microsoft.Network\/dnszones\/onesdk5828.pstest.test","name":"onesdk5828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5187-58e4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6478\/providers\/Microsoft.Network\/dnszones\/onesdk1379.pstest.test","name":"onesdk1379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2b8e-6425062ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6572\/providers\/Microsoft.Network\/dnszones\/onesdk6230.pstest.test","name":"onesdk6230.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68e8-4f34f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6588\/providers\/Microsoft.Network\/dnszones\/onesdk1156.pstest.test","name":"onesdk1156.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-765b-82c7302ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6593\/providers\/Microsoft.Network\/dnszones\/onesdk5086.pstest.test","name":"onesdk5086.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c920-1caa9a27d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6606\/providers\/Microsoft.Network\/dnszones\/onesdk9026.pstest.test","name":"onesdk9026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-03d3-7bc3711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6610\/providers\/Microsoft.Network\/dnszones\/onesdk6999.pstest.test","name":"onesdk6999.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad57-12c53f2dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6616\/providers\/Microsoft.Network\/dnszones\/onesdk3188.pstest.test","name":"onesdk3188.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5cfc-0989721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6626\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-26f8-16f3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6674\/providers\/Microsoft.Network\/dnszones\/onesdk7395.pstest.test","name":"onesdk7395.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a8e-dda2ef23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6713\/providers\/Microsoft.Network\/dnszones\/onesdk6982.pstest.test","name":"onesdk6982.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ac62-ac6eae23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6721\/providers\/Microsoft.Network\/dnszones\/onesdk9507.pstest.test","name":"onesdk9507.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b55f-a3ad323cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6749\/providers\/Microsoft.Network\/dnszones\/onesdk201.pstest.test","name":"onesdk201.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb32-dfa19a27d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6784\/providers\/Microsoft.Network\/dnszones\/onesdk3572.pstest.test","name":"onesdk3572.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a21-418dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6793\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-015a-23f5f529d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6848\/providers\/Microsoft.Network\/dnszones\/onesdk6703.pstest.test","name":"onesdk6703.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35e9-4ea3c53dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6880\/providers\/Microsoft.Network\/dnszones\/onesdk2778.pstest.test","name":"onesdk2778.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-752e-1cd4c43dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6898\/providers\/Microsoft.Network\/dnszones\/onesdk5795.pstest.test","name":"onesdk5795.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8ce2-6c62fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6906\/providers\/Microsoft.Network\/dnszones\/onesdk1794.pstest.test","name":"onesdk1794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cbce-d7b3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6917\/providers\/Microsoft.Network\/dnszones\/onesdk8494.pstest.test","name":"onesdk8494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c3eb-f5d2ee23d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['51879'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:23 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzu8vvtCGYazn4rONvs5xUfnoe33o8ZptUgaOzBYgMsIuLSAm6SCHehktUeT5x2N4gj4HNhMIxbJqD8tYwvqmCcRtHdCr2htR24pGc9tJVS5sXXzVumOlc2JIIE4MZMcQackmqH6s5t1pGMnWRj4fNBm_pSJC0SkWifMzkDFDNVYYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076352","not_before":"1521072452","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ1MiwibmJmIjoxNTIxMDcyNDUyLCJleHAiOjE1MjEwNzYzNTIsImFpbyI6IjQyUmdZTGczNzhvMWk1WEZHMjR4TzVhR1NTbFBCd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkNma2N4Zk0wcjBtSFBldFUzQzBBQUEiLCJ2ZXIiOiIxLjAifQ.Ij5rjIQH_8FOkiYsvatooJVAH0r961NTDBj1qOv5zhWstttYDsFmFZ8FUpJniUNZpcS1XfuU9WMaPPPU0zHZSG_olAlCTIfvxrD6b1Din_0JWgWZ3_47F9R5VoV8094mU12XWXs6oZ9OrVZGL-jjntkXW5rwVWk98Za-MkVHyJDTZyWKdB9mejfDavfa9xnaUHQ6xksyiPRvNlQVFjDqUTYyLMoQ36ZBjPKWVn5W0eczPVjRY9tzLhCV6zzmZ8Igseggriui9Zg7C2fDRlWUnreUbB2Fx9erXLwNjSXsleF4lXTT2SFNk4w33x9usJqqHwp4mONwtqXhN85m547NNA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:31 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0 + response: + body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q=","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7040\/providers\/Microsoft.Network\/dnszones\/onesdk6420.pstest.test","name":"onesdk6420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f329-8dfdc548d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7065\/providers\/Microsoft.Network\/dnszones\/onesdk7252.pstest.test","name":"onesdk7252.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f81d-071b3e52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7088\/providers\/Microsoft.Network\/dnszones\/onesdk6560.pstest.test","name":"onesdk6560.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ee5b-e561da4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7119\/providers\/Microsoft.Network\/dnszones\/onesdk551.pstest.test","name":"onesdk551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-10cf-30070e39d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7125\/providers\/Microsoft.Network\/dnszones\/onesdk8217.pstest.test","name":"onesdk8217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ea00-444df81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7136\/providers\/Microsoft.Network\/dnszones\/onesdk480.pstest.test","name":"onesdk480.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b1af-fa0e2040d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7140\/providers\/Microsoft.Network\/dnszones\/onesdk6605.pstest.test","name":"onesdk6605.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d5e1-5d0e2156d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7176\/providers\/Microsoft.Network\/dnszones\/onesdk9349.pstest.test","name":"onesdk9349.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb71-6f98e940d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7242\/providers\/Microsoft.Network\/dnszones\/onesdk4616.pstest.test","name":"onesdk4616.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e0eb-890cf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7332\/providers\/Microsoft.Network\/dnszones\/onesdk3587.pstest.test","name":"onesdk3587.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fe40-dd818b2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7337\/providers\/Microsoft.Network\/dnszones\/onesdk5635.pstest.test","name":"onesdk5635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-22bb-86338f54d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7344\/providers\/Microsoft.Network\/dnszones\/onesdk6001.pstest.test","name":"onesdk6001.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0395-d5c2f12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7355\/providers\/Microsoft.Network\/dnszones\/onesdk2943.pstest.test","name":"onesdk2943.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3842-9679333cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7356\/providers\/Microsoft.Network\/dnszones\/onesdk4147.pstest.test","name":"onesdk4147.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9c54-14ff382ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7406\/providers\/Microsoft.Network\/dnszones\/onesdk4171.pstest.test","name":"onesdk4171.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9b6c-1be1352dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk744\/providers\/Microsoft.Network\/dnszones\/onesdk9600.pstest.test","name":"onesdk9600.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5736-5a1fe322d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7442\/providers\/Microsoft.Network\/dnszones\/onesdk5915.pstest.test","name":"onesdk5915.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9cd7-ecca711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7466\/providers\/Microsoft.Network\/dnszones\/onesdk7233.pstest.test","name":"onesdk7233.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cfe4-e0368849d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7529\/providers\/Microsoft.Network\/dnszones\/onesdk6493.pstest.test","name":"onesdk6493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9549-bbb2b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7530\/providers\/Microsoft.Network\/dnszones\/onesdk3045.pstest.test","name":"onesdk3045.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7789-af31a150d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7535\/providers\/Microsoft.Network\/dnszones\/onesdk3217.pstest.test","name":"onesdk3217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a77-e81c593fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.test","name":"onesdk1523.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6aac-ab4a883ed201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.testa","name":"onesdk1523.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-432a-244b883ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk9365.pstest.test","name":"onesdk9365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d8c8-a5ac721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7594\/providers\/Microsoft.Network\/dnszones\/onesdk4695.pstest.test","name":"onesdk4695.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfd-8530903ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk763\/providers\/Microsoft.Network\/dnszones\/onesdk2995.pstest.test","name":"onesdk2995.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7016-c9d4f02dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7656\/providers\/Microsoft.Network\/dnszones\/onesdk4165.pstest.test","name":"onesdk4165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-154e-0c89ea4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7699\/providers\/Microsoft.Network\/dnszones\/onesdk746.pstest.test","name":"onesdk746.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da71-176d8a2bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7705\/providers\/Microsoft.Network\/dnszones\/onesdk632.pstest.test","name":"onesdk632.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-65e2-3a49611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7710\/providers\/Microsoft.Network\/dnszones\/onesdk4259.pstest.test","name":"onesdk4259.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ddc-badbb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk779\/providers\/Microsoft.Network\/dnszones\/onesdk1696.pstest.test","name":"onesdk1696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68dd-d707fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7822\/providers\/Microsoft.Network\/dnszones\/onesdk7725.pstest.test","name":"onesdk7725.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e203-be0c3f25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7837\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-75cd-825ad739d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7913\/providers\/Microsoft.Network\/dnszones\/onesdk5889.pstest.test","name":"onesdk5889.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1e44-8594ac41d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7964\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4548-76c96528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7983\/providers\/Microsoft.Network\/dnszones\/onesdk1262.pstest.test","name":"onesdk1262.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1107-69bf611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7991\/providers\/Microsoft.Network\/dnszones\/onesdk8675.pstest.test","name":"onesdk8675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-305d-d5319149d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8038\/providers\/Microsoft.Network\/dnszones\/onesdk3192.pstest.test","name":"onesdk3192.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ccea-1b31f652d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8043\/providers\/Microsoft.Network\/dnszones\/onesdk7041.pstest.test","name":"onesdk7041.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9055-fe90ea4bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8109\/providers\/Microsoft.Network\/dnszones\/onesdk6495.pstest.test","name":"onesdk6495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cf40-9859b34cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8122\/providers\/Microsoft.Network\/dnszones\/onesdk253.pstest.test","name":"onesdk253.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b190-2e52fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8154\/providers\/Microsoft.Network\/dnszones\/onesdk153.pstest.test","name":"onesdk153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-308d-cfad611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk822\/providers\/Microsoft.Network\/dnszones\/onesdk8520.pstest.test","name":"onesdk8520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b7de-e27efd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8222\/providers\/Microsoft.Network\/dnszones\/onesdk6033.pstest.test","name":"onesdk6033.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7374-4d746c46d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8268\/providers\/Microsoft.Network\/dnszones\/onesdk1602.pstest.test","name":"onesdk1602.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1dc5-edbdfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8272\/providers\/Microsoft.Network\/dnszones\/onesdk1083.pstest.test","name":"onesdk1083.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-08d9-5d7bf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8300\/providers\/Microsoft.Network\/dnszones\/onesdk5050.pstest.test","name":"onesdk5050.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6728-d2bef629d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8307\/providers\/Microsoft.Network\/dnszones\/onesdk128.pstest.test","name":"onesdk128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b309-a4eafc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8357\/providers\/Microsoft.Network\/dnszones\/onesdk52.pstest.test","name":"onesdk52.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d6b-4232721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8365\/providers\/Microsoft.Network\/dnszones\/onesdk708.pstest.test","name":"onesdk708.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a6a5-b75bfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8377\/providers\/Microsoft.Network\/dnszones\/onesdk7016.pstest.test","name":"onesdk7016.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ed2e-4a36b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8456\/providers\/Microsoft.Network\/dnszones\/onesdk1593.pstest.test","name":"onesdk1593.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b68d-8e9c611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8479\/providers\/Microsoft.Network\/dnszones\/onesdk9111.pstest.test","name":"onesdk9111.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-00d5-4f63611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8487\/providers\/Microsoft.Network\/dnszones\/onesdk6497.pstest.test","name":"onesdk6497.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bd89-2c7e711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8499\/providers\/Microsoft.Network\/dnszones\/onesdk2786.pstest.test","name":"onesdk2786.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-887c-5c2fb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8522\/providers\/Microsoft.Network\/dnszones\/onesdk8790.pstest.test","name":"onesdk8790.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b879-d2d4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8552\/providers\/Microsoft.Network\/dnszones\/onesdk4250.pstest.test","name":"onesdk4250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ef5e-96007252d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8559\/providers\/Microsoft.Network\/dnszones\/onesdk501.pstest.test","name":"onesdk501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b5b-734a3f38d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8580\/providers\/Microsoft.Network\/dnszones\/onesdk1493.pstest.test","name":"onesdk1493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-980c-f138721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8598\/providers\/Microsoft.Network\/dnszones\/onesdk2766.pstest.test","name":"onesdk2766.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b1c5-520f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8603\/providers\/Microsoft.Network\/dnszones\/onesdk1068.pstest.test","name":"onesdk1068.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-80e1-600a822bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8609\/providers\/Microsoft.Network\/dnszones\/onesdk9705.pstest.test","name":"onesdk9705.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-abd3-7179fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8625\/providers\/Microsoft.Network\/dnszones\/onesdk8944.pstest.test","name":"onesdk8944.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4d22-3d6ffb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8644\/providers\/Microsoft.Network\/dnszones\/onesdk4244.pstest.test","name":"onesdk4244.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-052f-06e3b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk869\/providers\/Microsoft.Network\/dnszones\/onesdk2868.pstest.test","name":"onesdk2868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cffa-aa45f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8699\/providers\/Microsoft.Network\/dnszones\/onesdk1043.pstest.test","name":"onesdk1043.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0235-60062156d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8708\/providers\/Microsoft.Network\/dnszones\/onesdk7157.pstest.test","name":"onesdk7157.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4281-8685234bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8840\/providers\/Microsoft.Network\/dnszones\/onesdk9197.pstest.test","name":"onesdk9197.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bc8-3777e135d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8869\/providers\/Microsoft.Network\/dnszones\/onesdk2810.pstest.test","name":"onesdk2810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29cd-5058b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8903\/providers\/Microsoft.Network\/dnszones\/onesdk3123.pstest.test","name":"onesdk3123.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4e1b-c219611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk891\/providers\/Microsoft.Network\/dnszones\/onesdk696.pstest.test","name":"onesdk696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8235-fe80de15d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8920\/providers\/Microsoft.Network\/dnszones\/onesdk2672.pstest.test","name":"onesdk2672.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f6b-9a38fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8924\/providers\/Microsoft.Network\/dnszones\/onesdk6190.pstest.test","name":"onesdk6190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e05-5051f63cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8932\/providers\/Microsoft.Network\/dnszones\/onesdk6647.pstest.test","name":"onesdk6647.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1ad4-0fa27c4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8951\/providers\/Microsoft.Network\/dnszones\/onesdk4871.pstest.test","name":"onesdk4871.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c83-fb77fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8967\/providers\/Microsoft.Network\/dnszones\/onesdk8737.pstest.test","name":"onesdk8737.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a41d-62d6f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8987\/providers\/Microsoft.Network\/dnszones\/onesdk3928.pstest.test","name":"onesdk3928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-88e8-86f64638d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8992\/providers\/Microsoft.Network\/dnszones\/onesdk8784.pstest.test","name":"onesdk8784.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f37-b762fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9005\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e7f3-8ab05155d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk901\/providers\/Microsoft.Network\/dnszones\/onesdk8722.pstest.test","name":"onesdk8722.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2c01-cc55721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9035\/providers\/Microsoft.Network\/dnszones\/onesdk7935.pstest.test","name":"onesdk7935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c10f-7074f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9049\/providers\/Microsoft.Network\/dnszones\/onesdk1994.pstest.test","name":"onesdk1994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4e15-b5578a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9068\/providers\/Microsoft.Network\/dnszones\/onesdk8660.pstest.test","name":"onesdk8660.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ef6-de152140d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9084\/providers\/Microsoft.Network\/dnszones\/onesdk8158.pstest.test","name":"onesdk8158.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-24fa-ba41fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9090\/providers\/Microsoft.Network\/dnszones\/onesdk4457.pstest.test","name":"onesdk4457.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e5d-cf1ba03ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9134\/providers\/Microsoft.Network\/dnszones\/onesdk6175.pstest.test","name":"onesdk6175.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c01a-2697f41fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9139\/providers\/Microsoft.Network\/dnszones\/onesdk417.pstest.test","name":"onesdk417.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f47e-5679d02ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9160\/providers\/Microsoft.Network\/dnszones\/onesdk6148.pstest.test","name":"onesdk6148.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0be8-c83f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9164\/providers\/Microsoft.Network\/dnszones\/onesdk9827.pstest.test","name":"onesdk9827.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df85-fbf87337d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9175\/providers\/Microsoft.Network\/dnszones\/onesdk5076.pstest.test","name":"onesdk5076.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-61d3-4f3bf91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9247\/providers\/Microsoft.Network\/dnszones\/onesdk6135.pstest.test","name":"onesdk6135.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d81b-f72a8f54d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9265\/providers\/Microsoft.Network\/dnszones\/onesdk5743.pstest.test","name":"onesdk5743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9d87-f284693bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9270\/providers\/Microsoft.Network\/dnszones\/onesdk5482.pstest.test","name":"onesdk5482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2d9-f811fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9323\/providers\/Microsoft.Network\/dnszones\/onesdk9813.pstest.test","name":"onesdk9813.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b8f8-b541fe47d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9361\/providers\/Microsoft.Network\/dnszones\/onesdk4646.pstest.test","name":"onesdk4646.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a19-0ac3721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9412\/providers\/Microsoft.Network\/dnszones\/onesdk4765.pstest.test","name":"onesdk4765.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a534-50e48a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9423\/providers\/Microsoft.Network\/dnszones\/onesdk8561.pstest.test","name":"onesdk8561.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40f2-c3a4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9462\/providers\/Microsoft.Network\/dnszones\/onesdk4580.pstest.test","name":"onesdk4580.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-704d-79befc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9466\/providers\/Microsoft.Network\/dnszones\/onesdk2434.pstest.test","name":"onesdk2434.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-204e-b882d44fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk947\/providers\/Microsoft.Network\/dnszones\/onesdk8857.pstest.test","name":"onesdk8857.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7103-354bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['51753'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:33 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:34 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1KwHN897dH3ujbG24S7HO6SfZkMvei8aaYxCNM9AOVUrRyiH0zayFVn586FP6IruS3F1NJwaRNRyy5j_GBFANlZ46-qkBs49XSbClYQ6tF1hTQyBn3BcNiuDsYLAJB5wrICMO7Qp6TI3whrATzylRVY6CGYDnxKTbP8O8x2CvaUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076365","not_before":"1521072465","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ2NSwibmJmIjoxNTIxMDcyNDY1LCJleHAiOjE1MjEwNzYzNjUsImFpbyI6IjQyUmdZQWo2L1d2MzBldDlUejBGUFMrOW1PbjhId0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Iks4Z2VVbHFtd0VxQ0RfdW42aTRBQUEiLCJ2ZXIiOiIxLjAifQ.ah0w7x0qHZOylR_4oMFTnpva0zUsZ9KRTRZslKDgVqrr4uShSikrrJqevMZvQ58xfjgpyKRSJVDCLn-WNSCIN17JNbk0qmNFhCj6n-51Wcx25TSxMgOC9O9CVdNcZL-fzFHZ7mpWlsbJ7mr9b0y7XREuBlhBUfHRKQ3NJs6-KnRiylroLe49ZxdJc1RYbzos6bwDu0yutU6_1fTuoKWBmYZL53qejPPVUfofzh-pqmnesYMrfXQsDBPlgsyeZZMtTakjZyDQf-sWkvQerBND7jVZx5OJWiO0NjFIjLPnMdlEcgZyfvfUe18VJ8alUr0QVVo70SwouusGtfkknNbF5A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:45 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q= + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9543\/providers\/Microsoft.Network\/dnszones\/onesdk8652.pstest.test","name":"onesdk8652.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7808-a7dfa03ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9551\/providers\/Microsoft.Network\/dnszones\/onesdk433.pstest.test","name":"onesdk433.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9d5f-94b8e035d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk957\/providers\/Microsoft.Network\/dnszones\/onesdk438.pstest.test","name":"onesdk438.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d859-f085fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9570\/providers\/Microsoft.Network\/dnszones\/onesdk3559.pstest.test","name":"onesdk3559.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-14b0-78a8611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9600\/providers\/Microsoft.Network\/dnszones\/onesdk8840.pstest.test","name":"onesdk8840.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2e0-930bb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9614\/providers\/Microsoft.Network\/dnszones\/onesdk27.pstest.test","name":"onesdk27.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-447a-b854f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9647\/providers\/Microsoft.Network\/dnszones\/onesdk6702.pstest.test","name":"onesdk6702.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c22-6176fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk3247.pstest.test","name":"onesdk3247.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5344-235b3547d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9700\/providers\/Microsoft.Network\/dnszones\/onesdk3208.pstest.test","name":"onesdk3208.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1821-f313f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9755\/providers\/Microsoft.Network\/dnszones\/onesdk1281.pstest.test","name":"onesdk1281.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-84be-b137fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9770\/providers\/Microsoft.Network\/dnszones\/onesdk7520.pstest.test","name":"onesdk7520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-684e-151ab91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9792\/providers\/Microsoft.Network\/dnszones\/onesdk4698.pstest.test","name":"onesdk4698.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4070-a5c1f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk98\/providers\/Microsoft.Network\/dnszones\/onesdk5779.pstest.test","name":"onesdk5779.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d0cb-1c90721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9865\/providers\/Microsoft.Network\/dnszones\/onesdk1690.pstest.test","name":"onesdk1690.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8100-507f6851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9877\/providers\/Microsoft.Network\/dnszones\/onesdk4260.pstest.test","name":"onesdk4260.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a704-b95ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9910\/providers\/Microsoft.Network\/dnszones\/onesdk8222.pstest.test","name":"onesdk8222.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-864f-9dacfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9986\/providers\/Microsoft.Network\/dnszones\/onesdk7796.pstest.test","name":"onesdk7796.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5661-d8b9b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9990\/providers\/Microsoft.Network\/dnszones\/onesdk3.pstest.test","name":"onesdk3.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b60d-8590b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9993\/providers\/Microsoft.Network\/dnszones\/onesdk6809.pstest.test","name":"onesdk6809.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ea8-8a46721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-634d-c14347c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com","name":"foo.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1f3d-d6f047c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1124\/providers\/Microsoft.Network\/dnszones\/ps5492.pstest.test","name":"ps5492.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da4b-753714b7d301","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1425\/providers\/Microsoft.Network\/dnszones\/ps6132.pstest.test","name":"ps6132.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fc37-d08c07bbd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2767\/providers\/Microsoft.Network\/dnszones\/ps5692.pstest.test","name":"ps5692.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3d2d-941151b6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2941\/providers\/Microsoft.Network\/dnszones\/ps1255.pstest.test","name":"ps1255.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-da42-547a4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5162\/providers\/Microsoft.Network\/dnszones\/ps6263.pstest.test","name":"ps6263.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cb12-6b2f4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5241\/providers\/Microsoft.Network\/dnszones\/ps2589.pstest.test","name":"ps2589.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-161e-19d617b7d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps7513\/providers\/Microsoft.Network\/dnszones\/ps7155.pstest.test","name":"ps7155.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-aa63-69cc4eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps8876\/providers\/Microsoft.Network\/dnszones\/ps3411.pstest.test","name":"ps3411.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-69dd-65024eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a2fd-97bef6d5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":9}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.net","name":"jt-test.net","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4753-2e0d1ec3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test2.com","name":"jt-test2.com","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-63a9-32a82bc3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg2\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c20f-4c6b21c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testclirg\/providers\/Microsoft.Network\/dnszones\/testcli.com","name":"testcli.com","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-8e54-7da7a8b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest.test","name":"onesdkrand.10500onesdk.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9a2-cbc94123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest1.1test","name":"onesdkrand.10500onesdk.pstest1.1test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4dd5-44834423d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest21.22test","name":"onesdkrand.10500onesdk.pstest21.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-afef-8d834c23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest22.22test","name":"onesdkrand.10500onesdk.pstest22.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2b55-ff294723d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest23.22test","name":"onesdkrand.10500onesdk.pstest23.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfac-f6bd5023d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest24.24test","name":"onesdkrand.10500onesdk.pstest24.24test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d222-73015123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest33.23test","name":"onesdkrand.10500onesdk.pstest33.23test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9eb-dfae4d23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/test.zone","name":"test.zone","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ec-78aeccd3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone34","name":"testsome.zone34","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ba21-2ccaeb23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone35","name":"testsome.zone35","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fddc-7d88f123d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone36","name":"testsome.zone36","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-72b6-45e90124d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone37","name":"testsome.zone37","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6b72-82e1db24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone38","name":"testsome.zone38","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a68-a1c2dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone39","name":"testsome.zone39","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4ba3-41d6dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone40","name":"testsome.zone40","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-004a-d1f0dc24d201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone41","name":"testsome.zone41","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35ec-c705dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone42","name":"testsome.zone42","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0653-37e9dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone43","name":"testsome.zone43","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bff9-0cb3de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone44","name":"testsome.zone44","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7627-24e6de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone45","name":"testsome.zone45","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6f69-5fbc0c25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone46","name":"testsome.zone46","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c2bf-b1e60e25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone47","name":"testsome.zone47","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6799-720a0f25d201","location":"global","tags":{"name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone49","name":"testsome.zone49","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-0b92-8ab20f25d201","location":"global","tags":{"Name":"tag1","Value":"tag2"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone1","name":"testsome1.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-faa0-5c2d0e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone2","name":"testsome1.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-378b-aa750e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone3","name":"testsome1.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c833-d5a90e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone4","name":"testsome1.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0160-e0a17d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone5","name":"testsome1.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17e8-90bf7d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone1","name":"testsome2.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2cb2-47267e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone10","name":"testsome2.zone10","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40b3-4aec9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone11","name":"testsome2.zone11","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7dfe-edeea025d201","location":"global","tags":{"value":"Value1","Name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone2","name":"testsome2.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c994-c0447e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone3","name":"testsome2.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-53f6-5e497e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone4","name":"testsome2.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a8a1-98dd8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone5","name":"testsome2.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8c9-b1ed8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone6","name":"testsome2.zone6","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e816-2ff78725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone7","name":"testsome2.zone7","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-529e-046a9125d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone8","name":"testsome2.zone8","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5fc0-64ac9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + headers: + cache-control: [private] + content-length: ['35859'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:47 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:48 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz7jR7PDRm_WUbihNovXnRTYevBJloHV-zE_ewIKK0YfsIHkSSjpHG1AsBQ8lV_2fGcxxSg3nw1M-LTpa3Ike3Hfzevi6a8MjOXQt8EuzJE6J0nNET2_U1lVr1UB8Gkl1R-PbEJu-g9dcExffKFk6b0_YoCpIbUNj3dg5RA7VuJf8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076374","not_before":"1521072474","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ3NCwibmJmIjoxNTIxMDcyNDc0LCJleHAiOjE1MjEwNzYzNzQsImFpbyI6IjQyUmdZSmdkMGgwK1kvMU1ybEp1enljSmpoSHZBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYzeE1BQUEiLCJ2ZXIiOiIxLjAifQ.GiUdHJc8Y6RHDrH3CMyMjCopg84WbC5Wy22I--UjTw-Swc7oW75_Su1GieB_cWWeDPy4bTelIQm_U3XmnwV8VxcZfa3KOj2aJr-nMj83afGOxsZM2TAxLdnpGL6jx2lYyKH4b8ZO6lrQZbX5rOp2p1PGwcciL2HGenJ8XZqQBlIES-NoStU4Vrcwv_Dg280hF_gkG6-ctxu466I4_0fxFiWZMRv3jERI1xIc089clM5EGs0R_bO8QP1AXwrUohuozSGkedph3Qdd6VXrN7mUNwyXitYN4rHMpLEU66zmj76efBrRuix6ZSvtIzFa2EUFO7rlQhyZuCu6VqTEkC1pkQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:12:56 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "global", "properties": {"zoneType": "Private", "registrationVirtualNetworks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], + "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone create] + Connection: [keep-alive] + Content-Length: ['537'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + headers: + cache-control: [private] + content-length: ['951'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:06 GMT'] + etag: [00000002-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzs5FLhLabp_Dc-NORU1PFw5CbWf5FXqcoLrtBr0qtsO9EeDDq5_Y2lJ_0rvdDcos62o5MOCTVODjAGH81_kw8olqxXFiTzbPYPN0MdozPPC5l68xTw5KFO39-pIiLDZMvUldgV3t3NUIlPwc8q7VOe7EyCeEutLc62l4DZRnizAkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076390","not_before":"1521072490","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ5MCwibmJmIjoxNTIxMDcyNDkwLCJleHAiOjE1MjEwNzYzOTAsImFpbyI6IjQyUmdZSEFXMlhlNDZmNm4vMmQ5KzRzNXZYY21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhLeE1BQUEiLCJ2ZXIiOiIxLjAifQ.OiUK0acnGhkWPr2gckXQVEKQe6uuSbUyco5QQXdjhPaqmgVM1twALLfcj65iCzh8pHn22nfd6IAdmT7RCJzDqkOhb_x148G6KIXUZvJ8MpsAbZRxJPQNxCMG-I8s3yVdhhI0H5Ov2MFPJgcyQc-b_lN-gjb9IU4frxS0aimmugYBhf7SQnvx5WVG-IyRP8DhxNBkHCxtNHJ3aPiMKVfNxJkDHLs9314unXUIBOioF1u7tdPdNTmFY9L78JQlpYKrmVsE8wog5SD7n4AGYfyub3gp_Nha5FA9AO7dWhgyqYeBi4fhgQ8VB4z8dq9xbgVats2LbaX12g22KYG7laUGYw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:11 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}}]}'} + headers: + cache-control: [private] + content-length: ['456'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:13 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:14 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzG5AWG9GU-t76xO6JVsjs7iIGEpf1pp1he0HW681Sj0veveuOxh349yH6YW6P4C08oUzRB_14cjnxnLw4L1I1WeM6-5uoJUNtq9FNiFwkTby8iiEEAOnbccm2HT0ZlNLIrq0rmT0Yhjly2SYWsnP2y0NT1lX7UkEtcip0DnlSdxQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076396","not_before":"1521072496","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ5NiwibmJmIjoxNTIxMDcyNDk2LCJleHAiOjE1MjEwNzYzOTYsImFpbyI6IjQyUmdZTGplSjhraWUyekgwU3EySHQ4TlcvOCtBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUkkzNUVBQUEiLCJ2ZXIiOiIxLjAifQ.JSIfaQL66vPu7BblqOyKT42V1iZiestkRH3qpJA4YmefY-bBKTgDjnXWNeLUVdYWzLQncJRSReWNbvOOoU4p5YTqp56SFKGcmjB6sDM4D-SUsJ660NjfU00aFSC3G-qtP9XKPanZrwdND80B3tyiWSVEO8TVQB5RSkACto9koGiDuZ005aoUUNiR67KuEJd_oM8aF18_IOKgb3SiaQjNjkcOBHTzBBUBeZSeEFDcC94upqO8wmwGTAnmoTMGlhbVbekKrKUTDhfEZ9-o3gJD-slpjysrY7WzQibUtK7rxLsaKbmhbwxBFM7SQwhajmT1JuMaCnlRvn-CBtBDgnG6Zw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:16 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + headers: + cache-control: [private] + content-length: ['951'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:17 GMT'] + etag: [00000002-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzpLGhZ79ua-UI-kpoSKNTZ_hcvf-WIaF2wN031S0lqpDc9f3X-XB7mWMEbsf4YHGrcJ0mQXouuT08jGBUEXuiZihbaufMjPACkygBvlo6-AOCYNj4__GRts88jcywSFcfF_W4VADwz3uq0IW4GTsKgPVz4MCF-g9UJ06beU3nLE8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076400","not_before":"1521072500","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUwMCwibmJmIjoxNTIxMDcyNTAwLCJleHAiOjE1MjEwNzY0MDAsImFpbyI6IjQyUmdZTENRbjlVbG5OU1d4LzVDczdKdzljVXVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhlaFlBQUEiLCJ2ZXIiOiIxLjAifQ.ug5FYH3kT1pDot3run5L7bD8zzYyfhQBHSAec0I3rvtfNCoEU3o3r5EOSwANWLOz3U4fUedvZ5grQ6FajANxWYApJXpThq8NGG-YShnLw_VZI2PZFY4Xy_wUJc-dBErnaAXpM4i1lTT0lLVl-OY9Pu_mBwJ2id0ZVGdrKD3Dyibrf3CEWjr262P3Hbr-stiLIayjHuDO45BCV1r_fQyszSsDuill2xJagM3wwMw_XxtTCUYY3KURApP-MC9ZrKLzR6yrdlT3rQzTdqKBaCbjc47et7bLXuPpqH8bDWZ4Rh-D7wJvQoNr_MrTz9KGbnCzv0IkAZ0nDU0in5F0cX-9ag"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:21 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-0999-2764f2bbd301", + "properties": {"zoneType": "Private"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + headers: + cache-control: [private] + content-length: ['529'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:22 GMT'] + etag: [00000003-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzmi0ePYr_Zc3hXPMoTsMaT6hcOMg9tZpzUO6BsjmIeZHW3KqTI5glCgoeDPvvgDx2VNgFcI1_iebUndCOdIi3NGUViA0rJ8ADZy8Pj5tXFnwJqZaaYse3YQzzygzBi2mlcQ9vWQz4oPCNx0zRIWrZosjqali4gmfkQEqEu477oTUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076406","not_before":"1521072506","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUwNiwibmJmIjoxNTIxMDcyNTA2LCJleHAiOjE1MjEwNzY0MDYsImFpbyI6IjQyUmdZRWhjMEdPczFGVzBYbG0vbjMxeDJKNGRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhSUmdBQUEiLCJ2ZXIiOiIxLjAifQ.LwBGG0TXrYscoiXWt0c1e7EKK7u-Kuw2OEnCgtO-vC94NvDWWUsEdnmdl11qL3836_KebmDxoG-qw-lcwkGK2GBvZlYofgx02n54gPJO1bnnAp-FJksHrSdC0R2Y5iCYhajkbznc3fC-TclV2PrSRmapY6_vJThO7hGJ62ifbHYrjVmtPo0FS335UyUd3gAOIkMVmjQcyd1G3y9k09cYv6uksNo4U1sfkad5gIuwvmPxe9-Dyq9t0WLbUsHr3W0rY3LpLasm3CrjkOJsUXdU-BJNdxMwQw_Y5JAd1lHEp4PSWlmiqw2VGiZ36w19Ht5frZgqhDCNdnA3LlDOibYMSg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:26 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + headers: + cache-control: [private] + content-length: ['529'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:28 GMT'] + etag: [00000003-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzS8wkrHSp10KrJOeP8bLmrT2qmEL0VqEWCo9YykbPUgF-QjILB358dIKffNQ7m65RC9AwJa2cVDrgH0Etp409Ug07sIq_Taxv2jYzH6vU2PkvJNSvAM6TjV9qjfD0QqcG-DMDsRPVYHYXPw-AnTEiRIS1h_7164KyVsX45Sp2qMIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076411","not_before":"1521072511","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUxMSwibmJmIjoxNTIxMDcyNTExLCJleHAiOjE1MjEwNzY0MTEsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZveDBBQUEiLCJ2ZXIiOiIxLjAifQ.PZgHowiLwtm4V38ixQaTX5IiuajdP7QKNVXA7s0cQE4LEDfIqULCj9fwLPjg9RVbA4pMPWD77X-NlPg-41rm7bY1zDRWm0MW7Qa9w2JC63AxSdhUhMuVoY4YhJ4HAIQu7PbuunWVoQjbcDG59zFt9CCFngza9kGIZFgsLDBMc-J1-1BeO6MKA7CJcaHtqSDKD5-S1Hpm2jm9Rd0nwS316oAd3clQHZlaeWKxW7HeVKGV35vulhw-d-gJWOByDouZcxQ-GjNmLUjAxfRLRsP1Jeg38-J33WPc3yddo6YXZYBgmnCjicTKxNzdzmN0HQSx6BWK9Z1PRX2UI4W_3wINxw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:31 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-0999-2764f2bbd301", + "properties": {"zoneType": "Private", "registrationVirtualNetworks": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], + "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] + Connection: [keep-alive] + Content-Length: ['597'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + headers: + cache-control: [private] + content-length: ['951'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:37 GMT'] + etag: [00000004-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:39 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzx5fmo2wiG5QuBqEwvd6NuHFw1e5npC9STOArXxDohDSI-f1hfTvHDxFnX7YDuOJdxQlelAeX5AjS9ieePdLgpZIJ_SqrUlYdlolMVH8rmIy7cvgYHofB6QOS2HfYCpUEqIJiFMiezyco2UjJuUYkfysth7lzMhO-oFfGp9ZslnQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076420","not_before":"1521072520","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUyMCwibmJmIjoxNTIxMDcyNTIwLCJleHAiOjE1MjEwNzY0MjAsImFpbyI6IjQyUmdZR2cyTzZpdzlNTWRtMHNaZDdsTUQvWHhBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh0UnNBQUEiLCJ2ZXIiOiIxLjAifQ.d-bZGtRfK7xZIYLXhLe47IG8Z4jgnHf5PziBTFZ3F4Qb7r0EQ38VuzAqyq5bZ_kKaA6QCndEFesBrMjVyePK5Z2CCKAjHMiy5T2Jyuh0O2PAHchR7lSTrT8xzUDhKLXgyxyttPobVu7K2oAMvhDa3MmKopzIqhqq_WzUTvtToHFxJKi_A_maGEmbgX0aSlQeD55oIf68aYfn67gbjbke3kI-5wKwOzOiFdo89tHwTsgDkAJopZgRGZBnL5QvG9ZTrbyRQEuLl64L4ctE1cu1cjoMlnvISlMSVxE5Q6woii09swsL6ZbbmnlQaFyDZ1G7ZGod7SwZXBpdNz753akl5Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:39 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}}'} + headers: + cache-control: [private] + content-length: ['444'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:41 GMT'] + etag: [00000004-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:42 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdfu460WXQe7Ck_gNlZOfTR-mI0TG3Q1csfe5kb5gna1CaavDfK0eL0UewFHvnnauoMOQ9bdas-t7QKK9Gsmy8nlWh-DK0Wmo_CHGOzoiRzbNUbsCstzehlF7lEGAdpviPP07T1GYnBr6SvLynE6yCXs6wk7HaYsSYxiPagdy4FEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076424","not_before":"1521072524","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUyNCwibmJmIjoxNTIxMDcyNTI0LCJleHAiOjE1MjEwNzY0MjQsImFpbyI6IjQyUmdZUGdxbjZ5VnRuUDY4N3RHZnoyY0dEN2NBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6ImRudlZRelQ0X2tpZEF5aVZPeWdBQUEiLCJ2ZXIiOiIxLjAifQ.BPMflqVGHKN0T4x7_b4AyFTVwxVsPuvbjyIZ5NTmdSQ4PqlHPsxlKQWWDclABepe9cRzTqpA_UDsyW9F-le6m01oT_uTRg57t0J37Z8Qtbtkpx2C3KQ54rLOe7c7UmnVvCifLTLPrQlqqOZz6KBYPyhlZvs2Aw5umYnx2cg6la-3eJO2zQwB3Ta2vrIDghxyki6_4MPzMprUlP5o1tmjhljECmeJbL6eWRv81XQf1ZAR-0AXy0llaJWUNbRUHjkPbRg7VLbDs4AGK7MKsJkuLULj5IOa9EBWZdR2Bx3hmNqApG5YKte4mtgPHhq7ccfNYjZNHSdE3UlcUAjbfmeIRg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:44 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4b05b98e-fc1a-4e1d-93b6-74a4726496b1","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['399'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:54 GMT'] + etag: [4b05b98e-fc1a-4e1d-93b6-74a4726496b1] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:55 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzvx_BdkaX5s7jLce7q-0Fa-HdL4rwX2hFBa0353xnCv4BMDBTE0Ovmzv5ljuJ9WIhAuWd-13KfWdf__S4yRu8BHNBU0t-u3_U3javcbqJp-y835musbO-edGwJopyV2obLQUOypvIZRGP_Ljd3xJVz2wkBhHAlFmzP2am5-jywHIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076437","not_before":"1521072537","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUzNywibmJmIjoxNTIxMDcyNTM3LCJleHAiOjE1MjEwNzY0MzcsImFpbyI6IjQyUmdZREFJUzF0WWU3YlhsdU9sNUV2YmJUWVBBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUkloNUlBQUEiLCJ2ZXIiOiIxLjAifQ.I2lhK94CqDD83jtgD0zAC8s9ZDy7KC44b_fxAxQ_P77z_GcaKD9W--PueZn1X6OhyicPDyz9yLk0L0Tg2QT3Qv3EFy7CZaovRBcFZoym4ZAGPz1A2oqsM3GHEg_vOH4f4_78aIIbKiMWG64Hnj7Djnwacw0LjLCHXK_tBs5draw1SL8nUWfz4NaXMeiB4xA-uhE9btphdd0wom017EwKqAEo8njTv9Be9XsCnmEXfgYyXhKc4_9tFb0FTBphx9t02ZvwxQUOYTzzAKAt9Vf8UOa6MIyluP2ag7FgMgwEPIaOjI00v8mGFcAgnZxYje_Ox8wF7Df_uhFvTIIA7bWGJw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:57 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4b05b98e-fc1a-4e1d-93b6-74a4726496b1","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['399'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:57 GMT'] + etag: [4b05b98e-fc1a-4e1d-93b6-74a4726496b1] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:13:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzuYI-Y7PxsuXhtZ8DX8t_rAKgsuPRF2quyAI4EOmPCaRo1lIZMAd2iK6zQJCYs8ceKcHTbdGSQt7FFmCnMt4MBZ-4QNIEgfyiMnYYajS9pxNbArWk52h5khwd_Kxw6s13xSQlPrEA3DcVTZO4GHyiskUB_x12Eo59h-b1YoUF0mEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076441","not_before":"1521072541","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU0MSwibmJmIjoxNTIxMDcyNTQxLCJleHAiOjE1MjEwNzY0NDEsImFpbyI6IjQyUmdZUGhsOTY3Qi8xVDVoenVWUGVwTkhTRXZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh2Q0FBQUEiLCJ2ZXIiOiIxLjAifQ.iVa2YHfDVDKaVqw30po5ipunW2o9TqIsZoyDABgzq0GzVx4zX21odj2r3RF0KZjtiZAIgqm81xtC6x6iuuX0elyCj9QjdDrPwzpkOuuPTKC-s4JHUnt_S0c_FI8i-2GW_chgYmWlTv1XcG1Bsu4kApVMBx0kATMcrgjS_tXTqQd5FHWMfu3lfwVREPvfXtoO87Rlf6p_hJVhGfUa510S-xfrtecwMLBjVhhzAHVy2DMP137KAP3-Jwb75cLRsoSK4Y61pDLge5AYfabvysFJm4rnfydl_ZAbHthrg8SMw-fWJHrQQnXh_9SGWR5natPNjwLaxf9qW-Z-amhBZSZIUQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:00 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "4b05b98e-fc1a-4e1d-93b6-74a4726496b1", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"826fd72e-d887-4142-bf03-f5b08762a08a","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + headers: + cache-control: [private] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:02 GMT'] + etag: [826fd72e-d887-4142-bf03-f5b08762a08a] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzrJLbrNc9fQWRCEScQpsvV8gB53_JplnkNO0k_0SDydGtzOEWDmR7uVklvDvSd8OtbEKg-c3wIgah23NMsN_npu4nUp_Cym0u7sIePeDSviOLNHv6AykEdVKttrXgGCun0_kNfKFYNYTUAOvxyZTLWlKMlY15mHXIDEr4vSM_RdQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076445","not_before":"1521072545","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU0NSwibmJmIjoxNTIxMDcyNTQ1LCJleHAiOjE1MjEwNzY0NDUsImFpbyI6IjQyUmdZS2krNkY4cWR1Mm9VSlhCMTJlK2I2WTRBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZGeVFBQUEiLCJ2ZXIiOiIxLjAifQ.NQqEGacVE1n9hcOHtKvqub4R3o2Oiz6b_76VeXrZXP9aK_Qmm85tKKHXP92zacN5B6jL6F7wBLH6lJmeXPnrHq54XU5Ri395xKciD-vdVD8VJYqPHo1GKIkTtd97lWuNzbXTVHPhX2fyeDJYJ1_3QrfSJH9kOm2VogJ6tKI6c90z5iRdzWkG4oseWMGs4ALoWllvSzdS-x7LmuxhPSpABbSnb_AO_H2oCFNXWVGrF-3TfelN0pBITI_sTdeP2faMIeMbgdjaWIVLiacVt5SORmdCWkOLmJLAIOHl1h4lUJjAOt0_KUVrBf0Hm85DZTncHSJN4tJaVOUEsu5NLcGrYw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:04 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['229'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:06 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzampF85RADTM8abCsci5WZZT6h7NL6SDdrO6uGFcv4udqFQogjj3aEIWM7XaFg4Ty00zhy387IdY2R9Vr3rX-NCE4vHF39Lw7ORwwC7O7GnfBshBjJWBhUwrBm9XyOFhy_0OBp4exvzwT_pElJLCVeb51uRygo_AoGwFZaD3Wd3AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076449","not_before":"1521072549","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU0OSwibmJmIjoxNTIxMDcyNTQ5LCJleHAiOjE1MjEwNzY0NDksImFpbyI6IjQyUmdZTENRbjlVbG5OU1d4LzVDczdKdzljVXVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhNeU1BQUEiLCJ2ZXIiOiIxLjAifQ.r4Jp4gsgYCzuGkbgSYI8XuaYyoo3QTOJ5FME2XxzY4cBswxTiHdZTr5tVtEopwbm1RUG55IkKf2MVzhZ9mlWy5mZ_B0EZfK81JXZNCqY9AI-oljLtbeG4Y6BNiJUcgilDLzWroj6e8X7399rRtocBo436ZU8X5VGdKbiLCr7Kyx5xTXPmi8b9zDNh7soj-IQAnCm9s0SdF14x8nMSfRdqIAhptK1KpPFZzz8nO6CCiIH-6sr1wwOZ3hgSLp59tqtnUN81cMmDv8MOOSHCk87--zcnwqNr9_tbCo-DxVJUttjUL0kndO5CoizM0-7fFQ6r20Dz4zSrjIjdPx5uol7cA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:09 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"9fce67d7-20fc-4e60-89d4-e6a802e64ee0","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + headers: + cache-control: [private] + content-length: ['435'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:11 GMT'] + etag: [9fce67d7-20fc-4e60-89d4-e6a802e64ee0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:12 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9JFrEh4AME4Vc-zUCCXmfLp3LY5wO_fw8l4LwuZdCEgcHdiL7zelvOEe4uHutXy3oItAWJ3c8nSWF2yxlWsOy9c0xUq0zU3Vp-Gg0k2oYhqmG0fy_64aA1SrZWZqLnumx93xkHTMQtqYPLOt0HMXIAag4RMcCeKg3BnYZrqGgLwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076454","not_before":"1521072554","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU1NCwibmJmIjoxNTIxMDcyNTU0LCJleHAiOjE1MjEwNzY0NTQsImFpbyI6IjQyUmdZSGdmNFhwWTZmRHh2Sm5wZTZZL3VMRzVGUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZBQ1lBQUEiLCJ2ZXIiOiIxLjAifQ.Mo4nAB2TScsyjSWkFMj92R6lNKF72_u-M82tN2Fm7TLQISf3badoA32grSt8Tjve88kOIB4IMg_EqdgwpJbAz5M0KU0XMUtmNQhJEW9bRrHhptV6JtS6hUIlIJ_jgkPIaAX_Q5Z0WCJLjPnG9sV8jPILjcLjotlZ2-5eP3EeSBge_ugwCrCKjfM-7hnOnGxfQ9cWUyEW8SkIRZpB_hbYjnpb5iYru6x___d4N8Tl4lBucp6kzYBdmo5Ayj5iBc14uHYu-GlC9veGDtZNS1u0NM-_uL1X3zNVevvYkfWhP74z6xQqBCDEan37ihDrShuLVcebiQjy0T4c_FmMj9LKaw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9851145b-b878-488e-bcc6-170c7134bba6","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['417'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:23 GMT'] + etag: [9851145b-b878-488e-bcc6-170c7134bba6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:23 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYMVOt1NoivBeQilnmkrMucWHxCwRgWk9Ogd6vLnx5oGU4huxhm73rewQdgbMpj3hWHmg-le3cQCuwnsJbw4ytPspiHPg-nxVL7JtGiZrrJjkGw7sxNhdmjSlYUsP6W35t7bUrtjvcp7gV3w09dZDQgvCAT7icVKG41ttcH_Vz34gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076465","not_before":"1521072565","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU2NSwibmJmIjoxNTIxMDcyNTY1LCJleHAiOjE1MjEwNzY0NjUsImFpbyI6IjQyUmdZTGhTdjYrLzJ2L0E5OFJJYm92b0xaeXpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZ5aWNBQUEiLCJ2ZXIiOiIxLjAifQ.oqRUAhQxjEv0oO2p9XRGyh7TTnNcyKCKsDWh53hoKti9iwILR2nbCFFJkoJB6fyhO5BjPJYbkv5xzKY9G6YoLY_NErCHNV2EkxH6qlnkfriaWls0vSDTakyD5IxYLKGWCvhLf7CDuiJxf1uN4LBEIcnLZZsjank4FfTHa7MqZSrLOMOWWZqcCn_4vxhYarPkMv23rxTwF2joSSO-LDqb5XDhTLWm6MK1iQ-dZGdz1MxXeSBgpgUXkfOKI9vewJ9qpN74CnNfY-hyYJcC8V419Qy1dFHgrwa7hJ3-EaBdGrvjectvZDjQfG_wPJPeOmVDUm2fFWSp1ddF3HcRhSaL4w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:25 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9851145b-b878-488e-bcc6-170c7134bba6","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} + headers: + cache-control: [private] + content-length: ['417'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:27 GMT'] + etag: [9851145b-b878-488e-bcc6-170c7134bba6] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:26 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHztthhtQUarOxOqSIR32EvfXKbr643LojqrrnLB3nZHJnMtjmG66ED5xQndwf0FNK9vZqarhoYyuEGq-MblgKfpqr6_QBEZ5m-3Nz4tMN3UfHwVum8buhY7ObGXOKmBvN3a2cr39jIOzg7WfHBFG7MsMKFxTKMUYlQivsdpl9bZqggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076470","not_before":"1521072570","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU3MCwibmJmIjoxNTIxMDcyNTcwLCJleHAiOjE1MjEwNzY0NzAsImFpbyI6IjQyUmdZTWhlejJHZU42TW4vRWFlMXN2VmJwcHRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtFQUFBQUEiLCJ2ZXIiOiIxLjAifQ.CFJuXmmMw5p3lZRNyxqqTtt4glvxBJamdhe0MZwgWBEZx-ggnhAC0So6J5B8uOlUFxxLjNF9xWWenTz7vIyYMh2oq2SFA8CSHSK9utem3n5-f0GqNNGVXVCzLrGX3uojhKA01EbCrcJIbqmtCLxmoHnkrG2ol8gokABOHHhZAwL0C_gGAZ_sJz5_mTSL50jP1CWzllD_xydj7_kHjfwcFw3qySsCwE_4gfYa6GZWLjeLEq_bEQLwVy4LiT917nlPyQESKdMTAIo3Fze8gb_4Z2N5UDdVViIE1mr9UA4tkeOX9ruQf1bdjYv4YOTzEvwzgM6khwnE9JjAX4OcQqHp0Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:30 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "9851145b-b878-488e-bcc6-170c7134bba6", "properties": {"TTL": + 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Length: ['135'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1abadcfa-54fd-4473-b821-9b1f255873f0","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + headers: + cache-control: [private] + content-length: ['455'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:31 GMT'] + etag: [1abadcfa-54fd-4473-b821-9b1f255873f0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzlEfxwN--EyO3JXWcP4T9KQ9X9G8PNomyBIQ9ByGqvukmJH2bXZDvTr7vJL2FFfTqsUD3a2KtfyfEiAf7Cv9QV_9nTnTYqUTKsHZq28LIQhwH83rlO6HaqtiPMDFAJYLddgnVOjBcEeTbOsP4GcOWNWFog3y63wTAUhjraJ9PhuIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076474","not_before":"1521072574","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU3NCwibmJmIjoxNTIxMDcyNTc0LCJleHAiOjE1MjEwNzY0NzQsImFpbyI6IjQyUmdZSkM3eVh4MFVzN3EwQlh6ejl4OVdwaTVFUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGFkakVBQUEiLCJ2ZXIiOiIxLjAifQ.UfHnqYpJtcj3Q4HVcuN8rePnVqL-8rIhOqyyvX4rTNqv8ifgClgM9tHvXMcGln3EN5VI0Ypq6xTnDFnhA1pt8IDLXSUvDEygI9t4bLlVYCLe7pd7xkpZQbImdEMRTEeYrFRDeLbOK9fwSYHmh4-LLPYO8dhKh1xiXq66gwWeoFqUUJKsqrcbtFruLma5g6Rb1Z7n7TAOQ0d-A9_iof0vDqw1hx3M9mdJUYn77aUXjElpZmhVWoDmYjCHxpkafXrivgo7FMFQDuidq1CW_ymrB85ezYJA_YPRXj_OdnVvosCqqgX7_lj21pTXCBRWul-fUr1S9jiMrYUIlphm14s7Hg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:35 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['232'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:36 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzPIUmEwp4oRDkGnv8O-f3FS86JH7APJhlf4Pvxt7QOigAzFkV7C3h5XNQYZWFZbcJvMK7uzYMjw6R0bMutzf_AoYxXJi69Vg8GdgV9LCmkWjmxGB85V1E1I24UPTGjHLp38fdEwo0SxULQoKX1iTDbDINQmzJtcPBCG9hCs1wa2wgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076479","not_before":"1521072579","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU3OSwibmJmIjoxNTIxMDcyNTc5LCJleHAiOjE1MjEwNzY0NzksImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh0U2dBQUEiLCJ2ZXIiOiIxLjAifQ.d_y0KQ2_qhUbDUHKqjFSycegx-UlwpZ6QrRpBAZQkTescE4IHfrcvwp-cvOO-qFKWhydoMITnbQD_NyHUQGp0rlSw0k0rFT6gMICk9MDYOnwkyitQ_Ns3KW7hGH8yxufnVIvO_QTh7YCg9KAeTUHk1LGSipDDV7ydSIHPgacDG4vb4YJQ_r7SVcqUGrDqKUSuUUxOSqMnELKsizOA9NInEFjTxuiiIbX9lHFRu-0PZ7BLNLzo5XJgzHxYGcvE36kMrnRSN-Xp0QtHBSFYmYv_9slwIdRJOLAhlN7SyQgn-kw_dZQFocp29zYqrkmX-j0AWMj8VwSyFGsUhon6WdGbw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:39 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] + Connection: [keep-alive] + Content-Length: ['87'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1875dfe0-e68b-401c-9471-86f9de7aab68","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + headers: + cache-control: [private] + content-length: ['464'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:41 GMT'] + etag: [1875dfe0-e68b-401c-9471-86f9de7aab68] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:42 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzauHV3dHAv9sq5Xw0lGJ1IvIGP4VbRoS-NmS7evlLSFmy71aFwlUkOhVCfYmAiuW2wRIOV6vJF4x05O04KF07BvMFyg7uKPIVZ4xsCweXJMbfVmtOp9W40oM3bRH3Pms9mI2f7Liy6IaK4nM6-aeCM_u-31pu7v_vJEtihzHYQmAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076484","not_before":"1521072584","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU4NCwibmJmIjoxNTIxMDcyNTg0LCJleHAiOjE1MjEwNzY0ODQsImFpbyI6IjQyUmdZSGdkekg1UC9mQW4xNVNVQlk5T2M5eitEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZ1Q2tBQUEiLCJ2ZXIiOiIxLjAifQ.egSGqF_JcBCp7dOjKc30Hyy8pNNa0Uj13Hdr7ew-IHDU3HPT1S92-oM5Ab3UG4gz6v3VZGWiUYMQBqiu8z6ZfEx6i675i7onKS7_Z0ku3pDBwLEwPQGH19qsrvtLEQ7Fyy4cklSRk20PPc_Awf6IVjM9XsAHgPXq3-5ADtyGPR1-iHQT4IUfzNv4r6UhApOs6wS0h5Taf9P8rQCnj12V3PhF0TVI2YLnu8G78BXFPCRGxaood_dS9vZthtBrs4TtBo2A4cJp-s2CumnQhHK170gOO5CB4ozH7FiqjFel3txpuIsJNQsGW1jDCwpM9daW-nGRIcTEaUed9Xix38BlOQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"ce7129f1-1aeb-42bb-88a8-1ad3b04cc066","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:45 GMT'] + etag: [ce7129f1-1aeb-42bb-88a8-1ad3b04cc066] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYmt1d_sJOHr1lXUNBLnwg2lw_Nu4is03zdXPlqBNZ2JwddMH-dT9RNeBeMrSXDA4BCAmd-sgMPiNTxIVu0RnFtQ0GQeO6oPsczYAOGLFeM3mDqnL64m58tIKWmf9tXPbMufzhh5mHNPtKP4DB2XVXwbje3pCMulE4K0MdRtCskEgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076488","not_before":"1521072588","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU4OCwibmJmIjoxNTIxMDcyNTg4LCJleHAiOjE1MjEwNzY0ODgsImFpbyI6IjQyUmdZRml0SU5VOFVYN2R0cllDVmg4T3JtNVBBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZZaW9BQUEiLCJ2ZXIiOiIxLjAifQ.Co4_zXDQa24vYspsifip5KzRvnFZ217NYd9c_fkmlxWs8z4y8xZw8KyxXmVY_CKmPlUwDmaJyy22f8bbI7kdeuniHYO1vdLpUfkPfajjzJHB0XhmnH7u4bxZUR-W_98zRMWVrLRFe3GSLwdAc8CIld6iYja0WAWfZzdF8jlv8uBFwwJv7uDcOHoLsWD7ga6t_nGLRjQWZSWdd54ROwtf8ytlmamjQWHGxIqAt9dp_n6nLHNUqe4mVXwXMhMF2wll95WB7rKYPxJlwnSVXEOiNApkkBsj0vv6StYeA3Jl0XSR07t_vKsaGvDD8vD5TgD4TZL5c8n133UHbqRoPxfx8A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:48 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"ce7129f1-1aeb-42bb-88a8-1ad3b04cc066","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:50 GMT'] + etag: [ce7129f1-1aeb-42bb-88a8-1ad3b04cc066] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:51 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUUygtNJd0_pbqdreiqmiPALbAYeINAvY1k3T2PMUFo24-cEucug2tKq93VQbOlyrtoUgNJE6ScdZJ_d7qHEYFP1EObv5DIxNeisc0wMGlKdaYlWUqECdz8fa81uQJa4TlsA4F_yp2i1s2t-FOyuz5XqQH6moLo-zrJvoSfIKpucgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076493","not_before":"1521072593","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU5MywibmJmIjoxNTIxMDcyNTkzLCJleHAiOjE1MjEwNzY0OTMsImFpbyI6IjQyUmdZR0ExTzdwQzAvbmpCKzJLckx6T2xVbHhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklUcE1BQUEiLCJ2ZXIiOiIxLjAifQ.Zs15cCDJiiJfRHnWlIRrPekVycHxZBUK7NGXmcPX3DNZrbLH6JR4j-hwKVOlm0-BiNOkawnNHJLa4MhSVnAk734RMtGt0HdHQCalYtJUr98DiYYbIIKfXFTYzbmxGzupbJrE3rXzF675n4SIGpmdPQdPwHb7gNOkzaEoD54BZF7Ayz8yajwVah6dHlRiR0CDpEycwVzvoezMybSzb3xCF1ImAzmuEzT1Em0g1sGn3NKIKhpM1GYrPjyz3_bjEZ4ad8p3JhtzQ4mBPKUwjr0eA4m1S0egYkAWVO318siORajZso2Ewkpjrz9rr74ubgCY9jHqWnH22Rildrruaf1lkg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:53 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "ce7129f1-1aeb-42bb-88a8-1ad3b04cc066", "properties": {"TTL": + 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Length: ['142'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"8ea96a7a-e981-47fe-bc8e-f383a8824b19","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} + headers: + cache-control: [private] + content-length: ['453'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:55 GMT'] + etag: [8ea96a7a-e981-47fe-bc8e-f383a8824b19] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:55 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzcZWiPcOa98OVFdi2LcPd8srJOjfZc_viLzrZHiXIhOQarS0Yz8ZocCB1P9t6Wt2mVOEUMZUOaobdP9frxU0ZDfmEx8hHqaAFlMzXd8u4lCvYnrRAvI0Ij8D3jGSmCNtJS3Fm_lb4o8acqoV-GEc3C-hhoO2v-9AeItDFDd1juRsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076497","not_before":"1521072597","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU5NywibmJmIjoxNTIxMDcyNTk3LCJleHAiOjE1MjEwNzY0OTcsImFpbyI6IjQyUmdZR0RMcWp3a1hxR1Z6dU4wL1BNWkU2TXVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZteXNBQUEiLCJ2ZXIiOiIxLjAifQ.wDsTKavXlvc5lDugT1XVhebRatT75peW9nnb8EiX80Xr3m7Fl2HyARKtDOI08bHJmpnRWcVumu9Wo9qkgsG4ZQuzTUyksRCwFQ2ah104QXlkvalA9eUH0roqhLDBOMceJJUb26SKqTsURAZSDGG_T2eGOlIp3e4H0V2tRTiGQxEgDPcz1SCUwT27f0RdrAE6ApGRKNRk0RpxE5CjtxkhAkZaKNs5ExCV8PazCy_vVn48bDCLUSMPZQEHuGhtEOgGhz-7RN2JMa54GPCgeVLY2vK9zI9ukR_vU6-9HpVqIbebKPtK3rzb95FPlPj83BEnj_5HNw54lZ99HZ2wu9nt3g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:56 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:58 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:14:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz8VYedBtU1k16JuEyPemFWikJNRsfRMgS2WgadOEG67wU4MqB8IeVEYF7yiz3WyKpHBFOKbv2cpmI1lVPQa8prlzlPr4IfVkVT9OI5YE1JyKk7ItMVFP9NvST2U3zgOYfCkMv81a1mL23muYw2w8_uvTNT-_MftNHLmZ6EHp3IrYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076501","not_before":"1521072601","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYwMSwibmJmIjoxNTIxMDcyNjAxLCJleHAiOjE1MjEwNzY1MDEsImFpbyI6IjQyUmdZRkM3MW1GdjM1S25YOUhxa3ZPcGx1c0JBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlgzQ3dBQUEiLCJ2ZXIiOiIxLjAifQ.gIivIq5Y3_x3yTRCVkhY1OODGyMDvhIlW4JAyHRcYLmkX9po7vMWQZq9M99tZyXgRnfn4hwjhIDb6z0AWsyT12sP2lF48vgHEN54ISmz-G29yQk7k5Zgb_4iWzXM3XAKkeyCO6CjeShJ1SftGBfYYx3TTQNo9XpDQ2n-AZBkA1kLsUhiXUA9SzcZJU0Ftcci4Gwm43OyB90gDudRDm1cmlmVwJTBFykZwWuTWp2RwYwxGmZxXgEte330eBiu0RkGgeP3P9sKNwdBd3vdSI7L4_nKYSUWQ2wV9QUjZVMycuo5rsYfqZEKQeHVucUgy5eM15seQ_vIhkMHHaNM8rGH5A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:02 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", + "value": "my value"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] + Connection: [keep-alive] + Content-Length: ['94'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"5463f764-5345-4439-a6f5-b185055da468","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} + headers: + cache-control: [private] + content-length: ['462'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:02 GMT'] + etag: [5463f764-5345-4439-a6f5-b185055da468] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz0iF7_7BLE4zkXiLKGIHMz4KC8_yOdwvn9MLiQjNG9PY9ZL1KO6OdYALv_IBr29oOBAMgWNCfJhUUQ8nUkmy1JTokEuRfWRRNdtJiMm-XiubYuxdv7hfMHMZrUjxGfUrG9eo86d05d4DbTjPpoExuixhiJnE4KtkCOhtZtq7skMwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076506","not_before":"1521072606","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYwNiwibmJmIjoxNTIxMDcyNjA2LCJleHAiOjE1MjEwNzY1MDYsImFpbyI6IjQyUmdZSkJ5RTJMaFhicXcrL1ZpZm45RzFvVWhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZUQzBBQUEiLCJ2ZXIiOiIxLjAifQ.YZoxKF7JTCsADMq-ZNERHXBvupoBd2EC8u8UhyIRMOwvuI5C0jAeWCkAFNXmG6bJst2MAaXqcc0DYgQX9JCeapimbif-l81hm05jsqoi5TTgBr2xNuNmd6l_ea_rYYggPOTRK1t3ZyHf9gEXgn8wOprsJljSHxSqLu1Of8vMXzZAR2EJBw5DmtnwG2c_DU5xCfoqMByzVb7kSOdeMw8BGEM2Pw0I66LrfZt3ZMruQxlixtAP0CwfWe8JjkVx8eQdDazapAC3_qUercEZ3aPecttjYDohXuc9L1YtxpvomByR4Oe89XalE63dWmFbKjBg12mZMxfUoL8UIdSlxugNIQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:06 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9775812-1d14-493f-ab02-f66b25080cfb","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} + headers: + cache-control: [private] + content-length: ['405'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:08 GMT'] + etag: [a9775812-1d14-493f-ab02-f66b25080cfb] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:09 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6TR4TOS_TVooEJpUjdeqw60ZCz5pApCLWAhaZLnyRuGuy1jkQTGCeQQqKakWTEZ2jqX4e2988AJ7eiC4UTViWmaTCKoGhFYE4I4mgfeH0oOCUoLaR8a2VWgk1oTrB-RCMACaBsjXLe6PeiPb_Qwymeb13zZRuXMIsgt_tF4NnR8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076511","not_before":"1521072611","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYxMSwibmJmIjoxNTIxMDcyNjExLCJleHAiOjE1MjEwNzY1MTEsImFpbyI6IjQyUmdZREJaRmZxMDFLTG1EOHZ1WHhjZjFkVDZBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkY4eTBBQUEiLCJ2ZXIiOiIxLjAifQ.gEyrX4-n1LOlxSN_2VOayJg1TGFO4sjlBoBVXyyD_Y_RNP7u2RPzdLfz5hwBtyF3Vk-G9RqJRk2EDUAdPp_DllKZf1-ISjXTrp6euIs8MZxSQniOoWegMCdYf5yqco_SO9OGWLhS81e9OO7DrgwnO5pUwaJqXVXx3J-An6Y0vW7gSpyAOCoG9N9NM7C5yZOgWaJwZXxti-BEH4SRZSGdQ3WLGkJLkqZ_WI7nzqlEdgubAhsNlMDfRX974ztonV9v51IPXlp8jwHgxN7r8N1DNV7Y0vzN0kp1Cb9RNVwKQST6rskthQeurjf5XyKQlPrJ5ishJYH-jQhXEtXHNFe4Ow"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:11 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9775812-1d14-493f-ab02-f66b25080cfb","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} + headers: + cache-control: [private] + content-length: ['405'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:12 GMT'] + etag: [a9775812-1d14-493f-ab02-f66b25080cfb] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:13 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz4_K60BZygJqMokiHfafdDRlM3sJ_yK0zkkX6CWwKGs200NXEXslZbbFgE6wLj0kNXXYH47LY_zv-p_bz9yhE4nv2WCAjY-PRSfchpa1jlyLjfwba-mhg4cooBWNp8t4Dl_yR6VYyatUdIUfdKkHXVaCROuCLGXBG66chfz1N_X4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076515","not_before":"1521072615","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYxNSwibmJmIjoxNTIxMDcyNjE1LCJleHAiOjE1MjEwNzY1MTUsImFpbyI6IjQyUmdZUGhwT3RHcU5lSFhwQU0zdi9MY25oNnBEQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhIakFBQUEiLCJ2ZXIiOiIxLjAifQ.pslym-iTlsrS6n2jXm1Lgr_X0Kdy_CuqB-qtF6qw8SxONcvQUS87475-c_XKpVzNmIELc8VULisCP9MmZ7Z-cnjFtsKf5-0PkBz8E1uqV3qgHAiVRo6JvyclW7ZB3JbO5HGgMC8I0TbGjhnzevh4FQgedEnPYZjhP6LRXyct0s-5l_ZQSiDUazXOt12uGvrJvx1jmlvRFsQmGj2f6k0b0lnmSCeKStupHcYRP1hH9RB078_D_7Rhm9ZL1_81qIwzeK4AW8GfLiwnmcbW3sRj8iB8QBpUdS4_E9FEFHFkZuLvAB1jV2DSumA87GMOjK2lglPxX3j5sCIzXJs3tRfNyA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:15 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "a9775812-1d14-493f-ab02-f66b25080cfb", "properties": {"TTL": + 3600, "CNAMERecord": {"cname": "mycname"}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Length: ['114'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5179e3be-9b4b-45e9-a0c5-1515620d1428","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + headers: + cache-control: [private] + content-length: ['439'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:16 GMT'] + etag: [5179e3be-9b4b-45e9-a0c5-1515620d1428] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:18 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzLC2orwH0bdOy07UJsYPVB0oyRbHkI1Dw-xyrl5M0q0TR_sPOhy9cS81Uozcw2V5NyLtfEOOqmYGx3197lfD8QUPCS0KQzoqjjeYzXU-GRU8BqG2oOoTHgDKPQUdQczs_NXn11qSOwIHA556K6Jvvlnm5Y_xCrBZH3YmYXjDcrlogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076519","not_before":"1521072619","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYxOSwibmJmIjoxNTIxMDcyNjE5LCJleHAiOjE1MjEwNzY1MTksImFpbyI6IjQyUmdZUGplZUs5dFNVRHloT3FsNS9UU3YyOElBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldsd1lBQUEiLCJ2ZXIiOiIxLjAifQ.QE5mghkTA5z8P-Okf4957GhsJVrtUo4WekDmiS-_oM3NULHoTkZ-_ph8qSOIHWNgEhbjephx39EHoevqavwKYKPdKbNDT9LxKp2Gxt5QH0hMbvROCJbxwFsrHPbMv3oBPyn9mQhc8EcKE1PEL3fosUDhO9W_sYeI8nAkNwJ63U9TFjpgxKSz0k6IjF_r5EplzxGG7qMEZeU019uSK5xGm8GNboGvIvD4li_BHJ_PfAJP0o50kMxP9u8-e4dDfc2f6bFa-7wuHazJTEZUvNAoOtu3QAhkmOEVqKeaKMi5T8C367z2s2Gj74vraVot5iKXjrUmh2cnP7QhTLj4wGLgIg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:19 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['233'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:23 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzWWXNeRw2nYi6IHD1YhY21T_5dzqUGlqXXu_2mrULGGnXWYsZBMjSgxkHtC2jc2lmIzKc5mQPeTPoda1ZSyFHKQY7qwlkSUjP-BcEa4SaJyOyACZTV4H9qJ36FoEs-EgaVNyxZqLG35h1zadfqEWzao-RPYqQ48EPl1pQaHaKoIggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076526","not_before":"1521072626","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYyNiwibmJmIjoxNTIxMDcyNjI2LCJleHAiOjE1MjEwNzY1MjYsImFpbyI6IjQyUmdZRGkyemt2VGE4UEpsLzNpZjhVOU9mNnlBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh6aklBQUEiLCJ2ZXIiOiIxLjAifQ.MhPJMgLPJyr6WAe-5t3V6nSZ0WD2Uxp9k10IW5QeuHmA29-mTqAzN9f-EKsHInPl_Axd7QMA0NQsKiaMnPg-9lmapxTJNNLxn4fPpU4SwcxsYh7Ou4yTTiDi0F1qob-R_YxdjPea_yf5GS6dAF9KKUZhOCf3qvnJ7OF3OLoTIo-Ivu737kQTicomo6scjgpUOf16Ao48X0GkPYm8sk0YQQE8LYxV5NaY7BcMEUWgZYGjwZ6zcyoXxlpy6NZxv7KNAmU4McENtSyT5ZwnPWr7XUHYaZQVmOxCzxySpe6qDNuJ9KHSAxd6FSL7pKvY2rAKAZd9Sf3lHxnoe04O5M7I5A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:26 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] + Connection: [keep-alive] + Content-Length: ['66'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"97e5ff9b-fbcb-4e25-a583-2788dda59048","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + headers: + cache-control: [private] + content-length: ['448'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:27 GMT'] + etag: [97e5ff9b-fbcb-4e25-a583-2788dda59048] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:28 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJjOJxEy-hB4wFx0_6iOP5zfn2hwyMK9p956vYMPJDBvyCgwyPtJc1NZ0OZ5_jSGWYubOzf0ZN3zW6cXf57aQKuvL75cK8gtiS7Y0utDkdIebm2g_52y6ja-oMu52UZVcOXb19Ad3_XlqVEqsLomBeLmPm10eyW-1LDpjtl594I0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076530","not_before":"1521072630","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYzMCwibmJmIjoxNTIxMDcyNjMwLCJleHAiOjE1MjEwNzY1MzAsImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlgzek1BQUEiLCJ2ZXIiOiIxLjAifQ.M18773V3d1jxi8e_aT_NgmrERCSApK_0yo5IsqCY1l8rHmO6aZQPNe0sGLfWRpvofLuh46H07wFvppSR2XQVPQqVSNqgAhwlhJ_tFS1zWxlRWjDj3wCbXzFtmFEGT7bMouYSO1saj1iazqctWa7tfcCnNfUINcHBAKFpznblwLJZEP7E_wQfr8E3gdnhqLLg1xxhkg7ogiCPvf0wauJVG7K_Q7bzvjdNJRw1SU5iDlE6Ulj8sMgPbt8cpFsXHG2Mdpsm4WAYCj_xYyHicH0mXLER8BdFdFtErexEB7RXeMKKM_c0ySZuvID_PJeWIenWNhkSGKfdVL2MmXNYvIEqtQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:30 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"78c4c1ca-c5ef-4d79-b3cd-23e265050232","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['405'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:32 GMT'] + etag: [78c4c1ca-c5ef-4d79-b3cd-23e265050232] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:32 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzx05CkCHgK1BukBUkLOxzOrVjF4WfFWlQfssidsLANHHfDc3J5fLxM95Uh-FE3MQc4L1xQFQNxWLRr5MJsOwqwi0G2mrIWDCNg5XW57q3ElKSAK5WahmlaHzwptn1B2dxNjYN1uae_CWAK9FtzzkG_M-iAl8QqF3PjUIa0DeWAQUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076534","not_before":"1521072634","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYzNCwibmJmIjoxNTIxMDcyNjM0LCJleHAiOjE1MjEwNzY1MzQsImFpbyI6IjQyUmdZSkJ5RTJMaFhicXcrL1ZpZm45RzFvVWhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZXRElBQUEiLCJ2ZXIiOiIxLjAifQ.hVHOBrKRKrgFjBECLChAkPe8FvZEnz0ZBis4dvo4yUuabPvpqBpLmJrYhXVleSbagiUU2YSvKfO0hrTTXutU10xr_fkg-P0H8zc181TdAsIpycSNSJmV9ozAw_vzMK2SL0cf0OIXcANyIAK33I2OZDwG7MjUMIuYkPlW1zi4xtHj2TlSKJleQUYRGxXFL_hUQnKp4Jj_cjx-dBQ2SJk7P4qizO9jihmy4Ua09WrTqrId7T-Zvp83lrZHUNjOVD9Uk-aF-RT7FQRaFR1JFIL-hyNWUyLvVofQZg1YJntF1CI9uIRTSwn1KvZWbrJT3fpytAWbGBSz-r3hzvo0SLPmsA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:34 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"78c4c1ca-c5ef-4d79-b3cd-23e265050232","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['405'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:35 GMT'] + etag: [78c4c1ca-c5ef-4d79-b3cd-23e265050232] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:36 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzQwXXgA5IT1eVpzxafVZGmBjCY0-ejqVgYAuZZLDqIn-GRbpYUfm7kWWOGi-lofj5z5H5TsZvbhRCgWMDPXlESjwffP9nswP4f-H55buJxlJ26eHQEze7jEEoOYS7msRUUDpC6W3FQVDy-Lqf2E3IP9S4i8lYWjNkQYI3YeEXp8IgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076538","not_before":"1521072638","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYzOCwibmJmIjoxNTIxMDcyNjM4LCJleHAiOjE1MjEwNzY1MzgsImFpbyI6IjQyUmdZSGlVTENnbk9EVmVjWEhQNXgyL1pVOTRBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYzeklBQUEiLCJ2ZXIiOiIxLjAifQ.DxAWNTjMUdcaxxRsXj4lOtvNq1lV3zaIuPLzoKIBf5Sh4jzj6wZ53_qW5419R_YQ2NccF65NKq3O5vd23PhUJtMcDqMdSnRucQO8MEklk_FltF-kLdFeGmbK1Q8TEgA_n7fAzHZsAcPz0LlpvbmwghnkKvM7YfoVxshmT0IVpk9jik6YsuJRZii_3-z3hTmIxdSUgHkb_RccUv0DUpKsjVgMBFWHpta_dlKSY-ryRLU70Z8sHp1NL5L1A3R7eAMy3tXMxfmTM4WQQqGLvuX85Fi0_D8zAWq48w2a3s6i-O16u_vAljbYDGIHSfRmOZFmvy1EgPsVLwjnEqg9pAugxw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:38 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "78c4c1ca-c5ef-4d79-b3cd-23e265050232", "properties": {"TTL": + 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Length: ['130'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"d14b9a5f-9125-4741-ae07-d6d8c2e5ef67","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + headers: + cache-control: [private] + content-length: ['438'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:40 GMT'] + etag: [d14b9a5f-9125-4741-ae07-d6d8c2e5ef67] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:40 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzmAuNZB_YehSST0KZbWJjWoZomxEPSMZATmne9EvGBchpwmObf8a5R_KqOyNRC9YWGQf35jy1cs8E4Y--P1eOxSWHrbPunLdpVUepRtoAhLaesyxt7IWPNsqTJXpzgLyVRxs5trbln7w7c0NhHJssTkfccsXYQw0VUwXLaSC_fykgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262799","expires_on":"1521076555","not_before":"1521072655","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY1NSwibmJmIjoxNTIxMDcyNjU1LCJleHAiOjE1MjEwNzY1NTUsImFpbyI6IjQyUmdZRkNJbi9QNjBpblpNNU81WHoxMnRzeXZBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyNzk5LCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFCUUFBQUEiLCJ2ZXIiOiIxLjAifQ.pRHxHHpdmy7w2oZ4Am46yzwe6QEGkjlrztfKUM7ckoX4-dr0dkyOrBQ5xe1llIV6_cF79LAadrhoteQZvXL2317D-GvbYUEk8l8R13NsF0SB3E0Cpi38TSvaXy4noVlqb0Y_LewQBizzMgl1x737GRDgVDlzH5sjh6oXYKumoq_H3oCPCJ-UUwr1hhZqhd9r6HAx0-Z5a_M276usj4EOZZ0MLXj_bXYHJyiYwmTkI7gV5OrCrgxIimfQRSg1t9fq3CI1erloT21qnjpgiKpcd4Rz4__Lll-l9_N5Flyf72eds-JhXyUW1JQs6BD2TRWKDrvGFRKlr6ykurCqo-sEhw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:56 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['230'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:57 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:15:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzhsZJ_kCC_oP7jN7oXw6U7mO23W_pDeZRrhDOOSSC6TRbN1tb3DTa6XNtOxFDYhKQd1rfV_A4M1jGlfc8u4M-mxAaZefnsaRbg9ujGADj2CTEqksAxWWNKXY-U5H_CKbA2U_D0ugsCgFhYf3P6-phdUqtqQi1V5fI5v4hIjLrfVUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076560","not_before":"1521072660","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY2MCwibmJmIjoxNTIxMDcyNjYwLCJleHAiOjE1MjEwNzY1NjAsImFpbyI6IjQyUmdZTGplSjhraWUyekgwU3EySHQ4TlcvOCtBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldQUW9BQUEiLCJ2ZXIiOiIxLjAifQ.e4Y4CZCtb13b7XeNvTkJd8eOI_3w1J_erAMFGntL44TmN3M_vF114F0Fh83fb9F1gzXYTXU5RZBD7Fih5JE-K-Eoq0m2vcM-9EvabPvkEILudaFGiiZDMwVQRM-mGUYvC_xRluMn1P0FSu9JaF33QoJsbaQa0sOi5PKeHuvLu_TF8-dWhLbTtATqzihgctymZLigWvmf1UO38IX1xOBUufKh77sHImIW6YJp5YAQMZ97o0U1IB5ZXcRlwgR1WmYNtxwAUDFlqJ5Jf2VYpz-BlDcc23TDCBAqoDqCiCQriVFogQ3ilF5SiqDu0qFf4dQEFmfUJh3b6rdFsARMZk-XeA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:00 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": + "12"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] + Connection: [keep-alive] + Content-Length: ['82'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"75748521-27a4-486f-b550-3278c3a1083a","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + headers: + cache-control: [private] + content-length: ['447'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:01 GMT'] + etag: [75748521-27a4-486f-b550-3278c3a1083a] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:03 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAun_662IChCfLRgkgTp4AoaY7uM45R7n27uA3gN-5bVvQV8DzKZ8Kx7TdjBqD01XU5pErGLTJBpzbJ1wgO_uShRK1kwIZ2jh4hfM5xasDBxzjCKtHQFSzYDyeRnUxZLkAtV6UJPVJN3LvCNNyxgLIBKXGoNjRhbeCWx1coXbRpIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076564","not_before":"1521072664","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY2NCwibmJmIjoxNTIxMDcyNjY0LCJleHAiOjE1MjEwNzY1NjQsImFpbyI6IjQyUmdZT0E2bGxIdzd0aTZWZjFMandkbmFuOVdCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldqd29BQUEiLCJ2ZXIiOiIxLjAifQ.dFj084KKvd9qWDz8XJ4kN2TbMlV9ucL4xfRVuaL6-RQeT17qFVG6uqT753RgHAfV8O58T9imgce5n5y9V_eivt_Ewugh6k3fSvE75GeD_d45z04YfVhImfh04gNjcPWryAUPJG7ovfC_zFpTGHzGubpnTmuAcL8oWGn4Qc5w82BPHSFwSSHxsUd90fiS24efhWHHKxcX7kf8EfUN2Gig-KKV-Y5idjoJcn9g6Ok2CM_5xbvLpCrBIoqwkWP8kJboH9l1NAxA6kQlKqZ4Q0kP0mLdlF8aPAz6tXF2fEjzg-kv7OcgG9x4u5sA8X8aoXi7wjxc7tRetxYfIuk7KgnW-Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:03 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"6e4417b9-aa1f-4a43-be00-bb8223893754","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:06 GMT'] + etag: [6e4417b9-aa1f-4a43-be00-bb8223893754] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:07 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHziHXwCtOSuW_wsAfIULT5VH5kqDPRo8sSkLhf-KAXWIXM2eCaJvf_opxS_GLRxh0ZNKeJX18nmVdel49OMFhSRWAdISw5Dfcwv6XMQKnh37UiYdlFmje-kXfJOh0GxJRpU-hpad2_5IceyhQYV3AwZP_DGDJ4oMxVFMp35amVnEwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076568","not_before":"1521072668","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY2OCwibmJmIjoxNTIxMDcyNjY4LCJleHAiOjE1MjEwNzY1NjgsImFpbyI6IjQyUmdZTGhTdjYrLzJ2L0E5OFJJYm92b0xaeXpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZZVGNBQUEiLCJ2ZXIiOiIxLjAifQ.Y5BTVei7FEj72UxNQtr76kKB-XwfqGwP3Xp99adE3MmhlrkyprPPQhLASEHYdsnxHd59FCDMyndKb79_vOwka6b3oE-XPxOaTfQ7dAj4jQ3jv6GCWfNrRh2W07FNIbHY80maR_kbFzATAB40-A6leRuprM1bD1gfjGL8Xx74pP1Luw98TPqrW3E0XWmZcBVmdhV88A6uROjUWrHqpgGDnSl1W3wfRKdpFpUmO1L8Gzk0JRkqcCOOY6_Cbx2MlnBR3pkeHOjfOdiE6fl4QJPDSdABfdjCzgRNCLqCZEolj-zYLhd00B2C1-8nZwVqhIHxbbY5fjlWWlMFKhIvk5silA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:08 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"6e4417b9-aa1f-4a43-be00-bb8223893754","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:10 GMT'] + etag: [6e4417b9-aa1f-4a43-be00-bb8223893754] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:11 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzlCyF1uJV979tfxvn_sG02oWk_ECqs1BoxUFgcYtCQ25rBNGq8HpOkqaSXY8XXPZuczM8Bdap9KFvMWMvBVkgCCLJDwVU_fvrNrruCrmlD_RbT6y2eJgiIl4SV-VEeXs7xON_fMnL5usatnTVUG2t9lcGkSkKE6aeQY26D6tJkyIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076573","not_before":"1521072673","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY3MywibmJmIjoxNTIxMDcyNjczLCJleHAiOjE1MjEwNzY1NzMsImFpbyI6IjQyUmdZUGgvUHk4OFhlVGVtUVBOYi9ybTM5KzNFZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhDVDBBQUEiLCJ2ZXIiOiIxLjAifQ.iNLeyLEVr1cJiuLKrqZz-EG1H-PGrse6G4BpI04fraJmMKd9xY0sMX9BN_SUbtFKzqxP3S6FXChEIerCNqdhMB-3F6DQjnVbsg5FC8cLMW7_yhzE3hC1ebJJVsZ2TZtNcwEnkUg0DRshzXWXgDY_44U2NnwdI0NINMZXKO5HoWLSx-rsFqtTWyjFqFVfyPjscuiWrW8WXM6W1Ce2jF63SFKYEj2nPPy_8EX8OwR6R-QPEORv-An8KN9T8Cw3gyctJ146UfEDdOlG9u2xNmrufKB8EA8yWb9jYZSMTd--ZrCt6tjJVGLvWnLYhGadSY6F4Tuch7UjhXvZS0li5YME5w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "6e4417b9-aa1f-4a43-be00-bb8223893754", "properties": {"TTL": + 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"90b36675-f763-4968-b40f-2d3bb5ce142d","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['436'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:15 GMT'] + etag: [90b36675-f763-4968-b40f-2d3bb5ce142d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5xp0T3ObCFUfT-r79InD2of3ABEkWs6f0TO10wPJMvm3cX1RbEprL63Te7VQELn5VwMBqajmFTS8E6ScEyI3wYd_Ej7LEs9v7UUxzZnTThuF8nKTUThaqee6pD6VHYLnOIljOlTfAszgBRwoK_uj8pfqrgKT58MFnzWe1B22aAUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076578","not_before":"1521072678","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY3OCwibmJmIjoxNTIxMDcyNjc4LCJleHAiOjE1MjEwNzY1NzgsImFpbyI6IjQyUmdZUEQ3VitkVDJIbkMvODdXYzJMK1ZydDNBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZLemtBQUEiLCJ2ZXIiOiIxLjAifQ.hz7hxHbiGAukP6Sg0SW2hcGaHEmG2CpnJIH1Kr7advrdlzW3kuFEFuGCGK0Y0emxvun1O61zPfOsklDJjfQn43fdIKwLI9dMkixbP24DQvVCHnw1-4nQiLc67uaPBe3QVZFULHEJVvh5ECdefYCb74SdfkMvtsHikAhRRiOkMSgtyd4jUcnR53JgQ5dyQsCLTe3MMihtbqKvjcMjEh2eKcqgPDA8gafi8y8S3CiYLE78hys4ofnT8xwKalfWIXg9NHMHlWDqJQbqfJAHentPtpDHJo2gsa9FT-cNS9sEdexxL2e3V4ZNlueUsA6Qcy9nU63a0hspJxKQXQ7fTKFR7g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:18 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:19 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_22qRsnmYKdfsyQka19bt3AXnEQIQ6RkDz0nC9mz9WHHuOkylLRK-KNhmw9jsXTQGgizR8ShYfAI9LqQ5azxeH92iQ1UKi0XwYMkkZZ5OUty9_8yXegyfDL3SnQH7ygh7ynq3z4c-9utI4xZvuP5GbQ7dozgFmnG-81J8wqoy2MgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076583","not_before":"1521072683","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY4MywibmJmIjoxNTIxMDcyNjgzLCJleHAiOjE1MjEwNzY1ODMsImFpbyI6IjQyUmdZTmo4bzVsanRyVzgxY3Y3c3dzdnYyRFVBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlgzejRBQUEiLCJ2ZXIiOiIxLjAifQ.p0L_Mq-fR1hnR794-EvunO7KLpwEKQF5D6nR6hJLvP7jATGSDM4JW9zLeyF9fk2V3iauOJUSk7XoSqXuM67Ykj1ZMbX7yO5kXw1kXh5tploXbpW9jDpbte4UZaCMtk5ccVfjnlm5nHUtMJD-lpNr_-NVbukib-YAulQD4WLnuPWwmNCorPdy-AXWJAWngWzMknvuFTPX2qjvD4ipJ1EH-NaqYObWNzVvCVVuWTgyIV9P0oWHd-aRsAh300markC-x7ng3krMhIZJvkqvTMq5_LXFoykIfnKXgfItIyG2rERfIKFFE8LGwOybcOdtnda6v39pHEaU2pTGUr-_s7nKGQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:23 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] + Connection: [keep-alive] + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"bfb79dbf-cabc-46a1-a76a-f88caa2fa442","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['445'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:23 GMT'] + etag: [bfb79dbf-cabc-46a1-a76a-f88caa2fa442] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:25 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHze3wt3eQTBojJABNKGqUjUgPax64d0mm6fxpYIyGu_lmy5Bmw-mnGfNBSqYL-rChC1YurMbZ3EU-ox2O25CiVnTq-VsKlZ_sNNTHlOqTmQi1CWTym1-gjExoMHHWArQtDH4OeUNyoediXlMkEG339it7rA3DRWJnK5YqtUHef688gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076587","not_before":"1521072687","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY4NywibmJmIjoxNTIxMDcyNjg3LCJleHAiOjE1MjEwNzY1ODcsImFpbyI6IjQyUmdZTGk0TmViU2hRVWVWbnVlcHl5ZldidkJEd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkJDTF9LbUJCRUVtT3R1OFhZUXdBQUEiLCJ2ZXIiOiIxLjAifQ.vO7C1qXIbONw80nobh4iso1kDXWMxE_t7iMYJsG28cJDESz9CkjymGtQ8uh6Az60nf1tJgh91T5vcrhBqjA5Za98JN76Ld_7VYqS47rutNL-O4jnDcK6qFPIaj5oboKXk4uxw26Xklq_jmVkI6at3_H3SSTIbDF7ESbnZMZk-z5AEGDY2gaeW7zKNf5hCkqR0avffmLetDqeTx556bLA97QPzY9n8kx8C-10abkJ8UNR3oSjXFvicZORXCJn0sWqK-PbshGdXw2pPREn3fp_ZZSFoJ6isRKz2hAbTr1vZUkr24IUjoMlDmAZ0VJJ-dks8-mSZsApXCnpjEweiht_Og"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:27 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"a024cc27-1cec-4971-85d1-780279173773","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:29 GMT'] + etag: [a024cc27-1cec-4971-85d1-780279173773] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz0GcGX59NzwynSjX9Ujlr5znoPsGQ3uAe3ZHXudg--B_OUbox-XXnruemHeVSoKYc24c-sHKIgt8YWEKtlUyuo5kb8m8mnfySCVwFzMDUH2co-7KBUThLhNu1IYPHUy2VBZAv9CvRPcG4cyEkVUdQwR0Kg5EkDZCx1wXebU_d1tkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076591","not_before":"1521072691","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY5MSwibmJmIjoxNTIxMDcyNjkxLCJleHAiOjE1MjEwNzY1OTEsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYwam9BQUEiLCJ2ZXIiOiIxLjAifQ.rTBTw16zN6cHpV5_FgkuL1oq-_jeXhvnJ7Ze2HvG0rdpf7LTAaE6tW5ukQDVY1gn7AWxzZDlQ7F2z46EDd8_KPKuUlrnBf_3X2N8sRJse2XtfmXlPmMUJMgpJXAk7O5g6Ts_nP3a3RxWAv_5kLKxSM_GxaHX2UZFljspqCYtBDnXRPd9x3yPbrI6cJDbuffcnFAIbg-UVwegjYW2As3B-1chJ3y69KkXQlrMi8bdWNhzLMxoxwVAC-dzavoFCIHzXtiDRDINwce6oZYfNhktMfSm-S95Ta7TAdmWVz9SDlx4bOxPQ-eMUMk2bjtigQI-Rkfe6E10OQLOoSjy8g-QmQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:31 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"a024cc27-1cec-4971-85d1-780279173773","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:32 GMT'] + etag: [a024cc27-1cec-4971-85d1-780279173773] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzrrmN1hZ_K6TA-JgPj9EaBUIQHnLFSgNNlajgebYER9U8nNbsJdPtO_rUnB1nopy4L4AzvEYOD1cQLCtdUd5oOHSecd9CvD-828Bi7S8-7xrSnPYfA3uA8fTQqyr5i8lz5watm_AtZdPs9snVyf3qyJr4BLZvOOVP1xGyQilP5lYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076595","not_before":"1521072695","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY5NSwibmJmIjoxNTIxMDcyNjk1LCJleHAiOjE1MjEwNzY1OTUsImFpbyI6IjQyUmdZSGdjcXhSd25NSGtQL2NjRStsYTF5Qm1BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhzRUVBQUEiLCJ2ZXIiOiIxLjAifQ.smK-DBBIDvftqXQOUpCYQ6fZ2ZUYf_G-xA_jnV2CiAwS7twOuKZo6rQXk7KqFiMYQGW2QZHIU4a4BZuRn7IEKtaxqGDxIiQBE58az459MD8aAAqF_rIss6tsZBalMUQZzE7OvO1eFy4NmBiYS-jdH4pEIwyw3rsp8IqH_knichMHMYEld0QLQ-R7gRv2Dkylip8pHqzBkdDl2iybW4Qmm-dSzvy01vtauAfSmQxOIPVAc8-9XVL6XNCh_XlyLPWdfMoSrhCXeylUJm7XMg4PuLyjlWNSKqVy_gNERZ0gxUWQUVjFYdG2ZkyumY8u9qb9nilaBhoF8AGsXwPxg_8h8A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:35 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "a024cc27-1cec-4971-85d1-780279173773", "properties": {"TTL": + 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Length: ['162'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3d5eaaa5-9557-467d-b4f9-7883c6df6e9c","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + headers: + cache-control: [private] + content-length: ['471'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:37 GMT'] + etag: [3d5eaaa5-9557-467d-b4f9-7883c6df6e9c] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:38 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzGjNQPOhI50REpLpiLiWihAbbKeuHwY6UHh_epfwVP-TsGBc6HXwnGt40HlVXdUKb4Ow1su8RaLBMIURkYsLGX3_8pRE8jUBDxTOkQXsbNOwNo-gmfnuC3wdLP4aZ9z88fqo7t2RRORQ77ERi1FqnUwCQmZiGRRO5_NAmEuFt9YIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076600","not_before":"1521072700","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcwMCwibmJmIjoxNTIxMDcyNzAwLCJleHAiOjE1MjEwNzY2MDAsImFpbyI6IjQyUmdZR2cyTzZpdzlNTWRtMHNaZDdsTUQvWHhBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldOZzBBQUEiLCJ2ZXIiOiIxLjAifQ.nfBmYPLRuxse63jWKw4rttcNCO_0zJEFBsOO9du5tWXbVyECO4tYMNsYWM9xBAf2iqD7KjekhDYeo5oIL5hqr1GwfnTWOzYy9FWjB8R40pGVEyIlsGqBn7dBnAS0KDLsL1vavpxZpoYCGS-khJQPsX9z5hM1hPJgejjokJBZ0GEc4QoPcG_hWen-QdeNeVO7Gs6t9C0aYgbWZyLbesJbBDC089l9VjJ8hjVSNSOXX1gjExSjhF9soxqrD064JHB9rZG7dkPw1FcBXUqMV0BFYwt3ge3Xzysp71oYUs5u9kCWdPkwdbZV1-_ayDntDPDgikW2qlIULnWhaHtWkhyNlw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:39 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:41 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:42 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_dhsiWX7QEFj4hPqtWgwZUePD4A0HZN1MtQb1wcYtXh7R7uXNswXSafbEhzxFjOpKLf5nPOOfsc3zChmZh2IA_e7006poIdKniw5jwGCW0dWy2510tSL2MIoowF_lUoA1cTglhpxRcxukkyZnvLHBiPvx7HHsgFn4ShfPz3XVl0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076604","not_before":"1521072704","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcwNCwibmJmIjoxNTIxMDcyNzA0LCJleHAiOjE1MjEwNzY2MDQsImFpbyI6IjQyUmdZT0NLRUxBT0RNazBMTFV3eVBEMEs5NE9BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh1MElBQUEiLCJ2ZXIiOiIxLjAifQ.wL_sJBQX8emXWt8nqoSf83LEysF2iRD511hhnjSfbzwZvtYGmbeg1L33kqla1RnLW_OJOS2JLjwGxxtZtXz5Zk7hOkmjH20rflioi7XZr7q1hqu-2dq0NfUgWd_nYSUfXtJanijOJdfULcKDXDvzK7ME4-r6EV1XGLBZE6Z_zXzjy5BcIHXlq2JfJDJLIHGD6D8M2EwYmfZBbtqHfWU1tkoHRjLJ6v6TsB-ZUWk6BPz9rnjI3o6E4uFkFTAvDOeesQ9OCet5oQSHmi-fheZ1oQ6Mhq15KY16cYslC6YBBQYXTFYDp6oLewgykMZtiOktenHVkTnshvhvrxrzDMwQNg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, + "port": 1234, "target": "target.com"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] + Connection: [keep-alive] + Content-Length: ['114'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"d77d5080-217a-4c87-914a-ad01e65bfba8","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + headers: + cache-control: [private] + content-length: ['480'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:45 GMT'] + etag: [d77d5080-217a-4c87-914a-ad01e65bfba8] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:46 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzNlmd8u4qbi4VdIi9bUF_GAvLzov5JlmUz3bxHqtQHDOVq3jXVjpxXQ3w4-2FaKKkwV6_y7PzvoDL4er8jovpb6xAL48xhdyiC4w1zk3vtQDQaPQtaagdjDrp4IMKtXptrvdiqUIP42Vpp0Clz9kOatQlR9aO8m-YOxh_nmgeVREgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3598","ext_expires_in":"262799","expires_on":"1521076616","not_before":"1521072716","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcxNiwibmJmIjoxNTIxMDcyNzE2LCJleHAiOjE1MjEwNzY2MTYsImFpbyI6IjQyUmdZSGdsSmR3VEZ0dDV2WHZGMTF2YnB1WE1CQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyNzk5LCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dDd0FBQUEiLCJ2ZXIiOiIxLjAifQ.myjaai3TfrMXsQWQu-uwbdeBUsvNvf6gY7WnYmklnDODsUfipzxNa8O2amJBDUAxCHLqmxkDV__j5KJNffPnuoVDcfrXCOO_90FjN21yh48EVR9UCJVmIWnuxLOjvP7JgPq832LHK95lH1dPeWop5_CQ7qYG06O2yblpuDK67WrdYjhvSpT0eVJjZVZG0xDiXHeC7IxwSaqocT0wa3roBmmqeB1i-DiYdN0XU0dWdTrnCXhdkQqaudXr1psW1saw4WQwTg28uFFhbLnr3VxAR7AkB9nRmfsf5lP7wQUtAv-PyXEww4EFJeM-3P-EQq7q6edz2a_mIqW2TfZDUO1Q1g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:57 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt create] + Connection: [keep-alive] + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d895a22d-d5fb-4c23-9926-9d9c34b2eb04","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:58 GMT'] + etag: [d895a22d-d5fb-4c23-9926-9d9c34b2eb04] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:16:59 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzTGKjbWapgitZV4bKcotruKHzgfRknjrzNa3GQBkaAqd6wjYCHFn7aFp_75vcXYHhmgpCT7H3_ojweVcD7JzPVOGtEV0dKLW_KBvFft5yKOvHaP9_1PjjgCqnvh7zPDDJ-DfWLJHVTwZKI8egUdgUyZKB-BSTBSz4xWfpLXX9JoIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076621","not_before":"1521072721","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcyMSwibmJmIjoxNTIxMDcyNzIxLCJleHAiOjE1MjEwNzY2MjEsImFpbyI6IjQyUmdZR0MvcUJqQmVLVXk3RVdRb1Y2S2dLSWVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklLWlVBQUEiLCJ2ZXIiOiIxLjAifQ.R4wCuKfN4nRah69aGOugjOrp8MY5OsGfiqYsrbCvTnaIeQA4XXz698in9MbTRFarXbdWu7fSMuNWWFmSVGXYo4_QV-64MraHDBap8bjUEUfCcFx1Tz8KVrT5FnCy9VkWXxqFL14px9roJY2Isanlgyspqz5iVJBwRp1NUtbpWwqsMu_rPxOjsyXqpGRt2_1TKc-zHtsjZTMZeV6T-nSzq0TtsiV_3-Yf9bp4jz9Va5NPMT8ZJ-JJJmdqU1BXzKL9QuuUugW0u7sy8K9WpSBkV5gV1K3owol9HVdLjawowuuqwuMWhjcQql-WI4FEkmROGQ81oqdMRGtOe1oqSqTMVQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:01 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d895a22d-d5fb-4c23-9926-9d9c34b2eb04","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} + headers: + cache-control: [private] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:03 GMT'] + etag: [d895a22d-d5fb-4c23-9926-9d9c34b2eb04] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:04 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzFrsl1ZIa_Q0h40fZQX82Ir96xFg46-x6gU93jzu3yms4GokElYjHHFeYYACA6ub0ikuXsgYe2SDS9i_Yxcm7Pwm76GTsCUvDfLxocWWy_zWfKpzhlfj3sKlBNorPB9dDlFIThTSyGjfJq6wBzrNNJMh29jZbD_HKsvi7sMV7sBIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076626","not_before":"1521072726","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcyNiwibmJmIjoxNTIxMDcyNzI2LCJleHAiOjE1MjEwNzY2MjYsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkY0VDBBQUEiLCJ2ZXIiOiIxLjAifQ.r6FRXf_MPnITxZuy1Oi3ORyt18Nt_8UR8ITqoepUkoqvuRLFhOgIHZNgKmSdmFWjl-c3OqiGsX_13qWEa4TeV5pgJGlHLBi3nDsH_mR2JpcIrjHYvGFTpv4EBNoKXHv-ISLPUYdRwV8ACRrbgJUcdDMpHoUurONgGwgBP1ObedCfUpWi_57DIn1KAeM1htUy6Id_9jzh20hhQolbjva38KAM8dFPtmO04ccGL5JcjQpR46QXrextDEpW7hCteC9HVrpjUKJdSAspxzPsO8eZDFDhvQT3I8WFDPp583ioLZgTp4mBkxe_6puBShh-L-2aS4Kw9qAOmZgU62dt_f0KYw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:06 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "d895a22d-d5fb-4c23-9926-9d9c34b2eb04", "properties": {"TTL": + 3600, "TXTRecords": [{"value": ["some_text"]}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Length: ['119'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + headers: + cache-control: [private] + content-length: ['434'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:08 GMT'] + etag: [ab848ade-e6d7-4c46-b182-fc0f08b42caf] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:08 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzDxKhJ7aSi413EAme_uXx7dCAWjGXkzDNUArahSAVvxhtP79L5Q7bOWYJwVailr8rm15wy-xfEsyED1Tdf1eBGESTAFiRZ9mF6skHVpQZWdLXA-FjaXEr5X_3T0MzWvK6haDm_C1enhOB_Xw0x4X3GwfOi056c2CdqTGj4JAhJoIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076630","not_before":"1521072730","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjczMCwibmJmIjoxNTIxMDcyNzMwLCJleHAiOjE1MjEwNzY2MzAsImFpbyI6IjQyUmdZUGptNGQxVVlDSmRaQ3lUdHNiMzFEcFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZNVDRBQUEiLCJ2ZXIiOiIxLjAifQ.KE7HWY5xqE5z1RLjeDh7tu4RyKkocpq8GYxl59Q6Oi5oiYtCDJ-y1kcCtn7VVQxLVqIrT9KquDKYodEHJitS3GMbBHHC3qkcdvr1vbCflpxIwYOA7jjW5_Oypib8u2wgKYxzj4nO22o9BKWiWc1vEFKz6Y2AUSRS8r66VEFmN9cRt9tPiABUNrRvGjvFsVIpejHbNJM81-cyT65URSU8HPfNjHmJACF_C-Icb0hGXa64vhtWkBcHKn5GDwhPsRaYYt_GKsFRrDSM_1PbsQGICoc-0PQiCC7mp3wCYgSoC3m7SE-xoEDQZwDCcaMQYIMdynOj-2Xohf_NCqeFbtwGJg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:10 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['231'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:11 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:12 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzm_0sW0qnX1MgOPay7CzKqL92_rok_qOWEoUDCcOWhG_z_Ix8jB3SVp9Ah0QfBMwWXhNL2IxwmHWUB_w5sLyU8cBwwol8RHM2s-sMO8oJoIKc_M58iI26fTw-efTITXqa_Lu3bhAOyxYbTMNE7OdZmzUdQyjFmcldsNT4pXXLvtIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076635","not_before":"1521072735","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjczNSwibmJmIjoxNTIxMDcyNzM1LCJleHAiOjE1MjEwNzY2MzUsImFpbyI6IjQyUmdZRERYRDYxWUxWYnFaWjR1eFhwMVcwQWJBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldGZzhBQUEiLCJ2ZXIiOiIxLjAifQ.V5QWgPmzDF-MKsC7q39EKQr-9aLAoCxgg_g9mSWYyYgnXwkrKzfKKW5CgrKnQoyY_d1tfJmMa9kdQJCfmx2WHnq5fMGg9VeLpiGJM48f6Gzi3sqs6sBna-tlMtQYBD8k-SpgN_eHmFWVs6Kv8gInWgCMcQNX_n9fd8MqvFvddK407YF3IUdFKXOAA_N3_omC1boxi0UFR1keI0Dfs5B_Szb34MNAdcV_YyMQYozgOv0HoKJ48MHzn_lGAa_DZiB4Cvw8Z2tKM64rNJ52L8h2VkX75vLddYKNLYQUPYfc8pOw60FVC0gJqfRnvIfTVPjp-ySznLmA1w9lmdM1Xyrj2g"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:15 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fee9c1c9-e48e-4909-a259-871ed016589f","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + headers: + cache-control: [private] + content-length: ['443'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:16 GMT'] + etag: [fee9c1c9-e48e-4909-a259-871ed016589f] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzvlbeUurLvyOYUp6w4CYAidupF9SxEy6l85KPTO636gzY0A7RGt49ZWVCC7u5s_xyt_Cz9voTWbb_xeHKC0IgTNTAmRNL5e2doOknGpy9pVqVDa6h2DqaEQXSt3s_sPHbrBu9-W59kvo5cL93DzgbV5tauS7jllIGAORUW22ys70gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076639","not_before":"1521072739","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjczOSwibmJmIjoxNTIxMDcyNzM5LCJleHAiOjE1MjEwNzY2MzksImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhyVVlBQUEiLCJ2ZXIiOiIxLjAifQ.V4UfQdG7N-VbIbijwEk8kD4xjCqrmnAJc5jO1VM50JVeXCB9BD3hwBNo0AlukEBliOq5fKRIFdXd7YlC2bHE6zzZ2sPucgjuCYZ3o_ygu98QK7VkN5d1buawYBSfclAWL19M6TNGlPDVpKn0s-76tPQZd0kUZpf5RIaIAUaKfLpjOK-vOauwdeuYbnECkxZMdwFm7-ePC1RAVL3Pnf-IMUSiwcZyiCBoEqPIMo_8h0fPWdaFRY12U-tUuPmuEvkj6vzEV4ZdRO6T0sq4bYoU7xaY4UWMhBrMRI8Xf_45PvSWCriIiD9JiuJ-tJftyD9UQxbbmabKXBDM_b2PGqHAow"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:19 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"826fd72e-d887-4142-bf03-f5b08762a08a","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + headers: + cache-control: [private] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:20 GMT'] + etag: [826fd72e-d887-4142-bf03-f5b08762a08a] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:21 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzBuB6Wao-2m6rfzuGgAjZZD8sBkr8z1Zj0wMiOAzhVJc5NBPL0XakPQ4EXN6bLLl58ITev6Ff_AkwGyLMPnC6aTJfW9WBVrSGxM4T9FEv2zV9oZpCyFjPkCo7GAda5nUbyPvKDXTcAgaKv1g6CwV_kg6kvHtYnnN2GrAC_qnqtfIgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076643","not_before":"1521072743","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc0MywibmJmIjoxNTIxMDcyNzQzLCJleHAiOjE1MjEwNzY2NDMsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dNUUFBQUEiLCJ2ZXIiOiIxLjAifQ.EPQJgw3MYWoYHva1EKTtc2-XVCntOOff53YtU87G4pMJBzyxmqOaESDcPWP8Wn18yqED_YC-0fqtUqbzkKrTAFBM9XHe5W0-fIdnYcoN9ihsMvojZmWGVWbhvsCTluhrMNsks9aila0oEAr3H0j3bm28yl8MYQWjOkImCb4S_Mi0MlDi2bJaJzAXV839npueQqk_JBPNtUYT2xadrzjzArDt1qoPRzJPMFAksrXUoLUMo1qTO9BmKDExA4j7wIQIphtNZaE4XfV6MFCb44aldYwlHcdjPZaWlIRc2ZYt7MJjd1SQkQDf6kqJM1pWa4IOgoIVbD4v-w28yABTihU92w"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:22 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "826fd72e-d887-4142-bf03-f5b08762a08a", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] + Connection: [keep-alive] + Content-Length: ['151'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['454'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:24 GMT'] + etag: [0af830dd-f446-403a-9bd1-c3956e5079ad] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:25 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdlKvgckQ1weVGg_MGcy176nyt81hMCWGvqDmZPj317cjT_-hzrgeND-5v3N1xYpQ7W0em6nb_XxQNus-o7cuAWhy06CZ2nvM_FGuwMjG8v6pPxhHzkbcNC7WbtN6DSC5cVqAmQjPn-ndqVl24Xwna4MWiE4ycSIPbb-N5zxPWI4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076647","not_before":"1521072747","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc0NywibmJmIjoxNTIxMDcyNzQ3LCJleHAiOjE1MjEwNzY2NDcsImFpbyI6IjQyUmdZR0JNazMzNTlramFja2ExY1AxWHAxNDZBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZVRDhBQUEiLCJ2ZXIiOiIxLjAifQ.u2NGVpEZugq0U0jhLFy1YNCtyW7T2xYfuvlkyUjhq4eIUCF8PMilWnSSyrGkCFT4dI48quiuOg4liD1kRwya5XYOeUQPgiDn_GDF8AEiLtyDrshmmbn-0irEVn1t-HqLZt39sa3G4RaafDdXro0TFDEPa9qepdTxXGW1hltfkWGB0mzTIPaWoPczI0ggyrjJUj0H7wRhmnXGhRRBm27_gmzVK8LcCR_ieJcRhdGLjGt6PCE8dpTLgM3u-Pd5mK72gvdLqRkiOeuxrpcq8f8FSuxnEngbvE73AQJxjCMBsVth3VcDcCIDahx4jF5idckvUI4MQIDXHudvTwzTUxNnTg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:27 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"20379bf6-f3b6-4f8c-8b14-c48b5543572d","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + headers: + cache-control: [private] + content-length: ['554'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:29 GMT'] + etag: [20379bf6-f3b6-4f8c-8b14-c48b5543572d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:30 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5CgKJ-cMDLMNyQwMjIBtJGLG7T7WgPn_P44uo-Q662Ys9pThC6qbxSCC155zz3_aCzXfilKDXpUIIdx9cl-erRoDLA38O2rr49izjx34z5D2Nh4c564lNqHRBr2LtavePl7UvF7gVY0XqbPeYdv2FNN9X_pMUyKarNEjeGqaRBYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076651","not_before":"1521072751","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc1MSwibmJmIjoxNTIxMDcyNzUxLCJleHAiOjE1MjEwNzY2NTEsImFpbyI6IjQyUmdZQ2pYV1JueEtkUWswOFlxL2RZQjc0VFRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldvZzhBQUEiLCJ2ZXIiOiIxLjAifQ.woU69fMjeejPjwnQSMLpi4f8w5e92lH_uZ0eqHdQA8tnH7B6ijXWGyw7tA8zv8t-YjDDtKQqqJ4DeRilBAImEGz--POVDWtaQPtEC-gfsMpm_q4o94kZ54pK0qCixBvWMZSJbNlc_3fAIzVoV35noYnta3dksUKPnU8F3wqRL4lLVd_vszVtf_4jKsWxk9gzpy29HareN0gxdF1A7NfJ1PfLXhzPhCnTUHi43AbTiHHIG41EH5d0jiN3fjuCxHjgU2tOkLOr4Ugpn1o79ppJ9rIph7MQ-WE93Bermnc7KCSkzlGpA1wLjpiOBCdIKjRqss2k4Wsjaq5TGMc7B_raVQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:31 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"20379bf6-f3b6-4f8c-8b14-c48b5543572d","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + headers: + cache-control: [private] + content-length: ['554'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:32 GMT'] + etag: [20379bf6-f3b6-4f8c-8b14-c48b5543572d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzovS5KdmYcpCm31S3vTrAjrAv_yTyCE2cKAecX-i0lAtX3mNgThzX4gCESwT3h192sSzLq1FrI72Gqg0u9uR5DyWa06uFcT0JYnFMN8maHjXLatLDWmhmEA9pAzlO1rA2jOlRXhUZ4kMVnBtEugFzH7FDFjkOFe0QsUaR1XBGTzYgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076655","not_before":"1521072755","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc1NSwibmJmIjoxNTIxMDcyNzU1LCJleHAiOjE1MjEwNzY2NTUsImFpbyI6IjQyUmdZTEErcUtUSEVuM0w4cXo2cHNzRkxwOWlBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYzVDhBQUEiLCJ2ZXIiOiIxLjAifQ.v2GBtvWCW3yJsonnJi8LLKgn_JNtkzr5TgymG6iV0yLRmrohC_0mRDO57paeghnrfsuLiVoqw7dK9C08ZIh7_RenWsXG926H_QHjvSod0b7b3eMzX8uXipOiMhlf7I4mkF4g7_5OPepMjgcQFFO9L-jZht-F8oqEFlBlrb0TuKiiezk4_RYkWW0UmtzjnI6Ts3t-5p7vSDzbGVz6wXo4xKGDxwIdviBV0KMQU1Teg3V6JkP_2VeSEI6KDWnf6TSsz7hvAEcvUsvC25WwpieObqtycz3CEFn1QFU3M0oc3zlFW11KUYZKmdtPn5aj6bLZW-9uFnjg1j2mzmUi-73VqQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:35 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "20379bf6-f3b6-4f8c-8b14-c48b5543572d", "properties": {"TTL": + 3600, "SOARecord": {"host": "internal.cloudapp.net", "email": "foo.com", "serialNumber": + 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] + Connection: [keep-alive] + Content-Length: ['238'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"1d08ef9f-39ed-4ed5-ac1e-936c84e48722","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} + headers: + cache-control: [private] + content-length: ['521'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:36 GMT'] + etag: [1d08ef9f-39ed-4ed5-ac1e-936c84e48722] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:37 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzonXUtxjK-QO31-zt2Hg4XFOE0dnwmEijKFhF3NhN2F1dy6vJ6Im7kIjXePagt5TwaYqmFy8zmZOnxPkaV7NgE8JKdKZYvn6PDPNuE0tN1DEcXE12RWZl4DAepN1SqaaBtsGrtXgGyHuzWi9bcVg5kpEHoUpHCCL4y0ChkdJHs9MgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076659","not_before":"1521072759","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc1OSwibmJmIjoxNTIxMDcyNzU5LCJleHAiOjE1MjEwNzY2NTksImFpbyI6IjQyUmdZRGkrLzZEYmF6RkJIbkgzQ3pWUGYyMWxCd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZPVUFBQUEiLCJ2ZXIiOiIxLjAifQ.t8MDW-KAewEamdtrwDCalY5tySgnc_5AyFrcxPi2sxV_SfmYoTBF6w_ZJ0LH72uPSDuxV3OTl8ur2I0ElSonZzm3Twjd1xJ3GPDXVNbgaKcpXzz76fZhgZ8F68DpR3MlLicG4DGrJ-ubK8Ob0Kt7U_wYkFCTx6DuqFIPr7ZKcBewO2l-ZaKZdXTQrYJSI3uqtJgjkhTh3xty4LETGEPHZ8E8M5zRV4GMAtnsrU1H8s5vuBEzWy2uOEpL1gRkir6RoRdrMHj09uuFokVnxpuPCNV83st9OlF-bB0AwIXcvyShh9cDkMrKkIQEOpqCLDIsBbo0ipnmSxhHfRht_pCh7Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:39 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['228'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:41 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:41 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzjDx8qpVEpBVj8RM0zOtWopIulirrgnlxY3vYsLZbR55OErcn_ZaoFGSQuX59wwhkXWBs82Lc6KaYKgf6z4t4egsBoUOt31Oe-2jce3NNpKzNABs6lZCAbpqZ9jLFmdrZZo61RD4LoAU5Sg5fCQcB6H_9wwXYv3hpR7ZA_O0IMUkgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076663","not_before":"1521072763","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc2MywibmJmIjoxNTIxMDcyNzYzLCJleHAiOjE1MjEwNzY2NjMsImFpbyI6IjQyUmdZRGhSdDNUSmZQTWxNM29LdEp6T2E5citCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZtVUFBQUEiLCJ2ZXIiOiIxLjAifQ.SD-Xn4zMmYuaN4d0dB-1oJ9yG6W0PLu2ea7dEvEt8uzM2Rsm5327r4_uGe0_p3RRgJu5JclNaNieT6db3AFHDWW3mcmIXvxNrvBVBjzH_3sSPNR0sb2SG44lfh_lwIdTwoMZ8GOBMNXhPgS5Gt4R9pUypJKBIehx8TKHkXEHH9PPMNPWDIyzS_1N0NenIP9ZWxCoxFtf_iCtehNii1_xAkix3Gju4aJ6yXxbQ15iFZQ83mbSKtzf1V8genm0YWuChLeZn2w7OR-QyoeJCSUk_mqIZ4d6F1AzS31WyZhmcEnAPdjUVwLhVtG7Cj1WBGdvJ7Ke1kCJR9azT_g0Kk_omw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", + "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] + Connection: [keep-alive] + Content-Length: ['566'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a2dee0d7-68a4-4b2b-8c4c-ef25731eed78","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} + headers: + cache-control: [private] + content-length: ['928'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:44 GMT'] + etag: [a2dee0d7-68a4-4b2b-8c4c-ef25731eed78] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUZE2NLC0xDO2G25cO2Ea8ZYPW6ztv9GZw5aLWYyNbIIByjQ_Hf3yjRQ2iWD-jaWEEqN79t8otGsIg1r3CgNnq7d6Hg4IbejLfgiyJWGNvWHq4wfwDdPSnF694eMGdcF2UWANhmysLOnudgBKSi8jd-8Is-HxNSMBFJvEqpVW4PQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076667","not_before":"1521072767","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc2NywibmJmIjoxNTIxMDcyNzY3LCJleHAiOjE1MjEwNzY2NjcsImFpbyI6IjQyUmdZUGcvd1QvaGRWUkE3eHp2ODJYZDV3cTdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlg0a2tBQUEiLCJ2ZXIiOiIxLjAifQ.caE1aV_Br_6HOx54oJccbA489DO5UVuJAtHQISP0oT8VcwQ1mxvgNiVG77jy0e_lI7euYTOSaIFNdghbPIHy093cWMewr2LnGgpJb2cZdaYaSX9T5FytuGZLWF2WhWAfNS0Ee0YnNXQ98hgo0pcYZDz8LhatmP6Ir0zucpw3AvHuMqxovH-r2rb9m4EwQ76RuoiUVUxXwT7UnD99AvUJ-Bhs3hP9SledcN3AQjlswJy_AuFTvBbVp6GYRM9cUZ6mJ6PVlPi2gDSrBX6BLJpgMUwsGSFp-3aWODeJ4anGYkoN9rys3-Xs9KYI8ta-ueKChM-CCy5ztoK-59TCcmPWpg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:47 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":18}}'} + headers: + cache-control: [private] + content-length: ['445'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:48 GMT'] + etag: [00000004-0000-0000-0999-2764f2bbd301] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:50 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzA9khpwWJPVZ9Kfo2BXBAwODs1fAQJCtlZWGvfoYBoHPSVpyHiNMi3KhrFMt0snl5WG6-Cz-uNWYbGXLoAb2UFi-qVceM7qeF_DG4xuzNQXf2jOF4jrwKHSaQzg4do7OTG9tJN0UaUFlO-v7mp6X1USZVtpwI0e0o1QcNgj1BlHsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076671","not_before":"1521072771","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc3MSwibmJmIjoxNTIxMDcyNzcxLCJleHAiOjE1MjEwNzY2NzEsImFpbyI6IjQyUmdZSWlQbC96ZEgzbnZmSDN2WW5lM3pLZWJBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklzSlVBQUEiLCJ2ZXIiOiIxLjAifQ.iKiJdsy7w_GBCfClKZCgbWaTwoU3BHHCFvbqylBxgDi3EBOyR9XWwht9fMS4UQLAkjBg0FK78PtQkwi7DbD7VcAjYyM2DCMhOnC_A5ZtS7463ckB33Ce7CZw1jFd2Xwz1D0LD5vgfWdEmasZEgsM-KZrT0FMdqhrPgosdBjs_lOGhIqUJYxRTIbJscsYskIVBjznycrt9FXt19V1TOVoywd_d2NNZnK3Z4GkxeUJ7q7TPN5GSm7GC2HucRlUYjsAyl3i-KjvEdURuR6aM2uFWPDe5VhWctueFQkLGI6vZabF7rIhuv2nyXIKRZ_eeQcPHHrGHlYG0zitOLqL2zZOPQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:51 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['454'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:52 GMT'] + etag: [0af830dd-f446-403a-9bd1-c3956e5079ad] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:54 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz0eE1KKJXVrvxBlDoaH-q48uEiFJteDmAtJa4WsWsSzeD26PS3fojrPgHlRUPrTV1I9Is1WRX33C9LTEzXFz00mjeOEemabOEhECCOlZZeYumZqv4LplFh3BaWjHSw8I9kq5jooI3fovH1tTLsB9xI7P2a3Q4ZynIZVBJKtEPgSQgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076675","not_before":"1521072775","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc3NSwibmJmIjoxNTIxMDcyNzc1LCJleHAiOjE1MjEwNzY2NzUsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZqMEVBQUEiLCJ2ZXIiOiIxLjAifQ.reuhH6M7z4EYWcG2PQW4FL0SezPLtiXD33KJ0wiAb9L3QL-wRMfJ9bYIQbnneJvCFuCSJA8AVIelfzKLk7uxsI6C9MMaOtAf7fXahMoZDzCy1ZZ-_TUhQ_ApCrdmA3d2Z8LUFXPgGNhKftIVYtbvlDoJI_CUiUr4yQFX_efhtaIIZUT1IZvA20vqjZwmtu7vItqiYAd5cOWG71QeFwwwAiz_-BNo6KIFOdfXPVX0ZoAd9oex0NzH3FneyGYma0wD7j4oSjYZGGWaJ_t5-6LBLUK4ByILsH3P4itudnhEAT3P-W2nhaEkevri-8aM0gUB6b4Be1ZIKzjeh6cjF8hwHg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:55 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/recordsets?api-version=2017-09-01 + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"1d08ef9f-39ed-4ed5-ac1e-936c84e48722","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a2dee0d7-68a4-4b2b-8c4c-ef25731eed78","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1abadcfa-54fd-4473-b821-9b1f255873f0","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1875dfe0-e68b-401c-9471-86f9de7aab68","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"9fce67d7-20fc-4e60-89d4-e6a802e64ee0","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"8ea96a7a-e981-47fe-bc8e-f383a8824b19","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"5463f764-5345-4439-a6f5-b185055da468","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5179e3be-9b4b-45e9-a0c5-1515620d1428","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"97e5ff9b-fbcb-4e25-a583-2788dda59048","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"d14b9a5f-9125-4741-ae07-d6d8c2e5ef67","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"75748521-27a4-486f-b550-3278c3a1083a","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"90b36675-f763-4968-b40f-2d3bb5ce142d","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"bfb79dbf-cabc-46a1-a76a-f88caa2fa442","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3d5eaaa5-9557-467d-b4f9-7883c6df6e9c","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"d77d5080-217a-4c87-914a-ad01e65bfba8","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fee9c1c9-e48e-4909-a259-871ed016589f","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + headers: + cache-control: [private] + content-length: ['8682'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:56 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:58 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzgJGrdrAJzbEsptYkbZhsVxkvfoKLF1lHMII2BmR03_JIRNxHGvxHFY8J_9m5vjNQz1V16PsI0keYmZPcjS8hRPm6ysLN5F37L0WtZCdpnwpafZwAUctBuCsAHDvakk6olm37h9PgZeX6poM3n2x_0TxkXdZjicuz6uUFYCRRL3YgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076679","not_before":"1521072779","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc3OSwibmJmIjoxNTIxMDcyNzc5LCJleHAiOjE1MjEwNzY2NzksImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhIMHNBQUEiLCJ2ZXIiOiIxLjAifQ.AfFgXVzdghNCoGrD6MwMnwqEsK0-vpV0p1h1sbCGUeOw-sGVc67SL78dXIy2JlO-0HYL02xQQNemRuvd141L-Os5ZAl-1UFiwfXfloYlr3hOPDH6DUy0P3b9tJXTaUgm76gZ4Iohu8SLmBrP9M8FJT6Oj_-ndU9bYqLQjwmUNd6rWcyNci8u6KKldq8l_mnG3gGPo6MbZGLe0KFWP2LBRX7KYSCVBsXB6fphV1YkAwL3xb91BSXrIN815y_scOE3GYwcG0WmUi4Vn8h09mgDIimgFvQz2H1_Irag6bi7P5cAAsgbHnI6wXyPueLeJgtYo39gOVf9_ctj-ByFXftjag"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:17:59 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT?api-version=2017-09-01 + response: + body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a2dee0d7-68a4-4b2b-8c4c-ef25731eed78","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fee9c1c9-e48e-4909-a259-871ed016589f","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + headers: + cache-control: [private] + content-length: ['1819'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:00 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:02 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMdUxQ0pjEc3OQlDR_i5DcLj6kQMjr96phYDAL2Z1Zm1PpMbPUQiCPzqUHw-7HfhEb776FUjWhczBfxD4ezsLPnZ0a0mXXguw_6gfu-BNnqnd01NeaQVpQyNW_Euvydmas5DqYxlovC0VOMUq2uPNvNfAt65xSIsXsXIaYh6g99kgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076683","not_before":"1521072783","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc4MywibmJmIjoxNTIxMDcyNzgzLCJleHAiOjE1MjEwNzY2ODMsImFpbyI6IjQyUmdZR2d2YitPdjFIQlI1MzRTTXR0UzdHa1FBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZQa0lBQUEiLCJ2ZXIiOiIxLjAifQ.kFyhV-DrBW6pm3bIAzngXZ3JLFupOvc7vgL98PKdARYKpFzRa23TLYUSxQEEIe7K7-j9YcacWzeQQpNserbDKrESAJFAS2GVfAFmfHc8wa3xXy0NI6RWY1K0YEq2mhus2GB53TF1RlwVVxj-Oab_77lztddqvU3a1YuJ-ULd_VZHbDwef7ALEqhPAZu7_FBVvOYX9cQ6VcukAY59XHAIS9xkagWqJ5cyiV208fVB9dQHroh6jDxlTpf1JxEkibX3hyw8PX58vSY0bsjgPqzKjC3KVYrWydTlN1SDEWKPuidXcWs-0fLpWLHX2KGEItMLR_CXeauT5V7m6ovq5X-wdw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:02 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['454'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:05 GMT'] + etag: [0af830dd-f446-403a-9bd1-c3956e5079ad] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:06 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzV9PEWgZhEGJXioveoW6cXSfyDTLN4Xy4H_GbAA0LZew4N4yrc1X-fuPr5knPE2qMOx9c2eHi6aTem4vsvBjcAp6sRwlPbC6G4DGE6sUJ3JvEaouZFl93wSp5FsiziQmH97UKhrIlO5nHrwTSuAHz3sBCEViasJcfpqh1YsBMB5kgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076688","not_before":"1521072788","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc4OCwibmJmIjoxNTIxMDcyNzg4LCJleHAiOjE1MjEwNzY2ODgsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3VmpsUzhBQUEiLCJ2ZXIiOiIxLjAifQ.xoUYKGEBkIUQV3BJ2HIN78yzRgErXVzA5-OWW4L1odR9wkqbMCy4KOSi-KZb-dq0_iffDc8M8ssu2VTGUDGlohhX_PRHOrGjEBBXk7_4XGWP9mVrc7BKNNhZyOos3vj6OeDorK3RfS3I1kznpSmIVqq8DFxoMA1iPiml4cqLgbpwGixkhyt0CkZOeH6ZYPxE-YzWvspa7F5NCf36iM3LrlC2b6u4vGruFCfuE04GBbPAt40jsEt2dBswCWPDuBykaeY_uljnNg2SxBNGgVNqZhghTVeZO4bUyt1Bb0bsfbGKq3vHn6RcUpqGebUThcCfWie0Ame2ur4fLKzVgbkFUQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:08 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: '{"etag": "0af830dd-f446-403a-9bd1-c3956e5079ad", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: PUT + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"823f6eee-bf96-4f8b-8ca7-5a9659b6ec39","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:09 GMT'] + etag: [823f6eee-bf96-4f8b-8ca7-5a9659b6ec39] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:10 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJrcX4HVM0UtQsiOiJZpah2dFh6oUlhcL1Va4Y1bm44NSonri4P1MPMJL6TIrG7CzycBK__haSuEVKtTnlqQoihoeBFX7-hgdQJZE2HODZf3JYlK2buDIbBgQQwnEbf7Fx-fHi03npxAVbNHIF7qwrFXy7Ow_0cNsMTWgTPRko70gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076692","not_before":"1521072792","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc5MiwibmJmIjoxNTIxMDcyNzkyLCJleHAiOjE1MjEwNzY2OTIsImFpbyI6IjQyUmdZQWgwQ3p2OGwyZi82eWJoazNwWmR2OE9BUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFQd1FBQUEiLCJ2ZXIiOiIxLjAifQ.A4ZPCjZVYypBQezJHP5dSTXrhUhmcQM8PblXeFpgw9nJmUqzMblPx_-IPN2UDomumvE4HDuF06ZGWrUZIia5lNOP991MT6WG5RxEIScwIpplBJ79o9W5dVryJ4myh2VjoJ5CSkxgwDoyynyeYY21JnjGxXZfPdlG1k-TsGDDQTbC5a8tZMJ2bRXU6B3_77xBM6wEuFTyhhD2H-MzqEUQPbKnhcuWDAYO0ERtDEXBpOHDGTVlKsGS2yBWG6rUtasJKw9arwwAIGcckrsn_2STtfJvK-CGA4nSgut8hWjvbhckMnhIwuNjZahcUyRu6_-LOUc9cuh1x0QrlDEz3Kh7UA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1abadcfa-54fd-4473-b821-9b1f255873f0","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + headers: + cache-control: [private] + content-length: ['455'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:15 GMT'] + etag: [1abadcfa-54fd-4473-b821-9b1f255873f0] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzIbmzmcIlX8bi_AfYWPmpMNsGIQb1ggRmbNXHd-_fSuG9koiMVJYNNPP431i2tSLjOAnDyL-yaCeOFWAh_Wz-U1bujGnsldyv2CZLcKom_lj2-c0gmtwCa9OFrRCTWF9LdqXvFslVRnSErmrpyM9aI59vOKRJBbsWfNCreIczb3ggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076698","not_before":"1521072798","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc5OCwibmJmIjoxNTIxMDcyNzk4LCJleHAiOjE1MjEwNzY2OTgsImFpbyI6IjQyUmdZRmd5ZmYyem9oZVpueUp2Vk1iNjErbkpBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFzd1FBQUEiLCJ2ZXIiOiIxLjAifQ.i7nW8TXnPp8h1t-8X7L413sgcmaS_xz8Mp8VR54Jdml_cLljnka67ukgGpPEiR8NEBiqoc9FzpM_zzdA_7TwzvJp3x89MJ9Yb6xKPqsIfEwst_-w7h8YUnQqNUHYb59o2IfPktGLTUZuo15iUQzo28cPkZiq1KmiOaIqiecyqWteluX5-qeizjWrkFisekCeYNMmzmlV_sV1u8PqPb6Jc6NDGtaWao2NfRj8CY4UILSA2QBtOp_aMN8tWBDDPjPH8wvFORadA-XZH_5bltBN9VltQkWdrTlkBKnU0LihBq4bDs6pzWZACG2kJzA23GgHGPUgqnnU5SLhV57uuKofwQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:17 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:18:20 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:20 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz7KNDqgrhlQVX0LnxJdKe2WZf4GTz8n32jkVsaeFq5cZWFqj4l7O1czt41X1n3vwTeGsoqJWWqjn3XERRu-itgGNph-Yuf9-PBi1P0X5Cy6Vr2GCraqweoNs7VsM5ZjdY2nM4kF54ZY8iak0xr6wS9w7Z6-V93peaEsdsBg_rVI8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076704","not_before":"1521072804","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgwNCwibmJmIjoxNTIxMDcyODA0LCJleHAiOjE1MjEwNzY3MDQsImFpbyI6IjQyUmdZR0ExTzdwQzAvbmpCKzJLckx6T2xVbHhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtPQk1BQUEiLCJ2ZXIiOiIxLjAifQ.rgX09a8MWLqLVRKIHSlgsRW7HvI9t02pLBENpR8t89q4brXgrxtDXoSG1WqNJIHxTjp_buAffWoG5F5A-lONVghcwv66C_7fMuczWgDmeX03hKtiqNHO_Gq4EoFNAxvjG4iMOrDviTgYbVzgGx_IK8qn6JpmO4T3BxUwpIWuoI8gVfjxSqAKNXBGU_-spiCnvetIxXlM_45vlrAk5lE53pf92EXf-nY3AYpJMYk9bWoSHSSVtX6PAUpcw7KweUi5XiKf0tdtTx0mWJZl8qTu2uZG9dzr7TqdEadRA2xPzDX1-NgrDd5JpK0YVaOwFwYK1ifBvFLDGe9Yd17UkPZr9Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:23 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"8ea96a7a-e981-47fe-bc8e-f383a8824b19","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} + headers: + cache-control: [private] + content-length: ['453'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:25 GMT'] + etag: [8ea96a7a-e981-47fe-bc8e-f383a8824b19] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:26 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJlwt-g6ryl9tiwKUbScvAQrGhgP1QZ9mdvAjUlY7L6egGl_mJyB26xC8aOcrt3Zoezr596HbK-Ql9Svc0E1D0rWWhMAbe9t88OI54DUSe89mYD6YQs7NI7YESyoSCtrWFQ6_U2lZ7mIe4_nh1DWij9kTWDNHfITWCDJ-VcQtNb0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076708","not_before":"1521072808","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgwOCwibmJmIjoxNTIxMDcyODA4LCJleHAiOjE1MjEwNzY3MDgsImFpbyI6IjQyUmdZQkRxcVRYL1hpemxFTHY3Y25xWmVmOFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dmd0FBQUEiLCJ2ZXIiOiIxLjAifQ.CX9YXrCXEcglgyvGpw0f81piykqC04DbI-0Mgxo6SH4wT1zf4WL4fP_zmYMkUtrtv7mF-rSsf20a-4dI-RgAzxP3cbpffgVa6A4JvaNVVR4NaD0I6hl59kyqa9LlgvsGhUJiJBrQILhePcSC-Rfu4R0csoi0j27MvST_MnELjlP8BsGG5YhCcK_sBQQsxU-Xm6LiXqGVqGQhLQ4o1bsF3U4vV_n4CJBEpEGPkH9IoEXMm7qHjuY4Bn2dW3G53x2H7U6NPN2IvZKNkyCBgkqyyTKFBJhDjP0uFZGzufdtVQUVR1CN1vl4vDvd5ZCFVsadOb7B-G1rN49SVI89MIm_oQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:29 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:18:30 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:31 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzXOoSfu1UvqHmdOfqx6Rw1Set3qzTUxXXKengcEzPQVMtkkGSWrdxCoSasIBOXf1qTCv0Oj6Yd1VHFdg53w1GBrLQtkz6hVIpuauOEeBMSAPd7oq29eQNKzgNEKoh9aXMiu_l2PsU07wSnPrTNyzIoswS8n6J6DWoDFSz0OQ6bSUgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076713","not_before":"1521072813","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgxMywibmJmIjoxNTIxMDcyODEzLCJleHAiOjE1MjEwNzY3MTMsImFpbyI6IjQyUmdZRGdrb2hTek9HV25OYXZ0b1VOWGwvcjhCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjU2VVdzS0xTWFUta2dvU2JtdzRBQUEiLCJ2ZXIiOiIxLjAifQ.mFTYXe24ry6SB32NimrRljY7o60Y9MnKmmekWjkur3NBqeiTHicvWuA2KjkoCgOXZfC65DJ-AcVo5gsfyZHvsEIEF7DgdWiqpeHf-pW467emHGE9jMsMezK6-c9T48XHf5Mzitt8K58qJfVZgEIUpNqbamejf34JcP5sMbU6BUwTcO6fXOvK-NrmLGtj0RIPpwtDraTwDsZ0edgyVn2EiLANXdG0NcdJH8ysxdB16big-p21BwWc2DeFtvS-YzMW2wrbyOJfKU2H2lSnnTskYCI3e7ydnn2pmZj6AtuRAns8K5ZE20pPFcJTe6REUbW_uAlgDnx4OvwXfKSBa8iTPg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:33 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5179e3be-9b4b-45e9-a0c5-1515620d1428","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + headers: + cache-control: [private] + content-length: ['439'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:35 GMT'] + etag: [5179e3be-9b4b-45e9-a0c5-1515620d1428] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:35 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz2l1GQDz7ivjHc3srmV-mMVTfYh8h7rM87Pzh8mTf4xbKmTB_7XBlcLm-imTPXg8BARemhUbRmz1ILbC1Uz5M_H95crOPOp6I__uw72ITAf6dhyXiOo5GK-PXk7wSkkTnVMtb3dEneVRJNcTHXQmrtucPU3NBfxUixEgStAp2RwogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076718","not_before":"1521072818","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgxOCwibmJmIjoxNTIxMDcyODE4LCJleHAiOjE1MjEwNzY3MTgsImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtweFFBQUEiLCJ2ZXIiOiIxLjAifQ.ppUbRXogUdAdiOuci0e7SYK6DAQ0IKtA3CT3XjmHP_13CMUwkvBGs9SCrpOSN0O_71UQVryGAnjSwWyFlZcv7TXQOWeOq1L64phljRDBrS1RT4qkIMnfe0nL5CxtQo0H8jJhkeqVZkwy7_xFniSsDBjwM7MAusYFXUFikG1wxy1yVLtm-Y15Y3GIsMMDWvGTE8pyJmiWtivY2LZa5s97JABmCvlbcgmDAwd13tCE39JSIPL2t1ghxvXPbhVIfMSc1lnn50QC6iC9_gJZZa_8FjcuO46llz0iQCxsgzz1lA-IJzlbR-e6OLCK-bCTuEV9_P0iUEs9GjffUYwYmkRJfQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:38 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:18:39 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:40 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzyHuSMGsfN3UelwDphe7Y0_8X7jnczkUZecexy7nWyoKSsSW10N0nVRENQZPn_Lv73JqiTNM0I4PvGaKe0kH5CeZs5kI_MJkDYHPupwGepTbMvWdbQB1Hkc3DJNs7cm5ju4m-zgHWSNn6GyyPxMla_5ocmBdf6t_HGcKreQponKwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262799","expires_on":"1521076722","not_before":"1521072822","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgyMiwibmJmIjoxNTIxMDcyODIyLCJleHAiOjE1MjEwNzY3MjIsImFpbyI6IjQyUmdZQWlPWTYzdnNqdTFlTityU3ZzNWNTK1ZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyNzk5LCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFKQVlBQUEiLCJ2ZXIiOiIxLjAifQ.WG0gbNaK4Fs-TgWi3fWAFGvLPZnLCEsOptYMyahgj29a4loLHWto8rgr3_diSQmRB7UMr92dfTHRJfXvXtV97eUt_9yboBudBMeBvxEY5m00IvtD3L3Gqw7CpYPw9_Lqs63ccEzZDT7aHHCLjgwPZJZrUxM-XyMsZA2C7sq-PhqrjRrls1H1l012BN4Q_Qq9I620QNoF4-U_kMMgc5YyjN-5Q_8263qBG9QXdr2zJPWTnLfc1p8fM8mGKA96Y9tirCjWriAcmFlS8_U_xbsx3fK95nX_WMrVG5GvzFLv8OKZA6g32AFdBvnnmqNRiC0yBdQfDSLZsgERvK1LQSNRGA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"d14b9a5f-9125-4741-ae07-d6d8c2e5ef67","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + headers: + cache-control: [private] + content-length: ['438'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:44 GMT'] + etag: [d14b9a5f-9125-4741-ae07-d6d8c2e5ef67] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:45 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz8UhqMtElu1gEZg_pmXGonO4CTpULYcjQZDFcUr5CfrUqZ_JNmjVmZICENoyM9kAbokrtogwRdVSOimU_mh0M9vg_wbrDWi2nUaFH35UJjTYMY1bgyY2dr3pQnejo8kRv0GtMKJEtjuTcQFKEfDCYxHVJD5Wy6oaJP40TFSwltgwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076726","not_before":"1521072826","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgyNiwibmJmIjoxNTIxMDcyODI2LCJleHAiOjE1MjEwNzY3MjYsImFpbyI6IjQyUmdZQWgwQ3p2OGwyZi82eWJoazNwWmR2OE9BUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtZeFVBQUEiLCJ2ZXIiOiIxLjAifQ.Ywx4JYGvYJG2un-K_6PdvMvNk4piacHmh6och8nEMZe4KIsSm85rjSE7zmzAqUkPZltnC8ezzVrC0WuNsI4xDGogWZsgEPTCAcLiWzQz8Bi1DwHEhNJB7irmxRBLe3AwlG0JBfUXDOsJjExbI67TxPDCmdIdo7obdCosQ2ZO17hibLWfqZUVWBS9crynPL7H5ArTTtqQnFgncGA-25DkcL3NJGIqUgYyS4xxvqQTwOpsH2Sg-pWM4YZn07qvj9_7ILpb7jDQYVDfYXOzqxxAeUCuJQx6Rgp5C28OXXjnaY3imdrzj2DDri8gue5ivHHT4H9bl423b4DSjiI1gthqKQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:46 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:18:48 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzqG_GE1zknP6wDiPqbJEDse3lrmR0P6hXWC6EvxcdC4SWf7vZ3rtuHAHJpZMrMAJ5awqOo-EUne-UHInrRVqiMJH05NLdczCC14oQX-oUYUQZhUZjiMwmps0hHgyzI58abVNZj5ygl4YS6J0mZvR8SGzU0jyys6Qa_eAH4YlO55AgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076731","not_before":"1521072831","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgzMSwibmJmIjoxNTIxMDcyODMxLCJleHAiOjE1MjEwNzY3MzEsImFpbyI6IjQyUmdZTGo5bXBsRmNkMlVWbGFSWTdwbUFqY1dBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3VmpYelVBQUEiLCJ2ZXIiOiIxLjAifQ.ivqRPIzHX0yRDHwTjIABAZyQoRUwvXKNhDRyV5-WEaL2mmF75tTFlakA1_jUg4FejRlYHfjDkM3ZyWYuMc4tP9UeXBhQz07Oh1VkhuAd3Z3Gc780I0tOB4TedyWelEerfaNYp9XHY8i1C6zHWg9tGapG8dePYMswwMmG53KyrLZfYDxDV3bspgTAYU9BEmR9G9cctVtGdYB_8KESXrInNBLj5jjl6OiYnyTYkzdZ0z5WpVR3HBE6pRMZE21jD5qQiwWTpcxH32QnCeqYnMhuCUZJMY7kHO1EsWnaAarSPqiAdcEyKYJUByZaI3tbCZBRcQff1UK8sa6D4CU_g8dErA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:51 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"90b36675-f763-4968-b40f-2d3bb5ce142d","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + headers: + cache-control: [private] + content-length: ['436'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:51 GMT'] + etag: [90b36675-f763-4968-b40f-2d3bb5ce142d] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzm1jixZ9LW2FkhESr8rkYtjBUO3V6yTw947_6Ek0NcFDWOBftWcQY2xszbFODqVg9zkP5rWJARm8y_VRU0XHKflicSO9YCItMYrRCPrpdxTlH-LifnNeEdzEjIPgkZxTnuLcX2Oc7BdJSAh67bPbiPu2tP0k_biScsZr7ThguBIwgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076735","not_before":"1521072835","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgzNSwibmJmIjoxNTIxMDcyODM1LCJleHAiOjE1MjEwNzY3MzUsImFpbyI6IjQyUmdZRWo4ZTd5TnNTTXdjbmZORGNFWjlWc21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlhrYi1Uc2R6czBpenN4Z2EzQWdBQUEiLCJ2ZXIiOiIxLjAifQ.Ze133w8blEuykouz-6Suneos3YaGwLuIxxpOzUTlCUS8-_6kKsEWRSNhkyZ7fOw1OeZPCAsUXJiRqMb_GrECvpXwo3f2wFi2HTZcqvs-sHo6zbdJ5w6BRwIrF4JZXoszet7qLeE2Rt3W7WEY7M8rXrKgiuDDP5Yo5LjgTAuikRvZoBcSVDytZQCjRA6KQXtu6OMybUMO1-ae8lzLV_A-8wOpRl3UVH__4sIBPSAHIMvLiPKz9UD0vKcQRMn2IorSzvAH7RWN4SBTuxrCH5sjgcCedmjMirb8YvjO67qmpOECLnLYlFApmw554uf-SFgf70rYh9_xq2qfKJHhfFUX9A"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:55 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:18:56 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:57 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_JYZVJiikn90juGsudACnfEyTJzKyvJoOVNOQYbcy7oJV0H0cL7NJwiFXUZxjl30wKnQIDjOqRO_rPADuBIFvXIgoEiPCrJfv9FIvF4JczzvgtA_G49jnT6rq68dZHAP5MEMhliKV95Cs0inBRP7hB3Zy9Kjf_HGR6O5dh23H3YgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076739","not_before":"1521072839","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgzOSwibmJmIjoxNTIxMDcyODM5LCJleHAiOjE1MjEwNzY3MzksImFpbyI6IjQyUmdZUGpkbGlhUklPaWtFS053aDJmbGdndEhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkJDTF9LbUJCRUVtT3R1OFhDaDhBQUEiLCJ2ZXIiOiIxLjAifQ.OYOdr1puP67ErACi_VbJM-4ODzIf8rDtPvFlVjHfa0ZntWW4UlKpgnbf3sBac5Rs3DWzbB09y_JhQ9w-i7VjOxPaBeQDv_SauOULFeEhXC3l46rEGxm-IxZPGNfbySb2rByYGW1I891V_2L8kK8CQlPau23eesNl3XjWIg_iVQTcdif8CkYmJ8pE1W9z-hJ0FuOZL_O43FadLakAxqMenj54GVYfuByf2uK0N8Bv4bVQCzXGi7tkqpjoqHGoKaAVQ7ssKFX5Vz6OZDQ7l3DbK2ttSIbvg8iqOOr0ObOxzdLPYqpdCexM_WPfIrPJGk5NUmh2gohHVrlX0ClPFF_zLg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:18:59 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3d5eaaa5-9557-467d-b4f9-7883c6df6e9c","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + headers: + cache-control: [private] + content-length: ['471'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:01 GMT'] + etag: [3d5eaaa5-9557-467d-b4f9-7883c6df6e9c] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:01 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzP00m3EMzThgW_wiIuyHq_kCua6_YeOd0pd03cFHe1trOGSWlUSSCUmiLinAzpzx1Nd5r3k6rR_1IEKmvQ8i6SmXiPjjUcWo5M5bvJEXNS6xD9G49EO1pJ5-F3_R30XAwxG0GdI2zOpTd_APo2BN1Ptqlqi1ks041HWWrHRs6vV4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076743","not_before":"1521072843","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg0MywibmJmIjoxNTIxMDcyODQzLCJleHAiOjE1MjEwNzY3NDMsImFpbyI6IjQyUmdZTmo4bzVsanRyVzgxY3Y3c3dzdnYyRFVBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlhrYi1Uc2R6czBpenN4Z2FiZ2tBQUEiLCJ2ZXIiOiIxLjAifQ.LQpZbs3qcE0W_eRVujnAIe1au3i5FdXYDgGpq-KpOZoyBULAaX4sBic0BQLF9xJLriIQDppgwUlZ_b6S1BBv-fHNItjaf8DN45un1V7CvOUO6FJ2Jftxb9AQVHplA-AzP4XV3Pt6zAG_LgNKekSSVkFrBSHxGkS9LgWnZqbQ0piSgxk1siBanvl1uVhD1MEfHR9N2bL4esYYBP-80LmiwP_Ix0dN6rK1fjCNCUwys6lR2b-84jPNLYofavscpnulmZcuETZ72MYCJbL6vv5mRmZzz29oyQOe9kQOjJPwJeEnCtQzw1ZesMfw0VYaQocRJZW-0vl-o9KTk2_e7YUfXg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:03 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:19:05 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:06 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5Tor8E_lqK-urdRWcL8NSPDYKfO0QaKhm9SqRwAODcip3CmA4eWENbO7iEi6xDE-_sdsiXEDa8PMJv_s7wk7KUg8CxYE5-S3xH4CNtC6WZq4-mtNmwTJW_i_AsxR8yfFMrGSvFvBiFCgSJOzNrd_fp2Hvxh7ROAkkRkc11dD2sMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076748","not_before":"1521072848","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg0OCwibmJmIjoxNTIxMDcyODQ4LCJleHAiOjE1MjEwNzY3NDgsImFpbyI6IjQyUmdZTWhlejJHZU42TW4vRWFlMXN2VmJwcHRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFHQWdBQUEiLCJ2ZXIiOiIxLjAifQ.YKmyzj_MR0Syg7zq9m8CqE61SQ_8x2GfF17__tAElrmL5sMVuXo1Eyl0mi0nHdwvhDPND3ZJ52IQtF3GIQTHJ2lvMYol592mLNOcmKvCxllQwQ958anLeXF4EDOaCR1NIBQDaPQDH-lQHOjqapNFR9gGBgUwJkEjVF7Sdl40YpcDKZzTB-2kDv5jW9ixHqiK_9VACsSkEJECusfEJv90qvmCd-6haXvwBtLsCOdrX06pP8tJhQbTTGR3YkAvcRbSbNsBMVyXy1dSPwhS-kiHFq6Sqei2xfUfFS0JYXZA-3iY9MYs-0DPr3g6p1vbpljndXt_Ep_5FkUSXerVymL_Eg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:08 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + headers: + cache-control: [private] + content-length: ['434'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:09 GMT'] + etag: [ab848ade-e6d7-4c46-b182-fc0f08b42caf] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:10 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdnUpiaRKIJp3aX2s7I45sElzshUZmn_C4W8BUWb2jM6HR5gS19iXFHEbvRYA7wJj9NmP_aBqxZJ7VnMK6psm3ZbJVicRH3AcGDSJlxS_qJwGGBRxqAQ-hRzBJ--p7q8Gpcp6A3kKFrd6EPYXeGpn4AMcrDoNV59lvqE4EQ6iVPAgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076753","not_before":"1521072853","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg1MywibmJmIjoxNTIxMDcyODUzLCJleHAiOjE1MjEwNzY3NTMsImFpbyI6IjQyUmdZTWhwa1dLN3ZGWXQrLzZ1ZGNLTm44VldBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InFRMWJJZnhDNkVlemNWQVZOQUFBQUEiLCJ2ZXIiOiIxLjAifQ.hlkEAGnL8sV-b1zFhyGFFn4nRkh9Csd-RLAHixICPz53WmbRm9Yv8QH8QKIItYC99gqkZf6SXFMVYLnpItNZkhSku8yJb163Kych4egPTtWOMtuUeYwSACrgcLy-NlDNn7i0hUx-sNA09_rqX-EI12NKUKGItxXvi4GNaGQ3nEOxWm8_4O2nzKqSNg0nG0y4MQv-ZG6wXqmEHYJM5jWovAq0STqnDnZmnrH80CySNsxiEpn0hxSVJxJGhu5XEXZnpnZa_vxwLGUvUUMOEx899slo6NzrEXzZNDeTZzffTkoV3YuG-FZE8x1Xwews1vIeq_zOlofqZ2Q4Zo35wrVYiw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:13 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:19:15 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:16 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_IQy76JSNYJznE2ByEBt5TK-JAjx6guv3N2x1lMifgwvJYUjMrNlXnUxN7zPh3bUmL0FKf1KjQg5AaLUt4bxYR_VOCYN0LeNEyU3xtlH-fIfvmAgntmDNoAcg3A5cMyIsKelSTSiuOLxTUHcq2dQLPZV0zLJHvtXCtaM12xDfB4gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076758","not_before":"1521072858","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg1OCwibmJmIjoxNTIxMDcyODU4LCJleHAiOjE1MjEwNzY3NTgsImFpbyI6IjQyUmdZSkQ3YjdocG51RE9FMXRtVEd4N043OWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im9EQ1lNRVZDUlVHRUhfX1VGaWdBQUEiLCJ2ZXIiOiIxLjAifQ.UxjgmBuVP2PZj-f9AOQ0VWQ0EkaWgY2HTd-4IgkEz-Ryb5aAA8l3Sq8RFhOumSQ7xgJFMavTWl6zbzQES6F7XvzCjvKjm4XAe1-50_rX7VReZVbeOGikyv2CKlwtNmMGD8LDnl_tKzBel6uYtldvEGm2Gnph3VcGA2eetneydkcg-jN3ozIvVO0B_gsG6fFsJATzTjPGHtFJpZ-FVJ9I-7QEHZyJFpOHojzuCrnDILqqWZuVsdn97YgpTbOEQhbkP2qIcgd5GAY540kRGsDvnOKCiInvQUYAvq58d4DIULXwr3LFFzDK0kjo9tsD05I2bwu2dn0xt50nJp-BstBfiw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:18 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"823f6eee-bf96-4f8b-8ca7-5a9659b6ec39","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:18 GMT'] + etag: [823f6eee-bf96-4f8b-8ca7-5a9659b6ec39] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:19 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzkKY1PkmKdqdG0roWpSs4pMrDBgCRb5efbc3I38xqaxPP-3zjJmmilFiheFbHh2iMhVhV8xROyMJGkMqapa657ISCqjJ4fSU1iYBG_EGGCgTx7A4lrs_UmTqBeBzbqiSWG8xmPGPL_nBQf9Q0xX4LbW__qJlmczqQ0oiWIBFjyLMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076762","not_before":"1521072862","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg2MiwibmJmIjoxNTIxMDcyODYyLCJleHAiOjE1MjEwNzY3NjIsImFpbyI6IjQyUmdZSmlZbVA5MHo3ZlN5UXFCRXBjdERIZUpBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh0MVVBQUEiLCJ2ZXIiOiIxLjAifQ.FIKwXXcycQwggl6HM_6SLUrGEcZJOpSQxYv9FMLC7TTmzKgRkYtxF8EAhRpg_n4Eqb9CAUdo9SGBfhSFAP4ywFu9lnfqhzPBmXG9qYh_Rx7I8tNr5qExZNN1FVbTGpa4ZZYLjs7Luovnlc5PkS6TTeoxtiD-NTZoaMqByyvPVNn8JOeKeDSCW9xD2S5yra9ICMY54bNIjNkeFj40CCMLXH36F9JguYI3VkV7FhcdkqgG-kVVo81WpCV9rEw_HTbx6tYQX37lTCD5GIehziUxCmwnu6v09H6lXHHViQJoS1iqXOJx3rCj4IhrQ77HnMlfe2GSh1b1r8wT5EEzGZu8AQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:22 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"823f6eee-bf96-4f8b-8ca7-5a9659b6ec39","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + headers: + cache-control: [private] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:23 GMT'] + etag: [823f6eee-bf96-4f8b-8ca7-5a9659b6ec39] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:24 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzjENfNtZvUgde0fT8MvXMS2OuJCzFXlDdi5Sj0K3577-akOLiDxcyIXugjjurU_JrxNvDNi_tbFlzS6lkJchqRb_uZMCGeyeiC0xjEGjfblJgR-3DbNdGmVpCI8GaVL8qS1WBI-bpQJDvyiX2uBhoRC3RKeaOgjBo-Tz23mRJRYsgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076765","not_before":"1521072865","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg2NSwibmJmIjoxNTIxMDcyODY1LCJleHAiOjE1MjEwNzY3NjUsImFpbyI6IjQyUmdZRWo4dGJDQ1JjUno2WnlIRDJkejlFVzlCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtDQmtBQUEiLCJ2ZXIiOiIxLjAifQ.JhjvBQS_QwgovOfyZupVGBs3zwvi_X2JybMNptzqcSjZxtYv5nRWp1pAAbZsunaUYOkLmNYLHIq-8Z06bvRjxI3dEoe_f8AznVEwF35bROfagIa4-ZyH20EJG7ZndAKCXS9xosuO-obR0hjCHkAJWetwBkxmGDvueGHQ3Vsgx6ARZn7GWNhfFyJ1RQd4VLmJCje-jwzTL3pfMx86otofX3IXdeu5GODvkUsW5q463SnFWormF4OfJe2xf2p0L_AfzSn2E7mi1lYH8gmrGX6jx2wcIFjOxEQrE4OAwtbpLTVNLB7wRfepH2ZTxLjfI7o6UToQr-Hb16mTqXWBVKncKA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:26 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:19:28 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:29 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYqcGWLKGWGx8xWA-Df_HFzJoV8ZGDQD0_xHAsfRE72Njf0-wYR3GDysFYCdVOZQa1FxnVo1XksLSUvz6ciaym_HhPAlQAR9qkoiC9UI4dHUKOBjtIDlXbrPs9CkWJmWT_QFo6AQoxWFz54HTJRRnSV1RMYtjlQV_ILH0deaagDcgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076770","not_before":"1521072870","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg3MCwibmJmIjoxNTIxMDcyODcwLCJleHAiOjE1MjEwNzY3NzAsImFpbyI6IjQyUmdZT0E2bGxIdzd0aTZWZjFMandkbmFuOVdCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlhrYi1Uc2R6czBpenN4Z2FtQXNBQUEiLCJ2ZXIiOiIxLjAifQ.m1l9X1JSERnc3BplXZESC_-WOqwJKRQ4GcorADeOLlKDPKmIDXRHfA8nWlACvdWyliK88vw41fOlUJ4ZqUbXxobl34jgfq0NTNqW4-6Niyto1Xf4aHnz7jMmihoWNhYO-d_8q2LytKHRGLhFaB8r-Rk1SBhWWcVbPxcuyJu5RvGq2226efWUz8yh6jCP29UgdefWjweBja_qHB_mRCxsDnrIWnbhYdrNsLXopye7AlyR3MFYE4NH6y3jb5iy63FuiHpkGXQhejS2mm98W5qF9LNB-gGdxp-SLwREYN6znny6_lDx2e6z-B45aGlBa48Cb3x3VXUl4_k7ROPj6AOMyw"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:30 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['226'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:31 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:33 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzzipXIi27YlY0crbXznS_vDkMxCWxjnrwyX1w6frM60HHpVF5q6ld88H7MkgP-g8qSBxf6K5-CQvS4GjD56ScqfJEPk8d_X8wMZHC75HfWI_16FyvjnTD7tQkHCpC1k9pq7w1e3F66ZEw1d_qkbwhc7CvIX2E0qohpKuFHxMXeHMgAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076775","not_before":"1521072875","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg3NSwibmJmIjoxNTIxMDcyODc1LCJleHAiOjE1MjEwNzY3NzUsImFpbyI6IjQyUmdZS2htRmE2cVgzWmxRK3VOVTlFQmhaWjVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGsxQmtBQUEiLCJ2ZXIiOiIxLjAifQ.K5go-bCKooFD07dbGc1K9ORL8MiyPfCDN4yvZLhLp5NwI4CN_fsN1-8OzwZ7IcFZyRsowiZtLlbaDCeJHpVq7bLVz9IxjI2wnNLvVCJllDpRkgP9qKd8Uaf-GzNtc4x8CI2wXoeIB3bkrEaQYnKnsKyVFM0aS6eXVKMUmQ4rC64T2mWVRppCX7dXHqJc-kutVTInyXuGtnpgC1V3e0juUsc-l6cg9bRAynVtP0HcnEr7I1NVVnPbs0nYKggUBf005oGw38DLE2bBsh1RyeIzFqA5sjJArkQ5fjbLMRdwI_ia8FNm7YmWjKGAb7qRRNF5mP6gFvq0a6Jd20fku-ZsiQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:34 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: ''} + headers: + cache-control: [private] + date: ['Thu, 15 Mar 2018 00:19:36 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 204, message: No Content} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:37 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAAekmjQu7m99lb2RNJ7d1VnP94MTCRYz83jtJO_gCo0mGkJGJ-WCRgwZgrG7wm-gx30pKFqy-RPIjOOL7Fk4cBEmzSQ6kxekmb6keGjLAX2U-5HD3aZUsMGYpWW2-XwCcHE4b6cKifqP9kZ5j0ExmRrQ0NV2ESaE6nvYd1dx2D8gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076779","not_before":"1521072879","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg3OSwibmJmIjoxNTIxMDcyODc5LCJleHAiOjE1MjEwNzY3NzksImFpbyI6IjQyUmdZRGdrb2hTek9HV25OYXZ0b1VOWGwvcjhCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ijhmdno0LTVWVUVTNkRCTVN3QUVBQUEiLCJ2ZXIiOiIxLjAifQ.m07Z-NIYvROXidvlR5b_6Tkx2dLa4nge8aRXhQzIlMjrvfkI1SpvQFrpsyR79Fr89sFxIWwNIsgyRrzceYczSKSEiHM39151-gBUpWtpQrM74ArbFfPSL2uf6Jtgv3bZ_LFAi8yzbEb5SoENEjQb2Y27QD2Ez9gOWWZltEhmrmMGeQLKbfA0G1xtQnIkHgCwSabmDeBzXdqTJfRLFMPA7--haYXHvaNeJpn5aK58NjOaRJZZvTKZYVxeqt6acR_5L5Rzsy4YL3xl-KgCt6tnylWRwd3T4Gl0SBvRg_kxZ9zDeaMMzri46IUrFA2q68NAYXfvYUUJorTSdjEUtj10IQ"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:39 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + response: + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + headers: + cache-control: [private] + content-length: ['226'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:40 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:41 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHznK7a4WiviH2w8cUt6X3qXwhlcvJc3Fz0lk7jALPS74Dkk0nhyxYCJy4pjqbkcg3G0K_EGIiq45njFFSAO6olabN92v42AUA4Oi5_AqOUsNGLfY3ClRBHxcjiFBgLxLywQTqWICFCmu-Xdr2QdfqqbKEOiF9Ue_Y_qfwZEFgZzLggAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076783","not_before":"1521072883","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg4MywibmJmIjoxNTIxMDcyODgzLCJleHAiOjE1MjEwNzY3ODMsImFpbyI6IjQyUmdZSWhMZmRteGIydDBoK1hXcHNQTm9VZVBBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dDZ0VBQUEiLCJ2ZXIiOiIxLjAifQ.ZqdraP0NAz-XeSoGY2QnFJJirLplnZljzEiokyvUo9sk2nYoHXgxA0UEHOXPOpzNuynoPR0QcA4x4Cj-PuRBs4iqUOYW08rSX0EYIMtUm7i3cGR_xEGWBu9DZ5NQe4My8ouMJ0LXj07Q2hJ4haL58S7sjAKAJ-gYmSfH8DUl4FK7eiWRBTqPHK6MjLX8Kwnr8QeyoMa-yHjpORFOQ-JauTOrq1HJI5yBJBVCaIM5cE3LtEMz7-VJmT6g2NoXjlkbbynXr1QF_0D29N3C4NhiIXTKppmz5Bme8tq1_OnBdnvI1Xd2h9UNcFjhOjDh6PqSV7pLejW6LCBJPgaStidD9Q"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:43 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 + response: + body: {string: ''} + headers: + azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566699865208327e7aa7df5?api-version=2017-09-01'] + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:19:45 GMT'] + location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566699865208327e7aa7df5?api-version=2017-09-01'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:49 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzWI7qPCG6y0mcfXaOSIXm4ctWTwjeBzt8PllOssYnpnMwVpO42gsjDZd8zq3Wo_ugSaKd3GqzH0UydlcKGq3ieqA_HKEc6olbRxtIFxHy6mnMAyjxPu5j6KXPUFltof7PRznOp0unTJNo2eBgF8bTkNljSDYe8MCfngWNsrx-Ft0gAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076792","not_before":"1521072892","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg5MiwibmJmIjoxNTIxMDcyODkyLCJleHAiOjE1MjEwNzY3OTIsImFpbyI6IjQyUmdZQ2l6MXZhNXZPbnhOdDMxaGJPVFhocjhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3VmpjajRBQUEiLCJ2ZXIiOiIxLjAifQ.N_IVg_aMTFAC8D4hQHXDB3SGXR4qSn8h-BJCpvZrfYEZp1Ftn_eoxBVz-3tgu5lv9KGRxabM-Zs9FBvXC5twc3TlixNkQvYeaDSflfolGoIlNzej6XhMPoVCF3CGmpuoqRuMjQT6d1fWc8e7csQ0qyrNwR7KeN4VRUmV18GL_KJnWypEGh2f2xBkmZfqlSXu8WZSrwMXFkgZfO09rHMJ2Gc0-EVDI-z0p7-Kc2V5zZ8Ia-iksjC5nRTXGa9QnBVC891C-AkbtriwLJQt3RYPDNS-Zc51Z4SaoLYtUkAkdmeFQn2y0Q5cZ4DHAlcgY7QijiSt1yxUUe1mbW4XUCHXIA"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:51 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566699865208327e7aa7df5?api-version=2017-09-01 + response: + body: {string: '{"status":"Succeeded"}'} + headers: + cache-control: [private] + content-length: ['22'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:53 GMT'] + server: [Microsoft-IIS/8.5] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.18.4] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: GET + uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + response: + body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + headers: + access-control-allow-methods: ['GET, OPTIONS'] + access-control-allow-origin: ['*'] + cache-control: [private] + content-length: ['101'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:53 GMT'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + server: [Microsoft-IIS/10.0] + set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzEvyNRCMnyQuGjCoLs2VkDFNAqq4VUyD_Nu5eEEEGwFW47gs770sdtZGpPte9TiYbqjmKaMOOuKiych1gJP2ox_Xcy7ewZHYfD_4J8yA5zWYCWZAlqodvAQMY76_fL94Q6bAtF0A6R_uEXT1-n6KIXmfoWL1jaGEbiKKaLXH8gVogAA; + domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; + path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + headers: + Accept: ['*/*'] + Accept-Charset: [utf-8] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['193'] + User-Agent: [python-requests/2.18.4] + content-type: [application/x-www-form-urlencoded] + return-client-request-id: ['true'] + x-client-CPU: [x64] + x-client-OS: [win32] + x-client-SKU: [Python] + x-client-Ver: [0.5.0] + method: POST + uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + response: + body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076796","not_before":"1521072896","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg5NiwibmJmIjoxNTIxMDcyODk2LCJleHAiOjE1MjEwNzY3OTYsImFpbyI6IjQyUmdZSGlodjZlN3VQQ1k2WGIvMWQrdlBFaWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjQzazEyZjZsTkVDR3dHZ19LQUFBQUEiLCJ2ZXIiOiIxLjAifQ.nW0ghdVm_j7F332zpyua8D4RVgiw5lc6n866PStAL2a0iXr43nuokYFZ8HRNruoCYJfnk2curK_9sLjeiw3bTzc-lnyXkGnGse9ngIXhZoN1Y0KMFsrdpdI5MzX69xJYJDW1jM4nluBcx7GLuXKt0HiOe5AUHlUhZ_yw6bHhriIH-wd0svIBgHtlM1wAqlCkuFa17GdSEZ_iXZ4JKZE14sDxZvICUXq-woBNWweaJI3fC78YBPFJIAxZ36LekoE1cKeBoNLaP3ykrrPrtCVWx1QI1TrCvKwFydF3pfYLolHJEv68rRUb7mV2U4XL2sBJX9CgycFKUILWW3WhSNcKGg"}'} + headers: + cache-control: ['no-cache, no-store'] + content-length: ['1387'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 00:19:56 GMT'] + expires: ['-1'] + p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] + pragma: [no-cache] + set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-clitelem: ['1,0,0,,'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [group delete] + Connection: [keep-alive] + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.28] + accept-language: [en-US] + method: DELETE + uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + response: + body: {string: ''} + headers: + cache-control: [no-cache] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 00:19:57 GMT'] + expires: ['-1'] + location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TWlFPSkdYVkhVRzM2NTI1RFZaNlQyV0NXRTJCSElOTHwwRDg2Q0Y0MDk1OTc2MTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + pragma: [no-cache] + strict-transport-security: [max-age=31536000; includeSubDomains] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + status: {code: 202, message: Accepted} +version: 1 diff --git a/src/dns/azext_dns/tests/latest/test_dns_commands.py b/src/dns/azext_dns/tests/latest/test_dns_commands.py new file mode 100644 index 00000000000..96979cab018 --- /dev/null +++ b/src/dns/azext_dns/tests/latest/test_dns_commands.py @@ -0,0 +1,171 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import os +import unittest + +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + + +class DnsScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(name_prefix='cli_test_dns') + def test_dns(self, resource_group): + + self.kwargs['zone'] = 'myzone.com' + + self.cmd('network dns zone list') # just verify is works (no Exception raised) + self.cmd('network dns zone create -n {zone} -g {rg}') + self.cmd('network dns zone list -g {rg}', + checks=self.check('length(@)', 1)) + + base_record_sets = 2 + self.cmd('network dns zone show -n {zone} -g {rg}', + checks=self.check('numberOfRecordSets', base_record_sets)) + + args = { + 'a': '--ipv4-address 10.0.0.10', + 'aaaa': '--ipv6-address 2001:db8:0:1:1:1:1:1', + 'caa': '--flags 0 --tag foo --value "my value"', + 'cname': '--cname mycname', + 'mx': '--exchange 12 --preference 13', + 'ns': '--nsdname foobar.com', + 'ptr': '--ptrdname foobar.com', + 'soa': '--email foo.com --expire-time 30 --minimum-ttl 20 --refresh-time 60 --retry-time 90 --serial-number 123', + 'srv': '--port 1234 --priority 1 --target target.com --weight 50', + 'txt': '--value some_text' + } + + record_types = ['a', 'aaaa', 'caa', 'cname', 'mx', 'ns', 'ptr', 'srv', 'txt'] + + for t in record_types: + # test creating the record set and then adding records + self.cmd('network dns record-set {0} create -n myrs{0} -g {{rg}} --zone-name {{zone}}'.format(t)) + add_command = 'set-record' if t == 'cname' else 'add-record' + self.cmd('network dns record-set {0} {2} -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0} {1}'.format(t, args[t], add_command)) + # test creating the record set at the same time you add records + self.cmd('network dns record-set {0} {2} -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0}alt {1}'.format(t, args[t], add_command)) + + self.cmd('network dns record-set a add-record -g {rg} --zone-name {zone} --record-set-name myrsa --ipv4-address 10.0.0.11') + self.cmd('network dns record-set soa update -g {{rg}} --zone-name {{zone}} {0}'.format(args['soa'])) + + long_value = '0123456789' * 50 + self.cmd('network dns record-set txt add-record -g {{rg}} -z {{zone}} -n longtxt -v {0}'.format(long_value)) + + typed_record_sets = 2 * len(record_types) + 1 + self.cmd('network dns zone show -n {zone} -g {rg}', + checks=self.check('numberOfRecordSets', base_record_sets + typed_record_sets)) + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}', + checks=self.check('length(arecords)', 2)) + + # test list vs. list type + self.cmd('network dns record-set list -g {rg} -z {zone}', + checks=self.check('length(@)', base_record_sets + typed_record_sets)) + + self.cmd('network dns record-set txt list -g {rg} -z {zone}', + checks=self.check('length(@)', 3)) + + for t in record_types: + self.cmd('network dns record-set {0} remove-record -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0} {1}'.format(t, args[t])) + + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}', + checks=self.check('length(arecords)', 1)) + + self.cmd('network dns record-set a remove-record -g {rg} --zone-name {zone} --record-set-name myrsa --ipv4-address 10.0.0.11') + + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}', + checks=self.is_empty()) + + self.cmd('network dns record-set a delete -n myrsa -g {rg} --zone-name {zone} -y') + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}') + + self.cmd('network dns zone delete -g {rg} -n {zone} -y', + checks=self.is_empty()) + + @ResourceGroupPreparer(name_prefix='cli_test_dns') + def test_private_dns(self, resource_group): + + self.kwargs['zone'] = 'myprivatezone.com' + self.kwargs['regvnet'] = 'regvnet' + self.kwargs['resvnet'] = 'resvnet' + + self.cmd('network vnet create -n {regvnet} -g {rg}') + self.cmd('network vnet create -n {resvnet} -g {rg}') + + self.cmd('network dns zone list') # just verify is works (no Exception raised) + self.cmd('network dns zone create -n {zone} -g {rg} --zone-type Private --registration-vnets {regvnet} --resolution-vnets {resvnet}') + self.cmd('network dns zone list -g {rg}', + checks=self.check('length(@)', 1)) + + self.cmd('network dns zone update -n {zone} -g {rg} --zone-type Private --registration-vnets "" --resolution-vnets ""') + self.cmd('network dns zone update -n {zone} -g {rg} --zone-type Private --registration-vnets {regvnet} --resolution-vnets {resvnet}') + + base_record_sets = 1 + self.cmd('network dns zone show -n {zone} -g {rg}', + checks=self.check('numberOfRecordSets', base_record_sets)) + + args = { + 'a': '--ipv4-address 10.0.0.10', + 'aaaa': '--ipv6-address 2001:db8:0:1:1:1:1:1', + 'caa': '--flags 0 --tag foo --value "my value"', + 'cname': '--cname mycname', + 'mx': '--exchange 12 --preference 13', + 'ptr': '--ptrdname foobar.com', + 'soa': '--email foo.com --expire-time 30 --minimum-ttl 20 --refresh-time 60 --retry-time 90 --serial-number 123', + 'srv': '--port 1234 --priority 1 --target target.com --weight 50', + 'txt': '--value some_text' + } + + # Private Zones do NOT support delegation through NS records + record_types = ['a', 'aaaa', 'caa', 'cname', 'mx', 'ptr', 'srv', 'txt'] + + for t in record_types: + # test creating the record set and then adding records + self.cmd('network dns record-set {0} create -n myrs{0} -g {{rg}} --zone-name {{zone}}'.format(t)) + add_command = 'set-record' if t == 'cname' else 'add-record' + self.cmd('network dns record-set {0} {2} -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0} {1}'.format(t, args[t], add_command)) + # test creating the record set at the same time you add records + self.cmd('network dns record-set {0} {2} -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0}alt {1}'.format(t, args[t], add_command)) + + self.cmd('network dns record-set a add-record -g {rg} --zone-name {zone} --record-set-name myrsa --ipv4-address 10.0.0.11') + self.cmd('network dns record-set soa update -g {{rg}} --zone-name {{zone}} {0}'.format(args['soa'])) + + long_value = '0123456789' * 50 + self.cmd('network dns record-set txt add-record -g {{rg}} -z {{zone}} -n longtxt -v {0}'.format(long_value)) + + typed_record_sets = 2 * len(record_types) + 1 + self.cmd('network dns zone show -n {zone} -g {rg}', + checks=self.check('numberOfRecordSets', base_record_sets + typed_record_sets)) + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}', + checks=self.check('length(arecords)', 2)) + + # test list vs. list type + self.cmd('network dns record-set list -g {rg} -z {zone}', + checks=self.check('length(@)', base_record_sets + typed_record_sets)) + + self.cmd('network dns record-set txt list -g {rg} -z {zone}', + checks=self.check('length(@)', 3)) + + for t in record_types: + self.cmd('network dns record-set {0} remove-record -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0} {1}'.format(t, args[t])) + + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}', + checks=self.check('length(arecords)', 1)) + + self.cmd('network dns record-set a remove-record -g {rg} --zone-name {zone} --record-set-name myrsa --ipv4-address 10.0.0.11') + + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}', + checks=self.is_empty()) + + self.cmd('network dns record-set a delete -n myrsa -g {rg} --zone-name {zone} -y') + self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}') + + self.cmd('network dns zone delete -g {rg} -n {zone} -y', + checks=self.is_empty()) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/src/dns/setup.cfg b/src/dns/setup.cfg new file mode 100644 index 00000000000..3480374bc2f --- /dev/null +++ b/src/dns/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 \ No newline at end of file diff --git a/src/dns/setup.py b/src/dns/setup.py new file mode 100644 index 00000000000..e32a47dcf4d --- /dev/null +++ b/src/dns/setup.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python + +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from setuptools import setup, find_packages + +VERSION = "0.0.1" + +CLASSIFIERS = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'License :: OSI Approved :: MIT License', +] + +DEPENDENCIES = [] + +setup( + name='dns', + version=VERSION, + description='An Azure CLI Extension for DNS zones', + long_description='An Azure CLI Extension for DNS zones', + license='MIT', + author='Muhammad Waqar', + author_email='muwaqar@microsoft.com', + url='https://github.com/Azure/azure-cli-extensions', + classifiers=CLASSIFIERS, + packages=find_packages(exclude=["tests"]), + install_requires=DEPENDENCIES +) \ No newline at end of file diff --git a/src/index.json b/src/index.json index b536a29170d..afbc3ac11b4 100644 --- a/src/index.json +++ b/src/index.json @@ -638,6 +638,51 @@ "version": "0.1.0" } } + ], + "dns": [ + { + "filename": "dns-0.0.1-py2.py3-none-any.whl", + "sha256Digest": "TODO", + "downloadUrl": "TODO", + "metadata": { + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "muwaqar@microsoft.com", + "name": "Muhammad Waqar", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "dns", + "summary": "An Azure CLI Extension for DNS zones", + "version": "0.0.1" + } + } ] } } \ No newline at end of file From 29a1a8803729c577a5adfd02c4d23b09b9079a62 Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 05:32:49 +0500 Subject: [PATCH 02/11] Running test_static.sh --- src/dns/azext_dns/_params.py | 8 ++++---- src/dns/azext_dns/_validators.py | 2 +- src/dns/azext_dns/commands.py | 2 +- src/dns/azext_dns/dns/__init__.py | 1 - src/dns/azext_dns/dns/version.py | 1 - src/dns/azext_dns/tests/__init__.py | 2 +- src/dns/azext_dns/tests/latest/__init__.py | 2 +- src/dns/azext_dns/tests/latest/test_dns_commands.py | 7 ++++--- 8 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/dns/azext_dns/_params.py b/src/dns/azext_dns/_params.py index 155ad551311..31e8790caaa 100644 --- a/src/dns/azext_dns/_params.py +++ b/src/dns/azext_dns/_params.py @@ -3,15 +3,15 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long from azure.cli.core.commands.parameters import get_enum_type from azext_dns.dns.models import ZoneType +from azext_dns._validators import (dns_zone_name_type, get_vnet_validator, validate_metadata) from knack.arguments import CLIArgumentType -from azext_dns._validators import (dns_zone_name_type, validate_metadata, get_vnet_validator) - def load_arguments(self, _): name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME') - + with self.argument_context('network dns') as c: c.argument('record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.') c.argument('relative_record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.') @@ -24,4 +24,4 @@ def load_arguments(self, _): c.argument('zone_type', help='Type of DNS zone to create.', arg_type=get_enum_type(ZoneType)) c.argument('registration_vnets', arg_group='Private Zone', nargs='+', help='Space-separated names or IDs of virtual networks that register hostnames in this DNS zone.', validator=get_vnet_validator('registration_vnets')) - c.argument('resolution_vnets', arg_group='Private Zone', nargs='+', help='Space-separated names or IDs of virtual networks that resolve records in this DNS zone.', validator=get_vnet_validator('resolution_vnets')) \ No newline at end of file + c.argument('resolution_vnets', arg_group='Private Zone', nargs='+', help='Space-separated names or IDs of virtual networks that resolve records in this DNS zone.', validator=get_vnet_validator('resolution_vnets')) diff --git a/src/dns/azext_dns/_validators.py b/src/dns/azext_dns/_validators.py index 194b4e1e728..5e52d62bc9f 100644 --- a/src/dns/azext_dns/_validators.py +++ b/src/dns/azext_dns/_validators.py @@ -39,4 +39,4 @@ def _validate_vnet_name_or_id(cmd, namespace): ids.append(SubResource(id=val)) setattr(namespace, dest, ids) - return _validate_vnet_name_or_id \ No newline at end of file + return _validate_vnet_name_or_id diff --git a/src/dns/azext_dns/commands.py b/src/dns/azext_dns/commands.py index 0d54e92a41c..84d576d391c 100644 --- a/src/dns/azext_dns/commands.py +++ b/src/dns/azext_dns/commands.py @@ -15,4 +15,4 @@ def load_command_table(self, _): with self.command_group('network dns zone', network_dns_zone_sdk) as g: g.custom_command('create', 'create_dns_zone', client_factory=cf_dns_mgmt_zones) - g.generic_update_command('update', custom_func_name='update_dns_zone') \ No newline at end of file + g.generic_update_command('update', custom_func_name='update_dns_zone') diff --git a/src/dns/azext_dns/dns/__init__.py b/src/dns/azext_dns/dns/__init__.py index 07ed3e0ff7e..963072ff63b 100644 --- a/src/dns/azext_dns/dns/__init__.py +++ b/src/dns/azext_dns/dns/__init__.py @@ -15,4 +15,3 @@ __all__ = ['DnsManagementClient'] __version__ = VERSION - diff --git a/src/dns/azext_dns/dns/version.py b/src/dns/azext_dns/dns/version.py index 8d86cf0470d..dea290d9b35 100644 --- a/src/dns/azext_dns/dns/version.py +++ b/src/dns/azext_dns/dns/version.py @@ -10,4 +10,3 @@ # -------------------------------------------------------------------------- VERSION = "2.0.0rc1" - diff --git a/src/dns/azext_dns/tests/__init__.py b/src/dns/azext_dns/tests/__init__.py index 66794229797..34913fb394d 100644 --- a/src/dns/azext_dns/tests/__init__.py +++ b/src/dns/azext_dns/tests/__init__.py @@ -1,4 +1,4 @@ # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- \ No newline at end of file +# -------------------------------------------------------------------------------------------- diff --git a/src/dns/azext_dns/tests/latest/__init__.py b/src/dns/azext_dns/tests/latest/__init__.py index 66794229797..34913fb394d 100644 --- a/src/dns/azext_dns/tests/latest/__init__.py +++ b/src/dns/azext_dns/tests/latest/__init__.py @@ -1,4 +1,4 @@ # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- \ No newline at end of file +# -------------------------------------------------------------------------------------------- diff --git a/src/dns/azext_dns/tests/latest/test_dns_commands.py b/src/dns/azext_dns/tests/latest/test_dns_commands.py index 96979cab018..fd685a85d76 100644 --- a/src/dns/azext_dns/tests/latest/test_dns_commands.py +++ b/src/dns/azext_dns/tests/latest/test_dns_commands.py @@ -3,6 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long import os import unittest @@ -14,7 +15,7 @@ class DnsScenarioTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_dns') - def test_dns(self, resource_group): + def test_dns(self, resource_group): # pylint: disable=unused-argument self.kwargs['zone'] = 'myzone.com' @@ -87,7 +88,7 @@ def test_dns(self, resource_group): checks=self.is_empty()) @ResourceGroupPreparer(name_prefix='cli_test_dns') - def test_private_dns(self, resource_group): + def test_private_dns(self, resource_group): # pylint: disable=unused-argument self.kwargs['zone'] = 'myprivatezone.com' self.kwargs['regvnet'] = 'regvnet' @@ -168,4 +169,4 @@ def test_private_dns(self, resource_group): checks=self.is_empty()) if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() From b14a5daeb926108672f1026528b592bd800bf837 Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 05:48:10 +0500 Subject: [PATCH 03/11] Adding dependency on msrestazure --- src/dns/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dns/setup.py b/src/dns/setup.py index e32a47dcf4d..b156e7a395c 100644 --- a/src/dns/setup.py +++ b/src/dns/setup.py @@ -23,7 +23,9 @@ 'License :: OSI Approved :: MIT License', ] -DEPENDENCIES = [] +DEPENDENCIES = [ + 'msrestazure>=0.4.22' +] setup( name='dns', From 7f3b8aecb610aaf119805e2f9be1baa779adf078 Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 05:56:46 +0500 Subject: [PATCH 04/11] Adding a pylint ignore for import-error --- src/dns/azext_dns/_validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dns/azext_dns/_validators.py b/src/dns/azext_dns/_validators.py index 5e52d62bc9f..d2d70d3deab 100644 --- a/src/dns/azext_dns/_validators.py +++ b/src/dns/azext_dns/_validators.py @@ -15,7 +15,7 @@ def validate_metadata(namespace): namespace.metadata = dict(x.split('=', 1) for x in namespace.metadata) def get_vnet_validator(dest): - from msrestazure.tools import is_valid_resource_id, resource_id + from msrestazure.tools import is_valid_resource_id, resource_id # pylint:disable=import-error def _validate_vnet_name_or_id(cmd, namespace): SubResource = cmd.get_models('SubResource') From b8834054716123b668a99f600e53ba1920dec8b9 Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 06:02:30 +0500 Subject: [PATCH 05/11] Fixing more pylint errors --- src/dns/azext_dns/_help.py | 2 +- src/dns/azext_dns/_params.py | 1 + src/dns/azext_dns/_validators.py | 3 +++ src/dns/azext_dns/commands.py | 1 + src/dns/azext_dns/tests/latest/test_dns_commands.py | 5 +++-- 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/dns/azext_dns/_help.py b/src/dns/azext_dns/_help.py index 566bcb3b4f4..c98ac76eff2 100644 --- a/src/dns/azext_dns/_help.py +++ b/src/dns/azext_dns/_help.py @@ -45,4 +45,4 @@ short-summary: Space-separated names or IDs of virtual networks that register hostnames in this DNS zone. Only applies to 'Private' zones. - name: --resolution-vnets short-summary: Space-separated names or IDs of virtual networks that resolve records in this DNS zone. Only applies to 'Private' zones. -""" \ No newline at end of file +""" diff --git a/src/dns/azext_dns/_params.py b/src/dns/azext_dns/_params.py index 31e8790caaa..812f7d6f329 100644 --- a/src/dns/azext_dns/_params.py +++ b/src/dns/azext_dns/_params.py @@ -9,6 +9,7 @@ from azext_dns._validators import (dns_zone_name_type, get_vnet_validator, validate_metadata) from knack.arguments import CLIArgumentType + def load_arguments(self, _): name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME') diff --git a/src/dns/azext_dns/_validators.py b/src/dns/azext_dns/_validators.py index d2d70d3deab..ba92465bdbb 100644 --- a/src/dns/azext_dns/_validators.py +++ b/src/dns/azext_dns/_validators.py @@ -5,15 +5,18 @@ from azure.cli.core.commands.client_factory import get_subscription_id + # pylint: disable=inconsistent-return-statements def dns_zone_name_type(value): if value: return value[:-1] if value[-1] == '.' else value + def validate_metadata(namespace): if namespace.metadata: namespace.metadata = dict(x.split('=', 1) for x in namespace.metadata) + def get_vnet_validator(dest): from msrestazure.tools import is_valid_resource_id, resource_id # pylint:disable=import-error diff --git a/src/dns/azext_dns/commands.py b/src/dns/azext_dns/commands.py index 84d576d391c..f9f816dc0eb 100644 --- a/src/dns/azext_dns/commands.py +++ b/src/dns/azext_dns/commands.py @@ -6,6 +6,7 @@ from azure.cli.core.commands import CliCommandType from azext_dns._client_factory import (cf_dns_mgmt_zones) + def load_command_table(self, _): network_dns_zone_sdk = CliCommandType( diff --git a/src/dns/azext_dns/tests/latest/test_dns_commands.py b/src/dns/azext_dns/tests/latest/test_dns_commands.py index fd685a85d76..22600a57d4b 100644 --- a/src/dns/azext_dns/tests/latest/test_dns_commands.py +++ b/src/dns/azext_dns/tests/latest/test_dns_commands.py @@ -15,7 +15,7 @@ class DnsScenarioTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_dns') - def test_dns(self, resource_group): # pylint: disable=unused-argument + def test_dns(self, resource_group): # pylint: disable=unused-argument self.kwargs['zone'] = 'myzone.com' @@ -88,7 +88,7 @@ def test_dns(self, resource_group): # pylint: disable=unused-argument checks=self.is_empty()) @ResourceGroupPreparer(name_prefix='cli_test_dns') - def test_private_dns(self, resource_group): # pylint: disable=unused-argument + def test_private_dns(self, resource_group): # pylint: disable=unused-argument self.kwargs['zone'] = 'myprivatezone.com' self.kwargs['regvnet'] = 'regvnet' @@ -168,5 +168,6 @@ def test_private_dns(self, resource_group): # pylint: disable=unused-argument self.cmd('network dns zone delete -g {rg} -n {zone} -y', checks=self.is_empty()) + if __name__ == '__main__': unittest.main() From ff6a21bc04c24f603f878ad5103eed8a6bf20d17 Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 06:42:14 +0500 Subject: [PATCH 06/11] Recording tests and uploading wheel package to blob storage. --- .../tests/latest/recordings/test_dns.yaml | 8591 +++------------- .../latest/recordings/test_private_dns.yaml | 9002 +++-------------- src/dns/setup.py | 4 +- src/index.json | 4 +- 4 files changed, 2515 insertions(+), 15086 deletions(-) diff --git a/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml index 0b2c4d81aa9..24c680ee292 100644 --- a/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml +++ b/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml @@ -1,69 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:43 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzthRoaZadQCv3o_HVo_zl2DptbA5EBIc11hqdSl-Kq-WHenBHd15P8vVsbdHwHAYRqV0wrDhgPAO6LcHmO8wpJ4EgIAsFO4HsUJjNKFt0CyVrrkLvI_HpsDsZszPtQdulMabsecnSxOkHKbCEj2PTnzJZhtN2Nxgw5GH3EZPWyiQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075705","not_before":"1521071805","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgwNSwibmJmIjoxNTIxMDcxODA1LCJleHAiOjE1MjEwNzU3MDUsImFpbyI6IjQyUmdZR0MvcUJqQmVLVXk3RVdRb1Y2S2dLSWVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDV1eGdBQUEiLCJ2ZXIiOiIxLjAifQ.f2TJtVuz-2i2Ei0XuPhVHFT8f7w0OM6mmOrL1mqQS8Feo945W6hMquvz8UzJW04SMR5YRJcEvXDYkFtXf9fJ7rlhlUecvQ8moCmgIpAB1HvpZfVVT_vDNTH3UV-paWuZgBafWQWTHTX9fEldU8JCi_IQDfpr9QKGhCROdoUzyJoMC7Tz6XV4lG0-vo6v4tSU2HNEyakvaoCbXXyW9X1vdLozN6dRR0aOQYGbUmConwY96Bh-_90AhwXHnFPDvWwuEOu2CCo6GSZmBRNBeTG0EpwSxAgokbVnC0E0Fwfg-StNpoLdxPHovjHZSw7UUX4uvqanr30grwwoPOTddp8Beg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:45 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: '{"location": "westus", "tags": {"use": "az-test"}}' headers: @@ -75,89 +10,81 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:47 GMT'] + date: ['Thu, 15 Mar 2018 01:29:13 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cojacotest\/providers\/Microsoft.Network\/dnszones\/cojacoexample.com","name":"cojacoexample.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f0e-0dfdb3fcd101","location":"global","tags":{"department":"HumanResources","importance":"Emergency"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":4,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/jonune-pinger-rg\/providers\/Microsoft.Network\/dnszones\/jonune.com","name":"jonune.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2fcd-6d879726d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1.karthiktestzone123.com","name":"child1.karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3add-f115b43fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1karthiktestzone123.com","name":"child1karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8cab-9601a63fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/karthiktestzone123.com","name":"karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-72b8-5bafaaa4d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/vladtest.test","name":"vladtest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc07-5f972e2ad201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.asmx","name":"a.asmx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-64eb-63a8f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.msgx","name":"a.msgx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0076-784ad162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.rules.test","name":"a.rules.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b305-26eae362d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.skin","name":"a.skin","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-59b5-8941d162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.svc","name":"a.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d3fe-87fece62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.aspx","name":"c.aspx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3920-5fc0f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.svc","name":"c.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36a2-4db6f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/karthik.com","name":"karthik.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f92-66b1c962d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/test.testrules","name":"test.testrules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a9d0-5a5dcd62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1034\/providers\/Microsoft.Network\/dnszones\/onesdk4979.pstest.test","name":"onesdk4979.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b767-5791d02ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1046\/providers\/Microsoft.Network\/dnszones\/onesdk6026.pstest.test","name":"onesdk6026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c3a-32120448d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1069\/providers\/Microsoft.Network\/dnszones\/onesdk724.pstest.test","name":"onesdk724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-89f8-fda5082ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1110\/providers\/Microsoft.Network\/dnszones\/onesdk2419.pstest.test","name":"onesdk2419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4c45-bbac8452d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1155\/providers\/Microsoft.Network\/dnszones\/onesdk8597.pstest.test","name":"onesdk8597.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0b4b-cd88ce53d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1269\/providers\/Microsoft.Network\/dnszones\/onesdk1935.pstest.test","name":"onesdk1935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2581-78c8f140d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1597\/providers\/Microsoft.Network\/dnszones\/onesdk7046.pstest.test","name":"onesdk7046.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bca1-ecb66b3bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1616\/providers\/Microsoft.Network\/dnszones\/onesdk7626.pstest.test","name":"onesdk7626.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-22ec-d6c51639d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1620\/providers\/Microsoft.Network\/dnszones\/onesdk2799.pstest.test","name":"onesdk2799.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4185-f1194d38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1732\/providers\/Microsoft.Network\/dnszones\/onesdk4494.pstest.test","name":"onesdk4494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05a8-5a00b64cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1906\/providers\/Microsoft.Network\/dnszones\/onesdk1575.pstest.test","name":"onesdk1575.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bace-07c7452dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2066\/providers\/Microsoft.Network\/dnszones\/onesdk1064.pstest.test","name":"onesdk1064.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4864-748c7537d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2526\/providers\/Microsoft.Network\/dnszones\/onesdk146.pstest.test","name":"onesdk146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1389-cbd6e235d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2773\/providers\/Microsoft.Network\/dnszones\/onesdk6501.pstest.test","name":"onesdk6501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e5df-1fe72b56d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk5047.pstest.test","name":"onesdk5047.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d34b-f8b47446d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2916\/providers\/Microsoft.Network\/dnszones\/onesdk3106.pstest.test","name":"onesdk3106.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0caf-f0f69154d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2985\/providers\/Microsoft.Network\/dnszones\/onesdk5810.pstest.test","name":"onesdk5810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c661-fe870753d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3150\/providers\/Microsoft.Network\/dnszones\/onesdk4105.pstest.test","name":"onesdk4105.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-58b9-f3fda234d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3153\/providers\/Microsoft.Network\/dnszones\/onesdk6890.pstest.test","name":"onesdk6890.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9f5-d9cf164fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3702\/providers\/Microsoft.Network\/dnszones\/onesdk4390.pstest.test","name":"onesdk4390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e717-3529e04fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3740\/providers\/Microsoft.Network\/dnszones\/onesdk3868.pstest.test","name":"onesdk3868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-42ef-30d3102ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3930\/providers\/Microsoft.Network\/dnszones\/onesdk7182.pstest.test","name":"onesdk7182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f5b6-b9a6604ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk583.pstest.test","name":"onesdk583.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5fad-5e93b436d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk453\/providers\/Microsoft.Network\/dnszones\/onesdk9431.pstest.test","name":"onesdk9431.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc5c-80257b2cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4907\/providers\/Microsoft.Network\/dnszones\/onesdk8724.pstest.test","name":"onesdk8724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fff3-57db474ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4971\/providers\/Microsoft.Network\/dnszones\/onesdk5149.pstest.test","name":"onesdk5149.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-54d3-0e15a83ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5110\/providers\/Microsoft.Network\/dnszones\/onesdk9387.pstest.test","name":"onesdk9387.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-76ae-88857f4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5394\/providers\/Microsoft.Network\/dnszones\/onesdk5675.pstest.test","name":"onesdk5675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9c28-5ea1bd41d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5453\/providers\/Microsoft.Network\/dnszones\/onesdk9910.pstest.test","name":"onesdk9910.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-02ff-3947be4cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5626\/providers\/Microsoft.Network\/dnszones\/onesdk3052.pstest.test","name":"onesdk3052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d6fd-f87ea950d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5752\/providers\/Microsoft.Network\/dnszones\/onesdk1764.pstest.test","name":"onesdk1764.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c82e-4cb1922bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5945\/providers\/Microsoft.Network\/dnszones\/onesdk4636.pstest.test","name":"onesdk4636.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0769-0da02356d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6005\/providers\/Microsoft.Network\/dnszones\/onesdk4419.pstest.test","name":"onesdk4419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-41d2-eb13043dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6140\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-418e-1615a59dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6359\/providers\/Microsoft.Network\/dnszones\/onesdk4630.pstest.test","name":"onesdk4630.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c1cb-e10e6355d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6657\/providers\/Microsoft.Network\/dnszones\/onesdk5052.pstest.test","name":"onesdk5052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ae24-e0a39c51d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6702\/providers\/Microsoft.Network\/dnszones\/onesdk5546.pstest.test","name":"onesdk5546.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e621-38c9164fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7002\/providers\/Microsoft.Network\/dnszones\/onesdk8767.pstest.test","name":"onesdk8767.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4bee-01812240d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7310\/providers\/Microsoft.Network\/dnszones\/onesdk8039.pstest.test","name":"onesdk8039.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b569-bccdf140d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7432\/providers\/Microsoft.Network\/dnszones\/onesdk9736.pstest.test","name":"onesdk9736.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b95-e57b2b4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7671\/providers\/Microsoft.Network\/dnszones\/onesdk5367.pstest.test","name":"onesdk5367.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dea3-6685a950d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7960\/providers\/Microsoft.Network\/dnszones\/onesdk9256.pstest.test","name":"onesdk9256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2947-b8906c46d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8189\/providers\/Microsoft.Network\/dnszones\/onesdk1990.pstest.test","name":"onesdk1990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ee0c-dabff44bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8194\/providers\/Microsoft.Network\/dnszones\/onesdk9649.pstest.test","name":"onesdk9649.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8c03-5998733bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8405\/providers\/Microsoft.Network\/dnszones\/onesdk846.pstest.test","name":"onesdk846.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e92d-d3233747d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8706\/providers\/Microsoft.Network\/dnszones\/onesdk5873.pstest.test","name":"onesdk5873.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c78b-e99dff52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8876\/providers\/Microsoft.Network\/dnszones\/onesdk7912.pstest.test","name":"onesdk7912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f503-62ec7c52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9274\/providers\/Microsoft.Network\/dnszones\/onesdk2187.pstest.test","name":"onesdk2187.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e6ff-5fd41f35d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9476\/providers\/Microsoft.Network\/dnszones\/onesdk8662.pstest.test","name":"onesdk8662.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fe43-1f1a043dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9505\/providers\/Microsoft.Network\/dnszones\/onesdk9266.pstest.test","name":"onesdk9266.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f86e-f90c0448d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9530\/providers\/Microsoft.Network\/dnszones\/onesdk2511.pstest.test","name":"onesdk2511.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-98de-dcf1ce3dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk4780.pstest.test","name":"onesdk4780.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f939-1816ce48d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9728\/providers\/Microsoft.Network\/dnszones\/onesdk7582.pstest.test","name":"onesdk7582.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-76b8-9bc77d37d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9954\/providers\/Microsoft.Network\/dnszones\/onesdk9424.pstest.test","name":"onesdk9424.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0bcb-2fa4234bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk996\/providers\/Microsoft.Network\/dnszones\/onesdk7788.pstest.test","name":"onesdk7788.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e53a-fb2b7b2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}]}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['36767'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:50 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-1JXe-oXs5WPwsCua7mg4-OU3hq1y4skoRsVzz_q65IGbSwrNMFuu2_J2Kz71PRCekhT3n-g_FQ-LrbLCK6C74HAy9axTF-iSPWI1y0wISxq_eUf-T_2bq9h_rufToawynUa2Uj4qgmbVLlWTW4HXkL-w1laoHIZGWvRyfm9KjYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:16 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"location": "global", "properties": {"zoneType": "Public"}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone create] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['60'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075711","not_before":"1521071811","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgxMSwibmJmIjoxNTIxMDcxODExLCJleHAiOjE1MjEwNzU3MTEsImFpbyI6IjQyUmdZRmcvWlpKRjZISFZ1VlliOTczazNSSmpBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVMUmtBQUEiLCJ2ZXIiOiIxLjAifQ.wbh2i--veUPfRz8g7HGbzy8R3IfPYMSX3XvAoHjwUH7TZiPZp5z8sPuL15xLvDJEsOHv2cDmDhLRBuWnCU9zUUIwu0Cv0ZNmZ-AVdZvGgc6NX7tbMCCbwlpeAt-scEekpigggufBw9stzmgJmd8kOdiOPS_YN67nDCCroAoJxp-fJ2G9OSgOeI8tnngrSec-wOWsWHOeUz6szRqIDO9EAGlGnvW2QLRBLygpdqf8qQF_JD_JK3oxeamniWxk07Be3Z8rreeRehUugTBS94KsHPX1AxYNaNtKRcS0VKlaug22gAIFAddjWnyNrftVbk4Scw5RyFVv1qpQSR9dk3dY5g"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['556'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:51 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:22 GMT'] + etag: [00000002-0000-0000-43b8-b50bfdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: body: null headers: @@ -167,8228 +94,2245 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrandomgroup2\/providers\/Microsoft.Network\/dnszones\/armmove.test","name":"armmove.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5c2f-45e7b4ccd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg11366e27-2af5-4dd1-9637-aab4153031c32\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","name":"fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-7f28-2b68bc57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1a0a1f60-91f8-4868-867c-935e097256732\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","name":"fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-887b-1f77915bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1de4d643-137f-45cc-b880-c5f6b81456902\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","name":"fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9f40-e14be957d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1f97cd1e-c59b-480c-be67-063210865ac8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","name":"fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c54c-e6148c58d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg2964cd5a-0c75-43df-aadd-056bf241f6f52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","name":"fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-71ce-92aa7058d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg345e33d1-e3fc-45be-8ca3-95c3030a8827\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","name":"fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-334d-c2272e36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg350585d6-5c59-4a68-8d00-bf272faae66b2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","name":"fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-c017-1dab3959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg3a95092d-6084-4715-bed0-6de9880362a72\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","name":"fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-cbf4-7af40258d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg451cf024-71be-414a-98ef-e060dcf34e8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","name":"fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5411-11d957a3d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg45ee12ac-fa5b-4df8-af0d-57a81f489c0a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","name":"fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0e05-88375559d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4b050ceb-7c51-46a5-aa15-0b24caa54908\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","name":"fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-93d8-4904e6f0d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4d6686fd-d01c-4be4-acb0-e6af2040a475\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","name":"fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e435-d8106922d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg5d95213a-3b09-4f4a-9bd5-b8f7535b3fb8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","name":"fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f036-b07cf135d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg652edd88-186f-4432-9286-d7f048a0e7f82\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","name":"fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-6b14-26a0145ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg664c931e-caf0-4b67-89e6-9526a64c579f2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","name":"fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-76f9-46bd8158d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg66628ec0-570d-4126-889b-359bbda30731\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","name":"fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-de04-401d68abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg69881656-d2f7-49b7-a1b2-2979e8beadb12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","name":"fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-22f9-5c49ad57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg6bd7dc7f-beb0-417d-a718-0e9f7835b985\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","name":"fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d12e-6f828fc9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7276389c-6a59-4177-bccd-83ac96ea5ae3\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","name":"fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-926f-a5686621d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg74147c6a-238e-43ea-88cd-b43b20ab5713\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","name":"fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9255-78c02de9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c46cb75-0d01-4b20-ac1a-398c49b55c212\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","name":"fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-df38-b2af6978d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c89c527-fafb-436f-bb97-739f7ce3bcfc2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","name":"fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9c9a-ae874959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8ac60837-ce43-43e7-805c-e70cce6f83a12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","name":"fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-1b60-65e6db57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8f707ac9-7b19-46f7-b8da-acda6018f861\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","name":"fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-caab-1330706bd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg935c1881-65b2-4a29-ba07-656e85523d54\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","name":"fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1a33-1f2fbe33d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg9e1077b6-a187-4454-913a-dec03c9eaba52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","name":"fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-49f3-80c6a35bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverga4a64851-466d-402a-9ca9-6108cb6b4d8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","name":"fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f1f7-2744d148d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbe2e87b4-1d76-429a-860e-6d796e9e340b\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","name":"fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-00b1-2bdad9abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbf472a78-3508-4863-9a65-96795acfb1e22\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","name":"fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-ea7d-d0f9eaa7d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc47a312c-e8d6-4560-9bef-6797c0fa48c6\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","name":"fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cb07-5d5cac6bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc79de5d0-3a46-42e3-8daf-7dcee973d62a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","name":"fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4326-ddbd256bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf339632-52ce-43ca-ad38-e3fe3512aefb\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","name":"fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-803c-5c881e5ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf5472ae-78af-4e4e-8856-a4629c65571e2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","name":"fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f1d-e93c415bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergecb52982-7c98-4367-a6ed-e2830e11b79d2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","name":"fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9b25-eb214257d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergf019a24f-04b9-48c1-aa03-3d3e45383f30\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","name":"fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1349-3fc637c9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergff39196d-2180-4984-b5e8-12246e00de9a2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","name":"fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-d0e3-3596005ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_dns_zone1_importswmwoxwfjngvixnedygkjrr4ts527ofeswl7ac7oi3smnqmfuj3egni\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-79c5-56dab0b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/commontestgroup\/providers\/Microsoft.Network\/dnszones\/hitesh.test","name":"hitesh.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a431-27edb490d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk.com","name":"karthikbulk.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4d6-bbb8e5b5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":38003}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk2.com","name":"karthikbulk2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-aa47-222eeab5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":10001}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthiktest.com","name":"karthiktest.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-6e4e-118a22b5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3130-70c348c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/delegations.azuredns.internal.test","name":"delegations.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d77f-56f72428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":8}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com.1","name":"foo.com.1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a130-a1256405d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/supportedtypes.azuredns.internal.test","name":"supportedtypes.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8cc3-92c62428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":11}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f007-dd1e2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup1\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-145c-922b2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup2\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cc93-b7372528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup3\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b4bb-c2442528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup4\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eeb-48502528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup5\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1be2-835c2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup6\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8a62-18692528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup7\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3f6e-13752528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup8\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eda-b0802528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/albertozone.com","name":"albertozone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d006-58f3c480d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","name":"fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a58e-db8ebc9ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/ww.rules","name":"ww.rules","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0fc3-eeeaed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/wwa.rules","name":"wwa.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5b33-b520ee62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.ashx","name":"www.ashx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-15d8-d1d92a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.asmx","name":"www.asmx","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efd5-864f2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.aspq","name":"www.aspq","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-56d9-831f2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.axd","name":"www.axd","type":"Microsoft.Network\/dnszones","etag":"00000005-0000-0000-bcc5-f4142b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.cshtml","name":"www.cshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4b7c-a01b2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.rules","name":"www.rules","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-46df-cf84ed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.soap","name":"www.soap","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8118-96102b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.svc","name":"www.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-58fd-0ad32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtm","name":"www.vbhtm","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b34c-92cc2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtml","name":"www.vbhtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cf7-5cc32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.x","name":"www.x","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ff2d-55a12a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xamlx","name":"www.xamlx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-10cd-daaf2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xoml","name":"www.xoml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cbd9-aff82a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xshtml","name":"www.xshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e293-61182b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www2.rules","name":"www2.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6482-2ec84170d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www3.rules","name":"www3.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cd6-d6ca4270d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www4.rules","name":"www4.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f65a-85464370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www5.rules","name":"www5.rules","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-dcae-46d74370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www6.rules1","name":"www6.rules1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-effe-85c73a71d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg2296\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2982","name":"hydratest.dnszone.com2982","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8bf1-68346f44d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg6951\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com1418","name":"hydratest.dnszone.com1418","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4569-d7b1e86ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg7212\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2450","name":"hydratest.dnszone.com2450","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2f15-b18458bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg9513\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com4268","name":"hydratest.dnszone.com4268","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6224-f99658bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp.com","name":"jwesth-cloudapp.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b2a-01758cc2d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":7}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp1.com","name":"jwesth-cloudapp1.com","type":"Microsoft.Network\/dnszones","etag":"0000001c-0000-0000-f128-a14cdeded101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/169.181.185.in-addr.arpa","name":"169.181.185.in-addr.arpa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3734-04a70a66d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth-test1.com","name":"jwesth-test1.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0134-e43384bbd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth.com","name":"jwesth.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8ae-daeaea3ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130a\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a4a4-a9695b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130b\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f3c9-ac795b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130c\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e8ff-d2835b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130d\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4943-808f5b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130e\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cd92-64995b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt1.com","name":"karthikpvt1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c968-711cd333d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt2.com","name":"karthikpvt2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-63a7-a0a3f533d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/limitstestrg\/providers\/Microsoft.Network\/dnszones\/expect20.1.com","name":"expect20.1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-34c8-abfc977ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/mikebugbash\/providers\/Microsoft.Network\/dnszones\/mitest.com","name":"mitest.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4ec5-f6e23a36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1048\/providers\/Microsoft.Network\/dnszones\/onesdk8502.pstest.test","name":"onesdk8502.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-aded-5045bf2ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1060\/providers\/Microsoft.Network\/dnszones\/onesdk2287.pstest.test","name":"onesdk2287.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8f2b-2782ff52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1064\/providers\/Microsoft.Network\/dnszones\/onesdk4225.pstest.test","name":"onesdk4225.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cd3f-83d8711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1096\/providers\/Microsoft.Network\/dnszones\/onesdk6719.pstest.test","name":"onesdk6719.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1ead-eb9db81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}]}'} headers: cache-control: [private] - content-length: ['54995'] + content-length: ['568'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:53 GMT'] + date: ['Thu, 15 Mar 2018 01:29:26 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone show] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['556'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1ODjhPRrgpj8XnDkHhnnc-J0UR8QvgwMox7p4LELr_DJgDw6tcnVJZjL79scGlgUTHZIauJk63F8UpTNw4XD-fT-BaQQIiCXJ4eKaloDfR9hVQzAEstcWDVO8JG4qBLfRiNkTlD-cU0BEH2qmEqCUnGzui8uJ5tSuNb07bkMpR0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:28 GMT'] + etag: [00000002-0000-0000-43b8-b50bfdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075717","not_before":"1521071817","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgxNywibmJmIjoxNTIxMDcxODE3LCJleHAiOjE1MjEwNzU3MTcsImFpbyI6IjQyUmdZUGptNGQxVVlDSmRaQ3lUdHNiMzFEcFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6ImZMZFFpdG1INDBDRjhxOUVrbllBQUEiLCJ2ZXIiOiIxLjAifQ.xWpwXW-xYitmM2MTbOnaViW-1DZI1wFr1Wl0NWcvwYFjsZ1r5ylAhipJucVCH0FembxY02ZSaGGayQmRLW_O4msYHAFkYxQl9ld-cCUt36sDiYimrRRNuAQUnvpgAQrP8Na-IHsKIfN2MhYq_6XDY0TxfNn6yA42iMKqGe353mbz81cHucxRJQWbNtwZ5Iqkps8kUozOC7ULU0Vtnw7UJtg4Xl_QAqOPCufB0YKHwI25cxaY9TPq_jtI32bEWVBb5tmMUmSFrai5nadlpVB0VkICYPKmKfRRYkxdn3Fyi-Xhc6OOo1dYJgujOQp698RMFK3mJZzqR7viLyPJx8Kg4g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:57 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set a create] Connection: [keep-alive] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1247\/providers\/Microsoft.Network\/dnszones\/onesdk2090.pstest.test","name":"onesdk2090.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4b0-2d82b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1281\/providers\/Microsoft.Network\/dnszones\/onesdk9190.pstest.test","name":"onesdk9190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cdb0-3151f51fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1282\/providers\/Microsoft.Network\/dnszones\/onesdk8326.pstest.test","name":"onesdk8326.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fc5a-0488fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk129\/providers\/Microsoft.Network\/dnszones\/onesdk989.pstest.test","name":"onesdk989.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3974-12df711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1293\/providers\/Microsoft.Network\/dnszones\/onesdk1432.pstest.test","name":"onesdk1432.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-db36-0bbe474ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1348\/providers\/Microsoft.Network\/dnszones\/onesdk5170.pstest.test","name":"onesdk5170.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39fc-657f611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1357\/providers\/Microsoft.Network\/dnszones\/onesdk1913.pstest.test","name":"onesdk1913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7cd3-4ba4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1363\/providers\/Microsoft.Network\/dnszones\/onesdk8210.pstest.test","name":"onesdk8210.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-221d-b4940a26d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1384\/providers\/Microsoft.Network\/dnszones\/onesdk6128.pstest.test","name":"onesdk6128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f69b-f78b6346d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1387\/providers\/Microsoft.Network\/dnszones\/onesdk3798.pstest.test","name":"onesdk3798.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-219f-67f28849d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1390\/providers\/Microsoft.Network\/dnszones\/onesdk7618.pstest.test","name":"onesdk7618.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b9b-604df12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1459\/providers\/Microsoft.Network\/dnszones\/onesdk4021.pstest.test","name":"onesdk4021.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-18f9-8b8ec853d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1481\/providers\/Microsoft.Network\/dnszones\/onesdk5772.pstest.test","name":"onesdk5772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4625-1c97721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1493\/providers\/Microsoft.Network\/dnszones\/onesdk1429.pstest.test","name":"onesdk1429.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b63d-0e021422d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1542\/providers\/Microsoft.Network\/dnszones\/onesdk7729.pstest.test","name":"onesdk7729.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f379-f423f81fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1562\/providers\/Microsoft.Network\/dnszones\/onesdk2146.pstest.test","name":"onesdk2146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7d8-7a690f39d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1575\/providers\/Microsoft.Network\/dnszones\/onesdk6718.pstest.test","name":"onesdk6718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfda-cfec711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1600\/providers\/Microsoft.Network\/dnszones\/onesdk8063.pstest.test","name":"onesdk8063.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a9f-cd19062ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1606\/providers\/Microsoft.Network\/dnszones\/onesdk7391.pstest.test","name":"onesdk7391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-63b9-87ae711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk162\/providers\/Microsoft.Network\/dnszones\/onesdk1843.pstest.test","name":"onesdk1843.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1675-ab60fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1621\/providers\/Microsoft.Network\/dnszones\/onesdk2482.pstest.test","name":"onesdk2482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3299-aa02f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1622\/providers\/Microsoft.Network\/dnszones\/onesdk1489.pstest.test","name":"onesdk1489.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-66f6-7b347337d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1624\/providers\/Microsoft.Network\/dnszones\/onesdk7204.pstest.test","name":"onesdk7204.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e360-5427d839d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1675\/providers\/Microsoft.Network\/dnszones\/onesdk7311.pstest.test","name":"onesdk7311.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-192e-7766f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1703\/providers\/Microsoft.Network\/dnszones\/onesdk7165.pstest.test","name":"onesdk7165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad1f-1074721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1727\/providers\/Microsoft.Network\/dnszones\/onesdk9804.pstest.test","name":"onesdk9804.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7742-7dbfee1fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1729\/providers\/Microsoft.Network\/dnszones\/onesdk7610.pstest.test","name":"onesdk7610.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29a5-a9263447d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1734\/providers\/Microsoft.Network\/dnszones\/onesdk8881.pstest.test","name":"onesdk8881.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bcd6-ba11f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1757\/providers\/Microsoft.Network\/dnszones\/onesdk3391.pstest.test","name":"onesdk3391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4fd-2496f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk178\/providers\/Microsoft.Network\/dnszones\/onesdk90.pstest.test","name":"onesdk90.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9aea-3f153f25d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1840\/providers\/Microsoft.Network\/dnszones\/onesdk8954.pstest.test","name":"onesdk8954.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-e73f-dba0e940d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1896\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9aee-3e3a0f4fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1904\/providers\/Microsoft.Network\/dnszones\/onesdk2093.pstest.test","name":"onesdk2093.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1986-77c0b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1918\/providers\/Microsoft.Network\/dnszones\/onesdk6500.pstest.test","name":"onesdk6500.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f0da-b94d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1987\/providers\/Microsoft.Network\/dnszones\/onesdk2408.pstest.test","name":"onesdk2408.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f5b1-94caee23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2018\/providers\/Microsoft.Network\/dnszones\/onesdk6598.pstest.test","name":"onesdk6598.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17d6-a1466623d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk5299.pstest.test","name":"onesdk5299.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-af69-c2a7711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.test","name":"onesdk7065.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c49-5b256623d201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.testa","name":"onesdk7065.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad8c-d0256623d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2172\/providers\/Microsoft.Network\/dnszones\/onesdk496.pstest.test","name":"onesdk496.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5f17-b3c6b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2304\/providers\/Microsoft.Network\/dnszones\/onesdk7239.pstest.test","name":"onesdk7239.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-113e-68072040d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2308\/providers\/Microsoft.Network\/dnszones\/onesdk1393.pstest.test","name":"onesdk1393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39b9-9de9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2310\/providers\/Microsoft.Network\/dnszones\/onesdk2284.pstest.test","name":"onesdk2284.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39f8-b070b541d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2333\/providers\/Microsoft.Network\/dnszones\/onesdk1256.pstest.test","name":"onesdk1256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e7e-de17fe3cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2380\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-88b4-d461c453d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2383\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-342f-78b3611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2398\/providers\/Microsoft.Network\/dnszones\/onesdk8782.pstest.test","name":"onesdk8782.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ed-87f2062ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2407\/providers\/Microsoft.Network\/dnszones\/onesdk7250.pstest.test","name":"onesdk7250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b310-a66e611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2421\/providers\/Microsoft.Network\/dnszones\/onesdk6907.pstest.test","name":"onesdk6907.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9d8-ca16721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk640.pstest.test","name":"onesdk640.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a55-f581721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk9998.pstest.test","name":"onesdk9998.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-550b-12bc711fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk5712.pstest.test","name":"onesdk5712.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb48-cd0cfa1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk7614.pstest.test","name":"onesdk7614.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1faf-3101fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2556\/providers\/Microsoft.Network\/dnszones\/onesdk7928.pstest.test","name":"onesdk7928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d950-d5e5711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2563\/providers\/Microsoft.Network\/dnszones\/onesdk4397.pstest.test","name":"onesdk4397.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b49-7420fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2573\/providers\/Microsoft.Network\/dnszones\/onesdk7056.pstest.test","name":"onesdk7056.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-43a9-215b1c22d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2585\/providers\/Microsoft.Network\/dnszones\/onesdk2458.pstest.test","name":"onesdk2458.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfe-4344fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk264\/providers\/Microsoft.Network\/dnszones\/onesdk2107.pstest.test","name":"onesdk2107.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6bb1-2861404ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2644\/providers\/Microsoft.Network\/dnszones\/onesdk2865.pstest.test","name":"onesdk2865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-d03b-00e8873ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2675\/providers\/Microsoft.Network\/dnszones\/onesdk4444.pstest.test","name":"onesdk4444.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2ea6-dc528d2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2715\/providers\/Microsoft.Network\/dnszones\/onesdk3768.pstest.test","name":"onesdk3768.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f1c-2b7def1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2743\/providers\/Microsoft.Network\/dnszones\/onesdk4.pstest.test","name":"onesdk4.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4c8f-60fa711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2745\/providers\/Microsoft.Network\/dnszones\/onesdk828.pstest.test","name":"onesdk828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-31db-1c44b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2807\/providers\/Microsoft.Network\/dnszones\/onesdk2558.pstest.test","name":"onesdk2558.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0255-15d3fd1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk2112.pstest.test","name":"onesdk2112.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e0d-2a26f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2835\/providers\/Microsoft.Network\/dnszones\/onesdk8180.pstest.test","name":"onesdk8180.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-297f-3f36fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2881\/providers\/Microsoft.Network\/dnszones\/onesdk8706.pstest.test","name":"onesdk8706.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ec87-e7f8fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2923\/providers\/Microsoft.Network\/dnszones\/onesdk8493.pstest.test","name":"onesdk8493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-066c-41fbf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2942\/providers\/Microsoft.Network\/dnszones\/onesdk2839.pstest.test","name":"onesdk2839.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-89cd-f76f512ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2963\/providers\/Microsoft.Network\/dnszones\/onesdk4380.pstest.test","name":"onesdk4380.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7fab-a6affc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3016\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-75ac-a5218a4fd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3052\/providers\/Microsoft.Network\/dnszones\/onesdk6450.pstest.test","name":"onesdk6450.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dfc9-7c482f29d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3077\/providers\/Microsoft.Network\/dnszones\/onesdk8057.pstest.test","name":"onesdk8057.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7330-6d80fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3082\/providers\/Microsoft.Network\/dnszones\/onesdk8403.pstest.test","name":"onesdk8403.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-754e-2e1ff91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3085\/providers\/Microsoft.Network\/dnszones\/onesdk8393.pstest.test","name":"onesdk8393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da3a-2e2df91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk315\/providers\/Microsoft.Network\/dnszones\/onesdk3996.pstest.test","name":"onesdk3996.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d50b-4608721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3157\/providers\/Microsoft.Network\/dnszones\/onesdk2650.pstest.test","name":"onesdk2650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f76c-aa52d739d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3172\/providers\/Microsoft.Network\/dnszones\/onesdk379.pstest.test","name":"onesdk379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6a8b-0297b91fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3192\/providers\/Microsoft.Network\/dnszones\/onesdk8717.pstest.test","name":"onesdk8717.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-15ae-8f21b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3306\/providers\/Microsoft.Network\/dnszones\/onesdk2738.pstest.test","name":"onesdk2738.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5007-cc5b611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk335\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-372f-00a5721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3390\/providers\/Microsoft.Network\/dnszones\/onesdk5878.pstest.test","name":"onesdk5878.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5e2e-ae7dfb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3478\/providers\/Microsoft.Network\/dnszones\/onesdk3730.pstest.test","name":"onesdk3730.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-235f-d463d126d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3497\/providers\/Microsoft.Network\/dnszones\/onesdk5097.pstest.test","name":"onesdk5097.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dadd-c0bfb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3557\/providers\/Microsoft.Network\/dnszones\/onesdk8390.pstest.test","name":"onesdk8390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a228-ad9a7c4dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3600\/providers\/Microsoft.Network\/dnszones\/onesdk2599.pstest.test","name":"onesdk2599.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-74a0-5ec1c648d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3626\/providers\/Microsoft.Network\/dnszones\/onesdk9818.pstest.test","name":"onesdk9818.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e0c-f6d4fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3668\/providers\/Microsoft.Network\/dnszones\/onesdk3479.pstest.test","name":"onesdk3479.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3c4a-9bd1711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3711\/providers\/Microsoft.Network\/dnszones\/onesdk8697.pstest.test","name":"onesdk8697.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-66ac-ddb3ad41d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3752\/providers\/Microsoft.Network\/dnszones\/onesdk5592.pstest.test","name":"onesdk5592.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfc2-9751b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3791\/providers\/Microsoft.Network\/dnszones\/onesdk4990.pstest.test","name":"onesdk4990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-320e-0706781fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3794\/providers\/Microsoft.Network\/dnszones\/onesdk1760.pstest.test","name":"onesdk1760.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea5-4b7c693bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3869\/providers\/Microsoft.Network\/dnszones\/onesdk7008.pstest.test","name":"onesdk7008.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a062-24088851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3872\/providers\/Microsoft.Network\/dnszones\/onesdk9743.pstest.test","name":"onesdk9743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-511e-6589b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3891\/providers\/Microsoft.Network\/dnszones\/onesdk8901.pstest.test","name":"onesdk8901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ef1-4eca611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3943\/providers\/Microsoft.Network\/dnszones\/onesdk7060.pstest.test","name":"onesdk7060.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6e4d-a628b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3946\/providers\/Microsoft.Network\/dnszones\/onesdk2283.pstest.test","name":"onesdk2283.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3283-64f5c548d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3956\/providers\/Microsoft.Network\/dnszones\/onesdk9718.pstest.test","name":"onesdk9718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fb2e-2f2aa150d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3957\/providers\/Microsoft.Network\/dnszones\/onesdk1310.pstest.test","name":"onesdk1310.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7057-b4cb5a55d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3963\/providers\/Microsoft.Network\/dnszones\/onesdk2916.pstest.test","name":"onesdk2916.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-055d-01af6c2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"a87700fc-bca8-499a-9b49-f15664d3ee7d","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] - content-length: ['51681'] + content-length: ['385'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:01:58 GMT'] + date: ['Thu, 15 Mar 2018 01:29:32 GMT'] + etag: [a87700fc-bca8-499a-9b49-f15664d3ee7d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"a87700fc-bca8-499a-9b49-f15664d3ee7d","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['385'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:00 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzCP75ecfE00n177-1T4j9C1t6x_FRq6P88pqAyZRlQAYw0EwnKw5knSbu4j8LUifds-OxHEb6HbaWfynHfjnhaQJuHVOvTp0ADu_gIR8Ul2NXMipSX5nxNGv0nkkdwwauIZktNjUszR5VWoAjTDNU4Md0x-aAhfU8a99xu8KyBtsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:33 GMT'] + etag: [a87700fc-bca8-499a-9b49-f15664d3ee7d] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075721","not_before":"1521071821","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgyMSwibmJmIjoxNTIxMDcxODIxLCJleHAiOjE1MjEwNzU3MjEsImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFDQndBQUEiLCJ2ZXIiOiIxLjAifQ.ea_NYO5H6Wjq7ON9UUO5-tTV-Gc8w7-NtXOrF-GXfWpjIIbEwtydLJQh6ckvNQafkvKnFgJAkkbonMrTEb_eDX0OLslgXys7wLIEqeladuwHv_rxbEDpz_PFdc5mFs2ZOXjETXL7YyTFCJAzrbHYzWauEmt_U_D3ryyldxLdJNMiIve9zVsduYb15_tDkCpNx51UkBtqs1Xx3zrYtxJKs6y2iWYvHkYqT0ZkZc00YkzanTx-rYM04nZEFrDge2PQfP-o0nuf31un9fKab0UdYR2CHzQNZyG1j_3rYcTWTO8X1pgiTh04hZmks2G1CzLd5UOYJZG0H-W_DBNOSABDsA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:01 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "a87700fc-bca8-499a-9b49-f15664d3ee7d", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] + Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3997\/providers\/Microsoft.Network\/dnszones\/onesdk3527.pstest.test","name":"onesdk3527.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a8e-37c5fd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk401\/providers\/Microsoft.Network\/dnszones\/onesdk2615.pstest.test","name":"onesdk2615.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b3c2-2455eb4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4011\/providers\/Microsoft.Network\/dnszones\/onesdk4347.pstest.test","name":"onesdk4347.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5775-c6c10125d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk9742.pstest.test","name":"onesdk9742.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-116e-dd81f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4042\/providers\/Microsoft.Network\/dnszones\/onesdk6110.pstest.test","name":"onesdk6110.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3099-a3e3a234d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4050\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3d85-5731752cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4076\/providers\/Microsoft.Network\/dnszones\/onesdk6687.pstest.test","name":"onesdk6687.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-687b-8e0afb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4081\/providers\/Microsoft.Network\/dnszones\/onesdk2629.pstest.test","name":"onesdk2629.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3531-875d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4129\/providers\/Microsoft.Network\/dnszones\/onesdk5232.pstest.test","name":"onesdk5232.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3082-d9fd584ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4161\/providers\/Microsoft.Network\/dnszones\/onesdk3953.pstest.test","name":"onesdk3953.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-560e-1828fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4179\/providers\/Microsoft.Network\/dnszones\/onesdk6739.pstest.test","name":"onesdk6739.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-783a-1e50fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4201\/providers\/Microsoft.Network\/dnszones\/onesdk1912.pstest.test","name":"onesdk1912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-91c7-be08601fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4202\/providers\/Microsoft.Network\/dnszones\/onesdk8794.pstest.test","name":"onesdk8794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78df-63edf529d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4214\/providers\/Microsoft.Network\/dnszones\/onesdk8488.pstest.test","name":"onesdk8488.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a6e-07ff0d39d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4234\/providers\/Microsoft.Network\/dnszones\/onesdk7584.pstest.test","name":"onesdk7584.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-67f3-ac7e2629d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4263\/providers\/Microsoft.Network\/dnszones\/onesdk5331.pstest.test","name":"onesdk5331.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e2d-0b2fc82ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4302\/providers\/Microsoft.Network\/dnszones\/onesdk4345.pstest.test","name":"onesdk4345.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a69-f469fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4348\/providers\/Microsoft.Network\/dnszones\/onesdk5365.pstest.test","name":"onesdk5365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bee0-caf1fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4363\/providers\/Microsoft.Network\/dnszones\/onesdk1745.pstest.test","name":"onesdk1745.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb7f-8f30fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4371\/providers\/Microsoft.Network\/dnszones\/onesdk3277.pstest.test","name":"onesdk3277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c0f7-10b9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk438\/providers\/Microsoft.Network\/dnszones\/onesdk5801.pstest.test","name":"onesdk5801.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ff5-1397fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4412\/providers\/Microsoft.Network\/dnszones\/onesdk3735.pstest.test","name":"onesdk3735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5279-2d2e3447d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4449\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7b07-b5d6611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4462\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8858-f99a1b4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4474\/providers\/Microsoft.Network\/dnszones\/onesdk5545.pstest.test","name":"onesdk5545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-daee-9517fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4553\/providers\/Microsoft.Network\/dnszones\/onesdk7120.pstest.test","name":"onesdk7120.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7b6-ffc3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4573\/providers\/Microsoft.Network\/dnszones\/onesdk785.pstest.test","name":"onesdk785.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce8b-8b64721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4613\/providers\/Microsoft.Network\/dnszones\/onesdk8420.pstest.test","name":"onesdk8420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78c9-efd7fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk466\/providers\/Microsoft.Network\/dnszones\/onesdk8888.pstest.test","name":"onesdk8888.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c6e0-39d9502ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4668\/providers\/Microsoft.Network\/dnszones\/onesdk1495.pstest.test","name":"onesdk1495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c531-e005e422d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk471\/providers\/Microsoft.Network\/dnszones\/onesdk8865.pstest.test","name":"onesdk8865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-550f-fadbc43dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4743\/providers\/Microsoft.Network\/dnszones\/onesdk1635.pstest.test","name":"onesdk1635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-47bd-29c49a34d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4762\/providers\/Microsoft.Network\/dnszones\/onesdk1821.pstest.test","name":"onesdk1821.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5186-0a98d14fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4834\/providers\/Microsoft.Network\/dnszones\/onesdk9711.pstest.test","name":"onesdk9711.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0059-1d52b34cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk488\/providers\/Microsoft.Network\/dnszones\/onesdk8545.pstest.test","name":"onesdk8545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f58e-a75bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4891\/providers\/Microsoft.Network\/dnszones\/onesdk513.pstest.test","name":"onesdk513.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efee-a9bbfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4936\/providers\/Microsoft.Network\/dnszones\/onesdk2772.pstest.test","name":"onesdk2772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d091-83740e4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4958\/providers\/Microsoft.Network\/dnszones\/onesdk7482.pstest.test","name":"onesdk7482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e139-f513a03ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5061\/providers\/Microsoft.Network\/dnszones\/onesdk7650.pstest.test","name":"onesdk7650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce49-6a88f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5155\/providers\/Microsoft.Network\/dnszones\/onesdk97.pstest.test","name":"onesdk97.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d36f-3d97b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5202\/providers\/Microsoft.Network\/dnszones\/onesdk2445.pstest.test","name":"onesdk2445.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-355b-80f3711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5216\/providers\/Microsoft.Network\/dnszones\/onesdk5449.pstest.test","name":"onesdk5449.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c515-315cd126d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5228\/providers\/Microsoft.Network\/dnszones\/onesdk7389.pstest.test","name":"onesdk7389.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d957-ade1f71fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5231\/providers\/Microsoft.Network\/dnszones\/onesdk7994.pstest.test","name":"onesdk7994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2642-d6f4af25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5236\/providers\/Microsoft.Network\/dnszones\/onesdk3237.pstest.test","name":"onesdk3237.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d3af-963ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5267\/providers\/Microsoft.Network\/dnszones\/onesdk748.pstest.test","name":"onesdk748.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0320-77c76523d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5321\/providers\/Microsoft.Network\/dnszones\/onesdk9913.pstest.test","name":"onesdk9913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b17-e448fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5375\/providers\/Microsoft.Network\/dnszones\/onesdk6291.pstest.test","name":"onesdk6291.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3ca1-2d5bbf53d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5589\/providers\/Microsoft.Network\/dnszones\/onesdk548.pstest.test","name":"onesdk548.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-60c6-af58fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5598\/providers\/Microsoft.Network\/dnszones\/onesdk2400.pstest.test","name":"onesdk2400.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9df-ae1aaa36d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk560\/providers\/Microsoft.Network\/dnszones\/onesdk4022.pstest.test","name":"onesdk4022.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7b2f-a130f924d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5605\/providers\/Microsoft.Network\/dnszones\/onesdk6812.pstest.test","name":"onesdk6812.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e70-7f8f3e38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5613\/providers\/Microsoft.Network\/dnszones\/onesdk4887.pstest.test","name":"onesdk4887.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea3-46abf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk563\/providers\/Microsoft.Network\/dnszones\/onesdk5622.pstest.test","name":"onesdk5622.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35b6-0f3dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5633\/providers\/Microsoft.Network\/dnszones\/onesdk957.pstest.test","name":"onesdk957.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9794-b7bb721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5662\/providers\/Microsoft.Network\/dnszones\/onesdk5551.pstest.test","name":"onesdk5551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-ea04-868ff53cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5717\/providers\/Microsoft.Network\/dnszones\/onesdk8803.pstest.test","name":"onesdk8803.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-3693-7ac0e035d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5741\/providers\/Microsoft.Network\/dnszones\/onesdk4971.pstest.test","name":"onesdk4971.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-16d7-fe67fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5849\/providers\/Microsoft.Network\/dnszones\/onesdk6028.pstest.test","name":"onesdk6028.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9703-59baf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5891\/providers\/Microsoft.Network\/dnszones\/onesdk1490.pstest.test","name":"onesdk1490.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a513-4c577d4dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk1426.pstest.test","name":"onesdk1426.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3620-6eb4721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk75.pstest.test","name":"onesdk75.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d72-53dafd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6001\/providers\/Microsoft.Network\/dnszones\/onesdk7554.pstest.test","name":"onesdk7554.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e36-2123aa36d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk602\/providers\/Microsoft.Network\/dnszones\/onesdk3442.pstest.test","name":"onesdk3442.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05d9-d16cea40d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6031\/providers\/Microsoft.Network\/dnszones\/onesdk4501.pstest.test","name":"onesdk4501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1d39-ce5da623d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6043\/providers\/Microsoft.Network\/dnszones\/onesdk7277.pstest.test","name":"onesdk7277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b920-1869611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6125\/providers\/Microsoft.Network\/dnszones\/onesdk8691.pstest.test","name":"onesdk8691.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-16ad-47b51735d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6142\/providers\/Microsoft.Network\/dnszones\/onesdk3174.pstest.test","name":"onesdk3174.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-402f-2bd0611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6180\/providers\/Microsoft.Network\/dnszones\/onesdk1410.pstest.test","name":"onesdk1410.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-8076-e7087252d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6194\/providers\/Microsoft.Network\/dnszones\/onesdk2606.pstest.test","name":"onesdk2606.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8036-7ff3f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6218\/providers\/Microsoft.Network\/dnszones\/onesdk182.pstest.test","name":"onesdk182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e269-5f00fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6230\/providers\/Microsoft.Network\/dnszones\/onesdk794.pstest.test","name":"onesdk794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb5c-688ffa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6238\/providers\/Microsoft.Network\/dnszones\/onesdk1437.pstest.test","name":"onesdk1437.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c4ec-c2cafa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6270\/providers\/Microsoft.Network\/dnszones\/onesdk5966.pstest.test","name":"onesdk5966.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5adc-c19fa725d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6293\/providers\/Microsoft.Network\/dnszones\/onesdk8153.pstest.test","name":"onesdk8153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df7c-e132584ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk63\/providers\/Microsoft.Network\/dnszones\/onesdk9277.pstest.test","name":"onesdk9277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-492a-773cbf2ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk7018.pstest.test","name":"onesdk7018.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-837f-71ddf547d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk9735.pstest.test","name":"onesdk9735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b606-337b721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6360\/providers\/Microsoft.Network\/dnszones\/onesdk7945.pstest.test","name":"onesdk7945.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6d8c-0a0af91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6364\/providers\/Microsoft.Network\/dnszones\/onesdk9096.pstest.test","name":"onesdk9096.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e729-cdf0b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6456\/providers\/Microsoft.Network\/dnszones\/onesdk5828.pstest.test","name":"onesdk5828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5187-58e4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6478\/providers\/Microsoft.Network\/dnszones\/onesdk1379.pstest.test","name":"onesdk1379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2b8e-6425062ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6572\/providers\/Microsoft.Network\/dnszones\/onesdk6230.pstest.test","name":"onesdk6230.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68e8-4f34f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6588\/providers\/Microsoft.Network\/dnszones\/onesdk1156.pstest.test","name":"onesdk1156.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-765b-82c7302ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6593\/providers\/Microsoft.Network\/dnszones\/onesdk5086.pstest.test","name":"onesdk5086.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c920-1caa9a27d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6606\/providers\/Microsoft.Network\/dnszones\/onesdk9026.pstest.test","name":"onesdk9026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-03d3-7bc3711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6610\/providers\/Microsoft.Network\/dnszones\/onesdk6999.pstest.test","name":"onesdk6999.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad57-12c53f2dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6616\/providers\/Microsoft.Network\/dnszones\/onesdk3188.pstest.test","name":"onesdk3188.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5cfc-0989721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6626\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-26f8-16f3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6674\/providers\/Microsoft.Network\/dnszones\/onesdk7395.pstest.test","name":"onesdk7395.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a8e-dda2ef23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6713\/providers\/Microsoft.Network\/dnszones\/onesdk6982.pstest.test","name":"onesdk6982.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ac62-ac6eae23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6721\/providers\/Microsoft.Network\/dnszones\/onesdk9507.pstest.test","name":"onesdk9507.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b55f-a3ad323cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6749\/providers\/Microsoft.Network\/dnszones\/onesdk201.pstest.test","name":"onesdk201.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb32-dfa19a27d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6784\/providers\/Microsoft.Network\/dnszones\/onesdk3572.pstest.test","name":"onesdk3572.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a21-418dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6793\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-015a-23f5f529d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6848\/providers\/Microsoft.Network\/dnszones\/onesdk6703.pstest.test","name":"onesdk6703.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35e9-4ea3c53dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6880\/providers\/Microsoft.Network\/dnszones\/onesdk2778.pstest.test","name":"onesdk2778.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-752e-1cd4c43dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6898\/providers\/Microsoft.Network\/dnszones\/onesdk5795.pstest.test","name":"onesdk5795.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8ce2-6c62fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6906\/providers\/Microsoft.Network\/dnszones\/onesdk1794.pstest.test","name":"onesdk1794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cbce-d7b3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6917\/providers\/Microsoft.Network\/dnszones\/onesdk8494.pstest.test","name":"onesdk8494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c3eb-f5d2ee23d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7df577c3-c736-4169-a7e1-4c68efb76d11","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] - content-length: ['51879'] + content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:03 GMT'] + date: ['Thu, 15 Mar 2018 01:29:37 GMT'] + etag: [7df577c3-c736-4169-a7e1-4c68efb76d11] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['229'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzj5mt6lF61Sc8pazKtoQKhtKfOG4ka2W-lL1l2JHzr4TtXSb3GO7hLp0QkdF92RgqSClGdCxoilWsP_i442TiDcbRY6sFIibygvqyu8w7aIaFFcnZMtEq-A90KzPHus6ipO6fklCPREJtdCwiVVoP1cu5jWSv5p1o0Sff9nPVKbkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:39 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075726","not_before":"1521071826","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgyNiwibmJmIjoxNTIxMDcxODI2LCJleHAiOjE1MjEwNzU3MjYsImFpbyI6IjQyUmdZSmlZbVA5MHo3ZlN5UXFCRXBjdERIZUpBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJheE1BQUEiLCJ2ZXIiOiIxLjAifQ.u_LAv-gbe5Rl-qvoMnwyHK1IiW_9VVvhZXlSpRHa5B-OJ8dn39oAAbwhzNV9UklpoBlskSpme34V0S12WV_Hmcl5rtTaDazl1mDrzOumYhLI9rby9jWl9cZMZ6zkzLf7M1xMm2XDxsNMS10aAFgG8dDA9CX2PGBz0ePdCoXJyF4v5eyVMr06Qh_daqsDCC_7vVLYnAOnACi5T-mHaNzLNy5gaBohM3YmwZs1LtsVVxXSC2By5ynJASJLktkeU7lSMIbTx6jk6AYTJX5GKiwdurR2_mwIG-NLYQB_dsaeTQ2c96nK9S7yPlISUfC_-268SKGYZxfe4XDhP7vKJaBVsQ"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"4b86d240-840a-4b40-a381-16ee747b8876","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['421'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:06 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:42 GMT'] + etag: [4b86d240-840a-4b40-a381-16ee747b8876] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set aaaa create] Connection: [keep-alive] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q=","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7040\/providers\/Microsoft.Network\/dnszones\/onesdk6420.pstest.test","name":"onesdk6420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f329-8dfdc548d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7065\/providers\/Microsoft.Network\/dnszones\/onesdk7252.pstest.test","name":"onesdk7252.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f81d-071b3e52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7088\/providers\/Microsoft.Network\/dnszones\/onesdk6560.pstest.test","name":"onesdk6560.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ee5b-e561da4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7119\/providers\/Microsoft.Network\/dnszones\/onesdk551.pstest.test","name":"onesdk551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-10cf-30070e39d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7125\/providers\/Microsoft.Network\/dnszones\/onesdk8217.pstest.test","name":"onesdk8217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ea00-444df81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7136\/providers\/Microsoft.Network\/dnszones\/onesdk480.pstest.test","name":"onesdk480.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b1af-fa0e2040d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7140\/providers\/Microsoft.Network\/dnszones\/onesdk6605.pstest.test","name":"onesdk6605.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d5e1-5d0e2156d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7176\/providers\/Microsoft.Network\/dnszones\/onesdk9349.pstest.test","name":"onesdk9349.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb71-6f98e940d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7242\/providers\/Microsoft.Network\/dnszones\/onesdk4616.pstest.test","name":"onesdk4616.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e0eb-890cf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7332\/providers\/Microsoft.Network\/dnszones\/onesdk3587.pstest.test","name":"onesdk3587.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fe40-dd818b2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7337\/providers\/Microsoft.Network\/dnszones\/onesdk5635.pstest.test","name":"onesdk5635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-22bb-86338f54d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7344\/providers\/Microsoft.Network\/dnszones\/onesdk6001.pstest.test","name":"onesdk6001.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0395-d5c2f12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7355\/providers\/Microsoft.Network\/dnszones\/onesdk2943.pstest.test","name":"onesdk2943.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3842-9679333cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7356\/providers\/Microsoft.Network\/dnszones\/onesdk4147.pstest.test","name":"onesdk4147.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9c54-14ff382ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7406\/providers\/Microsoft.Network\/dnszones\/onesdk4171.pstest.test","name":"onesdk4171.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9b6c-1be1352dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk744\/providers\/Microsoft.Network\/dnszones\/onesdk9600.pstest.test","name":"onesdk9600.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5736-5a1fe322d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7442\/providers\/Microsoft.Network\/dnszones\/onesdk5915.pstest.test","name":"onesdk5915.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9cd7-ecca711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7466\/providers\/Microsoft.Network\/dnszones\/onesdk7233.pstest.test","name":"onesdk7233.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cfe4-e0368849d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7529\/providers\/Microsoft.Network\/dnszones\/onesdk6493.pstest.test","name":"onesdk6493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9549-bbb2b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7530\/providers\/Microsoft.Network\/dnszones\/onesdk3045.pstest.test","name":"onesdk3045.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7789-af31a150d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7535\/providers\/Microsoft.Network\/dnszones\/onesdk3217.pstest.test","name":"onesdk3217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a77-e81c593fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.test","name":"onesdk1523.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6aac-ab4a883ed201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.testa","name":"onesdk1523.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-432a-244b883ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk9365.pstest.test","name":"onesdk9365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d8c8-a5ac721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7594\/providers\/Microsoft.Network\/dnszones\/onesdk4695.pstest.test","name":"onesdk4695.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfd-8530903ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk763\/providers\/Microsoft.Network\/dnszones\/onesdk2995.pstest.test","name":"onesdk2995.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7016-c9d4f02dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7656\/providers\/Microsoft.Network\/dnszones\/onesdk4165.pstest.test","name":"onesdk4165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-154e-0c89ea4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7699\/providers\/Microsoft.Network\/dnszones\/onesdk746.pstest.test","name":"onesdk746.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da71-176d8a2bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7705\/providers\/Microsoft.Network\/dnszones\/onesdk632.pstest.test","name":"onesdk632.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-65e2-3a49611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7710\/providers\/Microsoft.Network\/dnszones\/onesdk4259.pstest.test","name":"onesdk4259.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ddc-badbb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk779\/providers\/Microsoft.Network\/dnszones\/onesdk1696.pstest.test","name":"onesdk1696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68dd-d707fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7822\/providers\/Microsoft.Network\/dnszones\/onesdk7725.pstest.test","name":"onesdk7725.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e203-be0c3f25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7837\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-75cd-825ad739d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7913\/providers\/Microsoft.Network\/dnszones\/onesdk5889.pstest.test","name":"onesdk5889.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1e44-8594ac41d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7964\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4548-76c96528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7983\/providers\/Microsoft.Network\/dnszones\/onesdk1262.pstest.test","name":"onesdk1262.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1107-69bf611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7991\/providers\/Microsoft.Network\/dnszones\/onesdk8675.pstest.test","name":"onesdk8675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-305d-d5319149d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8038\/providers\/Microsoft.Network\/dnszones\/onesdk3192.pstest.test","name":"onesdk3192.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ccea-1b31f652d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8043\/providers\/Microsoft.Network\/dnszones\/onesdk7041.pstest.test","name":"onesdk7041.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9055-fe90ea4bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8109\/providers\/Microsoft.Network\/dnszones\/onesdk6495.pstest.test","name":"onesdk6495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cf40-9859b34cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8122\/providers\/Microsoft.Network\/dnszones\/onesdk253.pstest.test","name":"onesdk253.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b190-2e52fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8154\/providers\/Microsoft.Network\/dnszones\/onesdk153.pstest.test","name":"onesdk153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-308d-cfad611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk822\/providers\/Microsoft.Network\/dnszones\/onesdk8520.pstest.test","name":"onesdk8520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b7de-e27efd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8222\/providers\/Microsoft.Network\/dnszones\/onesdk6033.pstest.test","name":"onesdk6033.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7374-4d746c46d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8268\/providers\/Microsoft.Network\/dnszones\/onesdk1602.pstest.test","name":"onesdk1602.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1dc5-edbdfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8272\/providers\/Microsoft.Network\/dnszones\/onesdk1083.pstest.test","name":"onesdk1083.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-08d9-5d7bf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8300\/providers\/Microsoft.Network\/dnszones\/onesdk5050.pstest.test","name":"onesdk5050.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6728-d2bef629d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8307\/providers\/Microsoft.Network\/dnszones\/onesdk128.pstest.test","name":"onesdk128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b309-a4eafc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8357\/providers\/Microsoft.Network\/dnszones\/onesdk52.pstest.test","name":"onesdk52.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d6b-4232721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8365\/providers\/Microsoft.Network\/dnszones\/onesdk708.pstest.test","name":"onesdk708.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a6a5-b75bfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8377\/providers\/Microsoft.Network\/dnszones\/onesdk7016.pstest.test","name":"onesdk7016.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ed2e-4a36b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8456\/providers\/Microsoft.Network\/dnszones\/onesdk1593.pstest.test","name":"onesdk1593.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b68d-8e9c611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8479\/providers\/Microsoft.Network\/dnszones\/onesdk9111.pstest.test","name":"onesdk9111.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-00d5-4f63611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8487\/providers\/Microsoft.Network\/dnszones\/onesdk6497.pstest.test","name":"onesdk6497.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bd89-2c7e711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8499\/providers\/Microsoft.Network\/dnszones\/onesdk2786.pstest.test","name":"onesdk2786.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-887c-5c2fb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8522\/providers\/Microsoft.Network\/dnszones\/onesdk8790.pstest.test","name":"onesdk8790.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b879-d2d4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8552\/providers\/Microsoft.Network\/dnszones\/onesdk4250.pstest.test","name":"onesdk4250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ef5e-96007252d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8559\/providers\/Microsoft.Network\/dnszones\/onesdk501.pstest.test","name":"onesdk501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b5b-734a3f38d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8580\/providers\/Microsoft.Network\/dnszones\/onesdk1493.pstest.test","name":"onesdk1493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-980c-f138721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8598\/providers\/Microsoft.Network\/dnszones\/onesdk2766.pstest.test","name":"onesdk2766.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b1c5-520f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8603\/providers\/Microsoft.Network\/dnszones\/onesdk1068.pstest.test","name":"onesdk1068.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-80e1-600a822bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8609\/providers\/Microsoft.Network\/dnszones\/onesdk9705.pstest.test","name":"onesdk9705.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-abd3-7179fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8625\/providers\/Microsoft.Network\/dnszones\/onesdk8944.pstest.test","name":"onesdk8944.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4d22-3d6ffb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8644\/providers\/Microsoft.Network\/dnszones\/onesdk4244.pstest.test","name":"onesdk4244.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-052f-06e3b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk869\/providers\/Microsoft.Network\/dnszones\/onesdk2868.pstest.test","name":"onesdk2868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cffa-aa45f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8699\/providers\/Microsoft.Network\/dnszones\/onesdk1043.pstest.test","name":"onesdk1043.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0235-60062156d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8708\/providers\/Microsoft.Network\/dnszones\/onesdk7157.pstest.test","name":"onesdk7157.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4281-8685234bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8840\/providers\/Microsoft.Network\/dnszones\/onesdk9197.pstest.test","name":"onesdk9197.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bc8-3777e135d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8869\/providers\/Microsoft.Network\/dnszones\/onesdk2810.pstest.test","name":"onesdk2810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29cd-5058b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8903\/providers\/Microsoft.Network\/dnszones\/onesdk3123.pstest.test","name":"onesdk3123.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4e1b-c219611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk891\/providers\/Microsoft.Network\/dnszones\/onesdk696.pstest.test","name":"onesdk696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8235-fe80de15d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8920\/providers\/Microsoft.Network\/dnszones\/onesdk2672.pstest.test","name":"onesdk2672.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f6b-9a38fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8924\/providers\/Microsoft.Network\/dnszones\/onesdk6190.pstest.test","name":"onesdk6190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e05-5051f63cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8932\/providers\/Microsoft.Network\/dnszones\/onesdk6647.pstest.test","name":"onesdk6647.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1ad4-0fa27c4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8951\/providers\/Microsoft.Network\/dnszones\/onesdk4871.pstest.test","name":"onesdk4871.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c83-fb77fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8967\/providers\/Microsoft.Network\/dnszones\/onesdk8737.pstest.test","name":"onesdk8737.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a41d-62d6f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8987\/providers\/Microsoft.Network\/dnszones\/onesdk3928.pstest.test","name":"onesdk3928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-88e8-86f64638d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8992\/providers\/Microsoft.Network\/dnszones\/onesdk8784.pstest.test","name":"onesdk8784.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f37-b762fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9005\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e7f3-8ab05155d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk901\/providers\/Microsoft.Network\/dnszones\/onesdk8722.pstest.test","name":"onesdk8722.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2c01-cc55721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9035\/providers\/Microsoft.Network\/dnszones\/onesdk7935.pstest.test","name":"onesdk7935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c10f-7074f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9049\/providers\/Microsoft.Network\/dnszones\/onesdk1994.pstest.test","name":"onesdk1994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4e15-b5578a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9068\/providers\/Microsoft.Network\/dnszones\/onesdk8660.pstest.test","name":"onesdk8660.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ef6-de152140d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9084\/providers\/Microsoft.Network\/dnszones\/onesdk8158.pstest.test","name":"onesdk8158.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-24fa-ba41fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9090\/providers\/Microsoft.Network\/dnszones\/onesdk4457.pstest.test","name":"onesdk4457.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e5d-cf1ba03ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9134\/providers\/Microsoft.Network\/dnszones\/onesdk6175.pstest.test","name":"onesdk6175.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c01a-2697f41fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9139\/providers\/Microsoft.Network\/dnszones\/onesdk417.pstest.test","name":"onesdk417.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f47e-5679d02ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9160\/providers\/Microsoft.Network\/dnszones\/onesdk6148.pstest.test","name":"onesdk6148.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0be8-c83f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9164\/providers\/Microsoft.Network\/dnszones\/onesdk9827.pstest.test","name":"onesdk9827.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df85-fbf87337d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9175\/providers\/Microsoft.Network\/dnszones\/onesdk5076.pstest.test","name":"onesdk5076.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-61d3-4f3bf91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9247\/providers\/Microsoft.Network\/dnszones\/onesdk6135.pstest.test","name":"onesdk6135.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d81b-f72a8f54d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9265\/providers\/Microsoft.Network\/dnszones\/onesdk5743.pstest.test","name":"onesdk5743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9d87-f284693bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9270\/providers\/Microsoft.Network\/dnszones\/onesdk5482.pstest.test","name":"onesdk5482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2d9-f811fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9323\/providers\/Microsoft.Network\/dnszones\/onesdk9813.pstest.test","name":"onesdk9813.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b8f8-b541fe47d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9361\/providers\/Microsoft.Network\/dnszones\/onesdk4646.pstest.test","name":"onesdk4646.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a19-0ac3721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9412\/providers\/Microsoft.Network\/dnszones\/onesdk4765.pstest.test","name":"onesdk4765.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a534-50e48a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9423\/providers\/Microsoft.Network\/dnszones\/onesdk8561.pstest.test","name":"onesdk8561.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40f2-c3a4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9462\/providers\/Microsoft.Network\/dnszones\/onesdk4580.pstest.test","name":"onesdk4580.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-704d-79befc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9466\/providers\/Microsoft.Network\/dnszones\/onesdk2434.pstest.test","name":"onesdk2434.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-204e-b882d44fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk947\/providers\/Microsoft.Network\/dnszones\/onesdk8857.pstest.test","name":"onesdk8857.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7103-354bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"ba8e28ce-824e-48c3-ba26-0cd486a49e5d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] - content-length: ['51753'] + content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:09 GMT'] + date: ['Thu, 15 Mar 2018 01:29:44 GMT'] + etag: [ba8e28ce-824e-48c3-ba26-0cd486a49e5d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"ba8e28ce-824e-48c3-ba26-0cd486a49e5d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUcjVqDGhAxJMzL2Nb1k3atnGD4jiJHrDK_59eQT--ZobU9iYD3FzXoAawMtN2v3FOG3MbPr58mLJJRkCunFih5gCtSqihxaX-xb5VfYszgENDOVyiRzQLcteQ07A-xpPBNb7XFazefbWdEBe6QQxFKGdLMB6jtWil3PddpmKk8MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:47 GMT'] + etag: [ba8e28ce-824e-48c3-ba26-0cd486a49e5d] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075731","not_before":"1521071831","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgzMSwibmJmIjoxNTIxMDcxODMxLCJleHAiOjE1MjEwNzU3MzEsImFpbyI6IjQyUmdZUGplZUs5dFNVRHloT3FsNS9UU3YyOElBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhNUk1BQUEiLCJ2ZXIiOiIxLjAifQ.WtQZRoIrxgfS6J0CF700JmMz2SOrS6wco7RJh2R6x1Lfi8i8HRD-Iq4XOG64suP6LIeFSPaNES3CBoKgOSIsq3zVPrG4ztmP53QxpP8Hs_lYEu_X6eT2JdOEny2Rg0VgWr_vT_kRq3ihF2KCVq_YO0IFuvSbHR7dtVmxoPG8PhiZ_0lZIKr66XNDw784PfUlnqHOuk3kjGuALqiXu0gTBjPykLw4TNQjDrRovj9K9uIf-wijDeNAK8d4HsV1vH6oouiDdKtGSAsqdI6wZmYx0KLyTRMIGfeqX2SDf7Kd1PCVm9I2xHRch_jlVP1JnC09KTE0ZGDtmyzXgl2NS-HpQw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:11 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "ba8e28ce-824e-48c3-ba26-0cd486a49e5d", "properties": {"TTL": + 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] + Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q= + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9543\/providers\/Microsoft.Network\/dnszones\/onesdk8652.pstest.test","name":"onesdk8652.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7808-a7dfa03ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9551\/providers\/Microsoft.Network\/dnszones\/onesdk433.pstest.test","name":"onesdk433.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9d5f-94b8e035d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk957\/providers\/Microsoft.Network\/dnszones\/onesdk438.pstest.test","name":"onesdk438.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d859-f085fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9570\/providers\/Microsoft.Network\/dnszones\/onesdk3559.pstest.test","name":"onesdk3559.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-14b0-78a8611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9600\/providers\/Microsoft.Network\/dnszones\/onesdk8840.pstest.test","name":"onesdk8840.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2e0-930bb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9614\/providers\/Microsoft.Network\/dnszones\/onesdk27.pstest.test","name":"onesdk27.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-447a-b854f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9647\/providers\/Microsoft.Network\/dnszones\/onesdk6702.pstest.test","name":"onesdk6702.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c22-6176fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk3247.pstest.test","name":"onesdk3247.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5344-235b3547d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9700\/providers\/Microsoft.Network\/dnszones\/onesdk3208.pstest.test","name":"onesdk3208.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1821-f313f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9755\/providers\/Microsoft.Network\/dnszones\/onesdk1281.pstest.test","name":"onesdk1281.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-84be-b137fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9770\/providers\/Microsoft.Network\/dnszones\/onesdk7520.pstest.test","name":"onesdk7520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-684e-151ab91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9792\/providers\/Microsoft.Network\/dnszones\/onesdk4698.pstest.test","name":"onesdk4698.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4070-a5c1f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk98\/providers\/Microsoft.Network\/dnszones\/onesdk5779.pstest.test","name":"onesdk5779.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d0cb-1c90721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9865\/providers\/Microsoft.Network\/dnszones\/onesdk1690.pstest.test","name":"onesdk1690.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8100-507f6851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9877\/providers\/Microsoft.Network\/dnszones\/onesdk4260.pstest.test","name":"onesdk4260.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a704-b95ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9910\/providers\/Microsoft.Network\/dnszones\/onesdk8222.pstest.test","name":"onesdk8222.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-864f-9dacfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9986\/providers\/Microsoft.Network\/dnszones\/onesdk7796.pstest.test","name":"onesdk7796.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5661-d8b9b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9990\/providers\/Microsoft.Network\/dnszones\/onesdk3.pstest.test","name":"onesdk3.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b60d-8590b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9993\/providers\/Microsoft.Network\/dnszones\/onesdk6809.pstest.test","name":"onesdk6809.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ea8-8a46721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-634d-c14347c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com","name":"foo.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1f3d-d6f047c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1124\/providers\/Microsoft.Network\/dnszones\/ps5492.pstest.test","name":"ps5492.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da4b-753714b7d301","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1425\/providers\/Microsoft.Network\/dnszones\/ps6132.pstest.test","name":"ps6132.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fc37-d08c07bbd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2767\/providers\/Microsoft.Network\/dnszones\/ps5692.pstest.test","name":"ps5692.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3d2d-941151b6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2941\/providers\/Microsoft.Network\/dnszones\/ps1255.pstest.test","name":"ps1255.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-da42-547a4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5162\/providers\/Microsoft.Network\/dnszones\/ps6263.pstest.test","name":"ps6263.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cb12-6b2f4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5241\/providers\/Microsoft.Network\/dnszones\/ps2589.pstest.test","name":"ps2589.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-161e-19d617b7d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps7513\/providers\/Microsoft.Network\/dnszones\/ps7155.pstest.test","name":"ps7155.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-aa63-69cc4eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps8876\/providers\/Microsoft.Network\/dnszones\/ps3411.pstest.test","name":"ps3411.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-69dd-65024eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a2fd-97bef6d5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":9}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.net","name":"jt-test.net","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4753-2e0d1ec3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test2.com","name":"jt-test2.com","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-63a9-32a82bc3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg2\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c20f-4c6b21c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testclirg\/providers\/Microsoft.Network\/dnszones\/testcli.com","name":"testcli.com","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-8e54-7da7a8b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest.test","name":"onesdkrand.10500onesdk.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9a2-cbc94123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest1.1test","name":"onesdkrand.10500onesdk.pstest1.1test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4dd5-44834423d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest21.22test","name":"onesdkrand.10500onesdk.pstest21.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-afef-8d834c23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest22.22test","name":"onesdkrand.10500onesdk.pstest22.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2b55-ff294723d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest23.22test","name":"onesdkrand.10500onesdk.pstest23.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfac-f6bd5023d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest24.24test","name":"onesdkrand.10500onesdk.pstest24.24test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d222-73015123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest33.23test","name":"onesdkrand.10500onesdk.pstest33.23test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9eb-dfae4d23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/test.zone","name":"test.zone","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ec-78aeccd3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone34","name":"testsome.zone34","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ba21-2ccaeb23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone35","name":"testsome.zone35","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fddc-7d88f123d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone36","name":"testsome.zone36","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-72b6-45e90124d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone37","name":"testsome.zone37","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6b72-82e1db24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone38","name":"testsome.zone38","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a68-a1c2dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone39","name":"testsome.zone39","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4ba3-41d6dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone40","name":"testsome.zone40","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-004a-d1f0dc24d201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone41","name":"testsome.zone41","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35ec-c705dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone42","name":"testsome.zone42","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0653-37e9dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone43","name":"testsome.zone43","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bff9-0cb3de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone44","name":"testsome.zone44","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7627-24e6de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone45","name":"testsome.zone45","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6f69-5fbc0c25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone46","name":"testsome.zone46","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c2bf-b1e60e25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone47","name":"testsome.zone47","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6799-720a0f25d201","location":"global","tags":{"name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone49","name":"testsome.zone49","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-0b92-8ab20f25d201","location":"global","tags":{"Name":"tag1","Value":"tag2"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone1","name":"testsome1.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-faa0-5c2d0e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone2","name":"testsome1.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-378b-aa750e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone3","name":"testsome1.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c833-d5a90e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone4","name":"testsome1.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0160-e0a17d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone5","name":"testsome1.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17e8-90bf7d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone1","name":"testsome2.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2cb2-47267e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone10","name":"testsome2.zone10","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40b3-4aec9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone11","name":"testsome2.zone11","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7dfe-edeea025d201","location":"global","tags":{"value":"Value1","Name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone2","name":"testsome2.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c994-c0447e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone3","name":"testsome2.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-53f6-5e497e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone4","name":"testsome2.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a8a1-98dd8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone5","name":"testsome2.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8c9-b1ed8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone6","name":"testsome2.zone6","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e816-2ff78725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone7","name":"testsome2.zone7","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-529e-046a9125d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone8","name":"testsome2.zone8","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5fc0-64ac9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"35a61ca5-d23e-4415-a95f-838a4b259684","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] - content-length: ['35859'] + content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:13 GMT'] + date: ['Thu, 15 Mar 2018 01:29:50 GMT'] + etag: [35a61ca5-d23e-4415-a95f-838a4b259684] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['232'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzA63nyKCFhAfmYtwcikEN_C1bqNcrUc4zzCbMra3PJxMoOJK-Bvwbk422J4BEIkR19AobxMncDNf81Oera6SyWRC34uZUWB2XjTd7HMCmBL5pO_-Sm5rfysyHCKhtnCeoRG6tF52FjnvwGc8V-FxFaVZMZoA1v-c7x8BHZGfthJogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:52 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['87'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075737","not_before":"1521071837","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTgzNywibmJmIjoxNTIxMDcxODM3LCJleHAiOjE1MjEwNzU3MzcsImFpbyI6IjQyUmdZTGk0TmViU2hRVWVWbnVlcHl5ZldidkJEd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6ImZMZFFpdG1INDBDRjhxOUVMM2dBQUEiLCJ2ZXIiOiIxLjAifQ.JsuGKJPAuJ5kUkhVpzbqP7zwswv33gduyPEquHh3OeSN8Vcdcr0Y5PYUiq7PUO-FMxt9-FSz7nSKSAmFm-9GJnD9503LIh1NveRQphND-8rDqlKAtiXZQQVRcdYj974K_4ULYt8_beG6b1O7N2cWlLfk_HyebEOtma1c4tCiM2n4rN1rCa-JCLWfmmAqW2ID_r5eo1NBEuIi5UMPtWf2xgFVIxSU8jRdj0i2GTaNAFAg2s8U9dK2_So__O3dmC_kELPhhMSXxTkvjKofQ0O47LyijpKS7UrqKK3gmfBtl5o5DUGHiea_yHtWljKei1lV2bEkTQA7poQ6BcRZHfHWLQ"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c0836117-5b1c-4554-b6c0-25cb9f825f0b","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['450'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:17 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:29:55 GMT'] + etag: [c0836117-5b1c-4554-b6c0-25cb9f825f0b] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: '{"location": "global", "properties": {"zoneType": "Public"}}' + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone create] + CommandName: [network dns record-set caa create] Connection: [keep-alive] - Content-Length: ['60'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"5d33dff0-b3c7-47b0-8baf-76c7a843c46c","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] - content-length: ['568'] + content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:19 GMT'] - etag: [00000002-0000-0000-b23e-e0e2f0bbd301] + date: ['Thu, 15 Mar 2018 01:30:01 GMT'] + etag: [5d33dff0-b3c7-47b0-8baf-76c7a843c46c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"5d33dff0-b3c7-47b0-8baf-76c7a843c46c","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:21 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzI7qIMXeTLDikaaMXaAVdZa0eakawwc3BIkVUVVr9ZDkqueR1LxbROxBZzpwIs9Nxn_Di6vz23D48FZ2tTh124V7mGFdBqiz8GfZv5Mykjoxf6RGoM_t9EgnUHjHyejzTwphVcq55F7PUF0JQwwvZy970Lg9-5SpOKTloL65h1UogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:03 GMT'] + etag: [5d33dff0-b3c7-47b0-8baf-76c7a843c46c] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"etag": "5d33dff0-b3c7-47b0-8baf-76c7a843c46c", "properties": {"TTL": + 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['142'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075744","not_before":"1521071844","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg0NCwibmJmIjoxNTIxMDcxODQ0LCJleHAiOjE1MjEwNzU3NDQsImFpbyI6IjQyUmdZSGdsSmR3VEZ0dDV2WHZGMTF2YnB1WE1CQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFDUjRBQUEiLCJ2ZXIiOiIxLjAifQ.WuRtu9z38Kj1K_ucluD5HU1lpk2UsNWK2eiykSCN7wsIcWsJWSzWA_PErRTBh7rVhX7hG97q82jvK7ZxwH3ZKYrGVlqZLp-k8YZ4_k-tz76O34EcDqjsLSPg6dsvnGMbBq9fRZR4EtCC3pcAyrrkt0m5RVEzzr-3RDuTHTgzExk8WCQyqYcckrNIJFAvr-9uGd3xKmoMdxP6QCHgA2rx9kEuHfX9npb-tvpwfJJXeMCAnUt_0nQXFv7QXnw7l-ftf4nUpISnfRMeKU-GG_hoL085i0FUPD-Co1p2zfsbXYWL3WKgujbTzlfCPh_wOaYqU8tNQjvDsQiCohIEyKfsZQ"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"d4e0f820-2608-4fa9-944e-bcd60e8d7146","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:23 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:06 GMT'] + etag: [d4e0f820-2608-4fa9-944e-bcd60e8d7146] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: cache-control: [private] - content-length: ['560'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:25 GMT'] + date: ['Thu, 15 Mar 2018 01:30:08 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: null + body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", + "value": "my value"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['94'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"bd5b2dd4-4130-42be-bc28-f09b202f205b","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['448'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzuDav1XjkJTqlDAAHnWI_uEoKjy-iEbqErIi_gjG_U_LCDWx8ZCp1NEFZgIfCa-5GwRmBKf8UOeg6e9nCg7AfCjCG-tqooJel3R3gj5Og6vAj4ZO2Vs1q1BcLVssEtGVTaimmWOaxEOO9bmxLF08wI4EQcudP26vD9XyQOzHVBDUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:12 GMT'] + etag: [bd5b2dd4-4130-42be-bc28-f09b202f205b] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname create] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075748","not_before":"1521071848","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg0OCwibmJmIjoxNTIxMDcxODQ4LCJleHAiOjE1MjEwNzU3NDgsImFpbyI6IjQyUmdZQWlPWTYzdnNqdTFlTityU3ZzNWNTK1ZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpZaFVBQUEiLCJ2ZXIiOiIxLjAifQ.v7TLjGe5WYhXbo0_jZmeADJviEcNm97NjZpGaI7w5xs5FQn2jO4TM4c9cCjypri_sWcmssC19j0qv6xpWlWuD6733m83Cq8SzH_b_FRYDEhxX7TZGnW5hbJ9eWhhDkNY6Rp2lzRvRgiq42JxO9P3MeY1hlT-fl-kxMipqZQ103ML40gwc9xlhstT1nClarob-o3pexzKtJ42tghmcnkwEs2HCndWRf64tQPENDBW1IkhU8ZG5dabBpmpOa8NY6jP0fBNy4e6UcaYKZ0QncK_Sz7_dWCkNvbWhUjfPnvM5yZHFM1K0HxmqTGWdglvxSX_GL3v9ArdQyT7TcYEaGSRwg"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9431d91-5198-43c6-9792-a7e15d6fb591","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:28 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:17 GMT'] + etag: [a9431d91-5198-43c6-9792-a7e15d6fb591] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone show] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9431d91-5198-43c6-9792-a7e15d6fb591","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} headers: cache-control: [private] - content-length: ['548'] + content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:29 GMT'] - etag: [00000002-0000-0000-b23e-e0e2f0bbd301] + date: ['Thu, 15 Mar 2018 01:30:20 GMT'] + etag: [a9431d91-5198-43c6-9792-a7e15d6fb591] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "a9431d91-5198-43c6-9792-a7e15d6fb591", "properties": {"TTL": + 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['114'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['425'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:31 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzCuzdP6X7tBIa0IbFneaLUTdG7cLmqa1QIRb9hUiyFfxfY28qbmsHaGj4ZHLb_dTeIWVHcTnxWB2Yt6f_d4T2Krf35HaSIGcJFhTvXmLQTb4AsFeY-VdEOOJykChBBSZg-7BOqjiFtFuyDuqgaFFj8TXVIvC0wn6tn3QEzfSNdZQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:23 GMT'] + etag: [5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075753","not_before":"1521071853","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg1MywibmJmIjoxNTIxMDcxODUzLCJleHAiOjE1MjEwNzU3NTMsImFpbyI6IjQyUmdZTGo5bXBsRmNkMlVWbGFSWTdwbUFqY1dBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamE3QjRBQUEiLCJ2ZXIiOiIxLjAifQ.j57bdiN6j1ikLN3L5x6-oIlzUaj7xHbCflieY_m0Gh3PgG-12hoMhaSWp_bdHubgvyFy2ErQQGdPpqrczuC8HVKsjuU8vbnyErpqrJE0lgkLJmeaHhZ-eNWCoegLLFCqTxStMk56gZF5FiSQW2Bl5bi75h3RVTnOLdKmUu8og1I8bSQaxf0rNRSN7crsW4oTPPbWVOFxZzdL2iLD4r34eIfcI6SyaSGp3DfwORs0n_Bt98uTvHBbxeqU8d1jh2RnRbet34Sg5aVy37DrUDZyzPntvqSErwexy_wJ6Lh2L4zwBBDyZGO1DeCL3tl1zPle8rmhC8YxJqWlyriuXU6HiQ"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['233'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:32 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:25 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} - request: - body: '{"properties": {"TTL": 3600}}' + body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a create] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] - Content-Length: ['29'] + Content-Length: ['66'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"67ace931-0795-4416-9544-62ca4ae254c6","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"00512ce5-2470-4ffa-88d7-330f6ac28342","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] - content-length: ['385'] + content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:35 GMT'] - etag: [67ace931-0795-4416-9544-62ca4ae254c6] + date: ['Thu, 15 Mar 2018 01:30:29 GMT'] + etag: [00512ce5-2470-4ffa-88d7-330f6ac28342] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx create] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"1c6acc56-47df-45ef-a9d6-9dc388c5060c","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:35 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzHcdGfI_g0EvIomMIQXb75gEVpEHGtLb_-o7xmsLYJePi-AdtyLieyNF8Y2VuNNZLZckNXKv6FN-ltYCPaWPkxqQHmsMlb8gEoZbRf0POEv6PrvvP6_5Y6JTwsvmcvCpodDiY6w8QeAIJEQu2CprSq7V1t1iNNpcgrnH9MJGVoDggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:31 GMT'] + etag: [1c6acc56-47df-45ef-a9d6-9dc388c5060c] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075758","not_before":"1521071858","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg1OCwibmJmIjoxNTIxMDcxODU4LCJleHAiOjE1MjEwNzU3NTgsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhQUlVBQUEiLCJ2ZXIiOiIxLjAifQ.WPm1-H4UFtTNoMNpVNnqh76oN3Yc0A5uB3M5l97nIpMq3a9fKBZwYzLoeyunkZE574I-TIUnziLx4BCkfpNpgmwmRGFuOYCGZNua4zWDxvKH_L_PrUe3Hn-ZNWjs_FvzsflfCXbwet6PXMcXVE39SIuELf0KD-kvDm8Crx-cI2l1omB1Sp5Wp7THaevUgb9GLAKCLYxCGl8yrUO2z0paSqIGMgzRJA1BSbJFt5ZUKxk7WXiMq5hUR__hWInpHN6P71sm3oha5u1qg6ma52WHh-WAnnDaQfLVKtOyNReEG6wmGaU4ehFFynHTmSyB7RKAZO28Bmb2Kikf6oXEl0fDOQ"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"1c6acc56-47df-45ef-a9d6-9dc388c5060c","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:37 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:35 GMT'] + etag: [1c6acc56-47df-45ef-a9d6-9dc388c5060c] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "1c6acc56-47df-45ef-a9d6-9dc388c5060c", "properties": {"TTL": + 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] + Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"67ace931-0795-4416-9544-62ca4ae254c6","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"4ffd202b-f3b0-49f3-b8e6-1bf70f625d32","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] - content-length: ['385'] + content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:41 GMT'] - etag: [67ace931-0795-4416-9544-62ca4ae254c6] + date: ['Thu, 15 Mar 2018 01:30:37 GMT'] + etag: [4ffd202b-f3b0-49f3-b8e6-1bf70f625d32] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:43 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzZRrIuI2NDzW8qhX2WaNsYlZX6mRUvYrhn8AQ-Xp1g3mSP-AUrl-2nN5TSNoG59cin4eVFfFbEZNM-zGeFPOBZw-L0QYI9dO737DUCZTlc0FF_OgFqNx5G30wF7sSCbfWAlMu4m8OzeE8SzNCuc_qA-iOoFjgqVlrqvmO4I7jfgQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:40 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": + "12"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['82'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075765","not_before":"1521071865","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg2NSwibmJmIjoxNTIxMDcxODY1LCJleHAiOjE1MjEwNzU3NjUsImFpbyI6IjQyUmdZQ2l6MXZhNXZPbnhOdDMxaGJPVFhocjhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZVaWdBQUEiLCJ2ZXIiOiIxLjAifQ.fX_9OsjNPY343SSqbIBiozeRw_rL6YI3SGBAP5ZDy0r4hK44uDkTZkUW5YQMUqHMRAboNmSUzM3nVOv7qBQIdtTeSaLjV5qWO8lAYAfGAqziXFoaIMe3mgsz9GtLKkmnxjZ3v6TcPlqn_5KRvrj6H7qwW9dUVdKCyqN7BiNh_MEcxBxt-n3rWajThiE6CVREmS8N5JtnOcpD8JzSevtkuXJgtmVEWYcc-EWov5vstXZBuv1SdAsMjqUstUbVzHfGAgycvdUzCVuux5Tmj4kFxhzQ9dwbDLbop6cuK7VlPs-cbjUUZipy2XjtWyYb8FVeYJP1fetAqlZmpxuJePHIlQ"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"c53c26da-2698-467f-96d5-cd1bbb8521b5","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['433'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:45 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:43 GMT'] + etag: [c53c26da-2698-467f-96d5-cd1bbb8521b5] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: '{"etag": "67ace931-0795-4416-9544-62ca4ae254c6", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] + CommandName: [network dns record-set ns create] Connection: [keep-alive] - Content-Length: ['121'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7dd80698-b69e-4c02-92a8-3c5390afcc88","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"58e06e5f-79f7-4dad-b2f1-d252b397a8df","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} headers: cache-control: [private] - content-length: ['412'] + content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:47 GMT'] - etag: [7dd80698-b69e-4c02-92a8-3c5390afcc88] + date: ['Thu, 15 Mar 2018 01:30:46 GMT'] + etag: [58e06e5f-79f7-4dad-b2f1-d252b397a8df] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"58e06e5f-79f7-4dad-b2f1-d252b397a8df","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzqTy-Ljva9sjzG--owV5vUD9D5qwnDipql0JzNelqdb5ILgkUZiMUHKnvYDzOpb6wSlt9RNfGZZRCKbuNi8tD4BgEHBo8MIGGZ6-Y_0Hmy7_xyoiYD00GI4BhAOII5sHaxacz_DrgJ8lrlVMGsYD7SzRgGxzb3kPKW41lxFKWQa4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:49 GMT'] + etag: [58e06e5f-79f7-4dad-b2f1-d252b397a8df] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"etag": "58e06e5f-79f7-4dad-b2f1-d252b397a8df", "properties": {"TTL": + 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['119'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075770","not_before":"1521071870","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg3MCwibmJmIjoxNTIxMDcxODcwLCJleHAiOjE1MjEwNzU3NzAsImFpbyI6IjQyUmdZSkQ3YjdocG51RE9FMXRtVEd4N043OWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3YyaWdBQUEiLCJ2ZXIiOiIxLjAifQ.gOpLVf05emm3g2qcGOO7LU2hwyDw7hu1yLuhlfH1rUG5wzGeHTlZ_OBKw52gbbwCcW2JCzAIvHO7nEM7Vo2H4bECmYm0lkmzKdAILdaWyrMV8IA7INMADUlK_ZRkEvKtR0ag1B9K2M_KiDdSP_z24hFhDvmnvzNrOKFhheGOE_lQQ13He4WFCUw-2MJdYUv690hjxjKieJp9rCrAIduc9mQx1m2UQQcM4tNyC2kUbVxaBrWT_mpBHk-R7o8ONHEK2r1LaMKqLt3e1dGuFMTkegaYZuU2shSuMNer_4MTEIByIeePDOA8LMoi_Uflq76NBm8UW3RfroAbBPLA-zAIbA"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"364a0c6a-80b9-4e78-8c1e-8ff68adc9e87","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['415'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:50 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:52 GMT'] + etag: [364a0c6a-80b9-4e78-8c1e-8ff68adc9e87] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] + CommandName: [network dns record-set ns add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2018-03-01-preview response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsnsalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: cache-control: [private] - content-length: ['229'] + content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:51 GMT'] + date: ['Thu, 15 Mar 2018 01:30:54 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: null + body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"e1bd3cc8-fa52-4508-a346-df6741904b97","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzIaqhn6L65df5k6ESPR1_A5tNIhFl7rv1xiIBwxoaAiUHTcyJTUXqtq3W64OieGCL39BHg6rxqju9MNewXiTdXTS8xPArl4sgh47RKRknUn5SvfakO9AsxccJpAo5-4P3cehhl9KtueHprYnfbYOQjhEnb4jSZDggyESWPnJ7Gz8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:30:56 GMT'] + etag: [e1bd3cc8-fa52-4508-a346-df6741904b97] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075774","not_before":"1521071874","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg3NCwibmJmIjoxNTIxMDcxODc0LCJleHAiOjE1MjEwNzU3NzQsImFpbyI6IjQyUmdZRWo4ZTd5TnNTTXdjbmZORGNFWjlWc21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVKUjhBQUEiLCJ2ZXIiOiIxLjAifQ.P2UQrAkBsu_zLRRYx9_RXNeo7R8LgaEi3Gbc5K_Hd7bzoDXvguts1Wuh6szjPcfL_mdxVMzelm4zTVt98QQP_1nbUWqARDbGJ30GGrDjzFqdvU070FX-SqeqqF0rw5q04uE_wbOISEBiU-DI4c-gRFhHmOrrAg5xGJROlb7WRBLjMBigtpj5XRHwu6Hhn-VHwJaw_2VBx1rbHb3QO_aXxt_FiAeLA8Ad6PUNzBA1MJUkIsDiMRDIKUJiEo--H2W6b0CBn3PKXOWCU_XNwkfPH64Urxtanp4rJPPq0LxPeB4Glk8mWUXz-ktUsQcghW4du_9YfB0y9wftXaalptOJNQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:54 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: - body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] + CommandName: [network dns record-set ptr create] Connection: [keep-alive] - Content-Length: ['73'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"127639d1-b346-4581-a119-f0738a6a3108","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"3f79e793-b502-4d5e-96cc-b5d21c0ab97c","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] - content-length: ['421'] + content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:57 GMT'] - etag: [127639d1-b346-4581-a119-f0738a6a3108] + date: ['Thu, 15 Mar 2018 01:31:00 GMT'] + etag: [3f79e793-b502-4d5e-96cc-b5d21c0ab97c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"3f79e793-b502-4d5e-96cc-b5d21c0ab97c","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzT8CQRuaoraYxLPC6HtaFArQ4lyk2tYZnZpCbaaCawpTOYlrhZwzDvsffQqAfkCWD28XJ9nnZ2fJYaQdGzsHrZZZ1MLojMiDz4HvGOWM5fTMigXMCdRG8Pjimult4oX1739NfR0SUo6s8UhJtObr8UXFi6IupZELa1rR_Z_vysFogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:02 GMT'] + etag: [3f79e793-b502-4d5e-96cc-b5d21c0ab97c] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"etag": "3f79e793-b502-4d5e-96cc-b5d21c0ab97c", "properties": {"TTL": + 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075779","not_before":"1521071879","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg3OSwibmJmIjoxNTIxMDcxODc5LCJleHAiOjE1MjEwNzU3NzksImFpbyI6IjQyUmdZSkRJYUowL3U2dy80dFpwd2RQMzc5eHNCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpKUmdBQUEiLCJ2ZXIiOiIxLjAifQ.KVbgIeWjNcYSUZQF9_Y3gYkFJg7HQJNc-v2SPMCp4ZDJ5ReFmQaLfy1iqTZPrbExVslz4CXI2Z0QFFRc6Ii2KU2tBjzpoE1Ca62KKq4gsIObwhEYJno6BdqF6Z_r2d5c-yJ-J3cvQNruMpX_0FKLcyPyO7M6V-qkLK2hRlit1c05RFiYnvKAgw2CqHdgAVSQdA3b9RlpGXS_odBCJP3cN-Qq3LvHPRmZ11oZW3HQD8CiXHY1AXh2PhPzaITmzHJiitJF1ls3nkc6Jcsw1X_nslrzuXQzmh42zQbpdcbFN8ITMx6wEXDAdW0cHXPCiD_Rci9nFZwGsyYiEe_5xJkS1w"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b7a347b3-b4a4-4482-a07c-257257d5e936","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['422'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:02:59 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:04 GMT'] + etag: [b7a347b3-b4a4-4482-a07c-257257d5e936] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"properties": {"TTL": 3600}}' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa create] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"23ba99a0-b5b0-48af-adf0-87d6a2e76037","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: cache-control: [private] - content-length: ['403'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:01 GMT'] - etag: [23ba99a0-b5b0-48af-adf0-87d6a2e76037] + date: ['Thu, 15 Mar 2018 01:31:06 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 201, message: Created} + status: {code: 404, message: Not Found} - request: - body: null + body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"43463580-432c-4640-aef9-3021eee07cc8","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['431'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:03 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYtyzUp_3ZNE4dNHqAUJJgdwL4cJhreVCNpeX2-CZ4o9otSGe1ERXQM-5V7Itrn8EMT_20-yAtdo1NlNtQkHCilYxvLYrDjTN_MddwWhXsHqOf6JIQtyhf1CqY6yN3iSZesySgivxDVDtzv-aK4Fi2bekqac6m11Qk4DQZSl9TLYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:10 GMT'] + etag: [43463580-432c-4640-aef9-3021eee07cc8] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075785","not_before":"1521071885","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg4NSwibmJmIjoxNTIxMDcxODg1LCJleHAiOjE1MjEwNzU3ODUsImFpbyI6IjQyUmdZSEJWdVNraDlOQ3pVaTV2a2FlM3VmVldBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkNma2N4Zk0wcjBtSFBldFVFd2dBQUEiLCJ2ZXIiOiIxLjAifQ.lc1UR-uj3w5NJ7fMaXUkfpIVFcCqP8qoSVRQk71bA_j9mD2Obv3FAnBgZTOUV77v3Q1PSDvifGZqMt9DKeEfsPVX-WLbiKLFbx-JALPXaM0Mdiya6mlWQrXo7_p1Itixowb9TjSNJMYNoklkf0i47daJtKupLwrfIDU16XhUv-DoT66-nxnfq8weQywZ46slQqTm4nzcy2LXwgf1qbktvL1LHfD0TOivCDPQdGlBOCCMTJEalRhKoDsWhbdpiQp0xEQM55rRe14e_hF_v1c4ena_uf5YsuCBltyuC2BZy-FEWNzzV48EFvqXbisvEM8Wrh-Hs2Ue7BOC3oNdP6sqVA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:04 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] + CommandName: [network dns record-set srv create] Connection: [keep-alive] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"23ba99a0-b5b0-48af-adf0-87d6a2e76037","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f6c056dc-0599-4cef-9da1-a930c3eb319b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] - content-length: ['403'] + content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:06 GMT'] - etag: [23ba99a0-b5b0-48af-adf0-87d6a2e76037] + date: ['Thu, 15 Mar 2018 01:31:12 GMT'] + etag: [f6c056dc-0599-4cef-9da1-a930c3eb319b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f6c056dc-0599-4cef-9da1-a930c3eb319b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz3urv6hVyk5cx6TxWq4ZFOjd10JyI-kH6wUbNDjjqfjXIZrmUN0zNpR_gosDGRk6ayhwDw3wUoFfHyqnvyz_Umz3beUGTQheONR4mFMtXTZf_sPv7BRgbYbScCLxMMOakJTbL3szHWtQjy0va__WPp4j1yX7kJ7ov0Gd0HfnGztEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:15 GMT'] + etag: [f6c056dc-0599-4cef-9da1-a930c3eb319b] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075789","not_before":"1521071889","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg4OSwibmJmIjoxNTIxMDcxODg5LCJleHAiOjE1MjEwNzU3ODksImFpbyI6IjQyUmdZUENUM20vM3N1akpUdU90R1Y0UFN2OWZCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamE3eUlBQUEiLCJ2ZXIiOiIxLjAifQ.aWdjeMWntZB78onIJPh-6AvmCwf5rooFLWi5VNSZqc_RH7sZ6WZ2S_oxlBVIWTBK0n-CJ7-JBXXp7wbgo0gGOc5u0o7htBFDTS_2DEvasyMK-wWk8Zf0TI7lfJlcQsNUfMaX-ULE_APDIHFqC_QfMlSzjioOg64cdy47Jc_AWf0I8W8QlM4gyA5y3PDSECdRoIXhNPA9xocd3QxOxDTMHsC27t8cK6eOAMXlKXHgtr7Apaxw4ce4XCALhePsJIfD_GoG5oytYOsZgVN5q8gYRATqrUgsZ3YCi7bH0wGLDnyd6leBclgGT8Ib6HyvZNJ0vDvT9wMMuC385QsTJ7-v_w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:09 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "23ba99a0-b5b0-48af-adf0-87d6a2e76037", "properties": {"TTL": - 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + body: '{"etag": "f6c056dc-0599-4cef-9da1-a930c3eb319b", "properties": {"TTL": + 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] - Content-Length: ['135'] + Content-Length: ['162'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"48442c36-83b3-49cd-b8f8-ae352f47f0a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ebb20850-5834-4f25-b1e2-bde29504bd88","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] - content-length: ['441'] + content-length: ['457'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:11 GMT'] - etag: [48442c36-83b3-49cd-b8f8-ae352f47f0a4] + date: ['Thu, 15 Mar 2018 01:31:17 GMT'] + etag: [ebb20850-5834-4f25-b1e2-bde29504bd88] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzLPsW2a_zVWd_H-psjQTHCeku1k34MD7XDzGZOcaFKRGcARiU3GjgI67-yRUm2R6IX30L9CCHpBgAYDfSodyfqW0vtcq5DrjkPv37PMykE0tPsv4mZRB3gBdvOOjgWr0IVX5R_umaGiTB6OH-Zck281relvW1G8bTT44bFkIc3AwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075794","not_before":"1521071894","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg5NCwibmJmIjoxNTIxMDcxODk0LCJleHAiOjE1MjEwNzU3OTQsImFpbyI6IjQyUmdZR2c5c0liN28wUG1wNm8wKzFWYkZESnpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3YxQ3NBQUEiLCJ2ZXIiOiIxLjAifQ.Y_2FXf6dj6dttCDcQWgypShmcfrWHAFmkDJA_VjFMnxtAH2K8JVVGKYD0XTVfgc9o_92elXujCYo6KVeWBiUjvclghgzV72puw4wpSIU5G31jL5AzRw7fMwk7O5QtKb62XIQoBwku_KR7LLB7BiYrDkz8seBGeTLVrBrmm527kozMbO6297va_VjfbycNMKDIoLqzkGires0b8c_CWipaOXNKmBK1SrsvxIPmdKP9kqalYappRz6U51i5oAwk96R9RZPN1sjLcrf8xrM8igCGmOCDbI_ne7D1YuVckZWBx59XMxBSscGzbsuku8edG4u1HCyah7055GI9GfNS1PXvQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:14 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2018-03-01-preview response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: cache-control: [private] - content-length: ['232'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:15 GMT'] + date: ['Thu, 15 Mar 2018 01:31:20 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:17 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-WlevDUAGudd4c3KxIPTIuAQ6nkDKJDqgH8ZkYTQuOwBlK5M7m2akCAU7RlA44lvVGXxplX9N_hfi9YC0Ic8Jxu1QtmTnYAa2Ywj2PATvIGWA-_92mkzPeO6Fn1vzkLywfzJCA2La0CwCaOSKvcceyqApScCCprQR0_OMyq0PscgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075799","not_before":"1521071899","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTg5OSwibmJmIjoxNTIxMDcxODk5LCJleHAiOjE1MjEwNzU3OTksImFpbyI6IjQyUmdZTGhTdjYrLzJ2L0E5OFJJYm92b0xaeXpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZreXdBQUEiLCJ2ZXIiOiIxLjAifQ.DMZGMR7R81R6Ya5ws4bA29giOLtI5Jwzzcj-Tg7if8zi6dF_y0HXGmWkQqxedKAgeOaEWbdQ8sYa4k0bLw6u_yMj_v-RSVpuRVVE0JDDFVrsZXAQXqo0q2vBm3wH_uvUAp0-HH94O72AddooLLs7w_m5o4DH0AVCG_cvISh3zzoNNrmIqR4YZR-SeH-kWZqAbm6Q_sZRKK0OlJ86QKWdFtuNO3q_0tBHAuo8i2lMGx2DnIrK-YKWpAokzETOsnaYXVtwD_lWJHlknmQhQIfNDsmirLsqtLaCBQCinTj5jq8atZ5ThwYOeHLVG0BmUZDDnP8c6Yt9mW6GQ-fLDeNLtQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:19 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' + body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, + "port": 1234, "target": "target.com"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] - Content-Length: ['87'] + Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"d26138bc-e96b-4490-bdb4-ad1c14c25ace","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"190a4113-822f-4a3b-a518-47be856f4d84","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] - content-length: ['450'] + content-length: ['466'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:20 GMT'] - etag: [d26138bc-e96b-4490-bdb4-ad1c14c25ace] + date: ['Thu, 15 Mar 2018 01:31:22 GMT'] + etag: [190a4113-822f-4a3b-a518-47be856f4d84] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:22 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzexqUFcOD-yMbBmCeKfnUDOsTLW_rQLwcwI2HpEJc31Q34Fo8I3Mlye5L_bmYdmeUHJNaj5IwpUGJC1wOaEHz_CIwqdBawAPeD3wWj56Slw9WcQ-n5VDYEptfm1OMyaB_3Mo5TlB70epIZER9-uQRZfqX_O9TCkepNNZzJmrflgogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075805","not_before":"1521071905","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkwNSwibmJmIjoxNTIxMDcxOTA1LCJleHAiOjE1MjEwNzU4MDUsImFpbyI6IjQyUmdZSmhVdUhuOWt4TEpnSWpqQzFUV3YxaVpCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamEyQ1FBQUEiLCJ2ZXIiOiIxLjAifQ.YX_c2P7s8yQPFX7kc83jkHfRjdDkT85U6B9_mI7GzwTHd6XRq6vwOyYUGat475jTH8lqzTREoDdQp5_tlUCFP5ZxTRxJWdQ1JrdvYg0N4PX0B63b6asPJxHxOfTf2RMdTTup9izgoLhToOj6pp_fe8kz8_ufq89jWxkGsC49jOYN7bXKGZ5_Yh9n6pGqmiMnwv7HXRIvmZp1z5fn78WMV-Wm006gkFjPVRvXwb9j2BZBzcwsHBK8lnwmZBnYpqfgORNM-Swltf0a45Cm79iF_Q6WKjxFqxvkb-6Wq0GBE1Rs_eg8_y5Dy7DFCXb_TISnGTf6BC8TAd1Nl5TCus_SSA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:25 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa create] + CommandName: [network dns record-set txt create] Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"55246620-0aa4-4fb8-a720-e68942b5a8dd","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"5ecc6055-9d70-41f3-b931-99403e506a12","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:26 GMT'] - etag: [55246620-0aa4-4fb8-a720-e68942b5a8dd] + date: ['Thu, 15 Mar 2018 01:31:25 GMT'] + etag: [5ecc6055-9d70-41f3-b931-99403e506a12] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:27 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzys5Eq0kG24INV82SeTKJT4oRbaKx9sqakM2BQl7Qfyy6iGu0kO58fIruuosdOdloXvB0RljjdgM3p9eYj2r7c7S4mE7rCs0hvsz32vN_QKc5XkhQCv6ZBax1y_DnrBhUGAET68-o2VBr8IEJehn-o5Sq5km-V17Eo3OLcL6XOBAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075810","not_before":"1521071910","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkxMCwibmJmIjoxNTIxMDcxOTEwLCJleHAiOjE1MjEwNzU4MTAsImFpbyI6IjQyUmdZTEEzTmJOODVkQVVtUkFWNTZ0MmIvOXFBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkprQnNBQUEiLCJ2ZXIiOiIxLjAifQ.eA_JhZCe4h4_T2iCCEBqHj7OvUclAQYTAbxiof0wLBM9TSJd7RhAK1QYa_44-KVuqnSpIRvSM_5Rxfh120-xblno4WLuGhNUnyF8c9kQqjHJD24V8pQfPKPu-xVt9bDByQKvGagz8TXgmo21vCfxaJk9PAVSS3yFrV2z5yAPLQktSrUVvVlwZfCOsq8oLegCRS-7J4nrF1F0-wBLQ_px26QQIpA7vCOeIJ4EfSIUQKafFWQF5IiXE-DbGdgaCmJCnaA-0CQwtXP2c18-4jKPnYHdF4GSpzyD6NfeUczbSxCkjF0fWfPXlean9JfSnIUKvdFv1x0H-DDBVnJilI0Imw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:30 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"55246620-0aa4-4fb8-a720-e68942b5a8dd","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"5ecc6055-9d70-41f3-b931-99403e506a12","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:31 GMT'] - etag: [55246620-0aa4-4fb8-a720-e68942b5a8dd] + date: ['Thu, 15 Mar 2018 01:31:28 GMT'] + etag: [5ecc6055-9d70-41f3-b931-99403e506a12] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzashknnnt1Edk712OKhVi7MxjrgktmOCq4ou_OmZhlW6i5_rGyvW8F6qUuXSEyOEdYwffccj7WzDkTxpRGHCWqUQeL8YaSnnEAPSnSG0046dG5d08IYw2xtP0Vb0j0f8vlxmqhwHWl_E-4DOjHIwmQGauRE2iYesgyFOQRR-FUiYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075815","not_before":"1521071915","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkxNSwibmJmIjoxNTIxMDcxOTE1LCJleHAiOjE1MjEwNzU4MTUsImFpbyI6IjQyUmdZRGkyemt2VGE4UEpsLzNpZjhVOU9mNnlBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFg3aG9BQUEiLCJ2ZXIiOiIxLjAifQ.YLnznoE3lbR65njSbRyzAa9eHeBrM0_J-T6L0FMC_XClGmgilfkSVntUcc_i8FZhqduTfoIK1QavjbBAzEV4ASC-NTMeCygQMHDkV_hdtvYDNWzLDGwo8cyzY2w3ZTBrebTE7AulyDYWEQCZOxe1nzou04Sz4gkoFjeHLQ5c7_AB_uKd9bauS63w6U8irh5S8eIyGSkkgyueaZuxZr5snOij00Mc9WDyNajezpO_VKxRTPBLHqV0np15hbgqlnEgjBKdj8T01v6V2TY6C0h4c7mwNOGwNvXEK22_HyvvaL7_rCa6vvxvyQZzPVKTglYoyxVAmzHVfvMVkzomYigPgA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:35 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "55246620-0aa4-4fb8-a720-e68942b5a8dd", "properties": {"TTL": - 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' + body: '{"etag": "5ecc6055-9d70-41f3-b931-99403e506a12", "properties": {"TTL": + 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Length: ['142'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"eb5b853b-04ec-43fe-a934-97f9e586c6e6","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}}'} - headers: - cache-control: [private] - content-length: ['439'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:37 GMT'] - etag: [eb5b853b-04ec-43fe-a934-97f9e586c6e6] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:38 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzSf_NVkEWsO5u7Ar3Zs6Cse1N8akL_inFn-cPp_pMbdSVlg2TAeqGGvhGSOdlBCUP_k4jkEqa6QeXJ06zZpof1LKkDd-e12Y1hzJOuZBhDU-A8PwKNLXfw3vd9i3mkeLynKOGP7VslpzSO2Advcd7o4teERFXE0Z86IRfdMarYskgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075820","not_before":"1521071920","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkyMCwibmJmIjoxNTIxMDcxOTIwLCJleHAiOjE1MjEwNzU4MjAsImFpbyI6IjQyUmdZS2htRmE2cVgzWmxRK3VOVTlFQmhaWjVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpwUndBQUEiLCJ2ZXIiOiIxLjAifQ.DVKODT_0dQzdr3H_AfKBpZQq_mrrj89pPo2ahAuQ5lCb_mbbLL1SmzJLolq3MbHHwelxVAjpV05x7sSzfqyHAc-9hDDdfdYEp54g-1kVGJJOpPguwvh0L4AwwTcZNnswfTkk7qVik4AU0x6hSMTjKn5MfvDSmI6pwVAZLXUABy7_pP2JFdIu33-DyJPJ7Ja4-jSV_HhHqEIdONYZfk7C6jItuelVjZzooUS0t0CcxndXuZ1G2gZJ83n3g2nn32MOB34quhwPN4jIPvHnDSLrxrDl4XHcNrzas8svX5UK7wtA3t9D06mdCfavtDqbhf-OI3zmuvrAeh_RXTsdpvyuig"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:40 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:41 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:43 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz95_Fy9LSQo3TGt2rP2MkvAh4MolIy3fu1CIJDkRT3Ysyy26WbEOfqIf9f3NP-Y4WbuI8Uq-ccAP9EvbPP3PjGD-MS-HuJvWTmqmqrGxqnY3okd-RpE8giiSgNA6ow7Jj-QWzSqyCjLP90dN8Xk8ChZzxWzFpgdyyKJFPtghbHiwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075825","not_before":"1521071925","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkyNSwibmJmIjoxNTIxMDcxOTI1LCJleHAiOjE1MjEwNzU4MjUsImFpbyI6IjQyUmdZQWorcnJCTXgxY2lzdEZ4VWJTRzhidGFBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZyaThBQUEiLCJ2ZXIiOiIxLjAifQ.f0OPQ4wZM8NkbGRk9T-LtledJ-T8gyoGZBcIPxH8r3gksr5B_0PNv8kNpz5ohkwbEBJhj_7mHRVsR4frXx7eIuPw8-7UB4wwEKvaJdvC9vJ565VC7JZ-JHGGAY8CzyrMTaWjjRlGNhyBdfT8b_8SYIrcVVLcVeipcl1u2quE8mjA1boJd5PpxuAKKtWzFFPPt9RmouUtkPlbp1ISkA_kUWjPxFOaNS8-_Fs5Taa7f6YIasccK3ImX5A-JseaQUtX8pCr-X20bPKnMv1h7mTJ72Ct1Cy3JodpXFUDOLSmKqBR4rP2BhDQFpFz2dZQumxFKsrSO2wBBLq9bGN6zWGAiQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:45 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", - "value": "my value"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Length: ['94'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"09ac2abc-ae05-45c2-b6ec-f05f9da195f0","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}}'} - headers: - cache-control: [private] - content-length: ['448'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:46 GMT'] - etag: [09ac2abc-ae05-45c2-b6ec-f05f9da195f0] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz--ZBxIvI4hZXeg_FVG9-f8G6p9uxMnOQjxnCjklst9058qRWyhoAoUBFfiIfKXVh59zhJwRAqyioX9lQkD1BU2BYb-tFtPG-8dIILolp4xkiE7opwkHIOkMfdMTNvKNYhacfL-H51Rtvvmz5WgakEgHVoBo9eT4kkh79elugGM4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075831","not_before":"1521071931","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkzMSwibmJmIjoxNTIxMDcxOTMxLCJleHAiOjE1MjEwNzU4MzEsImFpbyI6IjQyUmdZRWhpbEtoWjl1ckdGamFlWTlxYXZzczBBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1WWkxMOU14ZDBDOGdnZEZRaGtBQUEiLCJ2ZXIiOiIxLjAifQ.RJS4q_hABCbGZ9omhl17o_NnfYgs8GYK9kIF_7PB9mBVe-sH5TuR49w1EjNA-wM9Nz4RD8CDrHrMzP6YNpUX_bYVqnPKPy6JUoJKkgdJZzJrZHue3VPX-iP-8N4hBHD8LgsjT4uD50Ua-3sU0i80NBuYVsm6kHqJpqM3mMxRIe7Y6KHvTykK_IklIq5pMcjXptdapWhWSv2jsPyrmqt6v5wsy4reunj8WxT8JWRxZCNjLeMCBouvSztjK4t0afRKfmEx9DM7habRgIGl0OA8R6nricwRYeFbjUSaPFqts7Ovpk32KnRyeUPLO6x2GXip-7I09bV0OttCnELIOTpDww"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:51 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"52043d42-eec7-4da8-8990-7198eacfc8c5","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} - headers: - cache-control: [private] - content-length: ['391'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:52 GMT'] - etag: [52043d42-eec7-4da8-8990-7198eacfc8c5] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzyQeiPksCKlNH28itm9VrakAeIGCHh-aMBa20vesvBz2aLnyPtoq_Aw8e_JO8tWQ5OJgW3iHLmZHQZqKELr2XQuL6Wh6eRHGf3s8vDKEOsKI9QhQU7wUCOJCXk4MjjE2eJiPecqOhgjaHThw7QmbBeZdp0eTzqVfMDJqrlSHNdE8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075836","not_before":"1521071936","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTkzNiwibmJmIjoxNTIxMDcxOTM2LCJleHAiOjE1MjEwNzU4MzYsImFpbyI6IjQyUmdZRGdrb2hTek9HV25OYXZ0b1VOWGwvcjhCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpneDRBQUEiLCJ2ZXIiOiIxLjAifQ.M-VW-e8IFUFTc8GP5MB3kpcDl3zv5lpHtD5H68_7WfeFFJYkaJxk_5__SPfhT2w193q7tMAf6Gr-P_fLdJMwmKUtEBwS5nfz1Hbl_pAK0z6Q5FGV2p5tm1pwuzpeJ5enzDUpOaM0n7vifh9Yohx7c_eawpYZOk9WgDkuZEUhXiypRnRWPFgQeOsUxv2f4V1BoKhcZghUfY8SOz_gkBlGLeQZqwyoe5rrjIsqCE69-talQ74Yk-WE5pQwhj8snnOV43s3b6Nm4KLg1obDFdb7i6PYeW2OEAWNIoWNYD2-oNDn9xtpIKHOU8Cz0YgHG_oLc1tMEeGIH888hs_X1PLcXA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:56 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"52043d42-eec7-4da8-8990-7198eacfc8c5","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} - headers: - cache-control: [private] - content-length: ['391'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:57 GMT'] - etag: [52043d42-eec7-4da8-8990-7198eacfc8c5] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:03:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzuHiNQKvHd30x7iATcx2DdBcDzc3LIQqC-7HfVm7oc_nyW6Y-iA_0S9cMFkYJkdrgii1n1Xag0tgWixnL40c_7rGg4mRoeK8Wf4LBa9myad5Lrc-3sem-JzPV13BsPfjM4L4IjB6AzWGnJN5_WmxGQ9KRsiaT8S6GLnVWNF-BGNsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075841","not_before":"1521071941","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk0MSwibmJmIjoxNTIxMDcxOTQxLCJleHAiOjE1MjEwNzU4NDEsImFpbyI6IjQyUmdZQWpNL1BvMGxQdjJ4Ujd2emRzWUJGTnVBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFwaWtBQUEiLCJ2ZXIiOiIxLjAifQ.djZ12ws5F1disyE890DT8SCqztJH0U2wtEjc9V04w7WDoQ4qtyPmh4fIc6XacLhyippJBBtN7o6QrZ5RPXZOsCnm_0OyAZUOywkyfGlZt-gODr98seMpabZcKP9gedrDpWUsDzjC-7JXoRANygjP3HXczJ737NVDkxnbbW6JBWkZDcmiMEXLASn4bHmmqVW09TYrtSOJ-CVjF4mcy6NZ60H68Q9cKcyPDVKLPzSCZQfICBOjGjnnWScGdXT_v4aTbhlFE-cQMdxATTr-Dualn9myzHvRPMeLPjOcRqS0mFptSsBPFfxTXkyjCWkbzfcroOG3xu3apML9WRs5fU5GCA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:00 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "52043d42-eec7-4da8-8990-7198eacfc8c5", "properties": {"TTL": - 3600, "CNAMERecord": {"cname": "mycname"}}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Length: ['114'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1660bb94-d459-4fcd-85c4-1821901d53f0","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} - headers: - cache-control: [private] - content-length: ['425'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:03 GMT'] - etag: [1660bb94-d459-4fcd-85c4-1821901d53f0] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:03 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzExP7YapBtSDdTUV--okm3v8xyOuueioeuLyT04VEmi7Ns4SMRqWEcFakLRubNbElTVPJTcwiRmk1rSM7x2KlOhTyLLLnC8U_dhW8fiMTqWOtS2QLYVVyyXqQWH_zosDzJvYpq-pkKrNv-tw0QHZOAUg8Q4mZZOcCSLfwSaXhvEwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075846","not_before":"1521071946","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk0NiwibmJmIjoxNTIxMDcxOTQ2LCJleHAiOjE1MjEwNzU4NDYsImFpbyI6IjQyUmdZUGhsOTY3Qi8xVDVoenVWUGVwTkhTRXZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFoU29BQUEiLCJ2ZXIiOiIxLjAifQ.m8meT55MaOIzbN9t1Q3Ygox7dgj1kzlzM4jif_QtzEz56OMvvierZLWxgVHHBI9BdicEBHnoSdyafe15S1-VabQ1WKIrRk0vDsjS3FGoVgpqi7pkVNoqrrfP5y6Gu_Gh-CnV6CVR4IsP9uUwmu9yGZauVn2jK419FpMQeLpta5Z4j9WSFlogqtutooIc9G-EBstOhfbrTXvrhm6m6IroIyHWh160wAe-WK21OQb_6LjsPG4JZt5LpPDXQa5ZletbwAQAJhUayR86VedGXnnUBQw6xU-avLl0w8XBaEEWv3sPKzdFhtR0G_-Ldt_Q6T7XydgOjjK6pt4HqK-15w-ubg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:05 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['233'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:07 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6prLE9o6lYG0bOCHqMPMThDG5Kbi_mFkq4O9zJ9908Y2bOCHUA_LIBDTcS8UjVEMbgEWRqHJbIJYbB1xCS__mT4wi1gnMQuQOOF2Wj63NR798fjquSinV0k4whZmiWwPh7QqM3NrGT-rwgPDoJzE5ZSmTJ5N2XgN52JWA0ofDvUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075851","not_before":"1521071951","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk1MSwibmJmIjoxNTIxMDcxOTUxLCJleHAiOjE1MjEwNzU4NTEsImFpbyI6IjQyUmdZREM4VVhVcDZxVy8vbkgya1BUbWxFMTNBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpCeUFBQUEiLCJ2ZXIiOiIxLjAifQ.Gqw2wLHGMfGpCTYdYEtDD2RiqAOUdyUBcJDAPdORDhkgGmdwtW56YEEBlqRfxSSbhESEvHmk2EeDkyekCSj7wprxRhPgTj8De92FATwika7ALD8nJB4AFWjNcmahqrg62hMIDy-xHMaxdf0NGICEAFKD6g8FVImqyjQWNQ0icF-w9Gge09Mc64HUi35rV5NRu3MnhbQeF7NWOI1au3McQEiR5_H2D57z2A_XlX1nS3vr6I4VzGBhYjWdi2JCM3X_GTwfAtcHOzKYWwaXygLCB72c9L4XqjFaKQwXbLVeluzFfVGrtEGaNKET2J9YKAsG7NCST2IyvTT67qF4N8wMVA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:11 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Length: ['66'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"28334082-46fd-42f2-921e-c5a84c5ad707","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} - headers: - cache-control: [private] - content-length: ['434'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:13 GMT'] - etag: [28334082-46fd-42f2-921e-c5a84c5ad707] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:13 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_kbUcf0Twcsxrwk5CLjvmIVMtLfmpq91sPwi5oXTO7a01WVwZ1t3rKcZovr2gFf7hoTd_MHJjU3A0kA-Mthf1BLtRn2xpt7l-q1jN7OHIoqrkSfJkKcbQMcyv2Qpr3e15NI9OBwrGtchLe7H5DavvuX4xT8PWmswSj7z49e3hx8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075855","not_before":"1521071955","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk1NSwibmJmIjoxNTIxMDcxOTU1LCJleHAiOjE1MjEwNzU4NTUsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhwQjhBQUEiLCJ2ZXIiOiIxLjAifQ.MJQFwUhc-MBx6hA9PIghV4jiwbGupZgqb6ZLCs0kGtVbJi_gnkXhZ6oIdp_f7KcWyUsQYZSJxxmRjOE9KcfcsefVCPGUU-plUklsBJrdmlC_qS4o4yfyfgsvMlQ1Q6l-xcR9amBYVcuXpWrM6BbqZTXHzLGRb5MrECTpj68nI0JhHFNri1nxDaEubITze7UrzmDZCLcgDdfO7ceOyQ8aM343q-XAYyd1zcksgNgNztQPWS29FrNWqmxpUIQj6LxFfXs4TfnQHWpCoLvGauHarkTMn8iw59LZ3jYkiC583zdSaAxZibzqWqfuKLATO-u0jL0VLF9eA5SMQIiB13MDLg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:15 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"74dbcfac-4d78-4a3b-af0c-28e8ba293382","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['391'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:17 GMT'] - etag: [74dbcfac-4d78-4a3b-af0c-28e8ba293382] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:18 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzZzFnbY8NrsV3Dj2GmpoVMNvvqjS046QpQ31LFV61N5XoWg_qDyOczkipepw3nktqrWBR9CWfbf1zLLx1gMCaIz-1N-pqP_mNF4gyloHW9lkJUw5JBvTXEfdN8eI04hlU9aKyQGx4ez09Sio_oHxjf9g4wGy0Ge9DjbQ1jZjbMz0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075861","not_before":"1521071961","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk2MSwibmJmIjoxNTIxMDcxOTYxLCJleHAiOjE1MjEwNzU4NjEsImFpbyI6IjQyUmdZRENzbUxFNVlQT0xyU25ucGlmcTMwMytEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVyU2tBQUEiLCJ2ZXIiOiIxLjAifQ.SDMpWFbW2wjiNaIAHLqq60PVtWf-dxhOTK7mTGI6ILnncs-F_wuX2KcLBRGWF3unReXqxCgJTFhameIdxs3RsIiXbLEY7j52jOhHvpvXJTsh4fFN9umsANlzqXZtwIm1I1cR1Xien_OUR9WI2fjHwBdLDPRdMC1Op97GXvFrXe32NNgHzP7CB5Kfp9n0Hd0NZKofQGaPGwYBuCDUm8RQOu4n3gOy87S3ltjhLcamjG0BmgWguc2JQomB71UFZYaQW33yLU8Q7Ycwjay4-nUNUfapTZe4V8QpjmkaV8o1H0Iux0S22BVyqJW4Fyz6zs0uUWakHnNn4Otqvu1WfAP4Ng"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:21 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"74dbcfac-4d78-4a3b-af0c-28e8ba293382","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['391'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:22 GMT'] - etag: [74dbcfac-4d78-4a3b-af0c-28e8ba293382] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzQozpBLHHWkeOvp9-w_3jD1-XOGUEyYe0yjH6Qv016rTIWk-WpRVo70FJBpkS_jmOlGS6DkYs3pM9_ifuYajkVCgD6pyQWH3rl2DFpm2Rp1zJ-c9TcLvtgD7NQZQplJaPrFkMVCGhr5u0RGL2-cqKt-yqSQxlXZp3OPubmerQltEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075866","not_before":"1521071966","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk2NiwibmJmIjoxNTIxMDcxOTY2LCJleHAiOjE1MjEwNzU4NjYsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZiVFFBQUEiLCJ2ZXIiOiIxLjAifQ.WBLBR9_BFvFWss-NDkLQCQNakwMB11SSDJBJ8j-5zV7enKmq5_OG2etspocFc0d-4VglcThRZfFixvUHp76pkzq_K2t-3oN2KrNQO64bOrLHR0U5n8agqJfn6y6Z0aZAz-Uo71-2Ai_tdk-nSaS9qwJ9xI5VV9hxhRe2JlthAWaPUAQb4T2mo2HVtIy_7bzzfNnNNGYJtvZwjcbQ9Q2itykvFP5Kl_7qFSfXKi866Ru_9JwwteCciJTwaKEstKOGeu5JX_ym9_plfK_vF2zIkOmh6dQZGrgsWmP8-n7e1fGE7nsvSeteJAsH_DOyq1fts2JhJBLzh8m1yrtn7hB34Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:26 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "74dbcfac-4d78-4a3b-af0c-28e8ba293382", "properties": {"TTL": - 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Length: ['130'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"163fe323-0a5e-469d-9800-dd0d937ce764","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} - headers: - cache-control: [private] - content-length: ['424'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:27 GMT'] - etag: [163fe323-0a5e-469d-9800-dd0d937ce764] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMV-LDVKEOQIAxBuk3o7WkYPsSftNjX_Ep0mUghd641GhIqZU-XvsY1cc9zTm0LDxho6X43zTPoo-nkhYCwpjzruKOVIr_nLz6a-P4SUuNKel7pAuE2DtKqARf3cNZQSIV8kyhvr23ywxZ5oxCNAo9AmPlHaXOUbFqbyB8e4v3TcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075871","not_before":"1521071971","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk3MSwibmJmIjoxNTIxMDcxOTcxLCJleHAiOjE1MjEwNzU4NzEsImFpbyI6IjQyUmdZTmo4YnRPNXBIb2wzZWZYbms0UXZXYnZCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpaaUlBQUEiLCJ2ZXIiOiIxLjAifQ.NdTNTXzlCdD-aaWQii6jX9D6z_W2HUiBytlSGydY7DH2AY88bM76POBi9iB8V8HOwwF2c5iZQF4H_uRjzYbDNlsOCahySxel0Z0Hz2l0Z05mDpop5eVrkcNP229GDnDgxut67lxgmGTATO5aPcwqHevd_bJCSaucMs-t66EnbwBpDeZ6bzG0vhP4m8ecSP-9JU_gf5FACJeOG4wlHA5FM84eeaYdu7-ayBzIPauSwNktTYjBEx2J9butve4k1MxD9VLxMcMEUw8ivjLWYxZXnTB1r5wqznAiFMT46OHH0EialKyNHxrj4amJWwZjnABIhEK0ra7SizFot5BchidzRQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:30 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['230'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:32 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9r7HovNBbbzzcdhbcb-pZyJjvhgn72atZnKVQg6o1TR-NGXdo40icYKEFUA6Dh2yirekclEjVfZheGV1b9wEu94cgFBBxqxbNOrUfTldHCtGe6ol02KYIAg4JTDzCZQHK0Btix9qUgjZW9wKQDGTfaapDFa73WOSFHhoQBJPk7UgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075875","not_before":"1521071975","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk3NSwibmJmIjoxNTIxMDcxOTc1LCJleHAiOjE1MjEwNzU4NzUsImFpbyI6IjQyUmdZUEQyL2FmN08zcmFZNzJ5VlFtYlBjOEhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJieVFBQUEiLCJ2ZXIiOiIxLjAifQ.lVcidSHDGema9nNgXfRM5rzt-kVWTzgqU8-qW7oRYkfVRLyjW3gJuMuMBkaunj5Vgb2a-tpou-6eBBdn1wkz3J0vcpPRsDGYhVU6bo3Ns6AAuRHjiFoesbj7N_hwQ_q5Ppeo6OApA4scse6Lp7ZRxEzbn5GRtAZfLaz12zdE_StmTKHcsLcCB8Uuc-FygUagQBNY9ipxZZ9o3uQz6wzp7gImQn5RszIG2VwL5zzuvTtFGxkezXgT1tIsTqVQ2RBbytLq4oMVa0mWEJ7zWLxG9q4WmwGp1IKx1WHnUWJVlCygPvyphiqTjuE2Uh3HKrf_3rKzDQHBdY7gWKymH99mOg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:36 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": - "12"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Length: ['82'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"85e65bc7-452c-49a0-8b27-7b7f1dcb3655","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} - headers: - cache-control: [private] - content-length: ['433'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:38 GMT'] - etag: [85e65bc7-452c-49a0-8b27-7b7f1dcb3655] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzoBUpLPfk0wpM4srrChNTmw8eG-EMV_KOoy5SoBDRGlHDq4-4ZgGxmX1giFl2YC-jxPUW5hF4qgSEvckMAKs_PEnNjRP1h2V_mqN9vdWwLcF8zr5B9FB20V7GxgcEGHvxvZnU1DWrCrNHbbB3xb9lbM89fnaW4U-uPhZOi_8sniwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075881","not_before":"1521071981","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk4MSwibmJmIjoxNTIxMDcxOTgxLCJleHAiOjE1MjEwNzU4ODEsImFpbyI6IjQyUmdZRGc0SlMzNXVrUE0vTDNhdDR4YUpxcnlBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpQQ01BQUEiLCJ2ZXIiOiIxLjAifQ.xbwstfT1Xhh4X2z8A2fiZTLMGgxwGl-45iGY8mGDTY3cDIFBbZj3dQamjw2tCvv0wTnR2Uud9iJ1PmaI3ex9WKvlIAddN9PeC3WEVkKClB5aroA5y-6BN7TtQcTSFHkTFMDdJi4vSOSO74RbFaYQfQeoqui8C7BGd8FnRFcdqFl3TuBkzHhsE1SSKAeOR_B5Rd78Vaw40JdD8lWvRsYq4wmsR2jmfeGSmm5McckrtkY7MA9MXmHLSvvJkIzSlxGeFB7DlfOoLqimjpXUMbgN0Idaed5R01OUBMTgqcZmTlv6HbSMOg-sah2__mRmXd5vr4YJNTx96b8if4NCTRgkGw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:41 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8c1d20a6-1b47-4cd6-a0d0-12219c4040d2","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['391'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:43 GMT'] - etag: [8c1d20a6-1b47-4cd6-a0d0-12219c4040d2] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:44 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1_nDUqvPEJX0Rq1hdhKJrrfqHhrQXjvfvFkOUis0tuKJDIlZJc6gsN7zMhRGK3e0LWiIKyx8E0J2ow1QVpsObsvnB--vjZFlLk7vaoBETCMjnSEaLxmUmP8kT91VshiOzBePwNPq6tek2UNMKDeWR-42O5pqdV1SX4evRd9sU4ggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075886","not_before":"1521071986","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk4NiwibmJmIjoxNTIxMDcxOTg2LCJleHAiOjE1MjEwNzU4ODYsImFpbyI6IjQyUmdZUGdxbjZ5VnRuUDY4N3RHZnoyY0dEN2NBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVTQzBBQUEiLCJ2ZXIiOiIxLjAifQ.pQD3sRQlbPQd4RJY_PaHGZJaIup5vJrunMjHa0Q8pdwfZ1vLspINShGtdoIKL-UIK2SQ0ZHLK9-vnqjSGowMlnaqRmHjEyZpnMLv2jPaB0pnLlf1aM1xRDlSc7A0-Z8V1xQH3dYl93BC-T5JC3NKlKF6Pz-qZC-1LloJH_qaBSoYeAB4EX6y4Y_J-Ln7YvHynZHCF-WBynoGWzblFkd-2EvVS88hsa4jBftdKmiOCc4vALv6gc4YRVt7421nnmzwc_Ce3Zqbr79F9ulSURPRhc-G-0iSBOmPgDEOj_rP2rXOpZwl0-SHdJu-oMIfrvqbQ9dOcJ6DxQAVCw5LSuRpfg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:46 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8c1d20a6-1b47-4cd6-a0d0-12219c4040d2","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['391'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:48 GMT'] - etag: [8c1d20a6-1b47-4cd6-a0d0-12219c4040d2] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:49 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz8auhmBttnqRU1J5vPJyMejczgv8JqsL_Ivrfptp8D0F9uhqzYsJ5Alw4uPQv6FKkQkj8-AHmyuC2Z5IDv_G1xBLDYvNxYHpaaV0b8P7LDAq3Q99lZ2Sv5Co-MSdHCSC1dEM6dq5Cn096zkIf6aSxPIC2dzaIV0Q8zkICrb6ruKogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075891","not_before":"1521071991","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk5MSwibmJmIjoxNTIxMDcxOTkxLCJleHAiOjE1MjEwNzU4OTEsImFpbyI6IjQyUmdZQkRxcVRYL1hpemxFTHY3Y25xWmVmOFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJLQ1lBQUEiLCJ2ZXIiOiIxLjAifQ.KLwlZOlFWEWbB_xC6MrhxN18LX6-TAUsiBkeJqkjx_MRSGHbnSR1iyH3jIxpfKBfASVSWqVn110KdMwNdciHZklKTS6MXm1dNljHzhy2HEXXMEY8VEHfvsZxfVgeBtsHpbDhzavCSBX_JoS0tNQIG4G00G_71_N7V0_zveSg0KkUeuGYKGon5raHel188av3T4K7Fdbrcst6d1qKJSsqEkA-YLQ5tm9M89As80E-JhBETwooMq3v52lPZ0fd6lxgvk3osFaMYAALGJJjfRz_5aWPhQQFQjOS09QU3YauIEWWXTxcwuAR1nt66fg3npoMaLeq3LoIT04JHrUeVY9CvA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:51 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "8c1d20a6-1b47-4cd6-a0d0-12219c4040d2", "properties": {"TTL": - 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns add-record] - Connection: [keep-alive] - Content-Length: ['119'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"5dc0eed4-bac9-44e9-a163-54e39bb9b964","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} - headers: - cache-control: [private] - content-length: ['415'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:52 GMT'] - etag: [5dc0eed4-bac9-44e9-a163-54e39bb9b964] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMXv0wAd7axhPhX6rs7s2GiowqflUe36cu0f9ggeT-MFWONklyyeayW1S-2ZVs7w_fNtZWuG2Lq2pHQtCRwjn5CAxuIWojl4m1bmTwuVA1vsgACusvJ_f-xDBVD4Ow3blY_et_nmLSj0dgqLzbXjQ01ib_z2RHrCE85n0WxHdIJogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075897","not_before":"1521071997","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MTk5NywibmJmIjoxNTIxMDcxOTk3LCJleHAiOjE1MjEwNzU4OTcsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Inc2Tm5tNEtIUDBPNDVpc3ZEemdBQUEiLCJ2ZXIiOiIxLjAifQ.v-TvLxqHnZXKe-G3jGyIE_IaLGZUc3_usE3xxYGzZwmfP1eII9fKBpmuc_l-phICEV3w1QikZUToblHSjDt20_Eup2MdHTiKNU2DgzcBjGOrRXH3Bub6rfk16K-0tw0w8BjTSb7yfZN2_WkQ0hDN_kLMIi7ZetQ4jHgIaTPAh7uGpqgK6s1HD2RK0_1HnZ3VGVTnha5wiJ2Hq4YT_QxmEF3RfRAizlnbTHLtxY--CYKaokGq-8h-RUUms-ErUgLC2u401iiaFU6IWl3wjGTpPPx5eRrMChoipK0A95kr4dcRwaLJNmVYbWNdhJx20OlWvEFD34zZ5JReu5uNq6XCnA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:57 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsnsalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['230'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:04:59 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:01 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzGBMntyE9lnBkUD_eM1tkddSaEph7qpL_lnIl4jWTN5lHPWlv3DyT2LOQ8Q8O7W9zNevLqL45P_0vko_Gl644GNE1G-YIUM2frBKDXmvGei2uCzWpU_bkJ5QprhQ793D6NWHPqSdaSrwZBstY-DGt2EyX7R60aONMdHiQqOWmuFcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075903","not_before":"1521072003","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAwMywibmJmIjoxNTIxMDcyMDAzLCJleHAiOjE1MjEwNzU5MDMsImFpbyI6IjQyUmdZR0ExTzdwQzAvbmpCKzJLckx6T2xVbHhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpiQ1VBQUEiLCJ2ZXIiOiIxLjAifQ.YMdF6DJRchFy_uXDDV090mAU8FSHYDSfZDcAkonFWfwTyIb1DL7w7Y8eC7SYKqgj4gVLOweKq3knCsaFYP13ueXBK8M3auh8TZboLsuB2xDrQmOnGHKT_nXGcSfA-zQE9s9oGviz_sdAJuVhRll3Zi35aXgQB2xmE0Va8JrDciY8m1OFLZ6qA_iKRcGwkkma1HMA7SCSXkC5-e3dE-z25mUuFzYJPVoJhjbOPz74AyT9svEAr-YNGbFszYz5F0tYNxh2sH3SaHja9tyoiiXljFJiLCSLxctXt1drm3GokYYnlkzFsQu0Q0ajzRtB79PMuTOYLvYdTLxv3PcPtXa20w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:03 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns add-record] - Connection: [keep-alive] - Content-Length: ['71'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"90fbca1b-c758-4ad8-a10e-a79ddf2c2e9e","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} - headers: - cache-control: [private] - content-length: ['424'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:04 GMT'] - etag: [90fbca1b-c758-4ad8-a10e-a79ddf2c2e9e] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:06 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_q59Y11C4FYVzyWMfbL9HIE5R6HP9StnL4tw9efpFYYvl9xhJ8zo3mvNEBpozEtOFKo2zk-AyGYPYb9jS4H0uVZxJ-xi1SukxYfbmhMIN_HUYGKqD-yGJv52YbhLSZ8ymUZOpgP6fiieFYilnZkWkkq1OK9Ep2kWh4WDyP_KTY0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075908","not_before":"1521072008","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAwOCwibmJmIjoxNTIxMDcyMDA4LCJleHAiOjE1MjEwNzU5MDgsImFpbyI6IjQyUmdZRGl3ZitIbi9yTDUzaHRmVnVTcmlMMy9BUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnI5eWNBQUEiLCJ2ZXIiOiIxLjAifQ.CvGoXQ0hhHB1WFzuDaDq0Jqcr6yAyt4qylovV021OYbUiR-aCa-kPMEd92yoEfMnYNawfMqYvZOiuXlyrKWHcnRLlH4bNstWQZim8lzXuti-4kwGNLamX5DdV8b5nsK-b9ZVHKWrkemfhuACiMIt2BlrFO-ZaCnBgAZvxVRuR_rgo0ewyFO9K10MkWOV9se5Sr4FISiVmUST1Qn4wT59rFa0p662AAIi_PurTvQqZ7wM0C8wRGJZtY3a6R4xeh1TCM5kJPQDJrg84N8LpAudKCIY5BScmoNVcGod6VSCUuQNtTvOuW3U8wD18HoeZoQpduDQiTZZMkIl3-3JGeV7qw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:08 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"185d4bd0-67b5-4212-b169-4455e2d8705b","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['397'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:09 GMT'] - etag: [185d4bd0-67b5-4212-b169-4455e2d8705b] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYZewcjm2a_andR5os-4ycuySgGsTdHrltmwioPIaQxCxDaZTy0QLYIBlGNFnHiONX8bP2af-paKkMwOLzIT3qrae9RBu9g59YrsPSwSF_53hOVbg1fn7MUJj0Io-8DrTIEDKIhhCWYCP43jk3IbJC3IuWOB-u-rdm_L3JAJ66I4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075912","not_before":"1521072012","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAxMiwibmJmIjoxNTIxMDcyMDEyLCJleHAiOjE1MjEwNzU5MTIsImFpbyI6IjQyUmdZTGplSjhraWUyekgwU3EySHQ4TlcvOCtBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpvQ1lBQUEiLCJ2ZXIiOiIxLjAifQ.GmQCRgLEYdunQEBYm963Q6zS9OTj2NT7uG7Ljd2imF2ENwRnP7fhSUYtocwQUvBP0_vsdv0Jpx9VKA37-1QmXkcozhuad9T3fADZ1sywXfk1CFb_-obm0ZUfJ1LhbS0izZjM9CWpFNTZl8DjZQo7q8YQ9CF5EpT4UsMNJ5KyIA4xzYOqnrg5WYu1CWgTIAWGA6t4h2HOVreGrj0EkHYwOLLS2UaQqcJ7EAe8meHNH3j_ZDEqpaFWO5TSHIrTPpjbex4ZgwKMoBg9BfK9puLnFC3ruNMK8laeyo8li4aUG-P3cywtx5MdFK0oW14-CeR4c2oSDcf6hVKhoyw5doov2A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"185d4bd0-67b5-4212-b169-4455e2d8705b","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['397'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:14 GMT'] - etag: [185d4bd0-67b5-4212-b169-4455e2d8705b] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzU6RblKU9voSywZPOauo46u7fNriko31tkdK4BqhGGmtJxaWdarjxVxRz1zOLKai8JQP2Yn2B1j1a1wGL4r6RHHW_sztbbJdDxKT8lbzW5i4J6oBK7Z4yVgEDgOAIdg1d1yC3IpUCxZ4ZxA9hTGjgbqHgsiGsdfAHspaNFZFAHJcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075917","not_before":"1521072017","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAxNywibmJmIjoxNTIxMDcyMDE3LCJleHAiOjE1MjEwNzU5MTcsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVCekFBQUEiLCJ2ZXIiOiIxLjAifQ.XejLz5OgxAmoqmmru_8P87ie5fMOhe0jw8DOVXtrRRATv4A_bg3ySnTYmFRPdLeJUIj4tu7V8QIW36py5FJda_km1-tJAFrwc57S1Upwxvk5CHeyaZRe_5hNMaxbA2eFuUkID3k9rRFsIqRPNCW3etI7pXAbCjaYNoVQaMnqX0xYmpc8K-9mkAGtaouqjOTUr7QFjeZpiSKJ30ana00ajhhIZgzblqw2UL8zi1rZQDUbPWTCxl9AlAlI08CmNi4c_0HG_3vT5V0bRGxBQanho8OkxQF_CHgD4XcZyg-IruRVzUWizGiPueG8kdkkWvVKcpSKxnAuq9FAT9oBWKkqSA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:17 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "185d4bd0-67b5-4212-b169-4455e2d8705b", "properties": {"TTL": - 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Length: ['121'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"27353eee-6852-4c15-b812-8d22c3d33836","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} - headers: - cache-control: [private] - content-length: ['422'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:18 GMT'] - etag: [27353eee-6852-4c15-b812-8d22c3d33836] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzOtvpRnmQ7MiKqYetU5Yu3uPTa7PNxodcEuHHB8bUVCu5BWTm885wpFTJuwV2qZ-geT5L2SgXpNY9YL0zrpEd_Yc75Fhiai3eXsDgrVrX5muGRoYcuYO83vZVnsysekzj0dyLrojXjcTw8q8jxcIqblL65qban8FmngbGHfRzRy8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075922","not_before":"1521072022","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAyMiwibmJmIjoxNTIxMDcyMDIyLCJleHAiOjE1MjEwNzU5MjIsImFpbyI6IjQyUmdZRmd5ZmYyem9oZVpueUp2Vk1iNjErbkpBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVsVEFBQUEiLCJ2ZXIiOiIxLjAifQ.Y9rMljliGIei5U3s0U3cFl0dh7z41cpZ6ZWwWT-Kdw6I5Dl1IlYiPvUvjU9ZDP6NorRMh3ALJKapVq8MPlY2QbQmv2ir1FDIFYWgJ1buR3X3OeJ0_ldawcVESJA-JyIFahinRptuGQ-BSqR1wNL1wQwa7MjcADRFKRB5d46-tBNheKiG927iMbW08q5XCYRvrkK6KvBUOKCG65-CjVYlfkS83itlULCauwOSmUoxZINAEVnuAzmRLGsV4NT0oZ7S96UGl3gl0PqFQk_Pr5p0m8YvxFc4UCDC1dnA-x0CGAED-sE_cOMqeOzCYUpSiM1SoAwsClD9aZFNAdTF7lx0mw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:22 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:23 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJTB8uto2K2Ql9l-TtVeCJ3vWVq4nHeW1aatY8syoQEWD_oIbaHO0pj3DsFxMuZlWO_7gPzs8OIoH7ZH34WQ-fo3BAaJXUduSzp2OfWJvd48NlIF5d5vu-V6xF1vcrRiLu6ISF0SUBPKKRWdGxAwzYLVwZu54T1wZyQe8yg8YTJggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075926","not_before":"1521072026","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAyNiwibmJmIjoxNTIxMDcyMDI2LCJleHAiOjE1MjEwNzU5MjYsImFpbyI6IjQyUmdZR2cyTzZpdzlNTWRtMHNaZDdsTUQvWHhBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpPeWdBQUEiLCJ2ZXIiOiIxLjAifQ.ABpUSSJwuBpKGPpIBGXhSg8AXI1sK1wA-6LUN6H7AAamivB46zLl8DoRic3KMt2hDYvQ9AyE0UO_Wd1TVqvtbE8mnmr4cPaR4FGmwB9LcU-gGTcI8HaqbegjDtFwd0GUjawezdcU5pjtP0RlwULofwV8X4AzYF5H1GG3vxIiqFKIpcFobGwPSaxU4KX4MZfU_kJo-J0UJ0w6LV4V7NH4CObnLpWl2gBy1Rd-qa7XG-wl-ETLMCb_v3K8zRMqBr0CxVj7-llyMDoKCPcuqFvHU_pESprPl5NQJFBfzGr8OhZCnAQbM8GXjcgGSUfna3wma_sf33f1_0a7pjBKxGNsvg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:26 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Length: ['73'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"0bbc8be1-3cb4-432b-b458-a7f494f17272","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} - headers: - cache-control: [private] - content-length: ['431'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:28 GMT'] - etag: [0bbc8be1-3cb4-432b-b458-a7f494f17272] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz3S1fK0CEpm0GSkI0RqFWe7f-D1QKXqn069KysCx54sRyvXQAfQJWfy2FTkD4jbvldXfO7tJ82B8c1VddDQeKlZDjh3RKu9Z5U2kG2h0_VvJXcSQlqfqwsqjtMaIupKt6Kjhbblf9t59KQmVwI1e3UBxQtTuaUHLF3t_9StTBBpIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075931","not_before":"1521072031","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAzMSwibmJmIjoxNTIxMDcyMDMxLCJleHAiOjE1MjEwNzU5MzEsImFpbyI6IjQyUmdZUEFOWUYzd2U5MlNtNVBUT1J3TUZCYlZBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkoweWdBQUEiLCJ2ZXIiOiIxLjAifQ.rXM_3KsetdNnTKuPRwhE7zzdfomK3aMqeY_9CUREBGxx_jjWCqi5eYyiiuIJwJudDG7YhTplr5vmzUcA8wnJ8IxZNCDSBv0ElgkljFs4WTpz4uagiIf8UcX5E56P3h28de5NPtkjXM1WuZtQ5a7016UNNk2aB8ChwOZA7SfITOwMertv4C6y32WU9OfP4c0b8qywZfYGjACPEKCmdBVMMx7k2tFT_U0bxpC_a2WIe-nbFC4kpfUNsTF9AOSPACLAjaNwtme76q0bDW5UCz_htP3VkbdO9LrErbZ9pTcmQa1y6Felpv-9rGgjIyj2MOcEL_gNbntnQaT5QgjySj42aA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:31 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b452992-2973-45a8-9450-26b7533697fc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['397'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:32 GMT'] - etag: [9b452992-2973-45a8-9450-26b7533697fc] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:34 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_CUw8XwLlf4nFPhqfjEsgt1NXPto6zV1NP--a4cjXwS_zx13n2DZawqnvQaySpIeuPKwEHYvl9K6YtjYakjGD8CHSX9spFLcmV0D1gV2FKJygYkCntB376ohtouNt2P2uZqjhwOrl7n5jJ8vJ-CRpSrM76Nhuq20O6GPDouB26MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521075936","not_before":"1521072036","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjAzNiwibmJmIjoxNTIxMDcyMDM2LCJleHAiOjE1MjEwNzU5MzYsImFpbyI6IjQyUmdZRENiWGJkblFvL0JXb3VxS2Y5dkwvNHlIUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFGelVBQUEiLCJ2ZXIiOiIxLjAifQ.XMs1SH118Q7t7-HidgqgXjO8OehFzRnfPwS2LPU0rRSIvY4rmayc_bZwZSLCFBrEnJYXSVfK8gNPAYi46PkHspBwWAiei9umzM5PNO_Pa0UJFzYlHbUKA26Pt-9rHhwozskgI9ycEl47RoESR2bMXA_ijOZEB4E8ko8xmil_dwFqTfRD5e0_Dzg4QLEzuZyNVyltIqrLhaCZi0PpRf2ArynoRtlWRvM4XJZAzrRmAyvJffMtXd-lFl1hGfykWOfiDcXju8e9mXNwwsBLyikuI02bc8mo62kiH2NpjN1U7c4znUy_DjTL9FCJV1YSG1w9y8TNYo-mpopApfwpAFz83w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:35 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b452992-2973-45a8-9450-26b7533697fc","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['397'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:38 GMT'] - etag: [9b452992-2973-45a8-9450-26b7533697fc] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:38 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzsi0wB-gtJfUIAb42TSGNedIAksw0HwhlRu-T2qR8tPsd3pSiP56P2M-rrqfX31unkmSTudtsFnbETPaJYItCaRSi5u9o-brTTbbfYOot8bMGDD-7u65dUcayUGeUoZp3P9te1pqCTaVSoxpY7r7WpQbaCeTeBq3xY9-GQjqANMwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075941","not_before":"1521072041","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA0MSwibmJmIjoxNTIxMDcyMDQxLCJleHAiOjE1MjEwNzU5NDEsImFpbyI6IjQyUmdZR0FwYWdwZmYwMDE3RWo2cjRzbjk4VkpBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkowaWtBQUEiLCJ2ZXIiOiIxLjAifQ.FZZBKsqtUqUmFt5uAfwXMXy1CBraD9tzSS6D9GFFOMdipwmaqutbiDQaKdomP_pqHoJxQEquEl1c6CmCMX75NWDkbyA4-_Afwu1ZD9O2sZRTAYd6C4QIV3VoRN-LiHOn5mWKjcHan0foQmlWuq_TfqfPbiKEsI-6gkZaxtUzaYcc7dxY4EWCMnD4W2MFXekUmGviNxsWnseFRCPeqNOuPeoW2HUiqXUIgtmBGUOVFkhm6_m-ce8U-m8Rza3puNewMYgyxUBNsVJIPPHlLiKUhVh_t-tZHmXRI6Jj0Uz6natbo8v8yfYSj9B1LcO_ZXuhE19uLpO3uooK6VsQtDOZCQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:41 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "9b452992-2973-45a8-9450-26b7533697fc", "properties": {"TTL": - 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Length: ['162'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f019bd41-5ab7-41bf-a303-c0d646707610","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} - headers: - cache-control: [private] - content-length: ['457'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:42 GMT'] - etag: [f019bd41-5ab7-41bf-a303-c0d646707610] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:44 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5vNVlftDZYIodAO3d3lBAQ83LZhY3HxtlnDIkI0fbXekfRbBXu1dYLUwn8U-LqA3v-zw_AEyvdVdw6kCPWuMaRQExDnf_-y6CbEKwZ6Tpj7TGdZqsx3B6L8VN1q7D1p7ak9y-WHIfci9Ik0RgPrVL5Dylq0-GOC7-6DpFLEWH-MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075945","not_before":"1521072045","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA0NSwibmJmIjoxNTIxMDcyMDQ1LCJleHAiOjE1MjEwNzU5NDUsImFpbyI6IjQyUmdZSGdkekg1UC9mQW4xNVNVQlk5T2M5eitEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhYU29BQUEiLCJ2ZXIiOiIxLjAifQ.SkhLpqFTeBwRq1ZQqMVJ9FFfBhzcRgNjWS6kzsUQaqo4kAg8MGTLUDr64JcOSDCARbVXlhhrH4k0q2k5D-e7T3ktbzKvWKHPNKUb4amxGxO4n0PZv4b66TG0JKyKLpNALAj7R0J59MqSezl4bGxIP72dZQJo4g28dhyaAwo8BdnFY6XA4AY1IG58RAKBAtSsYT7ToEpcefbwSNj3SOcNxvWG5uPR27jIYu6JL_zd6MwyW1FI2gK1bVSAMbEFOYb-MC9VqjzTzVN5MkgtEU2owBtrkWMt7SWg1nJa0OicuipcLMUfJ54YJeGAADBoMlXcqPljBRzPyn5hYrgxsAxQUA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:45 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:46 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:47 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzRXFkLFjVjYaOMNGl8zJOXQGHsXLFkk-BtWMf3l-hQozvZnfJNma9s590t2fnegM04OXJw517gVGSg5dEU-98vc9LX7953wYV4wu2C53n5gFgXsRE5hIeORZXF1nMh98bS_N49BNaVSO1uC3hCeOXV4iY6g-l7h36e12hSlgp0wggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075950","not_before":"1521072050","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA1MCwibmJmIjoxNTIxMDcyMDUwLCJleHAiOjE1MjEwNzU5NTAsImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InY5QWdKd3k3bTBxM2U3ckhJZ1FBQUEiLCJ2ZXIiOiIxLjAifQ.VwTtS33d8QRRjsL02_hT13XQU7rDT7K_HwLpU9LAaBHHxHIPPKpVsMP5jng_Z_s_lGNibUto-bJObfLSZvbfXJnK5rIRFvaHkbPTYCNnljxHBR3GRR-_cJbUrTgKv6cpKpox9RRlNN_0UcHojiZwMnVXczusEUKh1-kIfbXMegW65rIV5oKwh6H42KbN4qlTSeyBKp600V_Hz7fDQqLubR6D5VqxNZi9D2_YBZMvjWbf9jAchzX-YuPZMJ1fMbti3EIeQW2mj8-ywve3fu97yGa-Dsh16-r6M8lgf__yxavXenVZhaLtg53zKaTb8NBAoHUeBsO2i5PcvKLJevgGuA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:50 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, - "port": 1234, "target": "target.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Length: ['114'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b2f87cf-6544-468f-9cbc-fe29696a3224","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} - headers: - cache-control: [private] - content-length: ['466'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:52 GMT'] - etag: [9b2f87cf-6544-468f-9cbc-fe29696a3224] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzxtzlILzjVKVjp8-FpQfTo27SyywQXDkM7NfmzObtwSC1Aa0krfxEUT61Z1t7kDQ6L2FPbc0xqL-wh3xwOWQK3CDaD8irQqQHTs9GQg-gEuKaOHoxsKy10Vy_vWRUYl_nZVZp7LiNJwvAvfkL6WOs_SW2pWLrvpmV7xJMooaxt30gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075956","not_before":"1521072056","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA1NiwibmJmIjoxNTIxMDcyMDU2LCJleHAiOjE1MjEwNzU5NTYsImFpbyI6IjQyUmdZQ2cxVVg2NVYvcEpxRnhiOFNSaHUvcEZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJ5QzBBQUEiLCJ2ZXIiOiIxLjAifQ.JgXmVhko59_o3m-fmDTzpWxth3AmoBWg6mXrqCV10h5_Nr-MJaemKgpFK9D2DHVHBq6WemVMDtVqJqfBVLkcMGA4hKwKpgMN_b_QiQIwayIcC8lZW5giy2VYdxoiTSwVtyii7Uv6BEttLyAkGUIzMHFB041HHeW0UXeYMxaPhomKUl1j1ihQ83uZqOEVpDT0N_L9rv3KyniyHqKgjYthCX1IAPFLSbIReohPlYM07BxAGl_e1BecYppss8oSqvErEOHRgTDD93SubjJQt2U7g8zgetjx8I54umxpk1QlX1EeJ1D3l2W388GHsegvMIEHgRNgwsxXFgCTzBm-XGOchg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:55 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"851d878e-022e-4ae6-93d3-7d4b9e43e23d","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['397'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:58 GMT'] - etag: [851d878e-022e-4ae6-93d3-7d4b9e43e23d] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:05:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzBxiggTLcwVn30x7DNIW89_Tm5u9eL01W-7hxVGBKznsBEu6bJWIaJdSbYRCc1qV0XlpeJ0k8ryMHXTPIMOVhReS2tUN7VilVxBT61bZX8st9U2I6DYyVPiObRRC5n0xBFh5Pk0rrux48jnS7SskGV1pcvzUErLWRvzNxrzDWZvUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075962","not_before":"1521072062","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA2MiwibmJmIjoxNTIxMDcyMDYyLCJleHAiOjE1MjEwNzU5NjIsImFpbyI6IjQyUmdZUGpQbTNqcSs3dFVsaGx4YTJyMjNQNm5DUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InAxSmJkbXZsLWtlcFg4dk9zU3NBQUEiLCJ2ZXIiOiIxLjAifQ.LBB7hMJUN_jB6TLtUFhF8GDhUhHXnYdiprp8uXKqo9poAPQFAHAr-TP3pHGY8NB0uuocY8WXRBXsEZmsg_94htsu7o21v8EEbgnOP7lKg9zD74j7zhOLxseSXeKYmp4Bqtoy4LQtrfZ-f4P-uJaE_VsQ5AOeSYb2rL5oLkWlnAPeoJH815CEWN7mRyTN7oMy_WZc9rltjyjxKMiLIqs2OGnW57bvUl-xjXZUPfgvsuPnzVn0X_n1g24l1cffD7RO88OouuT8WBM4Qpk51yJ2blEY1baZe-iDIzG5_tXjvineh7gzZSMEVZzyk-xeqAYTll469z2Xx8k3yxmDiN3MRg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:01 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"851d878e-022e-4ae6-93d3-7d4b9e43e23d","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['397'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:03 GMT'] - etag: [851d878e-022e-4ae6-93d3-7d4b9e43e23d] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzBAxMNjrlxXxT2m6gO-aNygXaTVUF9n3xMtmE5uGiWRlIpPuBvsb2sE5debPT6kerlpT8TENOlYSnBTYKL4uxlrIDdOPBAPGcvfq2MO2B31271oXNE6Ic49ykNb0PjfUKFm6eikGWE1DfNRqFxEjDuZS4JzdtPpdzKevEQ__Xb5kgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075966","not_before":"1521072066","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA2NiwibmJmIjoxNTIxMDcyMDY2LCJleHAiOjE1MjEwNzU5NjYsImFpbyI6IjQyUmdZTmo4bzVsanRyVzgxY3Y3c3dzdnYyRFVBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJRaThBQUEiLCJ2ZXIiOiIxLjAifQ.MkkXWdJvN9U5eTje0oYGhvGimyVzAYTvWMVXjzLcdZinoR5Ietb90sTQ5ikbmfs91QrpQWwqo0oF0Sky7rL3jndPjyZePMeq5c3o1NJA2PQOyVgjF2IdclhnilxrasrEDCcHyA175uF9Bb30sBSSbXztGn8b-3lYq_q5Wd2kbYhD6XLOnoQTWHv2VrUIzi5ZsXG0RknKURlIfnzvdzgeJZBn_WUfeCU93FJJBGsCbmYMx7pJjnboROAkCEMByuJfKq-g_RNSB4cc1r8GnjC9PYgY3LbXPHgRbUo8tFBgK-mDPu8WWZPX-DaZGx0V-pRExYG14RrmP4LyjQ4kLhOetA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:07 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "851d878e-022e-4ae6-93d3-7d4b9e43e23d", "properties": {"TTL": - 3600, "TXTRecords": [{"value": ["some_text"]}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Length: ['119'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} - headers: - cache-control: [private] - content-length: ['420'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:08 GMT'] - etag: [93ee860d-495b-46ac-80ac-20b6aef63e10] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:09 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz3iycMtb4yw1iKwAdzsvkMLk35pVyvvUZKXKc3ny3O7esn9gS0tQG8AjqdNtiggG_tYlfGD8U8zlL3noz2otw2Q1OYqORB5YfZd5xiADhNb8yJIlk9FcvM5YZ6ribfogy6qZQ-MxZCsE3BDKIpjqoAfjjQe6ngEdOAsvUy2deUBQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075971","not_before":"1521072071","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA3MSwibmJmIjoxNTIxMDcyMDcxLCJleHAiOjE1MjEwNzU5NzEsImFpbyI6IjQyUmdZQ2pYV1JueEtkUWswOFlxL2RZQjc0VFRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpneTRBQUEiLCJ2ZXIiOiIxLjAifQ.clYMClu7Z-rPnVRMBv8TeLqREp9UaRM8IL7f2hITCnZR-3GA_qNvnxSUzpdC5c3NrZNq2cVPDqKLhgyoD1-iYoApsuDol4wUihpzjSrXmhHiyAhyPsJH229JURtaAXfHzK8RBJ2g_mcbtF8zflRSMh1aiYMPxISJieavIpnPYpgaF00IgkJoRGznPogIO6y0DdXVRLReZbFt9pxdBGnQPGErJnDuXVeUCOhew8Qqhb6lqUscPfTTX2BnJtbYJeHTQmYREbWTQebObfZVBOltNchds9JMQHZWpdWZ5WvFQRBT-UM5gLVgLmGpXJhLuX4Vtor98kk9ZtVCoCcRU5DN1g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:11 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:12 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz2t5EPYpzqupR40Q8HW5dhWJITp2KEOsIr9xfYhhawz97-AYTePt60XK7Q8b4Lhn5ko24BC87_STmeRWGyfLfVf6h-pNAdeLFmhKyMmdbT41CjpZhpHo6uL-QRc0iIpEcGj6vcLKqbh-D0kFz8uYNQG29_iAVzQSgNG129Dop5A4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075976","not_before":"1521072076","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA3NiwibmJmIjoxNTIxMDcyMDc2LCJleHAiOjE1MjEwNzU5NzYsImFpbyI6IjQyUmdZSmhVdUhuOWt4TEpnSWpqQzFUV3YxaVpCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFSem9BQUEiLCJ2ZXIiOiIxLjAifQ.N5gnlyvjVPP6GRAStNmUkOQ2Jepfy5BuehNZ1ts2_vOP0mlwtAUGcrOkHZhNBvuHtWPFtvtntr22HjiPIz0NEozmYBGCtjJPLBrWRGZCXOfrJLqw09GiCGvGK7vdAdzrs7SvjlkfV-3z-Fze_xdimMaF0Y5PoFracK2Lc0DC2LvBb0dXyRQcR1HXVT379SquxwgmgzDfHSONz-1aKg3IninpLcoSxTpdd6RC7Thv19ake9ozSJ7eH5ALDmKSnFKqMQFrwTYjJVanTI4L8BgvaTTaU7yCiuDqCOGiyHDV_Ex4Cn8IDx_vBcW3oG2tjjcXTnKvkzj5yp-JKrjfzjUFvw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:16 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Length: ['71'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} - headers: - cache-control: [private] - content-length: ['429'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:18 GMT'] - etag: [1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:19 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzKqASEb_xfMQHv7CFZ37MajJPdTBOXR1yHnr4PQxlvXUN3ozpWqj4OStXGhMbJqZW69IZrzJiiBb9PZUvmWAkoYXwI0PBJH_OqUOGbqEez2Z4og03tbBVDXXmEPmeRXG113vBOgInKAgFz49OtNi3cea8lxeFwUjTcIMdStEjJyEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075981","not_before":"1521072081","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA4MSwibmJmIjoxNTIxMDcyMDgxLCJleHAiOjE1MjEwNzU5ODEsImFpbyI6IjQyUmdZRGpWcDNEMXNUbGZYSTI5K3YwZDUxMW1BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJwekVBQUEiLCJ2ZXIiOiIxLjAifQ.DwA1vdJ3jtQ75N_ThkC3tDA0wK7D2T47G2k6ASrB1bZtsg6JdQ9gUV09DqAXxjmhdAflxCaXH0ho5sLeXXlRqRve9PSUKRv_cyGPLG-G7qJHIJ4JPoHZsyv0xJKbgb-cvZuPe5sG-zmrjM9bNK0qePHzgoVRdlELppiJFyKNkf865rghMNBN_THCQbslSPKyP4nPEGnkLcbfBZZL-fSzLfhJGV7bqV0RUbgYlS4dK86arhfbqJp9KYgTEPiB58gp5T9aOeLKzUY8eybdbsjm3IxTstORmDLWPOAeZ-IsQsMx3NVIOmjZ8zzdHbzW3yxo4eip8IYCcjUvnbfHp4793A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:21 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7dd80698-b69e-4c02-92a8-3c5390afcc88","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} - headers: - cache-control: [private] - content-length: ['412'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:23 GMT'] - etag: [7dd80698-b69e-4c02-92a8-3c5390afcc88] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzHEAUbaKDxDeIaSNXh5ZGtnvfD0Bxw29N0dtN71kruJazeCup4PwKOrMzW-OHlnpkii8_idITw6EUpKuAMU6xm8TqPB27Q8YnZhM8ijdSG4LN_QCLReFPfaHwGlooBOKVh7qN-j9j3Mife_ZBN_zHUcoVY9ZhHogNQcF503-qNmkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075986","not_before":"1521072086","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA4NiwibmJmIjoxNTIxMDcyMDg2LCJleHAiOjE1MjEwNzU5ODYsImFpbyI6IjQyUmdZTGlUa000eHFhdjkrNTdGZmN2Ty9HdnVCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamF1RHNBQUEiLCJ2ZXIiOiIxLjAifQ.yCWQN3t-rNfoubSIQP1tVmZ-hXwbE6Banmy1MjdL8sTjg7qrhR10T8CMaGAkCbNs89oGqrYQ6qnEXttPZEs_EIJO1haLBy5a_Y1hX4-apSGxukwIrlxxD0HdqmRfMPJZKDWY1sAHPjX8QseRzG29O69vmed4O4TyuiSJm_keUU7-BIZxqPdIoQ16IqlqeRRDGvodjyAmgeG2j9e32mbmdjYzaFOr31PXLQPavzzTA_Ig-rVDxcrPCVgLyQcgwKVmJr0JG3HZALvRraZMw0QvChYk5AUNkaZCbeWv-DYg09W0EO9YZixbJts1kt5UoI81xBXQeZ6dneMDMjSQiMBvdQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:25 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "7dd80698-b69e-4c02-92a8-3c5390afcc88", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] - Connection: [keep-alive] - Content-Length: ['151'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['440'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:28 GMT'] - etag: [143789d6-f585-4490-8663-0815a75bc641] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzP0AsGxSq77KeRf4KHI76wr7bV8YcS1lz1yX8o1fmLVt4onH-cnfgk8qaLOJRW6LEz7oIxO2KA1-VvNoyRBDCzNHINjTL_pBTC-JxWQWwpKlVPEQukQfz6ALFAaM7zL0W0XuBYbZMzDsWb92M0ra9jaKxJXBT8FmCeEe2FRPR9KMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075991","not_before":"1521072091","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA5MSwibmJmIjoxNTIxMDcyMDkxLCJleHAiOjE1MjEwNzU5OTEsImFpbyI6IjQyUmdZSGlVTENnbk9EVmVjWEhQNXgyL1pVOTRBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFWendBQUEiLCJ2ZXIiOiIxLjAifQ.JpqJGplxjeLxDOCcv5TUqKKlDE--2UhCKpSB2ufPgscXCZOtFOKeb3pGZp48C7bDaKomwEwMNQx1qFCTkZ-SjBP0lbzt7gpN_p3_xfO-zNKek5-C0i8vSC8A3WgEQXNTUYX9UhQ0yJNIWar3JtaKBJpuoZPCZlfaAgsNnCOip6TE5W4JBIxktirX8ZuXjIOImx5nEov2stvpu51T1NcWreWP2pNYRPOnabrScNH_T6TsFGAkY6WTSlwyhzpCA1Fe3wz3GcFPtEVGTa0p6mw6I7nEStMDLa-nK6ZGY78AcbqmKCpHRV_pyqKhVBhAm2ZB8G4llyTuK1BZpDCi6UCPdA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:31 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set soa update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"095e7cb5-5a17-4e7b-a2ff-4e0701e22932","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} - headers: - cache-control: [private] - content-length: ['546'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:33 GMT'] - etag: [095e7cb5-5a17-4e7b-a2ff-4e0701e22932] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:34 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUvMM7cpOgMVQGuUxHER7_r0AsFkeg2w-ak9c4WjmKaxVThDEmlS8tOILa_xke5djwM7Cg7FeJXP3d2fq1qTtYlZHzua00oh7eF_QXRV2vsr1dGxNCnFB1bslgL-YIPtCAdsirmwOQoYj2SRS1Lkp_WUC1U2RCp3WvKmttEkfZicgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521075996","not_before":"1521072096","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjA5NiwibmJmIjoxNTIxMDcyMDk2LCJleHAiOjE1MjEwNzU5OTYsImFpbyI6IjQyUmdZR2hLYlJjcy9sWlRPeWR5d3RscmhtR2xBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnJWalFBQUEiLCJ2ZXIiOiIxLjAifQ.rh6yfI3jzwpd6r889D9MpnkHlBRQTqW0f5x9-6gMqfsMlBB4x5AzKgVrZ05sjxv6x2TSTmMxXUyOYzaOdtazaeAtof8JKwQQwgP--zBXc0OE-UDIwpPp6iVD36kJkIkT0-mZWGd_TLIYmJLM5-cCRRM1CWJWsHTAJ9sf8ogcgVeaIOL0VgRAvXrMT54zcB8FtT-2Xi-jh_QTEWB7TzWS9JusSKz-m3tpFYvJOtnmZPCU4r8V08RANen1_jVn_VXWdmrCpwYYWawCDr4O_LkI7F4XLGV46ZTOU0swG8BJQLatp-xZqlzEBUES9l1y4diJa5FPsvC-fjRne4d6wqOJSg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:36 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set soa update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"095e7cb5-5a17-4e7b-a2ff-4e0701e22932","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} - headers: - cache-control: [private] - content-length: ['546'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:37 GMT'] - etag: [095e7cb5-5a17-4e7b-a2ff-4e0701e22932] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:38 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz4A0Ku1AadSHQI-7ziRyzNt9jn1PioU1QDv6U1vm6vGi653F-kxyRxJMdNHa9yH3xd49VzCyT1gyOyjUQ6L_RdKWD6x_asmmeYfv9vbM8noN7U8pL-mvafbmStT-EOepV80xQ_fDu_Y-R8nn3iHBNBApNmCFJui-GoTV2gSXuAXkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076001","not_before":"1521072101","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEwMSwibmJmIjoxNTIxMDcyMTAxLCJleHAiOjE1MjEwNzYwMDEsImFpbyI6IjQyUmdZT2crcjJSK3ljM3RmY0xXekpOMU9SRWNBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkppRFFBQUEiLCJ2ZXIiOiIxLjAifQ.LihIVUZffcuhIWPt5UEtZ8EldDPXUjIiXIndGnRmAWCKnKR28GjW2YRYsiP2yNZMsCzLAyG8LQrFyouON6xEoCXdlBvCwc03pw-rnB9H4aYa6MH_0_FYalT_SbAZSzFN94H-gp-x7hpv1WHKGxiPwuy_zRgWWPFDYo09r6Aj9WCO6N08k3RT7Zgsu013tq_jxUcXMmyuBAzDJupIJ2ClESfFHyy9dhj0KmaGKdBv0DUSutFixF8SVZptPEdj2mKce_hba-bkJfD38vL-r4cHzKgUOHAKpSliPWbPtbhbgCP0sMV1vjQbFvd4hFBR2O5C-apbN8sDbNkyLOjCcTt4sw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:40 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "095e7cb5-5a17-4e7b-a2ff-4e0701e22932", "properties": {"TTL": - 3600, "SOARecord": {"host": "ns1-08.daily.azure-dns.com.", "email": "foo.com", - "serialNumber": 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": - 20}}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set soa update] - Connection: [keep-alive] - Content-Length: ['244'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"edee9221-8cab-4155-8237-e6985ba18e13","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} - headers: - cache-control: [private] - content-length: ['513'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:42 GMT'] - etag: [edee9221-8cab-4155-8237-e6985ba18e13] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:44 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzhowOwYJcsVPMY5wpcdkFHW9QuNxmd5OQhip9O4tlLIwrFCKNqmgS1lg3bvgbgQjdyT_HoDTVnuqT44FjPbyd3PGQlmAKCktRwO-MvMc2tGBKa03WGfsYcwEL_AeHCCbGCvX_T_KfzbKlJLz5yxiexoyb1g9Hk-dVAuAjJlt3H0AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076006","not_before":"1521072106","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEwNiwibmJmIjoxNTIxMDcyMTA2LCJleHAiOjE1MjEwNzYwMDYsImFpbyI6IjQyUmdZRmdySFMvOTUxM3YrV2RQYnlyTFhKb3RDd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVRRXlJR3ZMTmtlX0RRNDVBRGtBQUEiLCJ2ZXIiOiIxLjAifQ.QoFrRpaSSFYHPGwwoQvCs9-OyGiFmPuTjMHNKozBjpPC6jmaacr-kb_P3f0fb92H_o6zi-kUu3ilpEQP6WmrJTvxraGBOOotmZbfBTv2WNpg2FgaD78JgLDDnjB42QFW72QRdkrTMsyuGXCX7qaPCUZ0yubbV5KxDCpDpLM8tNS9p2qaYrnKIaRiv7iOskKLSYabmzEapBEhKh0GQ685dAOBGKA-9IsPXYI3be6ikAP_j281F-WBE4R_aBzgWCBka_9kyrqS2CH8zRF9g0nxRBDgBGMJvP9o9iUuI4vSuqhJ6e_TuXTtPQME0KNARp3ReLQ42GB8DiJZdR_MqzbD3A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:45 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['228'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:47 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzTHsvoLJL00HiPloRXphB2F9V2t-Bjv3IQWo4PsUsAuJC9ZnDikbAjSpmDyQEJN5wS6qG5nGUhQvdIQeMn7NfQFXNMljhaCqzyb6_dEO7EGwHMg39g_w38u7Bl5dhmzcHu48whokhpXEn5x5q22MRDNRx05fJcAo2caDuJVrClCEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076011","not_before":"1521072111","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjExMSwibmJmIjoxNTIxMDcyMTExLCJleHAiOjE1MjEwNzYwMTEsImFpbyI6IjQyUmdZTGk0TmViU2hRVWVWbnVlcHl5ZldidkJEd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnIzellBQUEiLCJ2ZXIiOiIxLjAifQ.PNWBuvGYoBhQMkXM2Zkf0RdJDxBMRXSvV32kMwNJs8UM0Zp5V9zbNUQcIkreyJbvqwNFLaRpkytnqPtA3B4ldF7DgHNCvX6d0Uk7SEW4iq867ThVM-LsBJzHwgo-aZ4n6TjSyW41LTPFOFnY_5jQdySH9siXIIOWWvvWgfJobfXUxvWhd45M0djzvAyUSwvL7BdcEV6KKaTXV5m-uFe0Fyh49xPW-6arT3lqXIlEz-7if69iUkNaPRYB43RLwpKKB7ERJcLEMtEd2p9KYk8mHafJf_wEqbIMiECCIzqZgKUG45DQDYDqWllsKURWDgqLo4ljZAY2Pq5J2ZCN_qXZEw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:50 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", - "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Length: ['566'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"37d17ddf-645d-40ab-b971-6679c47c354e","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} - headers: - cache-control: [private] - content-length: ['914'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:53 GMT'] - etag: [37d17ddf-645d-40ab-b971-6679c47c354e] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzZpJc-A-k2ncbWLviiS7n_btvvP22_FMtYvAbep_2Gj0k_qNe0XCvL3fQY-VJbHrrcX9pydu6BzgVg_XtudDN2Nj8J7pI1cljaHm9CJgmK_JII-a2PDu_UUD2ImsJdLkCs79AvKmQg4kRoUxgsLtNdPmcG_IC5BRJRyfU3BDFCeEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076016","not_before":"1521072116","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjExNiwibmJmIjoxNTIxMDcyMTE2LCJleHAiOjE1MjEwNzYwMTYsImFpbyI6IjQyUmdZRGpWcDNEMXNUbGZYSTI5K3YwZDUxMW1BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFwRUFBQUEiLCJ2ZXIiOiIxLjAifQ.aze6pGGUORrXZQvKyqwZRP2gfnEio7wryaTtzLhC_cm12LKPZEd3lFqhGkGcjaYueb42O2WuaCrGIUIA749kPZWm9loVTFKDVAzW23paSH42r8o1xaIEiQhz6vT9bS7RX1NOcmrv2eWFDmOi2D1S1GcQHsQY5q9hzMpIoEyj6KvwnGSgc5Hqem3YSpkRVdY7AJrTBQ6ovwR8KP4yxF42QN40Ffvp3F3ybm3puTL4srqcssYd8N8nNhOGUraavHqHqipefy4mEHrgalBkIHy12Ur-gSR18n9NEEJYcP-DBsowCMeRX6386sCcs0acgkeuVFxrOJr6vUnusa5DElPlPg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:56 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b23e-e0e2f0bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":21}}'} - headers: - cache-control: [private] - content-length: ['549'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:57 GMT'] - etag: [00000002-0000-0000-b23e-e0e2f0bbd301] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:06:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzaX1lm21LUdDUKw9iUBATO2yVCrMDc2dYiLD1f6gFUmbKizE3-ANyVVS6agk57JYrFbamV5yF2povSYSC9YiI52Qm7cvQYt2XPpD22XVqb7YuvwkSIAOswoYIvJifBiHK4Ld5MnM_Lpq75GMb8_DuG5UEUNdkvVR8ztMhvZXH6pQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076022","not_before":"1521072122","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEyMiwibmJmIjoxNTIxMDcyMTIyLCJleHAiOjE1MjEwNzYwMjIsImFpbyI6IjQyUmdZQWo2L1d2MzBldDlUejBGUFMrOW1PbjhId0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhlamtBQUEiLCJ2ZXIiOiIxLjAifQ.TFw0O7yvYsQGHwB1-IHJu6DB9Y-a7DaAQr4_Uw1imsqvj-5lAtHmqSMy7g7fIt8CK05w4wgYqFNlJFQhjQtwpVFtb8egqD0Gva58e31iO1Cb2VLYruot5xO6M8Zf_FhLuHv_WAcZpN7TWNp-H_vv7_-73KIKbXcfqLiB13VOjfW8id3g4EwegO0patOxsmOwFzPakleF_qyHTkOoL9Qx6i6B1zJZMu9JqfTH4vy31FvJtrJTSYrBnyBIOaIpVsHW-vTXyaQzufDtxYjj20bB0cyz9q4_G5H6PMwqTq5r1Djc-eBZ1aP2IUYDr0TH4EDrWkYAo7sRBFtaampRqpb-Eg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:02 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['440'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:04 GMT'] - etag: [143789d6-f585-4490-8663-0815a75bc641] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:05 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzpuNifk6p8i_ayA8kYLb1CCzNhM_hQNz1gTZuSk4asD4WC7te1dD5zuOHrzB-QMQEu9WGZKNoRgyHcsew61wjimiLBxSnRxGV-ug9r8_JQDryzYvKBIkw9wAuUr8tMD_mHfmSs8YXa6ia1Z-lGAgZT6XG2S42TS7NxWK-R2prAfAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076027","not_before":"1521072127","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEyNywibmJmIjoxNTIxMDcyMTI3LCJleHAiOjE1MjEwNzYwMjcsImFpbyI6IjQyUmdZUGhwT3RHcU5lSFhwQU0zdi9MY25oNnBEQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhqVG9BQUEiLCJ2ZXIiOiIxLjAifQ.RY9uFUHhXlWFQv125X-BV9MPMeaNCO2-NNUn3fP6Qvc3Q68OTeGb3ClH23H8uv-Iwln0jFKjG9oKLdbcShmkW6dKsoB__xc_J_3VPkOrLC9EJV-mil8xDey-BoHRKpkMZsJ1mE01P78QgDkzJAGZzM731olwGkJ8qVvj4p21nva0lsbmQf0YVMaAgDZAmRIY9hNBhkUH3nFfHWh2NqyQ99-wCpxWAdAlk256yT6kVAUgn5Ra_MTSd5IPF6WhXbl7Nlpc8dA28vIq0AxO3xS_CoEIZfUFwkuE1GtzcI1oPMLOiUwmSx45WUm6-mIeBll4KwZV2-jXsdl1ThS1I_-YUg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:07 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01 - response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"b17cc8d8-c26b-4b50-b9f8-b93e40e14d67","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-08.daily.azure-dns.com."},{"nsdname":"ns2-08.daily.azure-dns.net."},{"nsdname":"ns3-08.daily.azure-dns.org."},{"nsdname":"ns4-08.daily.azure-dns.info."}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"edee9221-8cab-4155-8237-e6985ba18e13","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-08.daily.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"37d17ddf-645d-40ab-b971-6679c47c354e","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"48442c36-83b3-49cd-b8f8-ae352f47f0a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"d26138bc-e96b-4490-bdb4-ad1c14c25ace","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"127639d1-b346-4581-a119-f0738a6a3108","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"eb5b853b-04ec-43fe-a934-97f9e586c6e6","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"09ac2abc-ae05-45c2-b6ec-f05f9da195f0","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1660bb94-d459-4fcd-85c4-1821901d53f0","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"28334082-46fd-42f2-921e-c5a84c5ad707","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"163fe323-0a5e-469d-9800-dd0d937ce764","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"85e65bc7-452c-49a0-8b27-7b7f1dcb3655","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"5dc0eed4-bac9-44e9-a163-54e39bb9b964","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"90fbca1b-c758-4ad8-a10e-a79ddf2c2e9e","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"27353eee-6852-4c15-b812-8d22c3d33836","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"0bbc8be1-3cb4-432b-b458-a7f494f17272","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f019bd41-5ab7-41bf-a303-c0d646707610","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"9b2f87cf-6544-468f-9cbc-fe29696a3224","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} - headers: - cache-control: [private] - content-length: ['9822'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:09 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6-v51EDB2LupwyJ0rj3Xtp35NkfzfyMqce8SCF_74bkIjr97h4xBdahPLMbCR1-v0moAyZjWkhWrIOfdEAJOxLAxGEoepfjvImyWwVsYQgoCCfJizG00Bq37A8PveG9Sg2SZtPwKHiJLr0AMhuNlJIaaa8lVEf84pRT-52KyjUQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076033","not_before":"1521072133","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEzMywibmJmIjoxNTIxMDcyMTMzLCJleHAiOjE1MjEwNzYwMzMsImFpbyI6IjQyUmdZRWhpbEtoWjl1ckdGamFlWTlxYXZzczBBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFnRU1BQUEiLCJ2ZXIiOiIxLjAifQ.Kv0AgHdZGfLLirUq169DVo3_2TjZVubOOXSkOKgJ4vG-8FOrW0_n57iTRp_dvYgzHXJXBfSuQcS9fbHvRV-Rvyqvr03vqMkXzCklWINpOZk64g-t05yW8rMCBP_CDe8uMdAziZHj2F4yxXQwfHfYKk-7caU4yTkq6LN3YstMr1VCHxFzp3IInvQYOzcdhTodo9pOQMrUEpoS5nymktN1CuN-1TXYYmMRemxq9UJtFb6QBA82Muih0n9ajeESb6sT8fU5TkhKUQRiO-7TgGoxnKpfWv3UNB8ukYJS_XE2CjCXErwyfD2913W-A3W7quk6ZkF1qXIzEJbDLN-XuR9GUA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2017-09-01 - response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"37d17ddf-645d-40ab-b971-6679c47c354e","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"1c1cc59d-2216-4ba0-a3fc-f08fbaf28db7","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} - headers: - cache-control: [private] - content-length: ['1777'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:13 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9krAdnklTIN1SJUxSx4qGOv28NzGUtT8nJu50rAxXIxO5oXfGYozX9PzPGR3yufDn-30XsXIi4y0Kg9i_nr7IrvOqXxqtiFO95spJ6MX4a27DCpPcI0w0VzL1ohZhIFXUF64bk8t3zqv97MxrLk3NmHoQKFqe3o68WLC6T0P5cwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076037","not_before":"1521072137","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjEzNywibmJmIjoxNTIxMDcyMTM3LCJleHAiOjE1MjEwNzYwMzcsImFpbyI6IjQyUmdZREJaRmZxMDFLTG1EOHZ1WHhjZjFkVDZBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IndHUnVhandWT0VTVlcwWnI0VG9BQUEiLCJ2ZXIiOiIxLjAifQ.DAsZr-_jA66SEpTXSK6LbBC74RXarl3gaHBiZXuBGEi6kQTwpRMJSyMWKYtit7LpddhkIWzoycY9Jn82QhDdIMcoBswIPl-vlLQ6mieRkKPohgK-gN6G7mTUPSdwQgre6LJEWcE3WFpH-GYFSMvZdGC5-YuEauthsQ4vrybOGoy1tDGgMIDhFQeCbvS0MmgeVGKCab7y98Vd47sxqgVHR-PQ2TWbRxN4QXsDKb7O9QAmGGQAtLUypNpOllVZpZmLNm-s21GnHkBir9CCVAvWrNcyMjvvAlP7MTztDuI2PfkIHZL29XHHmIJgefwu3hmsEpwOipEcxWQW1I1ue3BXdg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:16 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"143789d6-f585-4490-8663-0815a75bc641","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['440'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:18 GMT'] - etag: [143789d6-f585-4490-8663-0815a75bc641] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:19 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzKWhxOcTjP08bJaVHWLfJwGJ7hgaKbG8eu8QPHULvGF-lHpU9CFV-ZamvBNqrrmqwf7jvVAb5xCbIMdxUiOJNi5izFQDXqqigq5uxd3vwAzbFUWAMly8IF73I7pjtMaLCP6wiHrRLdqvnrWTh4SNkN5Hvh58aFzi_naxU3w_3pMYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076042","not_before":"1521072142","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE0MiwibmJmIjoxNTIxMDcyMTQyLCJleHAiOjE1MjEwNzYwNDIsImFpbyI6IjQyUmdZSmdkMGgwK1kvMU1ybEp1enljSmpoSHZBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkp0andBQUEiLCJ2ZXIiOiIxLjAifQ.uPjhmGKNesg1BBO1_ZPb48GsO7q3mM24UN8QFdA42M3mVQqO8oMeTN5U6rYpQCKuJtGcF2zBt1uQGbR6WsXWEicLRYjYvOTKutLvmpXkSAUxDMgoJcgHISkeh9F0FI91_4mcmrhESWqmk_DLGFrexGvDDd2iVMhI5WZSakHHN_Qfcpp_167w4EYcoWXVfym8XCHKDPQsNPjzvfznJOqCfdO3NBOFXwAlKlBEnAtdzfKL22awO1Ao7Tj2b1k5zOWI4cgR4oel8Rn9kxbbYb6WRwyT4CUOMBUmZy4Bi7FjIDtOm99vKbKQiSHAO6mY953itxhKr9jA8JNlfYZp2X6JCA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:21 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "143789d6-f585-4490-8663-0815a75bc641", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] - Connection: [keep-alive] - Content-Length: ['121'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8f0ef234-7126-4409-bcef-6c3658449388","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['412'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:23 GMT'] - etag: [8f0ef234-7126-4409-bcef-6c3658449388] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:25 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1fD8fy0T-ZT3N8PKN0S1ngDmzKGsRiVg9GYYujugkiPL2h_xsS-G_huVOcDduqmy4AMfDCD5jSx5FFJn79LaxVh_tZ_u_UWrrRelvgzWwhk8r_wGchOwqb0uPJ_Uy8BDN-snhTKL4ncHgMMKLHlx81EdJRGp5NyAO_65Dl4oCw4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076047","not_before":"1521072147","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE0NywibmJmIjoxNTIxMDcyMTQ3LCJleHAiOjE1MjEwNzYwNDcsImFpbyI6IjQyUmdZSGlodjZlN3VQQ1k2WGIvMWQrdlBFaWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhzajBBQUEiLCJ2ZXIiOiIxLjAifQ.FjjHrttc3mqGExDeUSrIHOHJW6EaD1othtwtmCqxs3CCbkENPI2jK-EVsRwJcOptwWE87NgFdMyyaEYWpGw4W-bie2PF79pm3gLPCZOc-F5QDiFr3t4Yj60Y_SMNyiowPcSy8wdbPRupvwblHhVQuqYnFNIcTvAMV55lQNi_ExgTbZOhYNB9rONvtL_74o62cJ1znlkp_wiiovPl_I1MLTc61YXpalW9H6LgD3amhQrQdl-ayV5wEAXJ5yax_edkbK03BDDotNYDsK3mMgXQAqKdu7HYDsgG-ifeo0Ga2iftqCToMU_PZnsoRyhmEsDSBUZgGY61Vz21991LLoDNLA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:27 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"48442c36-83b3-49cd-b8f8-ae352f47f0a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} - headers: - cache-control: [private] - content-length: ['441'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:29 GMT'] - etag: [48442c36-83b3-49cd-b8f8-ae352f47f0a4] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:30 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzhpgoNPgmam7vl6raLYwvrjB5nNAmt9YFmrh_9CnHdZU-ioIddzJamn9pRcON4HUNriIy_rEqZgm5iQSCRivR_TaobHUw9YdgO-g_VvUbipsr9f2jPjWdAts9u_wFJo0_JGV_XNgJI5_ViPAqZ5NWCk6psk_5rihhrx0X7khskIkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076053","not_before":"1521072153","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE1MywibmJmIjoxNTIxMDcyMTUzLCJleHAiOjE1MjEwNzYwNTMsImFpbyI6IjQyUmdZRkM3MW1GdjM1S25YOUhxa3ZPcGx1c0JBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkpRcXBGMjNjQzA2VDFjamFLRWdBQUEiLCJ2ZXIiOiIxLjAifQ.bUdCZkaq1rCTIH8MaCQDyQyLCTSMrlFuefbTWCR4PX5JMpf3DoBP4CBpLVC6yMuBywvNf3Z_IYQb8JVJ9iosz9vyPkHYv-IOrA7Evvm255UW1H90ROX0anIbuJHGmmNHQyexLblSCvOF5_wLTvIV-exdZyEvqnblPyHowqWb3w99gxAugK92ziHuwHzaU5CuhYyWMzX0mTDnT3bHuhxAqxvmEKYiHr9u5xKceOSRg6pHqE3vWQrN_9Na3zry9ZuTradQX-G1PpaiLHZbvxf7qhFpl1z0V9_dhnwpEjO5jWZOG2BGmiVVwEjHbiHKPb-Ckv4jCoUMMkC2K110AvBT0Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:32 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:07:34 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9gZEeechsZzTZRy_XQDOGN4LtL0gJ_2vUW32OA_1zRG4ghemfhH2RqfRzMVtWdclKhu1s0LQmm16TwUgIJA0LBSoGPlQPmg8oymUt33wp_H9c6fTIZmFOIUOWEGm-XKzOPCBq2ogF89X6foP5fXHSCbOofCjLXDJdkMeXmQMWnAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076058","not_before":"1521072158","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE1OCwibmJmIjoxNTIxMDcyMTU4LCJleHAiOjE1MjEwNzYwNTgsImFpbyI6IjQyUmdZQWlPWTYzdnNqdTFlTityU3ZzNWNTK1ZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklkZ0lBQUEiLCJ2ZXIiOiIxLjAifQ.jTjTnDKYJFa2qIYKlFwNkap1_Ulm9nE67qtZr1ANEYEFg5R3QhdRyCOIevMXzLsV3d2CPzH4moAXowMtOfMuBPgZ7JthT2lwwETBZ0lo6qgt7vpvzGlo5WBikCmQPl1-_pg5aizxZXAcH83x-q9CnYGVMGTE6VOl3wOSwwOgxlNGRexlMENelO94dlg9o-dGLD9w1qBL70y_S7mkeYvhMseFgU8g-MhsSnwr6r66OFkOaoBqf3WPSZuk3lqxAAmz-WZGMT43O2n-TTPl5exvKrcSdKG6PwLtm99Hmq_jp-S3VXBBmzGPMNlc1jqtYyBz1MELhAVeg_hRsjLq0SDMdw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:38 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"eb5b853b-04ec-43fe-a934-97f9e586c6e6","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}}'} - headers: - cache-control: [private] - content-length: ['439'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:39 GMT'] - etag: [eb5b853b-04ec-43fe-a934-97f9e586c6e6] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzm_a-0nCaG7VtOi1gCzXP0Kz2D8oFdf0Iva4yphZ2XxJDgL52eyKSWIIv9IQM8OLDCniI91kg2Uo7SMWaCKwAB3RyS8C5gggUIsz6clgMOPp6fni2PKKJckoXGuTzTjEYk51IOgRBRe3OYe5k2tX1eQ3ULxCMmm7Y8tLD7jKrcy0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076063","not_before":"1521072163","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE2MywibmJmIjoxNTIxMDcyMTYzLCJleHAiOjE1MjEwNzYwNjMsImFpbyI6IjQyUmdZR0FwYWdwZmYwMDE3RWo2cjRzbjk4VkpBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklGd01BQUEiLCJ2ZXIiOiIxLjAifQ.ZGMH9IMOJI10uKUZdYraPFDylBKhHdjBBmm8Hnahf-mnsZpKr5xnblPir0TKWJ8-Sn7RvMjZUq-yNtAPm_YMBO98d3nt3vQLdLtkV42gymAxQxPKXvyJju9lIGFRoQwjHU1EVxeA11gvzg_B8WVgNi_VoaY8KaZKH2hCp3HaCVpmd9khF0sNkal3fNWn8YdzHVlcfMsCb6mm9Cblkvu_mqkbJQsRnJYI-1BcbK9R_hijIG6toeaPhygMzd7eDUEcDBZBQb8F8f3cs_vjeJK-9hqHK0_FeGJPWGLSQKdn2dLV6RzFpNyyFxBw3YmWiroN2LIJWLH21CjddL3_PQ4mIQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:07:45 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:46 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-sIplHgQtUopcMN2E8cJsc5fpdNFjkHOdJMnZnMhgf3VUQ5yZq_iW9Zm4pINMVOyQwvIjumTgtyNmlt0-Y0mdULFOXgUK2nd40UIK73plqfdtk1sd4-8Lv2EgahR30y8e1N9WLVOq8NcOOgju6eesAWBkY3sjoRTVBO7WZJYcwsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076069","not_before":"1521072169","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE2OSwibmJmIjoxNTIxMDcyMTY5LCJleHAiOjE1MjEwNzYwNjksImFpbyI6IjQyUmdZTmo4YnRPNXBIb2wzZWZYbms0UXZXYnZCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhnMElBQUEiLCJ2ZXIiOiIxLjAifQ.FwoOJTgXhO3-nwCqHnZVxs19BozAcOSOOL77iOLhgDoI2ryroxcT1G2GlgKQrl6J1ve2hJOMhHvpN2qFFd4g5g9B5Z9wpoIE8Xxw5-N_PQCAsXKvOdTBMIsyOpXcqC2f7Z55SjCbralTMBldUaAjUOJQRubFd_NGYuD7f1eEj8xKyXX2uIjw3sL-OZ1W7Xv-mjqfyKmfd66q4RLxz1vtalIcy2-cREf2Gf4UGO2AVANxxw1dlEsf6A0Hg5F29vX8HHWLPjMNn82GzVqfQgOJvhRXujz5e5NNN8B-avoajoiSr8e4DcWxdNbfsqmIcY6grfHoPKca6CC9DiuDYK2qYw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:49 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1660bb94-d459-4fcd-85c4-1821901d53f0","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} - headers: - cache-control: [private] - content-length: ['425'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:50 GMT'] - etag: [1660bb94-d459-4fcd-85c4-1821901d53f0] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:52 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzenizGB75VijUzgk3GvTV5mUJ3q9iD5q_at6pA90FLzSDWmh8dc8NyvkXwYdW7OOh-ni0cGeWBdmqi4KzzEVsjDscPnAarG-32-wCCU0E-6AJZpBfdGBOkXTxIq-Fle2stBeAOFTyUnbMgzDHCR6vsgX-s7kbLRPHvqbkvVbR60ggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076073","not_before":"1521072173","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE3MywibmJmIjoxNTIxMDcyMTczLCJleHAiOjE1MjEwNzYwNzMsImFpbyI6IjQyUmdZTmoxVElsOTdZdEhXZHhjQjVRWGw4YWVBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpSVU1BQUEiLCJ2ZXIiOiIxLjAifQ.TiQJz5FDXaG5U674GE6vZ9prXrqU6zrmBYXsnqJnurYWj7l3zokPIUjlImjt_rgggheeNyD5pcdG8yLQD-q1u9oBCW4uu0ofDLihuNIkUfvYLHUCBBhUInTHMC4LcUo1YAetITCto5ZeGqvv8DrB5U0aWlf7ctgTLaqV0UjLwb5c0W1iML7a3Jd0whAIWKFByoP88SFymmgBPJs2OIwBuc2rCXd2ArPcrxKPefuDoN8TqIz8xfcOgcY9qXpBr2iMs27GG0ND3wMYVXH8j3RfFIwbsECsRowEw08ItQr39AuB2cFqH3Q4NZACKmWVzVPxfW2_OYcEQdqCgOa072Iy1A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:53 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:07:55 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAbYBQI24GeZ4obCjLtEJnGtDTOHTVhCd2-moqMP-L4HvnuN_MYuhGlgqL77JNs2ugUBQLN-1V470AEBXWWTsu8Xu2WoDa_AeGPGOz7nf40fVnq0Qdoz5LPEBpFZlkcdKxAmbvNI-X6B5C2HbkFzXNvNiW8VBxOb8Tn-uuFXHL74gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076078","not_before":"1521072178","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE3OCwibmJmIjoxNTIxMDcyMTc4LCJleHAiOjE1MjEwNzYwNzgsImFpbyI6IjQyUmdZT2crcjJSK3ljM3RmY0xXekpOMU9SRWNBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpBMFFBQUEiLCJ2ZXIiOiIxLjAifQ.hVO8-nB5nGh3v5O8-zIF8symT7A8MSm6bATDPJit5PqJ2BgcEoQpahl-sxK42KJ8JDYi76yZ2Ke75YfCommhBa19H6bbcnznN_0sqU0ttIzJOXV-Wbxoj5U0DlgX08IEFu_DM9C4Vc57oa2OM4EdWGKgWcossCzh11kwAq971v5VNSjx-GqXpn4DRV7-ssIwsXMbVteIQj_miRnmVtAoLCCjsHmIbR3jZWOsocB_vPi4_wauL2ePZvNaQJNYQ2fJTppfaYIKLfUmzHMpUsI39cWFkVrYn-xd0v4nbOqeN5XwLllJK5i8mVBF1GSW1nR7M7Xi_NLRz_jMd44wUyiH-w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:58 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"163fe323-0a5e-469d-9800-dd0d937ce764","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} - headers: - cache-control: [private] - content-length: ['424'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:07:59 GMT'] - etag: [163fe323-0a5e-469d-9800-dd0d937ce764] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:00 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzTgteI2iHKiHcBZcYgpbYitIDOfsXuJ6afnR9VROKNvkv1n0RbC3By9ilVkuz1hfpoWl9q4Q08lhrtfMsmL21xAiZDLFvsk5D7EahiBTMA0lKPRrgJk-LLDc79veFcXQMEfZ5Q_bqDYEOcrwtCgPtskvvOefGW0cI22cIbD8O5mEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076083","not_before":"1521072183","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE4MywibmJmIjoxNTIxMDcyMTgzLCJleHAiOjE1MjEwNzYwODMsImFpbyI6IjQyUmdZRWo4ZTd5TnNTTXdjbmZORGNFWjlWc21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Iks4Z2VVbHFtd0VxQ0RfdW5uaElBQUEiLCJ2ZXIiOiIxLjAifQ.AO8LqFjd82vAvCdpTqjjKO4TuliEb00SnDLjgm03rRMWmbg0t4uNQR-qa-KxR8gjyed0hGbesfaOnKTVgXHzc1IrYNOC263PFLsrMcGpe5d5u49UtLtbbW1oSFsPvfg8z2piflVBFxAa53wkIDsvKE-ltcUXgg2jLKJAlpsHd21qTnLrTJPNWTV3vorBBUkqncalF1fCHEYxez-lck3ttyEYehq1nulu-zQMaD6Zzsy--b15aez4eJ560DIDdjMXDGYuYfZyXbgJkdfcqoQK90e2hwE8eYrzu6F1i2bzObqvQe1fpmpEEKtvl18L4ALferoByj0iqIphG304XmZzMw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:03 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:08:05 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAKDrsQ5msnhv_085b3Ghjdx3_0nH38D2CWpmqCGfZR8ymax1hKwn0D9sAinEs2ad-ZItqhHpgZ9mfJUp7ppciBQ8PSDiwBbJkH-jb-uKNgsLh4swH0iubTbvEkPx2dnRDcMURy7epVyMrdhX4wQduV71X5gv7yUCjebX-KqhJ2cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076089","not_before":"1521072189","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE4OSwibmJmIjoxNTIxMDcyMTg5LCJleHAiOjE1MjEwNzYwODksImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklEZ1lBQUEiLCJ2ZXIiOiIxLjAifQ.hviR6_P0hs0hejk_-kB4_WsMoe5k7N_OHfJrLWgMgNgAO8xmYmuBZeQrE_6K58skfVtSCjIXdEQycBsBusDs34fRvgDoPH2Li_HfsCceik3yX9m3H-0liTrldJQerIuMMqGK_n5Y75t2InPgvBgnqbO_7Ec-FDraVBg7t0QEvuwiyDlR1-0kP34l0F5Yk52aiEvKzGcUxzubQ3RhZVWmZ3OOp4nXaTT4EDSZfwWG5wbYcN3MAbbg_UjdugRALj9mp49NLlqiK_GsO6MFM82XlB8l7tcPBtmaXMUuUv5lD5tesHg0V78pboASz_O2KoRCWU_q40aPNRLiXh6_vCgG6g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:09 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns remove-record] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] + Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"5dc0eed4-bac9-44e9-a163-54e39bb9b964","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] - content-length: ['415'] + content-length: ['420'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:10 GMT'] - etag: [5dc0eed4-bac9-44e9-a163-54e39bb9b964] + date: ['Thu, 15 Mar 2018 01:31:30 GMT'] + etag: [f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzx_-wdCZ8cXPXKqlde3ZymMUtDGcPkxeppE4xqOvux19MNSBkeC1AxwOgoHcapIILA-ZoIaPs21MlOAWKjREyOk_XwrH23eZq0zNdQt59tzeK3m1bqLPPzOSYUB_83qJJy15_OmpOzfvqdFQgmAVs1lMes-jMBDCMbxZTbkRSEGwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:32 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076093","not_before":"1521072193","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE5MywibmJmIjoxNTIxMDcyMTkzLCJleHAiOjE1MjEwNzYwOTMsImFpbyI6IjQyUmdZRmk0bWkvaHljMjVuSWZqcExhdTlOd2hBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklxd1lBQUEiLCJ2ZXIiOiIxLjAifQ.wM44n--K6Sl81l7bQnYcGxMmxN4mN8QYMnmXjprbwgH7T-1-zygN4l32f4aFJ54LTmDRPwLGuPs8_7v3WlfQwY9ZLNHkE3Z_vBZ5gZojsdLzDR0W9BMJ_dgJme_qKmA8SFmN6Fp4_tfHj35-vMlxpLQ-WJ-txeJisn5pWmY8cCnp7y0CPEoEVPECHadXR1kZ1FRfTWb2lbp6MTdfkEI6Mk60SgIglH7yyxv8Je7FeKce6xgKDYpoW_rOpNCcZ7H1_zsSBcsu7X_48ArQ8apm4zY-NI-v4G-Kq6fxST5eX-0-e-6m5dsqmlqhTiP7tgy4OUzb3vNzQbH7BS1b6vUryw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: null + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ns remove-record] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - Content-Length: ['0'] + Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a4f11888-47a5-4913-b9e1-89a8a0bae32d","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:08:14 GMT'] + content-length: ['429'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:31:35 GMT'] + etag: [a4f11888-47a5-4913-b9e1-89a8a0bae32d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7df577c3-c736-4169-a7e1-4c68efb76d11","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzseCyDcVg2c7sn5-2sX7YBHlTv5D-fxSEW_jqpSfnxlv_ZjxAuKHrTujFYivO2BuxQUyjOB1rOQwtHqQeeK3UoAS5odJQHHQ611uQ-3EIoGDTkjM-zdr3eXTMgXX7ZCup-hSg5FHi0wlZ8FnyF5Gd0BZnJisY37GwelreaerqTwggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:37 GMT'] + etag: [7df577c3-c736-4169-a7e1-4c68efb76d11] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"etag": "7df577c3-c736-4169-a7e1-4c68efb76d11", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['151'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076098","not_before":"1521072198","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjE5OCwibmJmIjoxNTIxMDcyMTk4LCJleHAiOjE1MjEwNzYwOTgsImFpbyI6IjQyUmdZQkRxcVRYL1hpemxFTHY3Y25xWmVmOFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklhUWNBQUEiLCJ2ZXIiOiIxLjAifQ.ZTHsiDwH9_OdygTSe16xYBgjvz_y0W7Cx1BxrFufhsgKEXxLKSTNfXG94ue-rRX68YdypsoGCvxEdBu_WWZXo3OleBhy2svIGcXw1Jq4hVlHBnjlMlV4CFhuQ6Xc9_dlTqtiMSxOgKIPlXXpnB0rm3xyqFvIDYXTBKcz9CTak-ODv9l-gCz8Lo91EURskKhK2P6HjK8MqZINux6LBDWaxj4eJyyYe-hbjSWPLLhI5SOi95oBqiogKWBQn1qzMXADJAMLdehgv3tA24eqi0DnJL7ExEZuyQKEiHWabNTfjgLWdNJJB9UumY-KGptHyMWJSCiifiNFc1CVG56BMT4udw"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:17 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:40 GMT'] + etag: [d0b302f6-7584-4b5e-9f55-5ed1d2413f21] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr remove-record] + CommandName: [network dns record-set soa update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"27353eee-6852-4c15-b812-8d22c3d33836","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"94fe4c15-73d9-4a9d-80d4-47025f28e618","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] - content-length: ['422'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:20 GMT'] - etag: [27353eee-6852-4c15-b812-8d22c3d33836] + date: ['Thu, 15 Mar 2018 01:31:42 GMT'] + etag: [94fe4c15-73d9-4a9d-80d4-47025f28e618] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"94fe4c15-73d9-4a9d-80d4-47025f28e618","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzEGWugJLXw25i9cmj78kY1T6ryDdMkYrqoFcfuwMx_KVhxM2lSlGe_2154-AjwTSAoUEGXAMCYniDhcS0TSNSRqu60Uwgoml5pJ_hBZr4OnTo9VrHXDLNkml7HZU0fc92e0Zl1JjD6ae6oEmWUSvCn8Jlf2CRsBIeIu3NsGpN3iEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:45 GMT'] + etag: [94fe4c15-73d9-4a9d-80d4-47025f28e618] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076103","not_before":"1521072203","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIwMywibmJmIjoxNTIxMDcyMjAzLCJleHAiOjE1MjEwNzYxMDMsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpZMG9BQUEiLCJ2ZXIiOiIxLjAifQ.xkGKa6yZ-njBCJT3YA_XbqJiT48jAAWn1x2w-H5zCjaiR0RDw5W8nNBYiA9VcLJOTlKEvm2OJMaISJmwEc7B0njjcU8a2tTutUeL-GRD_4WegRnBTw-wsWw2hm900bNw_hAohP9rzdNVXcapcmBWYvvDefYWxMwnTiuKlbFBhFvr2XQek9cwO43WkLvxnrCfh4x7vl6ANhnju5ef7-wq9xnkAyA_y4DoxdIgKYPRTa1VbA7uSM58DVf06Eh9H3cM81GIo_cGoya_xEgo20JTZuMVgsU6DK27ALgL1I4tbJDfopERA669JYS6MbYMV-eXvtdWxCqpfQKwamT0sTbpUg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:23 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "94fe4c15-73d9-4a9d-80d4-47025f28e618", "properties": {"TTL": + 3600, "SOARecord": {"host": "ns1-09.ppe.azure-dns.com.", "email": "foo.com", + "serialNumber": 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": + 20}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr remove-record] + CommandName: [network dns record-set soa update] Connection: [keep-alive] - Content-Length: ['0'] + Content-Length: ['242'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e7687d6a-b7ae-446e-80ba-7da671a72ce3","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:08:24 GMT'] + content-length: ['511'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:31:51 GMT'] + etag: [e7687d6a-b7ae-446e-80ba-7da671a72ce3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['228'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:25 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYXsVCjBBEiOosSgat7qq2kQAKw4g8EB26S36Hn_C3O_Yy6K0XHxSe8xTs9aoC2GQBml-c_iB4FEiYacOCJ0L7mrsffUg3WiIYtAtmJdpsMYYhbuLciZifxBMQv3CSOlLTF2UQqhOA_qewX1zrFhI-28mJzo5wcvzUGZBYFBBoZAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:53 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", + "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['566'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076108","not_before":"1521072208","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIwOCwibmJmIjoxNTIxMDcyMjA4LCJleHAiOjE1MjEwNzYxMDgsImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklZd2tBQUEiLCJ2ZXIiOiIxLjAifQ.gjBytm9I9Sno-jtkQwOrSXgK2eE58bEtBLCEAKuWe12FjIJzd4dbQoVg2gFXkTYVU2Adzhbgfgo4xQVtJ3RASprHfJ_WAxKiF9TvFq_KutwOJIgOK5RfulXV7JvHdMgCL5cVDTF4AXsIkzrFXCMepv5w9PxbCFK3CTCMFjHBjz7AvvzWWwBePJmWT7Z0p_t2ZHV-Dh8M-ITigUCOm4PnnItu_swzdKiqUcUEK053UNzYp62EvhyC4Y6mhXgJOgIBvSiZWYGxgfhbFw-EmG3CeCvvfb6RDbpMvuZcE65YncxSeixWgV8JCap_RmsGsJpeiTNG0n-M1Yv52O0cfXz7Zg"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fa4d83f8-98f2-4b6a-a8cc-4278f2789877","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['914'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:28 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:31:55 GMT'] + etag: [fa4d83f8-98f2-4b6a-a8cc-4278f2789877] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv remove-record] + CommandName: [network dns zone show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f019bd41-5ab7-41bf-a303-c0d646707610","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":21,"zoneType":"Public"}}'} headers: cache-control: [private] - content-length: ['457'] + content-length: ['557'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:30 GMT'] - etag: [f019bd41-5ab7-41bf-a303-c0d646707610] + date: ['Thu, 15 Mar 2018 01:31:57 GMT'] + etag: [00000002-0000-0000-43b8-b50bfdbbd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:30 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_phwNVEiNpwbuTGF-8CM54WPDQISrQV3m61FIWY_hnvwCTDYkFUojnivfsPCETf6yd7XDKe2Lw_WJm42riDcrJYj9wYfLIYhgkJReS9TtMGtYS-YGAW__W9yzHCG5G0eL9u5p5OmoR3Q8BeosknK0F-VAK0xDPJzCJgrkyOVYu4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:00 GMT'] + etag: [d0b302f6-7584-4b5e-9f55-5ed1d2413f21] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076113","not_before":"1521072213","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIxMywibmJmIjoxNTIxMDcyMjEzLCJleHAiOjE1MjEwNzYxMTMsImFpbyI6IjQyUmdZUGcvd1QvaGRWUkE3eHp2ODJYZDV3cTdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhaRTBBQUEiLCJ2ZXIiOiIxLjAifQ.dCAO7qVz_YEG2hftMQq7MYVTj2Zcxi3KfKlOYoXuZMS7_s2VYX2bO66OzGdq0KHL2t7apVHRf_dwDGK0aTU0hTTx-TT5Hv_1XbkxmlCuzIJQvWCv3KWcyCqxD3hCM76h8rdIM_m-Fr_tp7vjXRw6msC_1plijwmd4lrtwNsVphE7top_Q0BC5SV1gf4kwUo4NCj_8tuOfl6WMS1rP7go6_Bmp7l3pfbjiPeuIZclQl5qR2HFEhWoqO4Y_CpsyDh-IzNsibVaMoieI1hZJTSkEuAElgrzGlUKL_LoSlATGXUNGttyaQguh9MGaZolSOq6PMA_ZSzdJW5HJJ2L3EN6GQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:33 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv remove-record] + CommandName: [network dns record-set list] Connection: [keep-alive] - Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"9db05edd-6352-4057-836c-436642eb39fa","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-09.ppe.azure-dns.com."},{"nsdname":"ns2-09.ppe.azure-dns.net."},{"nsdname":"ns3-09.ppe.azure-dns.org."},{"nsdname":"ns4-09.ppe.azure-dns.info."}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e7687d6a-b7ae-446e-80ba-7da671a72ce3","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fa4d83f8-98f2-4b6a-a8cc-4278f2789877","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"35a61ca5-d23e-4415-a95f-838a4b259684","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c0836117-5b1c-4554-b6c0-25cb9f825f0b","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"4b86d240-840a-4b40-a381-16ee747b8876","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"d4e0f820-2608-4fa9-944e-bcd60e8d7146","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"bd5b2dd4-4130-42be-bc28-f09b202f205b","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"00512ce5-2470-4ffa-88d7-330f6ac28342","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"4ffd202b-f3b0-49f3-b8e6-1bf70f625d32","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"c53c26da-2698-467f-96d5-cd1bbb8521b5","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"364a0c6a-80b9-4e78-8c1e-8ff68adc9e87","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"e1bd3cc8-fa52-4508-a346-df6741904b97","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b7a347b3-b4a4-4482-a07c-257257d5e936","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"43463580-432c-4640-aef9-3021eee07cc8","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ebb20850-5834-4f25-b1e2-bde29504bd88","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"190a4113-822f-4a3b-a518-47be856f4d84","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a4f11888-47a5-4913-b9e1-89a8a0bae32d","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:08:35 GMT'] + content-length: ['9812'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:32:02 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt list] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fa4d83f8-98f2-4b6a-a8cc-4278f2789877","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a4f11888-47a5-4913-b9e1-89a8a0bae32d","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['1777'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:35 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYIQSmfMvNZ-fA4C9cj0u44XQnnqa57ubyaG5XsEZRYhy2YZ8ZRYtryJYQ6d4_KCnVdbnaqtx6VfrgERwFIUih4RX3HmoFW4gG3y68VCkQwQY6FiQ-gatHL9pkiG2ianqqq_NMNkhf9i5Jml5v4W7Q_N9w5Ld1yG0Q4XJcVtf_NsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:04 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076118","not_before":"1521072218","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIxOCwibmJmIjoxNTIxMDcyMjE4LCJleHAiOjE1MjEwNzYxMTgsImFpbyI6IjQyUmdZT0NLRUxBT0RNazBMTFV3eVBEMEs5NE9BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklpQXNBQUEiLCJ2ZXIiOiIxLjAifQ.XP2gobgTRprD6D7jwGmHWIyP6fmHOw4yucF1JJZUJuCWHmsFdYhl7ZX0u1Uj4JtvwDGM1tXv7UDpbmE6CqqC8Z9KGrrOK_5FHDDXzVd4w_XjpwfxtOrG6G8bSVaP5zD1LWXyrGXxZ0SEW_4uFwVHynKCL5kbh113tfq6ulwLUFA15jPQf29qG6dcIIII949ALxNU_x-E7pG0Azv7_HGTkLVNcvBli3CbhTPYnq5QoyzhE7ik2uw5Cp3lAVwUxY-0nmKtpHfm6CLK7ibihVh76cLkBHZstkmNuWCmicE6clcJMZAN-J7-vTnSF44bcuMm2BiFNJhwKWAylKpLrbR8FQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:38 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt remove-record] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"93ee860d-495b-46ac-80ac-20b6aef63e10","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] - content-length: ['420'] + content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:40 GMT'] - etag: [93ee860d-495b-46ac-80ac-20b6aef63e10] + date: ['Thu, 15 Mar 2018 01:32:07 GMT'] + etag: [d0b302f6-7584-4b5e-9f55-5ed1d2413f21] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "d0b302f6-7584-4b5e-9f55-5ed1d2413f21", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['121'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"455f3a36-7388-4c62-87c2-279cbec90efc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzCZRlVnQnE2W5U-WX8JON7VuSi_RW-5RHQ9q-MK2bZ438M-CiIzTyQBmbjvZhlX6-DnNeyPemUcD5lRtp2zqv9_9vDztM-Cm2C-oBjGa5oboj6nuRPHL58PxEloqo59UdcvDIGBX-zejMOl9hQs4cF_qfYWAG7ZnuVFLcc8PxdjcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:09 GMT'] + etag: [455f3a36-7388-4c62-87c2-279cbec90efc] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076123","not_before":"1521072223","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIyMywibmJmIjoxNTIxMDcyMjIzLCJleHAiOjE1MjEwNzYxMjMsImFpbyI6IjQyUmdZUEQyL2FmN08zcmFZNzJ5VlFtYlBjOEhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFgyazhBQUEiLCJ2ZXIiOiIxLjAifQ.ZFCYpd6mQX86HzuvNdHWFKfngAgio2V9PhJ4XRxTDIMHN1vbVhOc5coU-dFVF-NDMXPdMjGhWWt09nUU_dglyWf84oopdzlr0o7y-LeKnmXSq43t3sK-qhEmCTXSZC9-ddOWXKB8cjTZHhK-bpSL9lDkj_i2w1O0fUHXP1qzeJKjoLVDebGQjXKqXr0WrgCBglfkDEI7KIZKhuXZDotWcEBeyIwPZzFqZUpeOIHk5iHtJ4QCjSHR1YcC_vfswPCJ4oyZnDTe3EaY02KY8e_hOC3si08DRhUsrsHTUWe5Q1m-ITJiR1w8-KghLhCjkCJUzgs8Qbup_XPspHlbFLvTeg"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"35a61ca5-d23e-4415-a95f-838a4b259684","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:11 GMT'] + etag: [35a61ca5-d23e-4415-a95f-838a4b259684] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt remove-record] + CommandName: [network dns record-set aaaa remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:08:45 GMT'] + date: ['Thu, 15 Mar 2018 01:32:14 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"d4e0f820-2608-4fa9-944e-bcd60e8d7146","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:46 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzlMK7Kmun2ShMq_mvpdOLohaPHrdPVcacWZSgpnba_PdxJ-H5KMbLC_4vaPIenXfhgtuMNipfUE7VGtptokLz-HwwlgsD1QTSDT1TYnXXO827krN-ClmL2PQbVmyz0SCAdCdhQwwYNKgnQ19lUKw-hEOMefJRj-dYfmFwRMdGe0cgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:16 GMT'] + etag: [d4e0f820-2608-4fa9-944e-bcd60e8d7146] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076129","not_before":"1521072229","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIyOSwibmJmIjoxNTIxMDcyMjI5LCJleHAiOjE1MjEwNzYxMjksImFpbyI6IjQyUmdZSmpLNGRDdzJxNW1pYXRxL2I4WFphVkxBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhORkVBQUEiLCJ2ZXIiOiIxLjAifQ.W1ZYz5_xaaJjrDyNiSnYhOS8cz4U-sWFLj9uQtp-dSF7ejwBbAl1qRQfitRBzK0UDQ6N01pnEi4BEt1GzKbX-fp62jYDgJp1B2FYA9OPexPsRhvuF2gN5VaSVoZ63CGKv1OGc9oFi1LL-VCOYFotcYQXANaN5N4wBWDwNQTqIhhmxnxcgvd5H3ScboRNaj4B2ULNH7bpM65gDHhXs4b3GLg4xptnYC-lFjIkx8GOF2qgHydWzY308PTdK6aKhwxm1a-hgNErwidWJB2ssba6cZqvKCcCN0PVDQFT5ZLXYiYvdB_fds-BUNx59nGuk-VYgSMy1X4YAtYy8ztOmSlwaQ"}'} + body: {string: ''} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:49 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:32:19 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a show] + CommandName: [network dns record-set cname remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8f0ef234-7126-4409-bcef-6c3658449388","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] - content-length: ['412'] + content-length: ['425'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:50 GMT'] - etag: [8f0ef234-7126-4409-bcef-6c3658449388] + date: ['Thu, 15 Mar 2018 01:32:21 GMT'] + etag: [5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: ''} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:51 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-kZ1NpVynMWWEh5t22QTUuNtfYTYBhwXO_hy8jL4WpvOWI1TeFEL7IQZ-yyAz0YHRYKQTrxwdc9442aOGATzjdDQUoR9SackwF_q6p8gkGzByBxJEOgF-JCHFEM-_auMigL-cChAdoIZsoeIj3VdUNqboalK6cCvw0MV5uXRA4YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:32:24 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076135","not_before":"1521072235","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIzNSwibmJmIjoxNTIxMDcyMjM1LCJleHAiOjE1MjEwNzYxMzUsImFpbyI6IjQyUmdZUGgvUHk4OFhlVGVtUVBOYi9ybTM5KzNFZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklZZzhBQUEiLCJ2ZXIiOiIxLjAifQ.JYHni1o2jR4ZyI54vvXSPYO5EVAJyK5DL2YZdCwhnUa6niXrl6JH2Z3AauYoC5jL5r_c4_xEeIgxV-Aq9yplrSnmCOVR8avG-hJqMoc9HNPaZ42GVhvT33djokE_XYrqo27md5WNiIGME1FJQX6wh53h5RK84iEIy_GBCijZjJwgLjKy9-_hydWxkLCq6EitcaWnD0ikitzo19hU_RlY5dcm9ZlE1T9duGmNuOvSeV0EoXCipmRZgOwSqaUbtMKI7GKM9vUCBwO5n84JphHKgpSiVtDpDyYktmA2JXRU96dzeikFjevC6uFudBb8ZF-aPd6oyUaIVRcdUkyXDeFMsQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:54 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] + CommandName: [network dns record-set mx remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8f0ef234-7126-4409-bcef-6c3658449388","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"4ffd202b-f3b0-49f3-b8e6-1bf70f625d32","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] - content-length: ['412'] + content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:56 GMT'] - etag: [8f0ef234-7126-4409-bcef-6c3658449388] + date: ['Thu, 15 Mar 2018 01:32:26 GMT'] + etag: [4ffd202b-f3b0-49f3-b8e6-1bf70f625d32] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: ''} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:56 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzmz2t25VJ-aP9Rwp3XSHLz1VrdUAzOwygfC-aMD6dsO13XDJAYdefaXAqsOTX9WWapxAMpx0uUC8a7XMAor1VAfwe_apPhoq8OP9nq3mr8ffDsWBeNIeOmdsM7rIYGadVtJlSxOWYIUL6N2WSMOFQwX1ZsSWwOI3JWA06edon870gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:32:28 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ns remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076139","not_before":"1521072239","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjIzOSwibmJmIjoxNTIxMDcyMjM5LCJleHAiOjE1MjEwNzYxMzksImFpbyI6IjQyUmdZQ2l6MXZhNXZPbnhOdDMxaGJPVFhocjhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpyVk1BQUEiLCJ2ZXIiOiIxLjAifQ.nrZ9prQGonVH0chOrwgPHe0S2mWIa8S9Z7ANlI6rD61C5Xy4x_rLBxrKTU63jUaHCvWQnTE1emxd2oZDLA8-ZVbyNo9Xp9OcykFcMuGYX_VTaeQhwpVgf2dc88rNXyetCKsHtslWHAAoUNA5rVUI5z-xhb8cDLw3I93B2oACHxYNaozwMG0xS4ardn8wjfkcfXj09vIARQHJUgS114znwtOipbTHzW_6Xa4qhNjDaagUa442UKrtOigN09tJ7Tm_O0wtNjdde7UmqkL7YdIWbrfLzZOaV5BAA2QSq20a-Nl0Zd1qswPCYY88ALPRO1r_9OhIQaZzTCMa6jFFdn00EA"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"364a0c6a-80b9-4e78-8c1e-8ff68adc9e87","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['415'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:08:59 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:31 GMT'] + etag: [364a0c6a-80b9-4e78-8c1e-8ff68adc9e87] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] + CommandName: [network dns record-set ns remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:09:01 GMT'] + date: ['Thu, 15 Mar 2018 01:32:33 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b7a347b3-b4a4-4482-a07c-257257d5e936","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['422'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:02 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz-QcQIwsbeBvRd8aqY-EaGpIfpaip5slLyQpVr5V_meYOtt1TqmiMcbVENNk7bk4eklv6BTNS5Ly-N6aP8nJLVn3f_shqjaTBJ3iQHuoYELEaDRnQQAuyiqLCR4budMwvAu2qy5g8liwlrN8nR02NZm9hzGKnHqpQFsMZC0YY41ggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:35 GMT'] + etag: [b7a347b3-b4a4-4482-a07c-257257d5e936] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076145","not_before":"1521072245","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI0NSwibmJmIjoxNTIxMDcyMjQ1LCJleHAiOjE1MjEwNzYxNDUsImFpbyI6IjQyUmdZRmhyblg2aHcveUY4NHJ6NGhkYytUZUxBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im1OVUpUTjhTbDA2XzFxRkpYbFFBQUEiLCJ2ZXIiOiIxLjAifQ.e_xyrA9K3po9VUqcsdiNx7Qnpa9QiKFyZ4Oic3FG3w0J1y7xbZdv8BR_SOK8YAzbaeXdeK9yOJcLVDPBloUF9vCGih8rx5xzX0Hee4-E_YhXo72swWKHEHP9iWDOD1L5hGMY4u_IMzHZQqVJC5zF7KQocDvabvl-wqScdN9d_qS9oGFeupDXrDMXNJ2RxkKkIpYOWmHva3UkPS9bioET1FEt-eT4Y6aX2bt9XQFYp1OTWl56eySeGC20aUgfVMQ3VZEzmBJYHtLNPHSPbYy8f-tZbX-Ku3myTTY_7f3etCCTQJcCcLVCx73S7yCg7SMEwHRX1tXY69j1TxVTC-ZIKA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:04 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a show] + CommandName: [network dns record-set ptr remove-record] Connection: [keep-alive] + Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does - not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + body: {string: ''} headers: cache-control: [private] - content-length: ['226'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:06 GMT'] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:32:38 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ebb20850-5834-4f25-b1e2-bde29504bd88","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['457'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzi9lzZqWqu0wp-pRAed0r0CGneeU-gs-m0iD7lIOOnxgn4MqDvmN1l3puI1_XMLS-3YPZ4lif0vRb17EbnQ4nL-I2lkuNsy7dekZMxIBluvCIlYPJUykd-X7aKZkp-avDmQljkYhoOmqJu_V4cEKQFESoViqcEJQVm33LIj7FSCQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:40 GMT'] + etag: [ebb20850-5834-4f25-b1e2-bde29504bd88] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076150","not_before":"1521072250","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI1MCwibmJmIjoxNTIxMDcyMjUwLCJleHAiOjE1MjEwNzYxNTAsImFpbyI6IjQyUmdZR2hLYlJjcy9sWlRPeWR5d3RscmhtR2xBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUkl0Qk1BQUEiLCJ2ZXIiOiIxLjAifQ.QwNOduhRX4m6pQrhIDnDLGBS5miohZBSYNVX091KlmXDEYwmUM0uNf1hsUFNXjSwUNlWtrd_plyqNHqgDyFqBK9FZ5wcHb8ZY55tawCJYxgdG206zjCXm5XmJ7r0Ym-y8UfPFXOyT-Vhzwm4IwLB9CQnrgPynT1G35lwMmJhxCGG4ycDxkObtMkTldVLjz48dqDLCEAM3oguzwnzu52K2wwJbTG0gXaPJZqchFAnNSBFtgWPM-61LAPbLLKKhiiSvB2mkase-wvk2lGF4CYvH7pFs_v2k8s5TgfGLma4ggGqGM3pri_ylMI0-OUETstGEYCEkZYTrHUg0l5nK6KR3Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:10 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a delete] + CommandName: [network dns record-set srv remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [private] - date: ['Thu, 15 Mar 2018 00:09:12 GMT'] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:32:42 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 204, message: No Content} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['420'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:13 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzL2shezWc7ZOI01IUOdZB1IGzuA90kP-SldXXqomDzcZL72p77jy2GoMz_goDmAp5MhX5cc5GL3t6NtAyTTBKw1Usq1-fOCyyG2RRVZDQWSzX4i276IkFLlxN1neOoQO0L5Y2_RcjIa7pxzRAiEmAjvqv2mJ_TevUcy8jCrAR6fwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:44 GMT'] + etag: [f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076155","not_before":"1521072255","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI1NSwibmJmIjoxNTIxMDcyMjU1LCJleHAiOjE1MjEwNzYxNTUsImFpbyI6IjQyUmdZSmdudkU0MjVIOW03em5GWS9yWit4S25Bd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklseFVBQUEiLCJ2ZXIiOiIxLjAifQ.P0xJ3wetx6WflJ6ol16OPxqXsC7g9UW0fJnREeTx3A6kj1ZX8kRY0bOodCDUu81TWZwZV4mWk1sar-s_yQDrCV6UGEs34tGDXcdWQz21-3Ra-dwoNc4L_nAM-kORoT7gRvpa0je45zvSL8OqvTRWQRGckXvDZJGDo1LOpNUOucmAhsh0hJafAoFYauWoH5xq0rDUiNUp5R7J72xWrcacHSiXVW0NYS45eWXzZMgFx_rZz-ZJi0V5jyTp4kFvLK5DqrnrbkXKQ-osw8fpixWdLDJmuFzwuDB0ni5yLCS5MXHNN2HdRp0s4GtWeGBrRli-3q-JIJwz__9TcQeUpVtB6w"}'} + body: {string: ''} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:17 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:32:47 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null @@ -8399,278 +2343,221 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does - not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"455f3a36-7388-4c62-87c2-279cbec90efc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] - content-length: ['226'] + content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:18 GMT'] + date: ['Thu, 15 Mar 2018 01:32:49 GMT'] + etag: [455f3a36-7388-4c62-87c2-279cbec90efc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"455f3a36-7388-4c62-87c2-279cbec90efc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzB0xwtGZv5gXqNXhDRf5hK-KxXt3JRF_DtcDhk8lStyIlsTssuF5cZjRMg6-y4jrxeamZxP3Ubl00-X3BK1jeRKyEEUQOloy-u1kOipC48r5nknJU0m1yL9cBEDzbpUGGYAjflV8CJms1O8UQBBEU2eNoGlkcmCFacebL-4qaP44gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:51 GMT'] + etag: [455f3a36-7388-4c62-87c2-279cbec90efc] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076163","not_before":"1521072263","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI2MywibmJmIjoxNTIxMDcyMjYzLCJleHAiOjE1MjEwNzYxNjMsImFpbyI6IjQyUmdZSWhMZmRteGIydDBoK1hXcHNQTm9VZVBBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklDaGdBQUEiLCJ2ZXIiOiIxLjAifQ.Fthl8zwh0hLa0vy__MBGTEdq0gFIadOn1WUqIGHyKdlWrNmZ44CERPw2ePYrN9Y6wYrSZgIuu19m3-yXFWRdCQoBoBMVtpFc8HDWK6cdUjGz-q1Cinup1s9r01FoAtiwG3Bc6laOxDOoR7Ix0tPB-YxRvG5Yn-N0tWQDz1fhDClJhQcvlmotzNIY9AD5axtftr63SWgQ-jZzeOqh17IDh2eqTA7DzwQS8CAm3CblbxCKn3g6UGJK43mGC92lp3L97wjNbXb5kpYLeho_BbAVVD0GKBHx9levf8qYPl5LjXpnfjLSr9U_gKbi_WUS5k20aKFO8IBrpOpUGq9BNk69PQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:23 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone delete] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566693685575580ddba2ca2?api-version=2017-09-01'] cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:09:28 GMT'] - location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566693685575580ddba2ca2?api-version=2017-09-01'] + date: ['Thu, 15 Mar 2018 01:32:54 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHznaNDlwYFuQxc7kUI7p3dLcxJe8_TEwJ7hQPMX3S8a8eZmPyVCcidUGK8a5VRZaXGIwuuyc97VlktCl9vtQ3_99iZ-LH1h7WHnEx41YEPos-CSLHWiodphnJMOK10DqqcmwrJyObauTDsV7BwjARBxdL4sTb6TIH_12PiyuVJ-Y8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:32:56 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a delete] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076176","not_before":"1521072276","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI3NiwibmJmIjoxNTIxMDcyMjc2LCJleHAiOjE1MjEwNzYxNzYsImFpbyI6IjQyUmdZTWhwa1dLN3ZGWXQrLzZ1ZGNLTm44VldBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklOeHdBQUEiLCJ2ZXIiOiIxLjAifQ.CqdGNsZwodhEEv3qmCLfhCsbXxDIKvA0mrD4nfPTDlZXuQoWFxTUwOlf5iGf2dzLf09b4r0iIK3v5pJTorl4-65-GtBpuWNKGs7-5a5cOvwQDo6Kh4Z_Ig4LlgicxWweHQtsxxi9eKM7wT0FWwDq0Ge3jQiXPMZisQknTVgSIoV9YtTVK-JO3O9MUdhKLbvZVzSx0Zc3rMocBRo2mWVBNLz10tWOpWkvDRQhXcOJn4w-X2y_OmzS3E6pdhfiHZEs3VP10tI4EQ9OjlmW4PbFQJk_KTCCxov40D2ueubS_MIvgMaq7yNQwWsRVkJFez3D1cTV-Bpia7CQnFVi1OFF2g"}'} + body: {string: ''} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:36 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + cache-control: [private] + date: ['Thu, 15 Mar 2018 01:32:58 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 204, message: No Content} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone delete] + CommandName: [network dns record-set a show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566693685575580ddba2ca2?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"status":"Succeeded"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: cache-control: [private] - content-length: ['22'] + content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:37 GMT'] + date: ['Thu, 15 Mar 2018 01:33:01 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: ''} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667438538733220223cb40?api-version=2018-03-01-preview'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzyQ_GUG0MsmfCu-6eNhjOSZUfL3STbUd0hVRZhi29_IDRdiDE1OUfzd7USF5BqAV8TI-Y_mbuX1DrpGJrJDUIBsYPqn8FhGAb3WgvqvwdCsYGcdUQrEZ_ZsKH3EVf3ZQD5AoOVG6jx-0DrHCDGxoQdL7MPpB9SA9F1H252hNWrwogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:33:05 GMT'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone6365667438538733220223cb40?api-version=2018-03-01-preview'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 202, message: Accepted} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667438538733220223cb40?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076181","not_before":"1521072281","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI4MSwibmJmIjoxNTIxMDcyMjgxLCJleHAiOjE1MjEwNzYxODEsImFpbyI6IjQyUmdZRERYRDYxWUxWYnFaWjR1eFhwMVcwQWJBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVnSVpneWdWbUVTZzdDUFhJRmdBQUEiLCJ2ZXIiOiIxLjAifQ.ZwZfBb6-J-C7gItL5_UAOdMMej4Ch8G0T2iv2SyxzDnSiUdcb7hs5RySxEyuc8W74bGaG-j5BSpb0F0jlmADsDXpJTSJpxrqfIm8eIzg2F4RV0XdaTaYqZqJvY4tDeMDLUBrEeJURD_byDnD2rsLTAXv8sK865Iv7p-8AcCPfOYdD3SGbKfByCFKKcpmkvvaBXkEPenVEByCSmn3a387qYfpQilSP7AwTSqHDHfuqqpnqoD_3-f85NMNtv7-D6AY8zph-T9oFgeBrWSxCSvaBXTypbl3ZS6zRtic-LJpivbx77_Koz03UGFDQLTQ4f8k5xduOZmMTWnGxEvpfQXHhg"}'} + body: {string: '{"status":"Succeeded"}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:41 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:33:10 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null @@ -8683,21 +2570,21 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:09:42 GMT'] + date: ['Thu, 15 Mar 2018 01:33:15 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TWkFNTFFGTU1MTUlURDdaR1VaSEU3WFJLUlIySFFaNXwyNTRCQkM3MkNGMTA4NzgxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TWDZWVTI1WVE2QkI3UzdJMk1WT05PSFVNRlhDRUpSWXxGN0I0OUFDNDZEQ0I5NzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml index e8c7b8e8313..e5e6d11d8e0 100644 --- a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml +++ b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml @@ -1,69 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:47 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzk2TpGcsgfA3F0za_vN1b9mPwezEjt_tERoCYx0RklcUfdm9sRfyOoH_SbNdma-K3PAttEmtC1MHhFcbAFp78fGgR2udVeHPwAQ_o_fYecv-wiHi625fAcbYNrzIBh8wpt3sG5_e--6BWh12xC4hQqht7rc_rVoGmeDbMjPHVzoMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076195","not_before":"1521072295","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjI5NSwibmJmIjoxNTIxMDcyMjk1LCJleHAiOjE1MjEwNzYxOTUsImFpbyI6IjQyUmdZT0NLRUxBT0RNazBMTFV3eVBEMEs5NE9BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjBnRzhMTzV0ODAyUklMZGVUd0VBQUEiLCJ2ZXIiOiIxLjAifQ.j5uAPQhAU9MSC8QH2-NcmtajvTr0leZdFMm4U1u-MvdZz9Y_6oHWROzSmiblbwPCqN665uGMThhbzmFHb8WsUd7VQbnibwBDHjDEIGHyavYH-q_5d9dE9BQxpQSd7X12Wzt60gPt4OpoJzQflpnyBCAcpafdGUf3oHoKbrXS7SeBvf6VMoNdmsprNWol6rjVENGMcqGW_Jzs5yt9_icsJ-W4kznk3E1Dm-V8H94C6Vh3obBui6QDEEkKdpXlV4aWoCQ6rhK0Pc5dAfMJt-EI4ogrxrG0MsZ6q7YHEqYcqpPVm25pkHceF-ZltOmn6CIj_mVmVuoKpdAUpiRfB5sndw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:54 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: '{"location": "westus", "tags": {"use": "az-test"}}' headers: @@ -75,89 +10,23 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:56 GMT'] + date: ['Thu, 15 Mar 2018 01:33:20 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:09:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzsjKNvU8E5VDj__7ywQX7eSTq6ZWMifQzCA8hdt2GM8ac5Dv85NdXBwEZHEYTO9MOePK-n1UhUNkyV634NK1M1aCSmXnInK9kEsA3gpNhKQ3rrfWWI1elFEJBvFczZL46LtCKeq6QlmVAhaA8Hu5RTOPfKX7wjvbhEAj7ZvEObIsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076208","not_before":"1521072308","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjMwOCwibmJmIjoxNTIxMDcyMzA4LCJleHAiOjE1MjEwNzYyMDgsImFpbyI6IjQyUmdZREFJUzF0WWU3YlhsdU9sNUV2YmJUWVBBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Iks4Z2VVbHFtd0VxQ0RfdW5leHNBQUEiLCJ2ZXIiOiIxLjAifQ.asET4qYXJe-F2y6Ny7CQ_7VcJuQhE8fkfuzwdIDGrp0G7IShnhsoAUszO6gf_4zu1AVtJIe8SjAbD7tUxlIK3D_wczNydzm7CF8fWxY4CJoGdL7aMr3So9wr8TYynkgkDd9VCN1XVFBf8Lf-Tsn_7bW-paf_NO6-d8vnjp5QokUpzAFAYEW9Yguwlex_b71qC_Bjx1kc-KEGtlVWff39dfse0wdqbOx2bt_ICtfKn_RjGajpx3M-No-mf0Mo5IF2b32hsYeqHvZgSxyDhQFSgoJjEeQtUY8HQnvMT_51UliLTKD8auEvnPjW52BebnrvRn23ZKJPs92bDyrLcbO2rw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:07 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: @@ -168,89 +37,23 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:09 GMT'] + date: ['Thu, 15 Mar 2018 01:33:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzivwypTne__QQ-q36BqJdkU5OL3FYWLICgxCi3GjuK0kexrdAttfDNp7j5PUqa0ELulJXubclTesdK7hNlO3Xzfgr4nW77rk3jKUTox6WXrm-oRUYTEPVaS1sk1BXbfuKce_xUMTEZsPdx-xj2uJIUkz4tA87X87S_v7lCRThFpMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076218","not_before":"1521072318","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjMxOCwibmJmIjoxNTIxMDcyMzE4LCJleHAiOjE1MjEwNzYyMTgsImFpbyI6IjQyUmdZTEErcUtUSEVuM0w4cXo2cHNzRkxwOWlBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGFPQmNBQUEiLCJ2ZXIiOiIxLjAifQ.XDeZVbDm-mj5U7c9jNgFW44dRgDX9aSZ4jdYf1SesbTaJLIp2d089ziPnGufW3SFL2WKzDh-y-1H5dCoEHb0EnZTVvlcoun5A8cQowyvSd8X8YZ26vP16lvENNxmyfOKD2UsnX6WJ9pw_ZXM2T9vdycXhammP5DP0tG_5UWOjXHDJpBHxyZp9AfvdwXIm7WqF0tZ4hybIjnhE3XsnihQ5eUNhnvqH211jrW5NgWHebOH6V9ocZGw-AR4IE0b06iFd9kLoYUXpW8Nmb2AJqoHu2lMNBZF214rnlT04BiRrfk4GuZBPtVqJ6RddfIH_H0accjcQftkg0Sl2kPEXNxbng"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:18 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' @@ -262,100 +65,34 @@ interactions: Content-Length: ['123'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ - ,\r\n \"etag\": \"W/\\\"1ba5f175-4416-4ba1-8a3c-a1afc3300c7e\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8bdf8143-5327-4950-bf2c-13512837cf38\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"12e330ee-e63a-4642-afc0-e07ec1b397c7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"9da656a9-44e0-4259-a0ee-fbc44d4ca047\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ : false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/12c0594c-57d0-4f65-9369-bbb61bc730af?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/301254d6-dcbf-49fe-ac6e-01b7917b8ffe?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['770'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:20 GMT'] + date: ['Thu, 15 Mar 2018 01:33:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMykv0nzAzWYjDqw2PqsT6sUAM4GMSYpHkMAjBDuFU5rAhMERDRB8TDxcyGypsSv0JmAK5UW0kkAXpONqdRL228zUiuoPnImbgH_Iwgkm2a_iqeTlzvlIqppeR9McodFJWiMPVLKD_cE33Ekle8Ql7ngoyM0EtvcWvKrESUv9z0IgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076233","not_before":"1521072333","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjMzMywibmJmIjoxNTIxMDcyMzMzLCJleHAiOjE1MjEwNzYyMzMsImFpbyI6IjQyUmdZRmdySFMvOTUxM3YrV2RQYnlyTFhKb3RDd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGF6UmdBQUEiLCJ2ZXIiOiIxLjAifQ.GAftsjfLtb9uE-AjNxMh_nBZdPaN5Uf6NoYecBTRopdnyGkjKh_PZBbBiQfKjzPyjcB56DtGlFS5ZpxDylewwg-kUW-cybfgcCoRL3DaUUO69uOS1mZkg0BdYxuuR9QX-9gkWMbY8wu6QURz9JoHNL10Ffb_BJN40nK6Fwzr9X7qu9saxqBBPPWYwJbJ1f6MIX3Rp9pv_qinLmRhB_4AMZWQYIu5hLGpm5Sqg01qJzGxqT4Wmac6pje6R5PnqOcTznUTXiSQ55jFTHprO3fDsngRp1wFDYOCEIueeN22iOkG-ofEm8BHUVxn4aCOOtdEQwXQJOQ3j8GEt9ZyTOQ36A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:32 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: @@ -365,17 +102,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/12c0594c-57d0-4f65-9369-bbb61bc730af?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/301254d6-dcbf-49fe-ac6e-01b7917b8ffe?api-version=2017-11-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:34 GMT'] + date: ['Thu, 15 Mar 2018 01:33:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -384,72 +121,6 @@ interactions: vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:35 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzfm6TMk17NcmSI4eQU1EOLxxBMS0X0gEg0pJgI2Y3fy-3e-pr-fKdkYI0tn1qwtpKj2fgttuzcQQiDWgShDY5RzSFppEBDlOuORv25w9_q5m7q3ONGIxnaR32EtrnLE2aQvLTCrLoFTVfF0jyecWxUm6VPr-uLbHX_9inrwpdPosgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076242","not_before":"1521072342","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM0MiwibmJmIjoxNTIxMDcyMzQyLCJleHAiOjE1MjEwNzYyNDIsImFpbyI6IjQyUmdZUGplZUs5dFNVRHloT3FsNS9UU3YyOElBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNNZWZPOHBTRFVtQk1fOFNfUndBQUEiLCJ2ZXIiOiIxLjAifQ.EAHHZfEGJeyxdYMZQ40FYZUu-5S3JaoZMtH8DZY5WRaW2PAqZOuVy60bHxmZG1H3ylzaawzLUU8ggB4LOxW1xmEiFE47CA0_xplxvwIZDmWFmr21R_4nmr_T_pyw8dk2NFHzqpG4bhdsrQRTMYglsnjHorws-yYQcp7ugEbmnxJbjZdsiRg0xey1bzdvKm0-KFrJUHPCMlAJG9kzmkuokDjJdCtky-Clb_uqTrnWY8P9UeeCkHv4RP4Ls9qOpzSDpMKONJD96lMHjTzGElLSOyV6YJQ9ubZiExHdzVGLpfVQcv4J4_7USiRIkaQFd4ewHzDj97e3vTcfliQYMIni9g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:42 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: @@ -459,16 +130,16 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ - ,\r\n \"etag\": \"W/\\\"a7325933-4a54-4b2a-be85-9de2afd63e81\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e9c797b6-ee37-474c-8e1b-d5176bfb0646\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"12e330ee-e63a-4642-afc0-e07ec1b397c7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"9da656a9-44e0-4259-a0ee-fbc44d4ca047\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -478,8 +149,8 @@ interactions: cache-control: [no-cache] content-length: ['771'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:44 GMT'] - etag: [W/"a7325933-4a54-4b2a-be85-9de2afd63e81"] + date: ['Thu, 15 Mar 2018 01:33:35 GMT'] + etag: [W/"e9c797b6-ee37-474c-8e1b-d5176bfb0646"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -488,72 +159,6 @@ interactions: vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzVaJcyrWSpy_z23P7Ba0dfaDZGA1j2-_v1CivSc5l-NGeogWeQczD20LzsUFjUzlliTzyV2U0MoW7fvcanmvNkLK5GEjH6H2h6S9ZJD09YH5On46I4KLmo71EYfusNDW9tDVoGdXSZf91_PYaM3o36sZ_xUfu-0fVOaJotNJNSsEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076250","not_before":"1521072350","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM1MCwibmJmIjoxNTIxMDcyMzUwLCJleHAiOjE1MjEwNzYyNTAsImFpbyI6IjQyUmdZSGdmNFhwWTZmRHh2Sm5wZTZZL3VMRzVGUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNNZWZPOHBTRFVtQk1fOFNLQjRBQUEiLCJ2ZXIiOiIxLjAifQ.VsdB_-rCSRd4sfpAK9UQqOVYOU0EFJu9mogpr4VpzYsj_Is3tkIOpMoM3ioW6XdZmLq0XwMfO1V9Ts7tjyvE4vORylbOApjYyHJW7jPMEwSl1dnU7GcTqZpWcRh8m83-cvUe6TmOdca2O70KFcMiRQhUDy7Le4qcgZZqSDfXpDH6l-r0gHEPHA9xtrAC7MaJAtqXighCkL0Du6VA7QaGr13uIiOa-qxKWCHkuuKmqkN0ia3u4DsG_NjGyCQQIJa-CKj6qG3uIdXhCRY9U7Na3KVewTUifpQxkj61e-AS-LbtYQFkJjhHGTlQSkrB6RVnIeT1Oohu3hJheD0Pq26I9g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:50 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: @@ -564,89 +169,23 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:51 GMT'] + date: ['Thu, 15 Mar 2018 01:33:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzgGWOspiNEqMj0_htxRwhPbLS0a7ZAsxE-c9X9QuazRDVveaU4oJsl5dmYoI_Qo7s6BwfPE9vWPBTcfwT3PVmG8FIt3bTlSTM6cfmgeEimSy0K0hVjzBTnKj12M7FdIlng6HvUhuSDkHExjH4FmV_y1GFsKmWS7LErvUFFdkYZ2YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076258","not_before":"1521072358","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM1OCwibmJmIjoxNTIxMDcyMzU4LCJleHAiOjE1MjEwNzYyNTgsImFpbyI6IjQyUmdZSGdmNFhwWTZmRHh2Sm5wZTZZL3VMRzVGUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3Vmp5d2dBQUEiLCJ2ZXIiOiIxLjAifQ.tXV0T72yv7LBbxF_nhyNXTucZBAb2wEPNdiaCG3wjgNP_B3pc2Dqc1ViXsdxoTQQXu3OX_CE1EOpc7yBkLeLBEWbnfXeqsj5WbzF_7TDpBsVmb_96BK_5ojJ8UBw2TCWlek-sWxw1KgVe6-uGU5oIRWnFVWSYrCkunnhhtOKLAOBt1U-yv4Va24vGl8nj0nSuTb5MbRVNxUHbk4Wat2VCjRQSK7QUuviIlRlYIduFG6LfSXPmmgQlMrojdfjJ4DseEfLeAquZjV1o8m-ot67qvkIj1WZR2a_3ohbYWUTxEmMSbBSANy6nggTIdzz5AX2DhlTOL7zCcGJ7zs20gr8xA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:58 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' @@ -658,100 +197,34 @@ interactions: Content-Length: ['123'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ - ,\r\n \"etag\": \"W/\\\"1dc88bdc-f181-4f63-b5b9-e4b3e892d65a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4b0b5c00-f600-482b-b0ff-73b8f7cf572f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f86d12d8-e6b2-43b6-8568-dbcc71c51047\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"3d162e4f-bab3-4605-a0af-45492c3cdeaf\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ : false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/89f03c31-6f13-4100-ada4-e0c6aa13cbee?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8fa6702d-14cc-45f9-ad24-2b643a88fa37?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['770'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:10:59 GMT'] + date: ['Thu, 15 Mar 2018 01:33:41 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzU8ZDUtWeSn726W2_eR4o6mAuZ9X4DlQfkxDpFEv1I4ZSVmkUFJTtyrYXQE9Gwx4KjSw4E06GRqRpXfajKecIE084KxQtbDlOAlhszzS_jHoJnW-hKfd_2UsAGjAbquQEOYEIFszFxNFJdBzGexm_z1F0BGfogGSBLt-gn-3HpPYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076272","not_before":"1521072372","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM3MiwibmJmIjoxNTIxMDcyMzcyLCJleHAiOjE1MjEwNzYyNzIsImFpbyI6IjQyUmdZSmpLNGRDdzJxNW1pYXRxL2I4WFphVkxBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjBnRzhMTzV0ODAyUklMZGVWd2tBQUEiLCJ2ZXIiOiIxLjAifQ.R8JTBWAzOrSUOkR6Me2jY5nkGpIC34-Q4Qrqu31RkT0SgPxIHUYnujzbcT_no9quQnvwVSv3Hli3FB0IyQSXm4mmJsTgh4WejeFCH0M2pnyK0quiZzY-6boNi0wgtndqpveFsknGYWhwPm6oEZgk4ZZhxRXtaa2qP2qEkL37M7l5EJwudbei-TVGStKX0sur5fqr3GO8Tuk6uEhWT0ZA2Mh_aXTRM9ocPcjQpu1B0pXR4sdkbkBLOlK31LzBlXYF_LJslgP6OVEgfQOX273DVij2T57T84kk791HnaqXZip8ZLIpgOpoYRH2S-RTa-nWI97rlqtffTrEuhOZk9DE3Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:12 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: @@ -761,17 +234,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/nrp8/operations/89f03c31-6f13-4100-ada4-e0c6aa13cbee?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8fa6702d-14cc-45f9-ad24-2b643a88fa37?api-version=2017-11-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:14 GMT'] + date: ['Thu, 15 Mar 2018 01:33:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -780,72 +253,6 @@ interactions: vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:15 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzfStI0RkQBjj67P0LTikOPrmW38eQkFjcCfJYLmFIviANXn0mbdDsV02GYaIt0APoZlCX7Tls4ainDuFNUJVOdqp_6ClTGFYnR-Nb6zKBKzElvqR-rtjRY3QSxZD7vo9Jnno59rP6zPEOUx6mRy0VdlLxZIv1srfASj7F8YPFVc8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076279","not_before":"1521072379","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM3OSwibmJmIjoxNTIxMDcyMzc5LCJleHAiOjE1MjEwNzYyNzksImFpbyI6IjQyUmdZRENzbUxFNVlQT0xyU25ucGlmcTMwMytEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGF2aDRBQUEiLCJ2ZXIiOiIxLjAifQ.mtdqiIkqXwbfFMvIMMynBGd_llonRHRAQuP-gFLNMp4Bl3z8ALvC7zfCcoVoS0ZIz8sWwu8ksCj4TrC0PbQbDRKvw0Db14kwZZTT9Bk_oWSZkyQy-qCzkzQ9qIETujICAhFPtWnPr747aPlJmIs6LBQu7opqBiJOkGgB-MV0CX1ctW63VRZV_k8kfXTkQxEFcsQQgTEcs5edYyNZDGfsmba3j32gQCh2f37_sPojCdY974sW-tsXdjJs_z51oZNwQLe9eX7kc0vX3PB650CSdich7AnseAnOWD0egPchOqGAvhDs2UtuhC4alcitOdoohTMagebUnasB1gX3nFVNTg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:19 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: @@ -855,16 +262,16 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ - ,\r\n \"etag\": \"W/\\\"31095c7a-844a-4288-9317-da41d4cbc2c9\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"20d40e40-c513-4589-b504-423e6d74887f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f86d12d8-e6b2-43b6-8568-dbcc71c51047\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3d162e4f-bab3-4605-a0af-45492c3cdeaf\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -874,8 +281,8 @@ interactions: cache-control: [no-cache] content-length: ['771'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:21 GMT'] - etag: [W/"31095c7a-844a-4288-9317-da41d4cbc2c9"] + date: ['Thu, 15 Mar 2018 01:33:52 GMT'] + etag: [W/"20d40e40-c513-4589-b504-423e6d74887f"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -887,69 +294,63 @@ interactions: - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone list] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cojacotest\/providers\/Microsoft.Network\/dnszones\/cojacoexample.com","name":"cojacoexample.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f0e-0dfdb3fcd101","location":"global","tags":{"department":"HumanResources","importance":"Emergency"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":4,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/jonune-pinger-rg\/providers\/Microsoft.Network\/dnszones\/jonune.com","name":"jonune.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2fcd-6d879726d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1.karthiktestzone123.com","name":"child1.karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3add-f115b43fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1karthiktestzone123.com","name":"child1karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8cab-9601a63fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/karthiktestzone123.com","name":"karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-72b8-5bafaaa4d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/vladtest.test","name":"vladtest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc07-5f972e2ad201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.asmx","name":"a.asmx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-64eb-63a8f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.msgx","name":"a.msgx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0076-784ad162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.rules.test","name":"a.rules.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b305-26eae362d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.skin","name":"a.skin","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-59b5-8941d162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.svc","name":"a.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d3fe-87fece62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.aspx","name":"c.aspx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3920-5fc0f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.svc","name":"c.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36a2-4db6f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/karthik.com","name":"karthik.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f92-66b1c962d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/test.testrules","name":"test.testrules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a9d0-5a5dcd62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1034\/providers\/Microsoft.Network\/dnszones\/onesdk4979.pstest.test","name":"onesdk4979.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b767-5791d02ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1046\/providers\/Microsoft.Network\/dnszones\/onesdk6026.pstest.test","name":"onesdk6026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c3a-32120448d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1069\/providers\/Microsoft.Network\/dnszones\/onesdk724.pstest.test","name":"onesdk724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-89f8-fda5082ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1110\/providers\/Microsoft.Network\/dnszones\/onesdk2419.pstest.test","name":"onesdk2419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4c45-bbac8452d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1155\/providers\/Microsoft.Network\/dnszones\/onesdk8597.pstest.test","name":"onesdk8597.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0b4b-cd88ce53d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1269\/providers\/Microsoft.Network\/dnszones\/onesdk1935.pstest.test","name":"onesdk1935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2581-78c8f140d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1597\/providers\/Microsoft.Network\/dnszones\/onesdk7046.pstest.test","name":"onesdk7046.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bca1-ecb66b3bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1616\/providers\/Microsoft.Network\/dnszones\/onesdk7626.pstest.test","name":"onesdk7626.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-22ec-d6c51639d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1620\/providers\/Microsoft.Network\/dnszones\/onesdk2799.pstest.test","name":"onesdk2799.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4185-f1194d38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1732\/providers\/Microsoft.Network\/dnszones\/onesdk4494.pstest.test","name":"onesdk4494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05a8-5a00b64cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1906\/providers\/Microsoft.Network\/dnszones\/onesdk1575.pstest.test","name":"onesdk1575.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bace-07c7452dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2066\/providers\/Microsoft.Network\/dnszones\/onesdk1064.pstest.test","name":"onesdk1064.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4864-748c7537d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2526\/providers\/Microsoft.Network\/dnszones\/onesdk146.pstest.test","name":"onesdk146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1389-cbd6e235d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2773\/providers\/Microsoft.Network\/dnszones\/onesdk6501.pstest.test","name":"onesdk6501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e5df-1fe72b56d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk5047.pstest.test","name":"onesdk5047.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d34b-f8b47446d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2916\/providers\/Microsoft.Network\/dnszones\/onesdk3106.pstest.test","name":"onesdk3106.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0caf-f0f69154d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2985\/providers\/Microsoft.Network\/dnszones\/onesdk5810.pstest.test","name":"onesdk5810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c661-fe870753d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3150\/providers\/Microsoft.Network\/dnszones\/onesdk4105.pstest.test","name":"onesdk4105.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-58b9-f3fda234d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3153\/providers\/Microsoft.Network\/dnszones\/onesdk6890.pstest.test","name":"onesdk6890.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9f5-d9cf164fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3702\/providers\/Microsoft.Network\/dnszones\/onesdk4390.pstest.test","name":"onesdk4390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e717-3529e04fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3740\/providers\/Microsoft.Network\/dnszones\/onesdk3868.pstest.test","name":"onesdk3868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-42ef-30d3102ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3930\/providers\/Microsoft.Network\/dnszones\/onesdk7182.pstest.test","name":"onesdk7182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f5b6-b9a6604ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk583.pstest.test","name":"onesdk583.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5fad-5e93b436d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk453\/providers\/Microsoft.Network\/dnszones\/onesdk9431.pstest.test","name":"onesdk9431.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc5c-80257b2cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4907\/providers\/Microsoft.Network\/dnszones\/onesdk8724.pstest.test","name":"onesdk8724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fff3-57db474ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4971\/providers\/Microsoft.Network\/dnszones\/onesdk5149.pstest.test","name":"onesdk5149.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-54d3-0e15a83ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5110\/providers\/Microsoft.Network\/dnszones\/onesdk9387.pstest.test","name":"onesdk9387.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-76ae-88857f4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5394\/providers\/Microsoft.Network\/dnszones\/onesdk5675.pstest.test","name":"onesdk5675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9c28-5ea1bd41d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5453\/providers\/Microsoft.Network\/dnszones\/onesdk9910.pstest.test","name":"onesdk9910.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-02ff-3947be4cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5626\/providers\/Microsoft.Network\/dnszones\/onesdk3052.pstest.test","name":"onesdk3052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d6fd-f87ea950d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5752\/providers\/Microsoft.Network\/dnszones\/onesdk1764.pstest.test","name":"onesdk1764.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c82e-4cb1922bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5945\/providers\/Microsoft.Network\/dnszones\/onesdk4636.pstest.test","name":"onesdk4636.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0769-0da02356d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6005\/providers\/Microsoft.Network\/dnszones\/onesdk4419.pstest.test","name":"onesdk4419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-41d2-eb13043dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6140\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-418e-1615a59dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6359\/providers\/Microsoft.Network\/dnszones\/onesdk4630.pstest.test","name":"onesdk4630.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c1cb-e10e6355d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6657\/providers\/Microsoft.Network\/dnszones\/onesdk5052.pstest.test","name":"onesdk5052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ae24-e0a39c51d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6702\/providers\/Microsoft.Network\/dnszones\/onesdk5546.pstest.test","name":"onesdk5546.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e621-38c9164fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7002\/providers\/Microsoft.Network\/dnszones\/onesdk8767.pstest.test","name":"onesdk8767.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4bee-01812240d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7310\/providers\/Microsoft.Network\/dnszones\/onesdk8039.pstest.test","name":"onesdk8039.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b569-bccdf140d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7432\/providers\/Microsoft.Network\/dnszones\/onesdk9736.pstest.test","name":"onesdk9736.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b95-e57b2b4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7671\/providers\/Microsoft.Network\/dnszones\/onesdk5367.pstest.test","name":"onesdk5367.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dea3-6685a950d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7960\/providers\/Microsoft.Network\/dnszones\/onesdk9256.pstest.test","name":"onesdk9256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2947-b8906c46d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8189\/providers\/Microsoft.Network\/dnszones\/onesdk1990.pstest.test","name":"onesdk1990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ee0c-dabff44bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8194\/providers\/Microsoft.Network\/dnszones\/onesdk9649.pstest.test","name":"onesdk9649.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8c03-5998733bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8405\/providers\/Microsoft.Network\/dnszones\/onesdk846.pstest.test","name":"onesdk846.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e92d-d3233747d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8706\/providers\/Microsoft.Network\/dnszones\/onesdk5873.pstest.test","name":"onesdk5873.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c78b-e99dff52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8876\/providers\/Microsoft.Network\/dnszones\/onesdk7912.pstest.test","name":"onesdk7912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f503-62ec7c52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9274\/providers\/Microsoft.Network\/dnszones\/onesdk2187.pstest.test","name":"onesdk2187.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e6ff-5fd41f35d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9476\/providers\/Microsoft.Network\/dnszones\/onesdk8662.pstest.test","name":"onesdk8662.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fe43-1f1a043dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9505\/providers\/Microsoft.Network\/dnszones\/onesdk9266.pstest.test","name":"onesdk9266.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f86e-f90c0448d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9530\/providers\/Microsoft.Network\/dnszones\/onesdk2511.pstest.test","name":"onesdk2511.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-98de-dcf1ce3dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk4780.pstest.test","name":"onesdk4780.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f939-1816ce48d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9728\/providers\/Microsoft.Network\/dnszones\/onesdk7582.pstest.test","name":"onesdk7582.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-76b8-9bc77d37d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9954\/providers\/Microsoft.Network\/dnszones\/onesdk9424.pstest.test","name":"onesdk9424.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0bcb-2fa4234bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk996\/providers\/Microsoft.Network\/dnszones\/onesdk7788.pstest.test","name":"onesdk7788.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e53a-fb2b7b2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}]}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['36767'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:22 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzv9wBbyEp0Jt7-M2N9XEKJYHn4zte7fR-9v7RS2JbHQzZOYUSJF_8I7ha1Xz1F4wwbVSfiiC8oyUqZOMr6ckiNDxRn4GvHsWlKu0HjMrN6HP1phjSZeNSUt_12ijvc6ay8bXT0ZdsEWe3zjpipelBBmwL_gpFOn0Sd_e9MAWPZrcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:33:55 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: 'b''{"location": "global", "properties": {"zoneType": "Private", "registrationVirtualNetworks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], + "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone create] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['537'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076287","not_before":"1521072387","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjM4NywibmJmIjoxNTIxMDcyMzg3LCJleHAiOjE1MjEwNzYyODcsImFpbyI6IjQyUmdZT0M1c0diZG45UWZlaGQyU3gxOXY2Q2FGd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGE3QjhBQUEiLCJ2ZXIiOiIxLjAifQ.kndIUEl8ZbWP6ZBbNJTuitFFDVI1N9oY2vMwD_vay7Su_84U-BS2EF173AaXF0fWG90_3gcAgyGfzQol9Nug--un92-MOxb-EyXw80_kOryLY8mnfE3m-jCqx4e6-jnAHKfKZbs52ZsMvt-mKPE02QkacvWqobNOZSG0n8lcUQBcILvBzHw1c_Mb4TtzzlpNOuJ3qti0VmkDYbe1MvfuwamM-33gSFRQME4Hwv1djUNbYl7WRoljmknoXj1CIkRsca0cK3xa1Nyuo1cfyis87K6V_5ESfUHKMOhGrOjOrIb1OJA3eSsx5qS2BPsyP8olmm6bSTwvOSUHYKvWxbcAGw"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:26 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:05 GMT'] + etag: [00000002-0000-0000-2707-43b4fdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: body: null headers: @@ -959,7966 +360,2165 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrandomgroup2\/providers\/Microsoft.Network\/dnszones\/armmove.test","name":"armmove.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5c2f-45e7b4ccd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg11366e27-2af5-4dd1-9637-aab4153031c32\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","name":"fetestszonename.test-5aff546f-1003-448a-a4d8-c0b5dd4d8538.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-7f28-2b68bc57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1a0a1f60-91f8-4868-867c-935e097256732\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","name":"fetestszonename.test-ea41c932-0a6c-4950-adad-30e199cce97c.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-887b-1f77915bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1de4d643-137f-45cc-b880-c5f6b81456902\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","name":"fetestszonename.test-e5eaa924-5894-46f5-8465-dd7b546679b9.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9f40-e14be957d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg1f97cd1e-c59b-480c-be67-063210865ac8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","name":"fetestszonename.test-1db20ddf-1b1d-428b-83b9-7f91e84d422b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c54c-e6148c58d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg2964cd5a-0c75-43df-aadd-056bf241f6f52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","name":"fetestszonename.test-572f839a-eb6f-43e0-a1aa-f42f1f517108.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-71ce-92aa7058d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg345e33d1-e3fc-45be-8ca3-95c3030a8827\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","name":"fetestszonename.test-9f4b5753-0fd4-4ef9-8582-2fcb903e5da8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-334d-c2272e36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg350585d6-5c59-4a68-8d00-bf272faae66b2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","name":"fetestszonename.test-eb6ac564-4dce-4200-b768-36af6e2b9aa1.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-c017-1dab3959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg3a95092d-6084-4715-bed0-6de9880362a72\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","name":"fetestszonename.test-9d1fe88a-7332-4e28-926a-9a4f6a7476c6.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-cbf4-7af40258d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg451cf024-71be-414a-98ef-e060dcf34e8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","name":"fetestszonename.test-8c1592a2-a3cc-4214-b509-13b3becf9daf.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5411-11d957a3d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg45ee12ac-fa5b-4df8-af0d-57a81f489c0a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","name":"fetestszonename.test-13d2cb2d-14d4-4837-8db8-ee7d477a4f6e.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0e05-88375559d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4b050ceb-7c51-46a5-aa15-0b24caa54908\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","name":"fetestszonename.test-947cf18a-6db3-4e4c-b61f-5ea05f101cdd.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-93d8-4904e6f0d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg4d6686fd-d01c-4be4-acb0-e6af2040a475\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","name":"fetestszonename.test-71ba4bc4-39dc-4e28-b4c8-f853f271b32b.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e435-d8106922d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg5d95213a-3b09-4f4a-9bd5-b8f7535b3fb8\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","name":"fetestszonename.test-a525ea52-8eb0-4f02-8620-9cc5a127bceb.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f036-b07cf135d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg652edd88-186f-4432-9286-d7f048a0e7f82\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","name":"fetestszonename.test-fd5796c2-c92f-490b-afbf-e43af19f7214.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-6b14-26a0145ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg664c931e-caf0-4b67-89e6-9526a64c579f2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","name":"fetestszonename.test-028879a2-373e-4fd9-bdfa-cc101948c492.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-76f9-46bd8158d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg66628ec0-570d-4126-889b-359bbda30731\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","name":"fetestszonename.test-0f1623ab-2571-4723-b057-07aa2e16e0a5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-de04-401d68abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg69881656-d2f7-49b7-a1b2-2979e8beadb12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","name":"fetestszonename.test-4b002e4a-61bb-4106-91a4-6ebdee80cde3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-22f9-5c49ad57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg6bd7dc7f-beb0-417d-a718-0e9f7835b985\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","name":"fetestszonename.test-2afaa1d7-29eb-419b-93bb-80d8779ffc67.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d12e-6f828fc9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7276389c-6a59-4177-bccd-83ac96ea5ae3\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","name":"fetestszonename.test-3f35ec1e-0264-4dda-9da8-768a2fc4cffc.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-926f-a5686621d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg74147c6a-238e-43ea-88cd-b43b20ab5713\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","name":"fetestszonename.test-6988c68a-9ade-44d5-af50-cb808bae904d.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9255-78c02de9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c46cb75-0d01-4b20-ac1a-398c49b55c212\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","name":"fetestszonename.test-6953c7bd-bc77-402f-b6f4-eedb595f8da3.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-df38-b2af6978d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg7c89c527-fafb-436f-bb97-739f7ce3bcfc2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","name":"fetestszonename.test-22a7acf6-a3b8-47e3-bef3-4d71662c0db8.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9c9a-ae874959d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8ac60837-ce43-43e7-805c-e70cce6f83a12\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","name":"fetestszonename.test-df63cdde-e5c3-408d-8d60-55bac7cb24af.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-1b60-65e6db57d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg8f707ac9-7b19-46f7-b8da-acda6018f861\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","name":"fetestszonename.test-db418789-c452-4765-a277-e06d969a92b8.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-caab-1330706bd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg935c1881-65b2-4a29-ba07-656e85523d54\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","name":"fetestszonename.test-6d40f8c0-820c-4525-b9ef-92ca33f57a44.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1a33-1f2fbe33d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverg9e1077b6-a187-4454-913a-dec03c9eaba52\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","name":"fetestszonename.test-b7a172f2-aabe-4ee9-9e4f-d9cbf0a1b203.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-49f3-80c6a35bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmoverga4a64851-466d-402a-9ca9-6108cb6b4d8d\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","name":"fetestszonename.test-c7a5c0e1-c7b8-4774-98aa-5672301b5886.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f1f7-2744d148d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbe2e87b4-1d76-429a-860e-6d796e9e340b\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","name":"fetestszonename.test-99a483bd-ad8c-444e-b977-c0951df2aba2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-00b1-2bdad9abd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergbf472a78-3508-4863-9a65-96795acfb1e22\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","name":"fetestszonename.test-cc4f4049-2cf0-4200-ae49-10fab5a69170.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-ea7d-d0f9eaa7d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc47a312c-e8d6-4560-9bef-6797c0fa48c6\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","name":"fetestszonename.test-f84850e4-80d9-4888-92fb-827d00b513e2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cb07-5d5cac6bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergc79de5d0-3a46-42e3-8daf-7dcee973d62a\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","name":"fetestszonename.test-c38794fa-4c7e-4e42-a4df-df2377d3e6d8.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4326-ddbd256bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf339632-52ce-43ca-ad38-e3fe3512aefb\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","name":"fetestszonename.test-cfad6629-0c46-486a-9521-5daa164b75df.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-803c-5c881e5ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergcf5472ae-78af-4e4e-8856-a4629c65571e2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","name":"fetestszonename.test-3d0603d6-ba85-4d28-83bb-dd8fae34aed3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f1d-e93c415bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergecb52982-7c98-4367-a6ed-e2830e11b79d2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","name":"fetestszonename.test-0de38a05-5f28-47cc-8d4d-5a14c1129120.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-9b25-eb214257d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergf019a24f-04b9-48c1-aa03-3d3e45383f30\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","name":"fetestszonename.test-311429ec-af68-4567-84d2-098e44a8d780.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1349-3fc637c9d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/armrmovergff39196d-2180-4984-b5e8-12246e00de9a2\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","name":"fetestszonename.test-a919309c-2d77-4360-baf8-d470fab01d43.com","type":"Microsoft.Network\/dnszones","etag":"00000001-0000-0000-d0e3-3596005ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_dns_zone1_importswmwoxwfjngvixnedygkjrr4ts527ofeswl7ac7oi3smnqmfuj3egni\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-79c5-56dab0b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/commontestgroup\/providers\/Microsoft.Network\/dnszones\/hitesh.test","name":"hitesh.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a431-27edb490d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk.com","name":"karthikbulk.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4d6-bbb8e5b5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":38003}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthikbulk2.com","name":"karthikbulk2.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-aa47-222eeab5d101","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":10001}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/dnszones\/providers\/Microsoft.Network\/dnszones\/karthiktest.com","name":"karthiktest.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-6e4e-118a22b5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3130-70c348c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/delegations.azuredns.internal.test","name":"delegations.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d77f-56f72428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":8}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com.1","name":"foo.com.1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a130-a1256405d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/supportedtypes.azuredns.internal.test","name":"supportedtypes.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8cc3-92c62428d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":11}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f007-dd1e2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup1\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-145c-922b2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup2\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cc93-b7372528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup3\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b4bb-c2442528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup4\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eeb-48502528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup5\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1be2-835c2528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup6\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8a62-18692528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup7\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3f6e-13752528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/endtoendtestresourcegroup8\/providers\/Microsoft.Network\/dnszones\/wildcards.azuredns.internal.test","name":"wildcards.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8eda-b0802528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/albertozone.com","name":"albertozone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d006-58f3c480d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","name":"fetestszonename.test-1ed41e6d-5a94-415d-9bb0-1dcb7d5dc301.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a58e-db8ebc9ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/ww.rules","name":"ww.rules","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0fc3-eeeaed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/wwa.rules","name":"wwa.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5b33-b520ee62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.ashx","name":"www.ashx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-15d8-d1d92a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.asmx","name":"www.asmx","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efd5-864f2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.aspq","name":"www.aspq","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-56d9-831f2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.axd","name":"www.axd","type":"Microsoft.Network\/dnszones","etag":"00000005-0000-0000-bcc5-f4142b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.cshtml","name":"www.cshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4b7c-a01b2b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.rules","name":"www.rules","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-46df-cf84ed62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.soap","name":"www.soap","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8118-96102b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.svc","name":"www.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-58fd-0ad32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtm","name":"www.vbhtm","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b34c-92cc2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.vbhtml","name":"www.vbhtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cf7-5cc32a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.x","name":"www.x","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ff2d-55a12a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xamlx","name":"www.xamlx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-10cd-daaf2a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xoml","name":"www.xoml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cbd9-aff82a6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www.xshtml","name":"www.xshtml","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e293-61182b6dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www2.rules","name":"www2.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6482-2ec84170d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www3.rules","name":"www3.rules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3cd6-d6ca4270d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www4.rules","name":"www4.rules","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f65a-85464370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www5.rules","name":"www5.rules","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-dcae-46d74370d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/frontendtestresourcegroupnamenew\/providers\/Microsoft.Network\/dnszones\/www6.rules1","name":"www6.rules1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-effe-85c73a71d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg2296\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2982","name":"hydratest.dnszone.com2982","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8bf1-68346f44d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg6951\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com1418","name":"hydratest.dnszone.com1418","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4569-d7b1e86ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg7212\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com2450","name":"hydratest.dnszone.com2450","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2f15-b18458bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/hydratestdnsrg9513\/providers\/Microsoft.Network\/dnszones\/hydratest.dnszone.com4268","name":"hydratest.dnszone.com4268","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6224-f99658bad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp.com","name":"jwesth-cloudapp.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b2a-01758cc2d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":7}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-cloudapptesting\/providers\/Microsoft.Network\/dnszones\/jwesth-cloudapp1.com","name":"jwesth-cloudapp1.com","type":"Microsoft.Network\/dnszones","etag":"0000001c-0000-0000-f128-a14cdeded101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/169.181.185.in-addr.arpa","name":"169.181.185.in-addr.arpa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3734-04a70a66d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth-test1.com","name":"jwesth-test1.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0134-e43384bbd101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth-rg\/providers\/Microsoft.Network\/dnszones\/jwesth.com","name":"jwesth.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8ae-daeaea3ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130a\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a4a4-a9695b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130b\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f3c9-ac795b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130c\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e8ff-d2835b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130d\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4943-808f5b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/jwesth1130e\/providers\/Microsoft.Network\/dnszones\/westhead.site","name":"westhead.site","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cd92-64995b6ad301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt1.com","name":"karthikpvt1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c968-711cd333d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/karthikpvtzones\/providers\/Microsoft.Network\/dnszones\/karthikpvt2.com","name":"karthikpvt2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-63a7-a0a3f533d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/limitstestrg\/providers\/Microsoft.Network\/dnszones\/expect20.1.com","name":"expect20.1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-34c8-abfc977ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/mikebugbash\/providers\/Microsoft.Network\/dnszones\/mitest.com","name":"mitest.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4ec5-f6e23a36d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1048\/providers\/Microsoft.Network\/dnszones\/onesdk8502.pstest.test","name":"onesdk8502.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-aded-5045bf2ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1060\/providers\/Microsoft.Network\/dnszones\/onesdk2287.pstest.test","name":"onesdk2287.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8f2b-2782ff52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1064\/providers\/Microsoft.Network\/dnszones\/onesdk4225.pstest.test","name":"onesdk4225.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cd3f-83d8711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1096\/providers\/Microsoft.Network\/dnszones\/onesdk6719.pstest.test","name":"onesdk6719.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1ead-eb9db81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}]}'} headers: cache-control: [private] - content-length: ['54995'] + content-length: ['959'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:29 GMT'] + date: ['Thu, 15 Mar 2018 01:34:08 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMJdZ3mlNxzCAVJ3ZHD8WpeRwnjsdM1mROIuC7Lpfv5W5R3ra2AOHLDOn4wFqDN2sYFLJBCZXx0oZqbSK9HEv7gakyRD9DyOcjq2zVCDDPLMTLLBm2ryG9ZgfIIlxu7wgwVPPx-JaRzpYCDPBvm_9RSWVROfaMJQNmjubmg9RV7AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:11 GMT'] + etag: [00000002-0000-0000-2707-43b4fdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076300","not_before":"1521072400","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQwMCwibmJmIjoxNTIxMDcyNDAwLCJleHAiOjE1MjEwNzYzMDAsImFpbyI6IjQyUmdZUGhsOTY3Qi8xVDVoenVWUGVwTkhTRXZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjBnRzhMTzV0ODAyUklMZGVmUXdBQUEiLCJ2ZXIiOiIxLjAifQ.XCSVmu19dkhc6o9touNqCnBRoTvBqzCi_FZ6kUPCFv8QTJXokQ_kvvIvqajgnLCYm4Yxzc1wD9QAbb_eQpcRa4tCWKDMQEi9gUIHWMybIhs303sA7IKFFZTZuNSxLwNv5gZMEr6l0u0RklE8bqJzVgHAvifkTJ4wB5k8yadPPgcQNN6F3TXnJRJ1wexipn8K9O7giN5mNYVR3IxvkPXs6bjNiBjHJFEoItrxsbr42vescZr9-ymt0N64lF2m7cFwuPCHXUGXr7YBusJpvyf9CZMyc87ZriuonHHIieEx5z3GmXkAy2k8_T3YwECZfMR-kaqvUWJy5aP5kMNsTS0EGQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:41 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-2707-43b4fdbbd301", + "properties": {"zoneType": "Private"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns zone update] Connection: [keep-alive] + Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMTA5Ni96b25lcy9vbmVzZGs2NzE5LnBzdGVzdC50ZXN0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1247\/providers\/Microsoft.Network\/dnszones\/onesdk2090.pstest.test","name":"onesdk2090.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4b0-2d82b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1281\/providers\/Microsoft.Network\/dnszones\/onesdk9190.pstest.test","name":"onesdk9190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cdb0-3151f51fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1282\/providers\/Microsoft.Network\/dnszones\/onesdk8326.pstest.test","name":"onesdk8326.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fc5a-0488fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk129\/providers\/Microsoft.Network\/dnszones\/onesdk989.pstest.test","name":"onesdk989.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3974-12df711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1293\/providers\/Microsoft.Network\/dnszones\/onesdk1432.pstest.test","name":"onesdk1432.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-db36-0bbe474ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1348\/providers\/Microsoft.Network\/dnszones\/onesdk5170.pstest.test","name":"onesdk5170.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39fc-657f611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1357\/providers\/Microsoft.Network\/dnszones\/onesdk1913.pstest.test","name":"onesdk1913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7cd3-4ba4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1363\/providers\/Microsoft.Network\/dnszones\/onesdk8210.pstest.test","name":"onesdk8210.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-221d-b4940a26d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1384\/providers\/Microsoft.Network\/dnszones\/onesdk6128.pstest.test","name":"onesdk6128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f69b-f78b6346d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1387\/providers\/Microsoft.Network\/dnszones\/onesdk3798.pstest.test","name":"onesdk3798.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-219f-67f28849d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1390\/providers\/Microsoft.Network\/dnszones\/onesdk7618.pstest.test","name":"onesdk7618.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b9b-604df12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1459\/providers\/Microsoft.Network\/dnszones\/onesdk4021.pstest.test","name":"onesdk4021.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-18f9-8b8ec853d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1481\/providers\/Microsoft.Network\/dnszones\/onesdk5772.pstest.test","name":"onesdk5772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4625-1c97721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1493\/providers\/Microsoft.Network\/dnszones\/onesdk1429.pstest.test","name":"onesdk1429.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b63d-0e021422d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1542\/providers\/Microsoft.Network\/dnszones\/onesdk7729.pstest.test","name":"onesdk7729.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f379-f423f81fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1562\/providers\/Microsoft.Network\/dnszones\/onesdk2146.pstest.test","name":"onesdk2146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7d8-7a690f39d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1575\/providers\/Microsoft.Network\/dnszones\/onesdk6718.pstest.test","name":"onesdk6718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfda-cfec711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1600\/providers\/Microsoft.Network\/dnszones\/onesdk8063.pstest.test","name":"onesdk8063.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a9f-cd19062ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1606\/providers\/Microsoft.Network\/dnszones\/onesdk7391.pstest.test","name":"onesdk7391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-63b9-87ae711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk162\/providers\/Microsoft.Network\/dnszones\/onesdk1843.pstest.test","name":"onesdk1843.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1675-ab60fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1621\/providers\/Microsoft.Network\/dnszones\/onesdk2482.pstest.test","name":"onesdk2482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3299-aa02f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1622\/providers\/Microsoft.Network\/dnszones\/onesdk1489.pstest.test","name":"onesdk1489.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-66f6-7b347337d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1624\/providers\/Microsoft.Network\/dnszones\/onesdk7204.pstest.test","name":"onesdk7204.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e360-5427d839d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1675\/providers\/Microsoft.Network\/dnszones\/onesdk7311.pstest.test","name":"onesdk7311.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-192e-7766f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1703\/providers\/Microsoft.Network\/dnszones\/onesdk7165.pstest.test","name":"onesdk7165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad1f-1074721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1727\/providers\/Microsoft.Network\/dnszones\/onesdk9804.pstest.test","name":"onesdk9804.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7742-7dbfee1fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1729\/providers\/Microsoft.Network\/dnszones\/onesdk7610.pstest.test","name":"onesdk7610.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29a5-a9263447d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1734\/providers\/Microsoft.Network\/dnszones\/onesdk8881.pstest.test","name":"onesdk8881.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bcd6-ba11f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1757\/providers\/Microsoft.Network\/dnszones\/onesdk3391.pstest.test","name":"onesdk3391.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e4fd-2496f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk178\/providers\/Microsoft.Network\/dnszones\/onesdk90.pstest.test","name":"onesdk90.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9aea-3f153f25d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1840\/providers\/Microsoft.Network\/dnszones\/onesdk8954.pstest.test","name":"onesdk8954.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-e73f-dba0e940d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1896\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9aee-3e3a0f4fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1904\/providers\/Microsoft.Network\/dnszones\/onesdk2093.pstest.test","name":"onesdk2093.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1986-77c0b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1918\/providers\/Microsoft.Network\/dnszones\/onesdk6500.pstest.test","name":"onesdk6500.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f0da-b94d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk1987\/providers\/Microsoft.Network\/dnszones\/onesdk2408.pstest.test","name":"onesdk2408.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f5b1-94caee23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2018\/providers\/Microsoft.Network\/dnszones\/onesdk6598.pstest.test","name":"onesdk6598.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17d6-a1466623d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk5299.pstest.test","name":"onesdk5299.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-af69-c2a7711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.test","name":"onesdk7065.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c49-5b256623d201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2090\/providers\/Microsoft.Network\/dnszones\/onesdk7065.pstest.testa","name":"onesdk7065.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad8c-d0256623d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2172\/providers\/Microsoft.Network\/dnszones\/onesdk496.pstest.test","name":"onesdk496.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5f17-b3c6b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2304\/providers\/Microsoft.Network\/dnszones\/onesdk7239.pstest.test","name":"onesdk7239.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-113e-68072040d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2308\/providers\/Microsoft.Network\/dnszones\/onesdk1393.pstest.test","name":"onesdk1393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39b9-9de9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2310\/providers\/Microsoft.Network\/dnszones\/onesdk2284.pstest.test","name":"onesdk2284.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-39f8-b070b541d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2333\/providers\/Microsoft.Network\/dnszones\/onesdk1256.pstest.test","name":"onesdk1256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e7e-de17fe3cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2380\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-88b4-d461c453d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2383\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-342f-78b3611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2398\/providers\/Microsoft.Network\/dnszones\/onesdk8782.pstest.test","name":"onesdk8782.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ed-87f2062ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2407\/providers\/Microsoft.Network\/dnszones\/onesdk7250.pstest.test","name":"onesdk7250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b310-a66e611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2421\/providers\/Microsoft.Network\/dnszones\/onesdk6907.pstest.test","name":"onesdk6907.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9d8-ca16721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk640.pstest.test","name":"onesdk640.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a55-f581721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2503\/providers\/Microsoft.Network\/dnszones\/onesdk9998.pstest.test","name":"onesdk9998.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-550b-12bc711fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk5712.pstest.test","name":"onesdk5712.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb48-cd0cfa1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2530\/providers\/Microsoft.Network\/dnszones\/onesdk7614.pstest.test","name":"onesdk7614.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1faf-3101fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2556\/providers\/Microsoft.Network\/dnszones\/onesdk7928.pstest.test","name":"onesdk7928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d950-d5e5711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2563\/providers\/Microsoft.Network\/dnszones\/onesdk4397.pstest.test","name":"onesdk4397.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b49-7420fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2573\/providers\/Microsoft.Network\/dnszones\/onesdk7056.pstest.test","name":"onesdk7056.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-43a9-215b1c22d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2585\/providers\/Microsoft.Network\/dnszones\/onesdk2458.pstest.test","name":"onesdk2458.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfe-4344fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk264\/providers\/Microsoft.Network\/dnszones\/onesdk2107.pstest.test","name":"onesdk2107.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6bb1-2861404ed201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2644\/providers\/Microsoft.Network\/dnszones\/onesdk2865.pstest.test","name":"onesdk2865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-d03b-00e8873ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2675\/providers\/Microsoft.Network\/dnszones\/onesdk4444.pstest.test","name":"onesdk4444.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2ea6-dc528d2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2715\/providers\/Microsoft.Network\/dnszones\/onesdk3768.pstest.test","name":"onesdk3768.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f1c-2b7def1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2743\/providers\/Microsoft.Network\/dnszones\/onesdk4.pstest.test","name":"onesdk4.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4c8f-60fa711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2745\/providers\/Microsoft.Network\/dnszones\/onesdk828.pstest.test","name":"onesdk828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-31db-1c44b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2807\/providers\/Microsoft.Network\/dnszones\/onesdk2558.pstest.test","name":"onesdk2558.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0255-15d3fd1fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk2112.pstest.test","name":"onesdk2112.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2e0d-2a26f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2835\/providers\/Microsoft.Network\/dnszones\/onesdk8180.pstest.test","name":"onesdk8180.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-297f-3f36fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2881\/providers\/Microsoft.Network\/dnszones\/onesdk8706.pstest.test","name":"onesdk8706.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ec87-e7f8fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2923\/providers\/Microsoft.Network\/dnszones\/onesdk8493.pstest.test","name":"onesdk8493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-066c-41fbf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2942\/providers\/Microsoft.Network\/dnszones\/onesdk2839.pstest.test","name":"onesdk2839.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-89cd-f76f512ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk2963\/providers\/Microsoft.Network\/dnszones\/onesdk4380.pstest.test","name":"onesdk4380.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7fab-a6affc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3016\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-75ac-a5218a4fd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3052\/providers\/Microsoft.Network\/dnszones\/onesdk6450.pstest.test","name":"onesdk6450.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dfc9-7c482f29d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3077\/providers\/Microsoft.Network\/dnszones\/onesdk8057.pstest.test","name":"onesdk8057.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7330-6d80fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3082\/providers\/Microsoft.Network\/dnszones\/onesdk8403.pstest.test","name":"onesdk8403.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-754e-2e1ff91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3085\/providers\/Microsoft.Network\/dnszones\/onesdk8393.pstest.test","name":"onesdk8393.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da3a-2e2df91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk315\/providers\/Microsoft.Network\/dnszones\/onesdk3996.pstest.test","name":"onesdk3996.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d50b-4608721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3157\/providers\/Microsoft.Network\/dnszones\/onesdk2650.pstest.test","name":"onesdk2650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f76c-aa52d739d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3172\/providers\/Microsoft.Network\/dnszones\/onesdk379.pstest.test","name":"onesdk379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6a8b-0297b91fd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3192\/providers\/Microsoft.Network\/dnszones\/onesdk8717.pstest.test","name":"onesdk8717.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-15ae-8f21b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3306\/providers\/Microsoft.Network\/dnszones\/onesdk2738.pstest.test","name":"onesdk2738.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5007-cc5b611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk335\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-372f-00a5721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3390\/providers\/Microsoft.Network\/dnszones\/onesdk5878.pstest.test","name":"onesdk5878.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5e2e-ae7dfb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3478\/providers\/Microsoft.Network\/dnszones\/onesdk3730.pstest.test","name":"onesdk3730.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-235f-d463d126d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3497\/providers\/Microsoft.Network\/dnszones\/onesdk5097.pstest.test","name":"onesdk5097.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dadd-c0bfb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3557\/providers\/Microsoft.Network\/dnszones\/onesdk8390.pstest.test","name":"onesdk8390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a228-ad9a7c4dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3600\/providers\/Microsoft.Network\/dnszones\/onesdk2599.pstest.test","name":"onesdk2599.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-74a0-5ec1c648d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3626\/providers\/Microsoft.Network\/dnszones\/onesdk9818.pstest.test","name":"onesdk9818.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e0c-f6d4fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3668\/providers\/Microsoft.Network\/dnszones\/onesdk3479.pstest.test","name":"onesdk3479.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3c4a-9bd1711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3711\/providers\/Microsoft.Network\/dnszones\/onesdk8697.pstest.test","name":"onesdk8697.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-66ac-ddb3ad41d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3752\/providers\/Microsoft.Network\/dnszones\/onesdk5592.pstest.test","name":"onesdk5592.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfc2-9751b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3791\/providers\/Microsoft.Network\/dnszones\/onesdk4990.pstest.test","name":"onesdk4990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-320e-0706781fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3794\/providers\/Microsoft.Network\/dnszones\/onesdk1760.pstest.test","name":"onesdk1760.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea5-4b7c693bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3869\/providers\/Microsoft.Network\/dnszones\/onesdk7008.pstest.test","name":"onesdk7008.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a062-24088851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3872\/providers\/Microsoft.Network\/dnszones\/onesdk9743.pstest.test","name":"onesdk9743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-511e-6589b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3891\/providers\/Microsoft.Network\/dnszones\/onesdk8901.pstest.test","name":"onesdk8901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ef1-4eca611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3943\/providers\/Microsoft.Network\/dnszones\/onesdk7060.pstest.test","name":"onesdk7060.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6e4d-a628b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3946\/providers\/Microsoft.Network\/dnszones\/onesdk2283.pstest.test","name":"onesdk2283.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3283-64f5c548d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3956\/providers\/Microsoft.Network\/dnszones\/onesdk9718.pstest.test","name":"onesdk9718.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fb2e-2f2aa150d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3957\/providers\/Microsoft.Network\/dnszones\/onesdk1310.pstest.test","name":"onesdk1310.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7057-b4cb5a55d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3963\/providers\/Microsoft.Network\/dnszones\/onesdk2916.pstest.test","name":"onesdk2916.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-055d-01af6c2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} headers: cache-control: [private] - content-length: ['51681'] + content-length: ['525'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:42 GMT'] + date: ['Thu, 15 Mar 2018 01:34:14 GMT'] + etag: [00000003-0000-0000-2707-43b4fdbbd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['525'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:11:43 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6e8gzsaKvOcgeI-LpsLUHClAzhOQ_li0dEPz10q32_LlV-y-g0U9zoJ1-dISiK7c-bXDYVRRDicEf481wFjxCQakfH3ZoQ4drHmvuowKB7QARJsIpHu3CAmc2lyyNWBVq8yRGqtVFkWE0aJOF6veVZC0HO-BVly4cj5xsyCFzlUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:16 GMT'] + etag: [00000003-0000-0000-2707-43b4fdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-2707-43b4fdbbd301", + "properties": {"zoneType": "Private", "registrationVirtualNetworks": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], + "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone update] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['597'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076338","not_before":"1521072438","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQzOCwibmJmIjoxNTIxMDcyNDM4LCJleHAiOjE1MjEwNzYzMzgsImFpbyI6IjQyUmdZSmc0NTduMXJTclBheCtYL09VTm1kNjdDQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGF6U1FBQUEiLCJ2ZXIiOiIxLjAifQ.Gb-OZ-kYK4dM7autHmeI5YaQGHXZ0RsEMPmPOhvd3SqswnmAPShMHVN0BIHVltBhn3kyML5S84i7cZdQXI6gp6MOID05HMC2zGiSMp4RNshMIhDzX4qb3ORVbyF3qB1F_rmkdMBOKd8ebGY_xLNIfgv3RbHSOQPHjdRX_NAr4aN9oBz0G4jpAQ6ZqcyU6fMiRS7zVWMHi7JU3-FgZFsG3Y8QY40Bh-aAEtLdFZXSpiR8fXasDWgDFB-8NM6dXgRalsm0ACgUJDwTR9zoNz2q2a9XdZ5QIDXFFxpO-C9ae9zeylrO47jT5InVfmWscVIplp0RjkmJKSZ0yD-Lyf-ghw"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:17 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:22 GMT'] + etag: [00000004-0000-0000-2707-43b4fdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns zone show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrMzk2My96b25lcy9vbmVzZGsyOTE2LnBzdGVzdC50ZXN0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk3997\/providers\/Microsoft.Network\/dnszones\/onesdk3527.pstest.test","name":"onesdk3527.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a8e-37c5fd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk401\/providers\/Microsoft.Network\/dnszones\/onesdk2615.pstest.test","name":"onesdk2615.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b3c2-2455eb4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4011\/providers\/Microsoft.Network\/dnszones\/onesdk4347.pstest.test","name":"onesdk4347.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5775-c6c10125d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk9742.pstest.test","name":"onesdk9742.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-116e-dd81f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4042\/providers\/Microsoft.Network\/dnszones\/onesdk6110.pstest.test","name":"onesdk6110.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3099-a3e3a234d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4050\/providers\/Microsoft.Network\/dnszones\/onesdk2653.pstest.test","name":"onesdk2653.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3d85-5731752cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4076\/providers\/Microsoft.Network\/dnszones\/onesdk6687.pstest.test","name":"onesdk6687.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-687b-8e0afb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4081\/providers\/Microsoft.Network\/dnszones\/onesdk2629.pstest.test","name":"onesdk2629.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3531-875d721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4129\/providers\/Microsoft.Network\/dnszones\/onesdk5232.pstest.test","name":"onesdk5232.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3082-d9fd584ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4161\/providers\/Microsoft.Network\/dnszones\/onesdk3953.pstest.test","name":"onesdk3953.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-560e-1828fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4179\/providers\/Microsoft.Network\/dnszones\/onesdk6739.pstest.test","name":"onesdk6739.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-783a-1e50fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4201\/providers\/Microsoft.Network\/dnszones\/onesdk1912.pstest.test","name":"onesdk1912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-91c7-be08601fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4202\/providers\/Microsoft.Network\/dnszones\/onesdk8794.pstest.test","name":"onesdk8794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78df-63edf529d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4214\/providers\/Microsoft.Network\/dnszones\/onesdk8488.pstest.test","name":"onesdk8488.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a6e-07ff0d39d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4234\/providers\/Microsoft.Network\/dnszones\/onesdk7584.pstest.test","name":"onesdk7584.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-67f3-ac7e2629d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4263\/providers\/Microsoft.Network\/dnszones\/onesdk5331.pstest.test","name":"onesdk5331.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e2d-0b2fc82ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4302\/providers\/Microsoft.Network\/dnszones\/onesdk4345.pstest.test","name":"onesdk4345.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7a69-f469fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4348\/providers\/Microsoft.Network\/dnszones\/onesdk5365.pstest.test","name":"onesdk5365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bee0-caf1fc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4363\/providers\/Microsoft.Network\/dnszones\/onesdk1745.pstest.test","name":"onesdk1745.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb7f-8f30fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4371\/providers\/Microsoft.Network\/dnszones\/onesdk3277.pstest.test","name":"onesdk3277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c0f7-10b9b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk438\/providers\/Microsoft.Network\/dnszones\/onesdk5801.pstest.test","name":"onesdk5801.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ff5-1397fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4412\/providers\/Microsoft.Network\/dnszones\/onesdk3735.pstest.test","name":"onesdk3735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5279-2d2e3447d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4449\/providers\/Microsoft.Network\/dnszones\/onesdk3359.pstest.test","name":"onesdk3359.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7b07-b5d6611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4462\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8858-f99a1b4bd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4474\/providers\/Microsoft.Network\/dnszones\/onesdk5545.pstest.test","name":"onesdk5545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-daee-9517fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4553\/providers\/Microsoft.Network\/dnszones\/onesdk7120.pstest.test","name":"onesdk7120.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a7b6-ffc3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4573\/providers\/Microsoft.Network\/dnszones\/onesdk785.pstest.test","name":"onesdk785.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce8b-8b64721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4613\/providers\/Microsoft.Network\/dnszones\/onesdk8420.pstest.test","name":"onesdk8420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-78c9-efd7fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk466\/providers\/Microsoft.Network\/dnszones\/onesdk8888.pstest.test","name":"onesdk8888.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c6e0-39d9502ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4668\/providers\/Microsoft.Network\/dnszones\/onesdk1495.pstest.test","name":"onesdk1495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c531-e005e422d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk471\/providers\/Microsoft.Network\/dnszones\/onesdk8865.pstest.test","name":"onesdk8865.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-550f-fadbc43dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4743\/providers\/Microsoft.Network\/dnszones\/onesdk1635.pstest.test","name":"onesdk1635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-47bd-29c49a34d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4762\/providers\/Microsoft.Network\/dnszones\/onesdk1821.pstest.test","name":"onesdk1821.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5186-0a98d14fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4834\/providers\/Microsoft.Network\/dnszones\/onesdk9711.pstest.test","name":"onesdk9711.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0059-1d52b34cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk488\/providers\/Microsoft.Network\/dnszones\/onesdk8545.pstest.test","name":"onesdk8545.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f58e-a75bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4891\/providers\/Microsoft.Network\/dnszones\/onesdk513.pstest.test","name":"onesdk513.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-efee-a9bbfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4936\/providers\/Microsoft.Network\/dnszones\/onesdk2772.pstest.test","name":"onesdk2772.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d091-83740e4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk4958\/providers\/Microsoft.Network\/dnszones\/onesdk7482.pstest.test","name":"onesdk7482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e139-f513a03ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5061\/providers\/Microsoft.Network\/dnszones\/onesdk7650.pstest.test","name":"onesdk7650.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ce49-6a88f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5155\/providers\/Microsoft.Network\/dnszones\/onesdk97.pstest.test","name":"onesdk97.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d36f-3d97b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5202\/providers\/Microsoft.Network\/dnszones\/onesdk2445.pstest.test","name":"onesdk2445.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-355b-80f3711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5216\/providers\/Microsoft.Network\/dnszones\/onesdk5449.pstest.test","name":"onesdk5449.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c515-315cd126d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5228\/providers\/Microsoft.Network\/dnszones\/onesdk7389.pstest.test","name":"onesdk7389.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d957-ade1f71fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5231\/providers\/Microsoft.Network\/dnszones\/onesdk7994.pstest.test","name":"onesdk7994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2642-d6f4af25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5236\/providers\/Microsoft.Network\/dnszones\/onesdk3237.pstest.test","name":"onesdk3237.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d3af-963ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5267\/providers\/Microsoft.Network\/dnszones\/onesdk748.pstest.test","name":"onesdk748.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0320-77c76523d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5321\/providers\/Microsoft.Network\/dnszones\/onesdk9913.pstest.test","name":"onesdk9913.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8b17-e448fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5375\/providers\/Microsoft.Network\/dnszones\/onesdk6291.pstest.test","name":"onesdk6291.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3ca1-2d5bbf53d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5589\/providers\/Microsoft.Network\/dnszones\/onesdk548.pstest.test","name":"onesdk548.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-60c6-af58fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5598\/providers\/Microsoft.Network\/dnszones\/onesdk2400.pstest.test","name":"onesdk2400.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9df-ae1aaa36d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk560\/providers\/Microsoft.Network\/dnszones\/onesdk4022.pstest.test","name":"onesdk4022.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7b2f-a130f924d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5605\/providers\/Microsoft.Network\/dnszones\/onesdk6812.pstest.test","name":"onesdk6812.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e70-7f8f3e38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5613\/providers\/Microsoft.Network\/dnszones\/onesdk4887.pstest.test","name":"onesdk4887.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ea3-46abf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk563\/providers\/Microsoft.Network\/dnszones\/onesdk5622.pstest.test","name":"onesdk5622.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35b6-0f3dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5633\/providers\/Microsoft.Network\/dnszones\/onesdk957.pstest.test","name":"onesdk957.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9794-b7bb721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5662\/providers\/Microsoft.Network\/dnszones\/onesdk5551.pstest.test","name":"onesdk5551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-ea04-868ff53cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5717\/providers\/Microsoft.Network\/dnszones\/onesdk8803.pstest.test","name":"onesdk8803.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-3693-7ac0e035d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5741\/providers\/Microsoft.Network\/dnszones\/onesdk4971.pstest.test","name":"onesdk4971.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-16d7-fe67fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5849\/providers\/Microsoft.Network\/dnszones\/onesdk6028.pstest.test","name":"onesdk6028.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9703-59baf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5891\/providers\/Microsoft.Network\/dnszones\/onesdk1490.pstest.test","name":"onesdk1490.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a513-4c577d4dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk1426.pstest.test","name":"onesdk1426.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3620-6eb4721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk5986\/providers\/Microsoft.Network\/dnszones\/onesdk75.pstest.test","name":"onesdk75.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d72-53dafd1fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6001\/providers\/Microsoft.Network\/dnszones\/onesdk7554.pstest.test","name":"onesdk7554.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5e36-2123aa36d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk602\/providers\/Microsoft.Network\/dnszones\/onesdk3442.pstest.test","name":"onesdk3442.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05d9-d16cea40d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6031\/providers\/Microsoft.Network\/dnszones\/onesdk4501.pstest.test","name":"onesdk4501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1d39-ce5da623d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6043\/providers\/Microsoft.Network\/dnszones\/onesdk7277.pstest.test","name":"onesdk7277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b920-1869611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6125\/providers\/Microsoft.Network\/dnszones\/onesdk8691.pstest.test","name":"onesdk8691.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-16ad-47b51735d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6142\/providers\/Microsoft.Network\/dnszones\/onesdk3174.pstest.test","name":"onesdk3174.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-402f-2bd0611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6180\/providers\/Microsoft.Network\/dnszones\/onesdk1410.pstest.test","name":"onesdk1410.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-8076-e7087252d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6194\/providers\/Microsoft.Network\/dnszones\/onesdk2606.pstest.test","name":"onesdk2606.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8036-7ff3f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6218\/providers\/Microsoft.Network\/dnszones\/onesdk182.pstest.test","name":"onesdk182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e269-5f00fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6230\/providers\/Microsoft.Network\/dnszones\/onesdk794.pstest.test","name":"onesdk794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb5c-688ffa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6238\/providers\/Microsoft.Network\/dnszones\/onesdk1437.pstest.test","name":"onesdk1437.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c4ec-c2cafa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6270\/providers\/Microsoft.Network\/dnszones\/onesdk5966.pstest.test","name":"onesdk5966.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5adc-c19fa725d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6293\/providers\/Microsoft.Network\/dnszones\/onesdk8153.pstest.test","name":"onesdk8153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df7c-e132584ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk63\/providers\/Microsoft.Network\/dnszones\/onesdk9277.pstest.test","name":"onesdk9277.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-492a-773cbf2ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk7018.pstest.test","name":"onesdk7018.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-837f-71ddf547d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6327\/providers\/Microsoft.Network\/dnszones\/onesdk9735.pstest.test","name":"onesdk9735.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b606-337b721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6360\/providers\/Microsoft.Network\/dnszones\/onesdk7945.pstest.test","name":"onesdk7945.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6d8c-0a0af91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6364\/providers\/Microsoft.Network\/dnszones\/onesdk9096.pstest.test","name":"onesdk9096.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e729-cdf0b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6456\/providers\/Microsoft.Network\/dnszones\/onesdk5828.pstest.test","name":"onesdk5828.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5187-58e4f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6478\/providers\/Microsoft.Network\/dnszones\/onesdk1379.pstest.test","name":"onesdk1379.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2b8e-6425062ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6572\/providers\/Microsoft.Network\/dnszones\/onesdk6230.pstest.test","name":"onesdk6230.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68e8-4f34f91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6588\/providers\/Microsoft.Network\/dnszones\/onesdk1156.pstest.test","name":"onesdk1156.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-765b-82c7302ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6593\/providers\/Microsoft.Network\/dnszones\/onesdk5086.pstest.test","name":"onesdk5086.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c920-1caa9a27d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6606\/providers\/Microsoft.Network\/dnszones\/onesdk9026.pstest.test","name":"onesdk9026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-03d3-7bc3711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6610\/providers\/Microsoft.Network\/dnszones\/onesdk6999.pstest.test","name":"onesdk6999.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ad57-12c53f2dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6616\/providers\/Microsoft.Network\/dnszones\/onesdk3188.pstest.test","name":"onesdk3188.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5cfc-0989721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6626\/providers\/Microsoft.Network\/dnszones\/onesdk2901.pstest.test","name":"onesdk2901.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-26f8-16f3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6674\/providers\/Microsoft.Network\/dnszones\/onesdk7395.pstest.test","name":"onesdk7395.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2a8e-dda2ef23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6713\/providers\/Microsoft.Network\/dnszones\/onesdk6982.pstest.test","name":"onesdk6982.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ac62-ac6eae23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6721\/providers\/Microsoft.Network\/dnszones\/onesdk9507.pstest.test","name":"onesdk9507.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b55f-a3ad323cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6749\/providers\/Microsoft.Network\/dnszones\/onesdk201.pstest.test","name":"onesdk201.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-eb32-dfa19a27d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6784\/providers\/Microsoft.Network\/dnszones\/onesdk3572.pstest.test","name":"onesdk3572.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a21-418dfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6793\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-015a-23f5f529d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6848\/providers\/Microsoft.Network\/dnszones\/onesdk6703.pstest.test","name":"onesdk6703.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35e9-4ea3c53dd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6880\/providers\/Microsoft.Network\/dnszones\/onesdk2778.pstest.test","name":"onesdk2778.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-752e-1cd4c43dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6898\/providers\/Microsoft.Network\/dnszones\/onesdk5795.pstest.test","name":"onesdk5795.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8ce2-6c62fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6906\/providers\/Microsoft.Network\/dnszones\/onesdk1794.pstest.test","name":"onesdk1794.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cbce-d7b3fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk6917\/providers\/Microsoft.Network\/dnszones\/onesdk8494.pstest.test","name":"onesdk8494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c3eb-f5d2ee23d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] - content-length: ['51879'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:23 GMT'] + date: ['Thu, 15 Mar 2018 01:34:25 GMT'] + etag: [00000004-0000-0000-2707-43b4fdbbd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a create] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['29'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29fe82c9-5b32-4871-9ab2-255b4980c5ea","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['399'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzu8vvtCGYazn4rONvs5xUfnoe33o8ZptUgaOzBYgMsIuLSAm6SCHehktUeT5x2N4gj4HNhMIxbJqD8tYwvqmCcRtHdCr2htR24pGc9tJVS5sXXzVumOlc2JIIE4MZMcQackmqH6s5t1pGMnWRj4fNBm_pSJC0SkWifMzkDFDNVYYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:28 GMT'] + etag: [29fe82c9-5b32-4871-9ab2-255b4980c5ea] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076352","not_before":"1521072452","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ1MiwibmJmIjoxNTIxMDcyNDUyLCJleHAiOjE1MjEwNzYzNTIsImFpbyI6IjQyUmdZTGczNzhvMWk1WEZHMjR4TzVhR1NTbFBCd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkNma2N4Zk0wcjBtSFBldFUzQzBBQUEiLCJ2ZXIiOiIxLjAifQ.Ij5rjIQH_8FOkiYsvatooJVAH0r961NTDBj1qOv5zhWstttYDsFmFZ8FUpJniUNZpcS1XfuU9WMaPPPU0zHZSG_olAlCTIfvxrD6b1Din_0JWgWZ3_47F9R5VoV8094mU12XWXs6oZ9OrVZGL-jjntkXW5rwVWk98Za-MkVHyJDTZyWKdB9mejfDavfa9xnaUHQ6xksyiPRvNlQVFjDqUTYyLMoQ36ZBjPKWVn5W0eczPVjRY9tzLhCV6zzmZ8Igseggriui9Zg7C2fDRlWUnreUbB2Fx9erXLwNjSXsleF4lXTT2SFNk4w33x9usJqqHwp4mONwtqXhN85m547NNA"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29fe82c9-5b32-4871-9ab2-255b4980c5ea","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['399'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:31 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:29 GMT'] + etag: [29fe82c9-5b32-4871-9ab2-255b4980c5ea] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "29fe82c9-5b32-4871-9ab2-255b4980c5ea", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] + Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrNjkxNy96b25lcy9vbmVzZGs4NDk0LnBzdGVzdC50ZXN0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"nextLink":"https:\/\/api-dogfood.resources.windows-int.net:443\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/providers\/Microsoft.Network\/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q=","value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7040\/providers\/Microsoft.Network\/dnszones\/onesdk6420.pstest.test","name":"onesdk6420.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-f329-8dfdc548d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7065\/providers\/Microsoft.Network\/dnszones\/onesdk7252.pstest.test","name":"onesdk7252.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f81d-071b3e52d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7088\/providers\/Microsoft.Network\/dnszones\/onesdk6560.pstest.test","name":"onesdk6560.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ee5b-e561da4fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7119\/providers\/Microsoft.Network\/dnszones\/onesdk551.pstest.test","name":"onesdk551.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-10cf-30070e39d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7125\/providers\/Microsoft.Network\/dnszones\/onesdk8217.pstest.test","name":"onesdk8217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ea00-444df81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7136\/providers\/Microsoft.Network\/dnszones\/onesdk480.pstest.test","name":"onesdk480.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b1af-fa0e2040d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7140\/providers\/Microsoft.Network\/dnszones\/onesdk6605.pstest.test","name":"onesdk6605.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d5e1-5d0e2156d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7176\/providers\/Microsoft.Network\/dnszones\/onesdk9349.pstest.test","name":"onesdk9349.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bb71-6f98e940d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7242\/providers\/Microsoft.Network\/dnszones\/onesdk4616.pstest.test","name":"onesdk4616.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e0eb-890cf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7332\/providers\/Microsoft.Network\/dnszones\/onesdk3587.pstest.test","name":"onesdk3587.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fe40-dd818b2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7337\/providers\/Microsoft.Network\/dnszones\/onesdk5635.pstest.test","name":"onesdk5635.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-22bb-86338f54d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7344\/providers\/Microsoft.Network\/dnszones\/onesdk6001.pstest.test","name":"onesdk6001.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0395-d5c2f12dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7355\/providers\/Microsoft.Network\/dnszones\/onesdk2943.pstest.test","name":"onesdk2943.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-3842-9679333cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7356\/providers\/Microsoft.Network\/dnszones\/onesdk4147.pstest.test","name":"onesdk4147.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9c54-14ff382ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7406\/providers\/Microsoft.Network\/dnszones\/onesdk4171.pstest.test","name":"onesdk4171.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9b6c-1be1352dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk744\/providers\/Microsoft.Network\/dnszones\/onesdk9600.pstest.test","name":"onesdk9600.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-5736-5a1fe322d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7442\/providers\/Microsoft.Network\/dnszones\/onesdk5915.pstest.test","name":"onesdk5915.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9cd7-ecca711fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7466\/providers\/Microsoft.Network\/dnszones\/onesdk7233.pstest.test","name":"onesdk7233.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cfe4-e0368849d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7529\/providers\/Microsoft.Network\/dnszones\/onesdk6493.pstest.test","name":"onesdk6493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9549-bbb2b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7530\/providers\/Microsoft.Network\/dnszones\/onesdk3045.pstest.test","name":"onesdk3045.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7789-af31a150d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7535\/providers\/Microsoft.Network\/dnszones\/onesdk3217.pstest.test","name":"onesdk3217.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9a77-e81c593fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.test","name":"onesdk1523.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6aac-ab4a883ed201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk1523.pstest.testa","name":"onesdk1523.pstest.testa","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-432a-244b883ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7585\/providers\/Microsoft.Network\/dnszones\/onesdk9365.pstest.test","name":"onesdk9365.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d8c8-a5ac721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7594\/providers\/Microsoft.Network\/dnszones\/onesdk4695.pstest.test","name":"onesdk4695.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bfd-8530903ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk763\/providers\/Microsoft.Network\/dnszones\/onesdk2995.pstest.test","name":"onesdk2995.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7016-c9d4f02dd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7656\/providers\/Microsoft.Network\/dnszones\/onesdk4165.pstest.test","name":"onesdk4165.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-154e-0c89ea4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7699\/providers\/Microsoft.Network\/dnszones\/onesdk746.pstest.test","name":"onesdk746.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da71-176d8a2bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7705\/providers\/Microsoft.Network\/dnszones\/onesdk632.pstest.test","name":"onesdk632.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-65e2-3a49611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7710\/providers\/Microsoft.Network\/dnszones\/onesdk4259.pstest.test","name":"onesdk4259.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9ddc-badbb81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk779\/providers\/Microsoft.Network\/dnszones\/onesdk1696.pstest.test","name":"onesdk1696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-68dd-d707fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7822\/providers\/Microsoft.Network\/dnszones\/onesdk7725.pstest.test","name":"onesdk7725.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e203-be0c3f25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7837\/providers\/Microsoft.Network\/dnszones\/onesdk3168.pstest.test","name":"onesdk3168.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-75cd-825ad739d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7913\/providers\/Microsoft.Network\/dnszones\/onesdk5889.pstest.test","name":"onesdk5889.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1e44-8594ac41d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7964\/providers\/Microsoft.Network\/dnszones\/onesdk5306.pstest.test","name":"onesdk5306.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4548-76c96528d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7983\/providers\/Microsoft.Network\/dnszones\/onesdk1262.pstest.test","name":"onesdk1262.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1107-69bf611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk7991\/providers\/Microsoft.Network\/dnszones\/onesdk8675.pstest.test","name":"onesdk8675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-305d-d5319149d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8038\/providers\/Microsoft.Network\/dnszones\/onesdk3192.pstest.test","name":"onesdk3192.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ccea-1b31f652d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8043\/providers\/Microsoft.Network\/dnszones\/onesdk7041.pstest.test","name":"onesdk7041.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9055-fe90ea4bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8109\/providers\/Microsoft.Network\/dnszones\/onesdk6495.pstest.test","name":"onesdk6495.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-cf40-9859b34cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8122\/providers\/Microsoft.Network\/dnszones\/onesdk253.pstest.test","name":"onesdk253.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b190-2e52fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8154\/providers\/Microsoft.Network\/dnszones\/onesdk153.pstest.test","name":"onesdk153.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-308d-cfad611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk822\/providers\/Microsoft.Network\/dnszones\/onesdk8520.pstest.test","name":"onesdk8520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b7de-e27efd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8222\/providers\/Microsoft.Network\/dnszones\/onesdk6033.pstest.test","name":"onesdk6033.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7374-4d746c46d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8268\/providers\/Microsoft.Network\/dnszones\/onesdk1602.pstest.test","name":"onesdk1602.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1dc5-edbdfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8272\/providers\/Microsoft.Network\/dnszones\/onesdk1083.pstest.test","name":"onesdk1083.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-08d9-5d7bf81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8300\/providers\/Microsoft.Network\/dnszones\/onesdk5050.pstest.test","name":"onesdk5050.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6728-d2bef629d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8307\/providers\/Microsoft.Network\/dnszones\/onesdk128.pstest.test","name":"onesdk128.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b309-a4eafc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8357\/providers\/Microsoft.Network\/dnszones\/onesdk52.pstest.test","name":"onesdk52.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5d6b-4232721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8365\/providers\/Microsoft.Network\/dnszones\/onesdk708.pstest.test","name":"onesdk708.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a6a5-b75bfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8377\/providers\/Microsoft.Network\/dnszones\/onesdk7016.pstest.test","name":"onesdk7016.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ed2e-4a36b91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8456\/providers\/Microsoft.Network\/dnszones\/onesdk1593.pstest.test","name":"onesdk1593.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b68d-8e9c611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8479\/providers\/Microsoft.Network\/dnszones\/onesdk9111.pstest.test","name":"onesdk9111.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-00d5-4f63611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8487\/providers\/Microsoft.Network\/dnszones\/onesdk6497.pstest.test","name":"onesdk6497.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bd89-2c7e711fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8499\/providers\/Microsoft.Network\/dnszones\/onesdk2786.pstest.test","name":"onesdk2786.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-887c-5c2fb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8522\/providers\/Microsoft.Network\/dnszones\/onesdk8790.pstest.test","name":"onesdk8790.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b879-d2d4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8552\/providers\/Microsoft.Network\/dnszones\/onesdk4250.pstest.test","name":"onesdk4250.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ef5e-96007252d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8559\/providers\/Microsoft.Network\/dnszones\/onesdk501.pstest.test","name":"onesdk501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1b5b-734a3f38d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8580\/providers\/Microsoft.Network\/dnszones\/onesdk1493.pstest.test","name":"onesdk1493.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-980c-f138721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8598\/providers\/Microsoft.Network\/dnszones\/onesdk2766.pstest.test","name":"onesdk2766.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b1c5-520f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8603\/providers\/Microsoft.Network\/dnszones\/onesdk1068.pstest.test","name":"onesdk1068.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-80e1-600a822bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8609\/providers\/Microsoft.Network\/dnszones\/onesdk9705.pstest.test","name":"onesdk9705.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-abd3-7179fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8625\/providers\/Microsoft.Network\/dnszones\/onesdk8944.pstest.test","name":"onesdk8944.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4d22-3d6ffb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8644\/providers\/Microsoft.Network\/dnszones\/onesdk4244.pstest.test","name":"onesdk4244.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-052f-06e3b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk869\/providers\/Microsoft.Network\/dnszones\/onesdk2868.pstest.test","name":"onesdk2868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-cffa-aa45f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8699\/providers\/Microsoft.Network\/dnszones\/onesdk1043.pstest.test","name":"onesdk1043.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0235-60062156d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8708\/providers\/Microsoft.Network\/dnszones\/onesdk7157.pstest.test","name":"onesdk7157.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4281-8685234bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8840\/providers\/Microsoft.Network\/dnszones\/onesdk9197.pstest.test","name":"onesdk9197.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7bc8-3777e135d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8869\/providers\/Microsoft.Network\/dnszones\/onesdk2810.pstest.test","name":"onesdk2810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-29cd-5058b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8903\/providers\/Microsoft.Network\/dnszones\/onesdk3123.pstest.test","name":"onesdk3123.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4e1b-c219611fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk891\/providers\/Microsoft.Network\/dnszones\/onesdk696.pstest.test","name":"onesdk696.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8235-fe80de15d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8920\/providers\/Microsoft.Network\/dnszones\/onesdk2672.pstest.test","name":"onesdk2672.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0f6b-9a38fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8924\/providers\/Microsoft.Network\/dnszones\/onesdk6190.pstest.test","name":"onesdk6190.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9e05-5051f63cd201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8932\/providers\/Microsoft.Network\/dnszones\/onesdk6647.pstest.test","name":"onesdk6647.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-1ad4-0fa27c4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8951\/providers\/Microsoft.Network\/dnszones\/onesdk4871.pstest.test","name":"onesdk4871.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7c83-fb77fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8967\/providers\/Microsoft.Network\/dnszones\/onesdk8737.pstest.test","name":"onesdk8737.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a41d-62d6f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8987\/providers\/Microsoft.Network\/dnszones\/onesdk3928.pstest.test","name":"onesdk3928.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-88e8-86f64638d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk8992\/providers\/Microsoft.Network\/dnszones\/onesdk8784.pstest.test","name":"onesdk8784.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f37-b762fa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9005\/providers\/Microsoft.Network\/dnszones\/onesdk5815.pstest.test","name":"onesdk5815.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e7f3-8ab05155d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk901\/providers\/Microsoft.Network\/dnszones\/onesdk8722.pstest.test","name":"onesdk8722.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2c01-cc55721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9035\/providers\/Microsoft.Network\/dnszones\/onesdk7935.pstest.test","name":"onesdk7935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c10f-7074f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9049\/providers\/Microsoft.Network\/dnszones\/onesdk1994.pstest.test","name":"onesdk1994.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4e15-b5578a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9068\/providers\/Microsoft.Network\/dnszones\/onesdk8660.pstest.test","name":"onesdk8660.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5ef6-de152140d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9084\/providers\/Microsoft.Network\/dnszones\/onesdk8158.pstest.test","name":"onesdk8158.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-24fa-ba41fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9090\/providers\/Microsoft.Network\/dnszones\/onesdk4457.pstest.test","name":"onesdk4457.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7e5d-cf1ba03ad201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9134\/providers\/Microsoft.Network\/dnszones\/onesdk6175.pstest.test","name":"onesdk6175.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-c01a-2697f41fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9139\/providers\/Microsoft.Network\/dnszones\/onesdk417.pstest.test","name":"onesdk417.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f47e-5679d02ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9160\/providers\/Microsoft.Network\/dnszones\/onesdk6148.pstest.test","name":"onesdk6148.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0be8-c83f721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9164\/providers\/Microsoft.Network\/dnszones\/onesdk9827.pstest.test","name":"onesdk9827.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-df85-fbf87337d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9175\/providers\/Microsoft.Network\/dnszones\/onesdk5076.pstest.test","name":"onesdk5076.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-61d3-4f3bf91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9247\/providers\/Microsoft.Network\/dnszones\/onesdk6135.pstest.test","name":"onesdk6135.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d81b-f72a8f54d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9265\/providers\/Microsoft.Network\/dnszones\/onesdk5743.pstest.test","name":"onesdk5743.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-9d87-f284693bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9270\/providers\/Microsoft.Network\/dnszones\/onesdk5482.pstest.test","name":"onesdk5482.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2d9-f811fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9323\/providers\/Microsoft.Network\/dnszones\/onesdk9813.pstest.test","name":"onesdk9813.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b8f8-b541fe47d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9361\/providers\/Microsoft.Network\/dnszones\/onesdk4646.pstest.test","name":"onesdk4646.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a19-0ac3721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9412\/providers\/Microsoft.Network\/dnszones\/onesdk4765.pstest.test","name":"onesdk4765.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a534-50e48a2ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9423\/providers\/Microsoft.Network\/dnszones\/onesdk8561.pstest.test","name":"onesdk8561.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40f2-c3a4b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9462\/providers\/Microsoft.Network\/dnszones\/onesdk4580.pstest.test","name":"onesdk4580.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-704d-79befc1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9466\/providers\/Microsoft.Network\/dnszones\/onesdk2434.pstest.test","name":"onesdk2434.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-204e-b882d44fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk947\/providers\/Microsoft.Network\/dnszones\/onesdk8857.pstest.test","name":"onesdk8857.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7103-354bfd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] - content-length: ['51753'] + content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:33 GMT'] + date: ['Thu, 15 Mar 2018 01:34:32 GMT'] + etag: [1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['229'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:34 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz1KwHN897dH3ujbG24S7HO6SfZkMvei8aaYxCNM9AOVUrRyiH0zayFVn586FP6IruS3F1NJwaRNRyy5j_GBFANlZ46-qkBs49XSbClYQ6tF1hTQyBn3BcNiuDsYLAJB5wrICMO7Qp6TI3whrATzylRVY6CGYDnxKTbP8O8x2CvaUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:34 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076365","not_before":"1521072465","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ2NSwibmJmIjoxNTIxMDcyNDY1LCJleHAiOjE1MjEwNzYzNjUsImFpbyI6IjQyUmdZQWo2L1d2MzBldDlUejBGUFMrOW1PbjhId0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Iks4Z2VVbHFtd0VxQ0RfdW42aTRBQUEiLCJ2ZXIiOiIxLjAifQ.ah0w7x0qHZOylR_4oMFTnpva0zUsZ9KRTRZslKDgVqrr4uShSikrrJqevMZvQ58xfjgpyKRSJVDCLn-WNSCIN17JNbk0qmNFhCj6n-51Wcx25TSxMgOC9O9CVdNcZL-fzFHZ7mpWlsbJ7mr9b0y7XREuBlhBUfHRKQ3NJs6-KnRiylroLe49ZxdJc1RYbzos6bwDu0yutU6_1fTuoKWBmYZL53qejPPVUfofzh-pqmnesYMrfXQsDBPlgsyeZZMtTakjZyDQf-sWkvQerBND7jVZx5OJWiO0NjFIjLPnMdlEcgZyfvfUe18VJ8alUr0QVVo70SwouusGtfkknNbF5A"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"d100b92f-0e63-445c-8593-f65c7c9af583","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['435'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:45 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:37 GMT'] + etag: [d100b92f-0e63-445c-8593-f65c7c9af583] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set aaaa create] Connection: [keep-alive] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01&$skipToken=b25lc2RrOTQ3L3pvbmVzL29uZXNkazg4NTcucHN0ZXN0LnRlc3Q= + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9543\/providers\/Microsoft.Network\/dnszones\/onesdk8652.pstest.test","name":"onesdk8652.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7808-a7dfa03ad201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9551\/providers\/Microsoft.Network\/dnszones\/onesdk433.pstest.test","name":"onesdk433.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-9d5f-94b8e035d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk957\/providers\/Microsoft.Network\/dnszones\/onesdk438.pstest.test","name":"onesdk438.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d859-f085fd1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9570\/providers\/Microsoft.Network\/dnszones\/onesdk3559.pstest.test","name":"onesdk3559.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-14b0-78a8611fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9600\/providers\/Microsoft.Network\/dnszones\/onesdk8840.pstest.test","name":"onesdk8840.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e2e0-930bb91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9614\/providers\/Microsoft.Network\/dnszones\/onesdk27.pstest.test","name":"onesdk27.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-447a-b854f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9647\/providers\/Microsoft.Network\/dnszones\/onesdk6702.pstest.test","name":"onesdk6702.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c22-6176fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk3247.pstest.test","name":"onesdk3247.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5344-235b3547d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9700\/providers\/Microsoft.Network\/dnszones\/onesdk3208.pstest.test","name":"onesdk3208.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1821-f313f81fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9755\/providers\/Microsoft.Network\/dnszones\/onesdk1281.pstest.test","name":"onesdk1281.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-84be-b137fb1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9770\/providers\/Microsoft.Network\/dnszones\/onesdk7520.pstest.test","name":"onesdk7520.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-684e-151ab91fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9792\/providers\/Microsoft.Network\/dnszones\/onesdk4698.pstest.test","name":"onesdk4698.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4070-a5c1f81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk98\/providers\/Microsoft.Network\/dnszones\/onesdk5779.pstest.test","name":"onesdk5779.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d0cb-1c90721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9865\/providers\/Microsoft.Network\/dnszones\/onesdk1690.pstest.test","name":"onesdk1690.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8100-507f6851d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9877\/providers\/Microsoft.Network\/dnszones\/onesdk4260.pstest.test","name":"onesdk4260.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a704-b95ef81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9910\/providers\/Microsoft.Network\/dnszones\/onesdk8222.pstest.test","name":"onesdk8222.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-864f-9dacfa1fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9986\/providers\/Microsoft.Network\/dnszones\/onesdk7796.pstest.test","name":"onesdk7796.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5661-d8b9b91fd201","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9990\/providers\/Microsoft.Network\/dnszones\/onesdk3.pstest.test","name":"onesdk3.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b60d-8590b81fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/onesdk9993\/providers\/Microsoft.Network\/dnszones\/onesdk6809.pstest.test","name":"onesdk6809.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6ea8-8a46721fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/basicscenarios.azuredns.internal.test","name":"basicscenarios.azuredns.internal.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-634d-c14347c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":17}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/origintestresourcegroup\/providers\/Microsoft.Network\/dnszones\/foo.com","name":"foo.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1f3d-d6f047c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1124\/providers\/Microsoft.Network\/dnszones\/ps5492.pstest.test","name":"ps5492.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-da4b-753714b7d301","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps1425\/providers\/Microsoft.Network\/dnszones\/ps6132.pstest.test","name":"ps6132.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-fc37-d08c07bbd301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2767\/providers\/Microsoft.Network\/dnszones\/ps5692.pstest.test","name":"ps5692.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3d2d-941151b6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps2941\/providers\/Microsoft.Network\/dnszones\/ps1255.pstest.test","name":"ps1255.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-da42-547a4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5162\/providers\/Microsoft.Network\/dnszones\/ps6263.pstest.test","name":"ps6263.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-cb12-6b2f4fb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps5241\/providers\/Microsoft.Network\/dnszones\/ps2589.pstest.test","name":"ps2589.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-161e-19d617b7d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps7513\/providers\/Microsoft.Network\/dnszones\/ps7155.pstest.test","name":"ps7155.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-aa63-69cc4eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/ps8876\/providers\/Microsoft.Network\/dnszones\/ps3411.pstest.test","name":"ps3411.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-69dd-65024eb6d301","location":"global","tags":{"tag1":"value1"},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a2fd-97bef6d5d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":9}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test.net","name":"jt-test.net","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4753-2e0d1ec3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg1\/providers\/Microsoft.Network\/dnszones\/jt-test2.com","name":"jt-test2.com","type":"Microsoft.Network\/dnszones","etag":"00000007-0000-0000-63a9-32a82bc3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/rg2\/providers\/Microsoft.Network\/dnszones\/jt-test.com","name":"jt-test.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c20f-4c6b21c3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testclirg\/providers\/Microsoft.Network\/dnszones\/testcli.com","name":"testcli.com","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-8e54-7da7a8b5d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest.test","name":"onesdkrand.10500onesdk.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9a2-cbc94123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest1.1test","name":"onesdkrand.10500onesdk.pstest1.1test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4dd5-44834423d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest21.22test","name":"onesdkrand.10500onesdk.pstest21.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-afef-8d834c23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest22.22test","name":"onesdkrand.10500onesdk.pstest22.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2b55-ff294723d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest23.22test","name":"onesdkrand.10500onesdk.pstest23.22test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bfac-f6bd5023d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest24.24test","name":"onesdkrand.10500onesdk.pstest24.24test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d222-73015123d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/onesdkrand.10500onesdk.pstest33.23test","name":"onesdkrand.10500onesdk.pstest33.23test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b9eb-dfae4d23d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/test.zone","name":"test.zone","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-38ec-78aeccd3d101","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone34","name":"testsome.zone34","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-ba21-2ccaeb23d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone35","name":"testsome.zone35","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fddc-7d88f123d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone36","name":"testsome.zone36","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-72b6-45e90124d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone37","name":"testsome.zone37","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6b72-82e1db24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone38","name":"testsome.zone38","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5a68-a1c2dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone39","name":"testsome.zone39","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4ba3-41d6dc24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone40","name":"testsome.zone40","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-004a-d1f0dc24d201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone41","name":"testsome.zone41","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-35ec-c705dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone42","name":"testsome.zone42","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0653-37e9dd24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone43","name":"testsome.zone43","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bff9-0cb3de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone44","name":"testsome.zone44","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7627-24e6de24d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone45","name":"testsome.zone45","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6f69-5fbc0c25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone46","name":"testsome.zone46","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c2bf-b1e60e25d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone47","name":"testsome.zone47","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-6799-720a0f25d201","location":"global","tags":{"name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome.zone49","name":"testsome.zone49","type":"Microsoft.Network\/dnszones","etag":"00000008-0000-0000-0b92-8ab20f25d201","location":"global","tags":{"Name":"tag1","Value":"tag2"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone1","name":"testsome1.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-faa0-5c2d0e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-06.daily.azure-dns.com.","ns2-06.daily.azure-dns.net.","ns3-06.daily.azure-dns.org.","ns4-06.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone2","name":"testsome1.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-378b-aa750e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone3","name":"testsome1.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c833-d5a90e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone4","name":"testsome1.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0160-e0a17d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome1.zone5","name":"testsome1.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-17e8-90bf7d25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-01.daily.azure-dns.com.","ns2-01.daily.azure-dns.net.","ns3-01.daily.azure-dns.org.","ns4-01.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone1","name":"testsome2.zone1","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2cb2-47267e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone10","name":"testsome2.zone10","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-40b3-4aec9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone11","name":"testsome2.zone11","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7dfe-edeea025d201","location":"global","tags":{"value":"Value1","Name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone2","name":"testsome2.zone2","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c994-c0447e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-08.daily.azure-dns.com.","ns2-08.daily.azure-dns.net.","ns3-08.daily.azure-dns.org.","ns4-08.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone3","name":"testsome2.zone3","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-53f6-5e497e25d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-07.daily.azure-dns.com.","ns2-07.daily.azure-dns.net.","ns3-07.daily.azure-dns.org.","ns4-07.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone4","name":"testsome2.zone4","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-a8a1-98dd8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-05.daily.azure-dns.com.","ns2-05.daily.azure-dns.net.","ns3-05.daily.azure-dns.org.","ns4-05.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone5","name":"testsome2.zone5","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f8c9-b1ed8725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-04.daily.azure-dns.com.","ns2-04.daily.azure-dns.net.","ns3-04.daily.azure-dns.org.","ns4-04.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone6","name":"testsome2.zone6","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e816-2ff78725d201","location":"global","tags":{"value":"value1","name":"tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-03.daily.azure-dns.com.","ns2-03.daily.azure-dns.net.","ns3-03.daily.azure-dns.org.","ns4-03.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone7","name":"testsome2.zone7","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-529e-046a9125d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-02.daily.azure-dns.com.","ns2-02.daily.azure-dns.net.","ns3-02.daily.azure-dns.org.","ns4-02.daily.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/testrg\/providers\/Microsoft.Network\/dnszones\/testsome2.zone8","name":"testsome2.zone8","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-5fc0-64ac9925d201","location":"global","tags":{"value":"Value1","name":"Tag1"},"properties":{"maxNumberOfRecordSets":100000,"nameServers":["ns1-09.daily.azure-dns.com.","ns2-09.daily.azure-dns.net.","ns3-09.daily.azure-dns.org.","ns4-09.daily.azure-dns.info."],"numberOfRecordSets":2}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"130c47fe-1a25-49fb-9e78-847c84760010","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] - content-length: ['35859'] + content-length: ['417'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:47 GMT'] + date: ['Thu, 15 Mar 2018 01:34:40 GMT'] + etag: [130c47fe-1a25-49fb-9e78-847c84760010] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"130c47fe-1a25-49fb-9e78-847c84760010","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['417'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:48 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz7jR7PDRm_WUbihNovXnRTYevBJloHV-zE_ewIKK0YfsIHkSSjpHG1AsBQ8lV_2fGcxxSg3nw1M-LTpa3Ike3Hfzevi6a8MjOXQt8EuzJE6J0nNET2_U1lVr1UB8Gkl1R-PbEJu-g9dcExffKFk6b0_YoCpIbUNj3dg5RA7VuJf8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:42 GMT'] + etag: [130c47fe-1a25-49fb-9e78-847c84760010] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076374","not_before":"1521072474","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ3NCwibmJmIjoxNTIxMDcyNDc0LCJleHAiOjE1MjEwNzYzNzQsImFpbyI6IjQyUmdZSmdkMGgwK1kvMU1ybEp1enljSmpoSHZBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYzeE1BQUEiLCJ2ZXIiOiIxLjAifQ.GiUdHJc8Y6RHDrH3CMyMjCopg84WbC5Wy22I--UjTw-Swc7oW75_Su1GieB_cWWeDPy4bTelIQm_U3XmnwV8VxcZfa3KOj2aJr-nMj83afGOxsZM2TAxLdnpGL6jx2lYyKH4b8ZO6lrQZbX5rOp2p1PGwcciL2HGenJ8XZqQBlIES-NoStU4Vrcwv_Dg280hF_gkG6-ctxu466I4_0fxFiWZMRv3jERI1xIc089clM5EGs0R_bO8QP1AXwrUohuozSGkedph3Qdd6VXrN7mUNwyXitYN4rHMpLEU66zmj76efBrRuix6ZSvtIzFa2EUFO7rlQhyZuCu6VqTEkC1pkQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:12:56 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: 'b''{"location": "global", "properties": {"zoneType": "Private", "registrationVirtualNetworks": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], - "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' + body: '{"etag": "130c47fe-1a25-49fb-9e78-847c84760010", "properties": {"TTL": + 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone create] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - Content-Length: ['537'] + Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9f711f24-26a5-4597-87db-eb813f3bcd77","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] - content-length: ['951'] + content-length: ['455'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:06 GMT'] - etag: [00000002-0000-0000-0999-2764f2bbd301] + date: ['Thu, 15 Mar 2018 01:34:45 GMT'] + etag: [9f711f24-26a5-4597-87db-eb813f3bcd77] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 201, message: Created} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['232'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzs5FLhLabp_Dc-NORU1PFw5CbWf5FXqcoLrtBr0qtsO9EeDDq5_Y2lJ_0rvdDcos62o5MOCTVODjAGH81_kw8olqxXFiTzbPYPN0MdozPPC5l68xTw5KFO39-pIiLDZMvUldgV3t3NUIlPwc8q7VOe7EyCeEutLc62l4DZRnizAkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:47 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['87'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076390","not_before":"1521072490","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ5MCwibmJmIjoxNTIxMDcyNDkwLCJleHAiOjE1MjEwNzYzOTAsImFpbyI6IjQyUmdZSEFXMlhlNDZmNm4vMmQ5KzRzNXZYY21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhLeE1BQUEiLCJ2ZXIiOiIxLjAifQ.OiUK0acnGhkWPr2gckXQVEKQe6uuSbUyco5QQXdjhPaqmgVM1twALLfcj65iCzh8pHn22nfd6IAdmT7RCJzDqkOhb_x148G6KIXUZvJ8MpsAbZRxJPQNxCMG-I8s3yVdhhI0H5Ov2MFPJgcyQc-b_lN-gjb9IU4frxS0aimmugYBhf7SQnvx5WVG-IyRP8DhxNBkHCxtNHJ3aPiMKVfNxJkDHLs9314unXUIBOioF1u7tdPdNTmFY9L78JQlpYKrmVsE8wog5SD7n4AGYfyub3gp_Nha5FA9AO7dWhgyqYeBi4fhgQ8VB4z8dq9xbgVats2LbaX12g22KYG7laUGYw"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"dc61039b-7c54-4460-beba-3f70159617fb","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['464'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:11 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:49 GMT'] + etag: [dc61039b-7c54-4460-beba-3f70159617fb] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone list] + CommandName: [network dns record-set caa create] Connection: [keep-alive] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}}]}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"4620c953-f54a-4316-9977-20d413d09245","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] - content-length: ['456'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:13 GMT'] + date: ['Thu, 15 Mar 2018 01:34:52 GMT'] + etag: [4620c953-f54a-4316-9977-20d413d09245] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"4620c953-f54a-4316-9977-20d413d09245","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:14 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzG5AWG9GU-t76xO6JVsjs7iIGEpf1pp1he0HW681Sj0veveuOxh349yH6YW6P4C08oUzRB_14cjnxnLw4L1I1WeM6-5uoJUNtq9FNiFwkTby8iiEEAOnbccm2HT0ZlNLIrq0rmT0Yhjly2SYWsnP2y0NT1lX7UkEtcip0DnlSdxQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:34:54 GMT'] + etag: [4620c953-f54a-4316-9977-20d413d09245] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076396","not_before":"1521072496","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjQ5NiwibmJmIjoxNTIxMDcyNDk2LCJleHAiOjE1MjEwNzYzOTYsImFpbyI6IjQyUmdZTGplSjhraWUyekgwU3EySHQ4TlcvOCtBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUkkzNUVBQUEiLCJ2ZXIiOiIxLjAifQ.JSIfaQL66vPu7BblqOyKT42V1iZiestkRH3qpJA4YmefY-bBKTgDjnXWNeLUVdYWzLQncJRSReWNbvOOoU4p5YTqp56SFKGcmjB6sDM4D-SUsJ660NjfU00aFSC3G-qtP9XKPanZrwdND80B3tyiWSVEO8TVQB5RSkACto9koGiDuZ005aoUUNiR67KuEJd_oM8aF18_IOKgb3SiaQjNjkcOBHTzBBUBeZSeEFDcC94upqO8wmwGTAnmoTMGlhbVbekKrKUTDhfEZ9-o3gJD-slpjysrY7WzQibUtK7rxLsaKbmhbwxBFM7SQwhajmT1JuMaCnlRvn-CBtBDgnG6Zw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:16 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "4620c953-f54a-4316-9977-20d413d09245", "properties": {"TTL": + 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone update] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] + Content-Length: ['142'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"32e76d2c-4ee9-4034-8ba4-86205048181c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} headers: cache-control: [private] - content-length: ['951'] + content-length: ['453'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:17 GMT'] - etag: [00000002-0000-0000-0999-2764f2bbd301] + date: ['Thu, 15 Mar 2018 01:34:57 GMT'] + etag: [32e76d2c-4ee9-4034-8ba4-86205048181c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:19 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzpLGhZ79ua-UI-kpoSKNTZ_hcvf-WIaF2wN031S0lqpDc9f3X-XB7mWMEbsf4YHGrcJ0mQXouuT08jGBUEXuiZihbaufMjPACkygBvlo6-AOCYNj4__GRts88jcywSFcfF_W4VADwz3uq0IW4GTsKgPVz4MCF-g9UJ06beU3nLE8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:00 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", + "value": "my value"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['94'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076400","not_before":"1521072500","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUwMCwibmJmIjoxNTIxMDcyNTAwLCJleHAiOjE1MjEwNzY0MDAsImFpbyI6IjQyUmdZTENRbjlVbG5OU1d4LzVDczdKdzljVXVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhlaFlBQUEiLCJ2ZXIiOiIxLjAifQ.ug5FYH3kT1pDot3run5L7bD8zzYyfhQBHSAec0I3rvtfNCoEU3o3r5EOSwANWLOz3U4fUedvZ5grQ6FajANxWYApJXpThq8NGG-YShnLw_VZI2PZFY4Xy_wUJc-dBErnaAXpM4i1lTT0lLVl-OY9Pu_mBwJ2id0ZVGdrKD3Dyibrf3CEWjr262P3Hbr-stiLIayjHuDO45BCV1r_fQyszSsDuill2xJagM3wwMw_XxtTCUYY3KURApP-MC9ZrKLzR6yrdlT3rQzTdqKBaCbjc47et7bLXuPpqH8bDWZ4Rh-D7wJvQoNr_MrTz9KGbnCzv0IkAZ0nDU0in5F0cX-9ag"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"95778715-8b3e-4976-9b56-b6a92038e9b2","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['462'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:21 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:02 GMT'] + etag: [95778715-8b3e-4976-9b56-b6a92038e9b2] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-0999-2764f2bbd301", - "properties": {"zoneType": "Private"}}' + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone update] + CommandName: [network dns record-set cname create] Connection: [keep-alive] - Content-Length: ['121'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"6521317e-e524-4821-b0aa-54e5021617c1","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} headers: cache-control: [private] - content-length: ['529'] + content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:22 GMT'] - etag: [00000003-0000-0000-0999-2764f2bbd301] + date: ['Thu, 15 Mar 2018 01:35:05 GMT'] + etag: [6521317e-e524-4821-b0aa-54e5021617c1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"6521317e-e524-4821-b0aa-54e5021617c1","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzmi0ePYr_Zc3hXPMoTsMaT6hcOMg9tZpzUO6BsjmIeZHW3KqTI5glCgoeDPvvgDx2VNgFcI1_iebUndCOdIi3NGUViA0rJ8ADZy8Pj5tXFnwJqZaaYse3YQzzygzBi2mlcQ9vWQz4oPCNx0zRIWrZosjqali4gmfkQEqEu477oTUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:07 GMT'] + etag: [6521317e-e524-4821-b0aa-54e5021617c1] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076406","not_before":"1521072506","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUwNiwibmJmIjoxNTIxMDcyNTA2LCJleHAiOjE1MjEwNzY0MDYsImFpbyI6IjQyUmdZRWhjMEdPczFGVzBYbG0vbjMxeDJKNGRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhSUmdBQUEiLCJ2ZXIiOiIxLjAifQ.LwBGG0TXrYscoiXWt0c1e7EKK7u-Kuw2OEnCgtO-vC94NvDWWUsEdnmdl11qL3836_KebmDxoG-qw-lcwkGK2GBvZlYofgx02n54gPJO1bnnAp-FJksHrSdC0R2Y5iCYhajkbznc3fC-TclV2PrSRmapY6_vJThO7hGJ62ifbHYrjVmtPo0FS335UyUd3gAOIkMVmjQcyd1G3y9k09cYv6uksNo4U1sfkad5gIuwvmPxe9-Dyq9t0WLbUsHr3W0rY3LpLasm3CrjkOJsUXdU-BJNdxMwQw_Y5JAd1lHEp4PSWlmiqw2VGiZ36w19Ht5frZgqhDCNdnA3LlDOibYMSg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:26 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "6521317e-e524-4821-b0aa-54e5021617c1", "properties": {"TTL": + 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone update] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] + Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] - content-length: ['529'] + content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:28 GMT'] - etag: [00000003-0000-0000-0999-2764f2bbd301] + date: ['Thu, 15 Mar 2018 01:35:10 GMT'] + etag: [2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['233'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzS8wkrHSp10KrJOeP8bLmrT2qmEL0VqEWCo9YykbPUgF-QjILB358dIKffNQ7m65RC9AwJa2cVDrgH0Etp409Ug07sIq_Taxv2jYzH6vU2PkvJNSvAM6TjV9qjfD0QqcG-DMDsRPVYHYXPw-AnTEiRIS1h_7164KyVsX45Sp2qMIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:12 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname set-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['66'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076411","not_before":"1521072511","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUxMSwibmJmIjoxNTIxMDcyNTExLCJleHAiOjE1MjEwNzY0MTEsImFpbyI6IjQyUmdZTmdobWEwbE51dk4xckRnbXBMRVY2enpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZveDBBQUEiLCJ2ZXIiOiIxLjAifQ.PZgHowiLwtm4V38ixQaTX5IiuajdP7QKNVXA7s0cQE4LEDfIqULCj9fwLPjg9RVbA4pMPWD77X-NlPg-41rm7bY1zDRWm0MW7Qa9w2JC63AxSdhUhMuVoY4YhJ4HAIQu7PbuunWVoQjbcDG59zFt9CCFngza9kGIZFgsLDBMc-J1-1BeO6MKA7CJcaHtqSDKD5-S1Hpm2jm9Rd0nwS316oAd3clQHZlaeWKxW7HeVKGV35vulhw-d-gJWOByDouZcxQ-GjNmLUjAxfRLRsP1Jeg38-J33WPc3yddo6YXZYBgmnCjicTKxNzdzmN0HQSx6BWK9Z1PRX2UI4W_3wINxw"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"3f95862c-47e5-42b6-a015-fd63525ba425","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['448'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:31 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:15 GMT'] + etag: [3f95862c-47e5-42b6-a015-fd63525ba425] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-0999-2764f2bbd301", - "properties": {"zoneType": "Private", "registrationVirtualNetworks": [{"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], - "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone update] + CommandName: [network dns record-set mx create] Connection: [keep-alive] - Content-Length: ['597'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"2afb76ae-eaf0-4ceb-8e07-a9e6acd11496","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] - content-length: ['951'] + content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:37 GMT'] - etag: [00000004-0000-0000-0999-2764f2bbd301] + date: ['Thu, 15 Mar 2018 01:35:17 GMT'] + etag: [2afb76ae-eaf0-4ceb-8e07-a9e6acd11496] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"2afb76ae-eaf0-4ceb-8e07-a9e6acd11496","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:39 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzx5fmo2wiG5QuBqEwvd6NuHFw1e5npC9STOArXxDohDSI-f1hfTvHDxFnX7YDuOJdxQlelAeX5AjS9ieePdLgpZIJ_SqrUlYdlolMVH8rmIy7cvgYHofB6QOS2HfYCpUEqIJiFMiezyco2UjJuUYkfysth7lzMhO-oFfGp9ZslnQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:20 GMT'] + etag: [2afb76ae-eaf0-4ceb-8e07-a9e6acd11496] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076420","not_before":"1521072520","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUyMCwibmJmIjoxNTIxMDcyNTIwLCJleHAiOjE1MjEwNzY0MjAsImFpbyI6IjQyUmdZR2cyTzZpdzlNTWRtMHNaZDdsTUQvWHhBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh0UnNBQUEiLCJ2ZXIiOiIxLjAifQ.d-bZGtRfK7xZIYLXhLe47IG8Z4jgnHf5PziBTFZ3F4Qb7r0EQ38VuzAqyq5bZ_kKaA6QCndEFesBrMjVyePK5Z2CCKAjHMiy5T2Jyuh0O2PAHchR7lSTrT8xzUDhKLXgyxyttPobVu7K2oAMvhDa3MmKopzIqhqq_WzUTvtToHFxJKi_A_maGEmbgX0aSlQeD55oIf68aYfn67gbjbke3kI-5wKwOzOiFdo89tHwTsgDkAJopZgRGZBnL5QvG9ZTrbyRQEuLl64L4ctE1cu1cjoMlnvISlMSVxE5Q6woii09swsL6ZbbmnlQaFyDZ1G7ZGod7SwZXBpdNz753akl5Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:39 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "2afb76ae-eaf0-4ceb-8e07-a9e6acd11496", "properties": {"TTL": + 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone show] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] + Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":1}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"791a3d38-f38c-419a-964a-76556a329571","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] - content-length: ['444'] + content-length: ['438'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:41 GMT'] - etag: [00000004-0000-0000-0999-2764f2bbd301] + date: ['Thu, 15 Mar 2018 01:35:23 GMT'] + etag: [791a3d38-f38c-419a-964a-76556a329571] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdfu460WXQe7Ck_gNlZOfTR-mI0TG3Q1csfe5kb5gna1CaavDfK0eL0UewFHvnnauoMOQ9bdas-t7QKK9Gsmy8nlWh-DK0Wmo_CHGOzoiRzbNUbsCstzehlF7lEGAdpviPP07T1GYnBr6SvLynE6yCXs6wk7HaYsSYxiPagdy4FEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:26 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": + "12"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['82'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076424","not_before":"1521072524","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUyNCwibmJmIjoxNTIxMDcyNTI0LCJleHAiOjE1MjEwNzY0MjQsImFpbyI6IjQyUmdZUGdxbjZ5VnRuUDY4N3RHZnoyY0dEN2NBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6ImRudlZRelQ0X2tpZEF5aVZPeWdBQUEiLCJ2ZXIiOiIxLjAifQ.BPMflqVGHKN0T4x7_b4AyFTVwxVsPuvbjyIZ5NTmdSQ4PqlHPsxlKQWWDclABepe9cRzTqpA_UDsyW9F-le6m01oT_uTRg57t0J37Z8Qtbtkpx2C3KQ54rLOe7c7UmnVvCifLTLPrQlqqOZz6KBYPyhlZvs2Aw5umYnx2cg6la-3eJO2zQwB3Ta2vrIDghxyki6_4MPzMprUlP5o1tmjhljECmeJbL6eWRv81XQf1ZAR-0AXy0llaJWUNbRUHjkPbRg7VLbDs4AGK7MKsJkuLULj5IOa9EBWZdR2Bx3hmNqApG5YKte4mtgPHhq7ccfNYjZNHSdE3UlcUAjbfmeIRg"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"ceee2596-6a36-4ea1-b9ac-7e71d4166ee6","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['447'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:44 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:29 GMT'] + etag: [ceee2596-6a36-4ea1-b9ac-7e71d4166ee6] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a create] + CommandName: [network dns record-set ptr create] Connection: [keep-alive] Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4b05b98e-fc1a-4e1d-93b6-74a4726496b1","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"204bda70-2700-4ab7-a748-3ed6363f087a","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] - content-length: ['399'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:54 GMT'] - etag: [4b05b98e-fc1a-4e1d-93b6-74a4726496b1] + date: ['Thu, 15 Mar 2018 01:35:32 GMT'] + etag: [204bda70-2700-4ab7-a748-3ed6363f087a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"204bda70-2700-4ab7-a748-3ed6363f087a","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzvx_BdkaX5s7jLce7q-0Fa-HdL4rwX2hFBa0353xnCv4BMDBTE0Ovmzv5ljuJ9WIhAuWd-13KfWdf__S4yRu8BHNBU0t-u3_U3javcbqJp-y835musbO-edGwJopyV2obLQUOypvIZRGP_Ljd3xJVz2wkBhHAlFmzP2am5-jywHIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:34 GMT'] + etag: [204bda70-2700-4ab7-a748-3ed6363f087a] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076437","not_before":"1521072537","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjUzNywibmJmIjoxNTIxMDcyNTM3LCJleHAiOjE1MjEwNzY0MzcsImFpbyI6IjQyUmdZREFJUzF0WWU3YlhsdU9sNUV2YmJUWVBBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUkloNUlBQUEiLCJ2ZXIiOiIxLjAifQ.I2lhK94CqDD83jtgD0zAC8s9ZDy7KC44b_fxAxQ_P77z_GcaKD9W--PueZn1X6OhyicPDyz9yLk0L0Tg2QT3Qv3EFy7CZaovRBcFZoym4ZAGPz1A2oqsM3GHEg_vOH4f4_78aIIbKiMWG64Hnj7Djnwacw0LjLCHXK_tBs5draw1SL8nUWfz4NaXMeiB4xA-uhE9btphdd0wom017EwKqAEo8njTv9Be9XsCnmEXfgYyXhKc4_9tFb0FTBphx9t02ZvwxQUOYTzzAKAt9Vf8UOa6MIyluP2ag7FgMgwEPIaOjI00v8mGFcAgnZxYje_Ox8wF7Df_uhFvTIIA7bWGJw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:57 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "204bda70-2700-4ab7-a748-3ed6363f087a", "properties": {"TTL": + 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] + Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4b05b98e-fc1a-4e1d-93b6-74a4726496b1","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"5f243d9e-4998-453d-8591-2ed2427482f1","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] - content-length: ['399'] + content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:57 GMT'] - etag: [4b05b98e-fc1a-4e1d-93b6-74a4726496b1] + date: ['Thu, 15 Mar 2018 01:35:37 GMT'] + etag: [5f243d9e-4998-453d-8591-2ed2427482f1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:13:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzuYI-Y7PxsuXhtZ8DX8t_rAKgsuPRF2quyAI4EOmPCaRo1lIZMAd2iK6zQJCYs8ceKcHTbdGSQt7FFmCnMt4MBZ-4QNIEgfyiMnYYajS9pxNbArWk52h5khwd_Kxw6s13xSQlPrEA3DcVTZO4GHyiskUB_x12Eo59h-b1YoUF0mEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:40 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['73'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076441","not_before":"1521072541","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU0MSwibmJmIjoxNTIxMDcyNTQxLCJleHAiOjE1MjEwNzY0NDEsImFpbyI6IjQyUmdZUGhsOTY3Qi8xVDVoenVWUGVwTkhTRXZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh2Q0FBQUEiLCJ2ZXIiOiIxLjAifQ.iVa2YHfDVDKaVqw30po5ipunW2o9TqIsZoyDABgzq0GzVx4zX21odj2r3RF0KZjtiZAIgqm81xtC6x6iuuX0elyCj9QjdDrPwzpkOuuPTKC-s4JHUnt_S0c_FI8i-2GW_chgYmWlTv1XcG1Bsu4kApVMBx0kATMcrgjS_tXTqQd5FHWMfu3lfwVREPvfXtoO87Rlf6p_hJVhGfUa510S-xfrtecwMLBjVhhzAHVy2DMP137KAP3-Jwb75cLRsoSK4Y61pDLge5AYfabvysFJm4rnfydl_ZAbHthrg8SMw-fWJHrQQnXh_9SGWR5natPNjwLaxf9qW-Z-amhBZSZIUQ"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"81e1d7c4-7083-4c07-99bd-01afb8fc5d96","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['445'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:00 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:42 GMT'] + etag: [81e1d7c4-7083-4c07-99bd-01afb8fc5d96] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: - body: '{"etag": "4b05b98e-fc1a-4e1d-93b6-74a4726496b1", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] + CommandName: [network dns record-set srv create] Connection: [keep-alive] - Content-Length: ['121'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"826fd72e-d887-4142-bf03-f5b08762a08a","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3748562a-fa48-429c-9eb6-b3f5cecb457b","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] - content-length: ['426'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:02 GMT'] - etag: [826fd72e-d887-4142-bf03-f5b08762a08a] + date: ['Thu, 15 Mar 2018 01:35:45 GMT'] + etag: [3748562a-fa48-429c-9eb6-b3f5cecb457b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3748562a-fa48-429c-9eb6-b3f5cecb457b","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzrJLbrNc9fQWRCEScQpsvV8gB53_JplnkNO0k_0SDydGtzOEWDmR7uVklvDvSd8OtbEKg-c3wIgah23NMsN_npu4nUp_Cym0u7sIePeDSviOLNHv6AykEdVKttrXgGCun0_kNfKFYNYTUAOvxyZTLWlKMlY15mHXIDEr4vSM_RdQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:35:47 GMT'] + etag: [3748562a-fa48-429c-9eb6-b3f5cecb457b] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"etag": "3748562a-fa48-429c-9eb6-b3f5cecb457b", "properties": {"TTL": + 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['162'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076445","not_before":"1521072545","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU0NSwibmJmIjoxNTIxMDcyNTQ1LCJleHAiOjE1MjEwNzY0NDUsImFpbyI6IjQyUmdZS2krNkY4cWR1Mm9VSlhCMTJlK2I2WTRBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZGeVFBQUEiLCJ2ZXIiOiIxLjAifQ.NQqEGacVE1n9hcOHtKvqub4R3o2Oiz6b_76VeXrZXP9aK_Qmm85tKKHXP92zacN5B6jL6F7wBLH6lJmeXPnrHq54XU5Ri395xKciD-vdVD8VJYqPHo1GKIkTtd97lWuNzbXTVHPhX2fyeDJYJ1_3QrfSJH9kOm2VogJ6tKI6c90z5iRdzWkG4oseWMGs4ALoWllvSzdS-x7LmuxhPSpABbSnb_AO_H2oCFNXWVGrF-3TfelN0pBITI_sTdeP2faMIeMbgdjaWIVLiacVt5SORmdCWkOLmJLAIOHl1h4lUJjAOt0_KUVrBf0Hm85DZTncHSJN4tJaVOUEsu5NLcGrYw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:04 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['229'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:06 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzampF85RADTM8abCsci5WZZT6h7NL6SDdrO6uGFcv4udqFQogjj3aEIWM7XaFg4Ty00zhy387IdY2R9Vr3rX-NCE4vHF39Lw7ORwwC7O7GnfBshBjJWBhUwrBm9XyOFhy_0OBp4exvzwT_pElJLCVeb51uRygo_AoGwFZaD3Wd3AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076449","not_before":"1521072549","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU0OSwibmJmIjoxNTIxMDcyNTQ5LCJleHAiOjE1MjEwNzY0NDksImFpbyI6IjQyUmdZTENRbjlVbG5OU1d4LzVDczdKdzljVXVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhNeU1BQUEiLCJ2ZXIiOiIxLjAifQ.r4Jp4gsgYCzuGkbgSYI8XuaYyoo3QTOJ5FME2XxzY4cBswxTiHdZTr5tVtEopwbm1RUG55IkKf2MVzhZ9mlWy5mZ_B0EZfK81JXZNCqY9AI-oljLtbeG4Y6BNiJUcgilDLzWroj6e8X7399rRtocBo436ZU8X5VGdKbiLCr7Kyx5xTXPmi8b9zDNh7soj-IQAnCm9s0SdF14x8nMSfRdqIAhptK1KpPFZzz8nO6CCiIH-6sr1wwOZ3hgSLp59tqtnUN81cMmDv8MOOSHCk87--zcnwqNr9_tbCo-DxVJUttjUL0kndO5CoizM0-7fFQ6r20Dz4zSrjIjdPx5uol7cA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:09 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] - Connection: [keep-alive] - Content-Length: ['73'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"9fce67d7-20fc-4e60-89d4-e6a802e64ee0","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} - headers: - cache-control: [private] - content-length: ['435'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:11 GMT'] - etag: [9fce67d7-20fc-4e60-89d4-e6a802e64ee0] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz9JFrEh4AME4Vc-zUCCXmfLp3LY5wO_fw8l4LwuZdCEgcHdiL7zelvOEe4uHutXy3oItAWJ3c8nSWF2yxlWsOy9c0xUq0zU3Vp-Gg0k2oYhqmG0fy_64aA1SrZWZqLnumx93xkHTMQtqYPLOt0HMXIAag4RMcCeKg3BnYZrqGgLwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076454","not_before":"1521072554","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU1NCwibmJmIjoxNTIxMDcyNTU0LCJleHAiOjE1MjEwNzY0NTQsImFpbyI6IjQyUmdZSGdmNFhwWTZmRHh2Sm5wZTZZL3VMRzVGUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZBQ1lBQUEiLCJ2ZXIiOiIxLjAifQ.Mo4nAB2TScsyjSWkFMj92R6lNKF72_u-M82tN2Fm7TLQISf3badoA32grSt8Tjve88kOIB4IMg_EqdgwpJbAz5M0KU0XMUtmNQhJEW9bRrHhptV6JtS6hUIlIJ_jgkPIaAX_Q5Z0WCJLjPnG9sV8jPILjcLjotlZ2-5eP3EeSBge_ugwCrCKjfM-7hnOnGxfQ9cWUyEW8SkIRZpB_hbYjnpb5iYru6x___d4N8Tl4lBucp6kzYBdmo5Ayj5iBc14uHYu-GlC9veGDtZNS1u0NM-_uL1X3zNVevvYkfWhP74z6xQqBCDEan37ihDrShuLVcebiQjy0T4c_FmMj9LKaw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9851145b-b878-488e-bcc6-170c7134bba6","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} - headers: - cache-control: [private] - content-length: ['417'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:23 GMT'] - etag: [9851145b-b878-488e-bcc6-170c7134bba6] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:23 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYMVOt1NoivBeQilnmkrMucWHxCwRgWk9Ogd6vLnx5oGU4huxhm73rewQdgbMpj3hWHmg-le3cQCuwnsJbw4ytPspiHPg-nxVL7JtGiZrrJjkGw7sxNhdmjSlYUsP6W35t7bUrtjvcp7gV3w09dZDQgvCAT7icVKG41ttcH_Vz34gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076465","not_before":"1521072565","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU2NSwibmJmIjoxNTIxMDcyNTY1LCJleHAiOjE1MjEwNzY0NjUsImFpbyI6IjQyUmdZTGhTdjYrLzJ2L0E5OFJJYm92b0xaeXpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZ5aWNBQUEiLCJ2ZXIiOiIxLjAifQ.oqRUAhQxjEv0oO2p9XRGyh7TTnNcyKCKsDWh53hoKti9iwILR2nbCFFJkoJB6fyhO5BjPJYbkv5xzKY9G6YoLY_NErCHNV2EkxH6qlnkfriaWls0vSDTakyD5IxYLKGWCvhLf7CDuiJxf1uN4LBEIcnLZZsjank4FfTHa7MqZSrLOMOWWZqcCn_4vxhYarPkMv23rxTwF2joSSO-LDqb5XDhTLWm6MK1iQ-dZGdz1MxXeSBgpgUXkfOKI9vewJ9qpN74CnNfY-hyYJcC8V419Qy1dFHgrwa7hJ3-EaBdGrvjectvZDjQfG_wPJPeOmVDUm2fFWSp1ddF3HcRhSaL4w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:25 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9851145b-b878-488e-bcc6-170c7134bba6","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} - headers: - cache-control: [private] - content-length: ['417'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:27 GMT'] - etag: [9851145b-b878-488e-bcc6-170c7134bba6] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHztthhtQUarOxOqSIR32EvfXKbr643LojqrrnLB3nZHJnMtjmG66ED5xQndwf0FNK9vZqarhoYyuEGq-MblgKfpqr6_QBEZ5m-3Nz4tMN3UfHwVum8buhY7ObGXOKmBvN3a2cr39jIOzg7WfHBFG7MsMKFxTKMUYlQivsdpl9bZqggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076470","not_before":"1521072570","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU3MCwibmJmIjoxNTIxMDcyNTcwLCJleHAiOjE1MjEwNzY0NzAsImFpbyI6IjQyUmdZTWhlejJHZU42TW4vRWFlMXN2VmJwcHRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtFQUFBQUEiLCJ2ZXIiOiIxLjAifQ.CFJuXmmMw5p3lZRNyxqqTtt4glvxBJamdhe0MZwgWBEZx-ggnhAC0So6J5B8uOlUFxxLjNF9xWWenTz7vIyYMh2oq2SFA8CSHSK9utem3n5-f0GqNNGVXVCzLrGX3uojhKA01EbCrcJIbqmtCLxmoHnkrG2ol8gokABOHHhZAwL0C_gGAZ_sJz5_mTSL50jP1CWzllD_xydj7_kHjfwcFw3qySsCwE_4gfYa6GZWLjeLEq_bEQLwVy4LiT917nlPyQESKdMTAIo3Fze8gb_4Z2N5UDdVViIE1mr9UA4tkeOX9ruQf1bdjYv4YOTzEvwzgM6khwnE9JjAX4OcQqHp0Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:30 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "9851145b-b878-488e-bcc6-170c7134bba6", "properties": {"TTL": - 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] - Connection: [keep-alive] - Content-Length: ['135'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1abadcfa-54fd-4473-b821-9b1f255873f0","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} - headers: - cache-control: [private] - content-length: ['455'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:31 GMT'] - etag: [1abadcfa-54fd-4473-b821-9b1f255873f0] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzlEfxwN--EyO3JXWcP4T9KQ9X9G8PNomyBIQ9ByGqvukmJH2bXZDvTr7vJL2FFfTqsUD3a2KtfyfEiAf7Cv9QV_9nTnTYqUTKsHZq28LIQhwH83rlO6HaqtiPMDFAJYLddgnVOjBcEeTbOsP4GcOWNWFog3y63wTAUhjraJ9PhuIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076474","not_before":"1521072574","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU3NCwibmJmIjoxNTIxMDcyNTc0LCJleHAiOjE1MjEwNzY0NzQsImFpbyI6IjQyUmdZSkM3eVh4MFVzN3EwQlh6ejl4OVdwaTVFUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlVza1JiUjVVYmtxdDVrWGFkakVBQUEiLCJ2ZXIiOiIxLjAifQ.UfHnqYpJtcj3Q4HVcuN8rePnVqL-8rIhOqyyvX4rTNqv8ifgClgM9tHvXMcGln3EN5VI0Ypq6xTnDFnhA1pt8IDLXSUvDEygI9t4bLlVYCLe7pd7xkpZQbImdEMRTEeYrFRDeLbOK9fwSYHmh4-LLPYO8dhKh1xiXq66gwWeoFqUUJKsqrcbtFruLma5g6Rb1Z7n7TAOQ0d-A9_iof0vDqw1hx3M9mdJUYn77aUXjElpZmhVWoDmYjCHxpkafXrivgo7FMFQDuidq1CW_ymrB85ezYJA_YPRXj_OdnVvosCqqgX7_lj21pTXCBRWul-fUr1S9jiMrYUIlphm14s7Hg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:35 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['232'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:36 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzPIUmEwp4oRDkGnv8O-f3FS86JH7APJhlf4Pvxt7QOigAzFkV7C3h5XNQYZWFZbcJvMK7uzYMjw6R0bMutzf_AoYxXJi69Vg8GdgV9LCmkWjmxGB85V1E1I24UPTGjHLp38fdEwo0SxULQoKX1iTDbDINQmzJtcPBCG9hCs1wa2wgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076479","not_before":"1521072579","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU3OSwibmJmIjoxNTIxMDcyNTc5LCJleHAiOjE1MjEwNzY0NzksImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh0U2dBQUEiLCJ2ZXIiOiIxLjAifQ.d_y0KQ2_qhUbDUHKqjFSycegx-UlwpZ6QrRpBAZQkTescE4IHfrcvwp-cvOO-qFKWhydoMITnbQD_NyHUQGp0rlSw0k0rFT6gMICk9MDYOnwkyitQ_Ns3KW7hGH8yxufnVIvO_QTh7YCg9KAeTUHk1LGSipDDV7ydSIHPgacDG4vb4YJQ_r7SVcqUGrDqKUSuUUxOSqMnELKsizOA9NInEFjTxuiiIbX9lHFRu-0PZ7BLNLzo5XJgzHxYGcvE36kMrnRSN-Xp0QtHBSFYmYv_9slwIdRJOLAhlN7SyQgn-kw_dZQFocp29zYqrkmX-j0AWMj8VwSyFGsUhon6WdGbw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:39 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa add-record] - Connection: [keep-alive] - Content-Length: ['87'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1875dfe0-e68b-401c-9471-86f9de7aab68","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} - headers: - cache-control: [private] - content-length: ['464'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:41 GMT'] - etag: [1875dfe0-e68b-401c-9471-86f9de7aab68] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzauHV3dHAv9sq5Xw0lGJ1IvIGP4VbRoS-NmS7evlLSFmy71aFwlUkOhVCfYmAiuW2wRIOV6vJF4x05O04KF07BvMFyg7uKPIVZ4xsCweXJMbfVmtOp9W40oM3bRH3Pms9mI2f7Liy6IaK4nM6-aeCM_u-31pu7v_vJEtihzHYQmAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076484","not_before":"1521072584","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU4NCwibmJmIjoxNTIxMDcyNTg0LCJleHAiOjE1MjEwNzY0ODQsImFpbyI6IjQyUmdZSGdkekg1UC9mQW4xNVNVQlk5T2M5eitEUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZ1Q2tBQUEiLCJ2ZXIiOiIxLjAifQ.egSGqF_JcBCp7dOjKc30Hyy8pNNa0Uj13Hdr7ew-IHDU3HPT1S92-oM5Ab3UG4gz6v3VZGWiUYMQBqiu8z6ZfEx6i675i7onKS7_Z0ku3pDBwLEwPQGH19qsrvtLEQ7Fyy4cklSRk20PPc_Awf6IVjM9XsAHgPXq3-5ADtyGPR1-iHQT4IUfzNv4r6UhApOs6wS0h5Taf9P8rQCnj12V3PhF0TVI2YLnu8G78BXFPCRGxaood_dS9vZthtBrs4TtBo2A4cJp-s2CumnQhHK170gOO5CB4ozH7FiqjFel3txpuIsJNQsGW1jDCwpM9daW-nGRIcTEaUed9Xix38BlOQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"ce7129f1-1aeb-42bb-88a8-1ad3b04cc066","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:45 GMT'] - etag: [ce7129f1-1aeb-42bb-88a8-1ad3b04cc066] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYmt1d_sJOHr1lXUNBLnwg2lw_Nu4is03zdXPlqBNZ2JwddMH-dT9RNeBeMrSXDA4BCAmd-sgMPiNTxIVu0RnFtQ0GQeO6oPsczYAOGLFeM3mDqnL64m58tIKWmf9tXPbMufzhh5mHNPtKP4DB2XVXwbje3pCMulE4K0MdRtCskEgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076488","not_before":"1521072588","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU4OCwibmJmIjoxNTIxMDcyNTg4LCJleHAiOjE1MjEwNzY0ODgsImFpbyI6IjQyUmdZRml0SU5VOFVYN2R0cllDVmg4T3JtNVBBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZZaW9BQUEiLCJ2ZXIiOiIxLjAifQ.Co4_zXDQa24vYspsifip5KzRvnFZ217NYd9c_fkmlxWs8z4y8xZw8KyxXmVY_CKmPlUwDmaJyy22f8bbI7kdeuniHYO1vdLpUfkPfajjzJHB0XhmnH7u4bxZUR-W_98zRMWVrLRFe3GSLwdAc8CIld6iYja0WAWfZzdF8jlv8uBFwwJv7uDcOHoLsWD7ga6t_nGLRjQWZSWdd54ROwtf8ytlmamjQWHGxIqAt9dp_n6nLHNUqe4mVXwXMhMF2wll95WB7rKYPxJlwnSVXEOiNApkkBsj0vv6StYeA3Jl0XSR07t_vKsaGvDD8vD5TgD4TZL5c8n133UHbqRoPxfx8A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:48 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"ce7129f1-1aeb-42bb-88a8-1ad3b04cc066","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:50 GMT'] - etag: [ce7129f1-1aeb-42bb-88a8-1ad3b04cc066] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:51 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUUygtNJd0_pbqdreiqmiPALbAYeINAvY1k3T2PMUFo24-cEucug2tKq93VQbOlyrtoUgNJE6ScdZJ_d7qHEYFP1EObv5DIxNeisc0wMGlKdaYlWUqECdz8fa81uQJa4TlsA4F_yp2i1s2t-FOyuz5XqQH6moLo-zrJvoSfIKpucgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076493","not_before":"1521072593","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU5MywibmJmIjoxNTIxMDcyNTkzLCJleHAiOjE1MjEwNzY0OTMsImFpbyI6IjQyUmdZR0ExTzdwQzAvbmpCKzJLckx6T2xVbHhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklUcE1BQUEiLCJ2ZXIiOiIxLjAifQ.Zs15cCDJiiJfRHnWlIRrPekVycHxZBUK7NGXmcPX3DNZrbLH6JR4j-hwKVOlm0-BiNOkawnNHJLa4MhSVnAk734RMtGt0HdHQCalYtJUr98DiYYbIIKfXFTYzbmxGzupbJrE3rXzF675n4SIGpmdPQdPwHb7gNOkzaEoD54BZF7Ayz8yajwVah6dHlRiR0CDpEycwVzvoezMybSzb3xCF1ImAzmuEzT1Em0g1sGn3NKIKhpM1GYrPjyz3_bjEZ4ad8p3JhtzQ4mBPKUwjr0eA4m1S0egYkAWVO318siORajZso2Ewkpjrz9rr74ubgCY9jHqWnH22Rildrruaf1lkg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:53 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "ce7129f1-1aeb-42bb-88a8-1ad3b04cc066", "properties": {"TTL": - 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Length: ['142'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"8ea96a7a-e981-47fe-bc8e-f383a8824b19","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}}'} - headers: - cache-control: [private] - content-length: ['453'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:55 GMT'] - etag: [8ea96a7a-e981-47fe-bc8e-f383a8824b19] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:55 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzcZWiPcOa98OVFdi2LcPd8srJOjfZc_viLzrZHiXIhOQarS0Yz8ZocCB1P9t6Wt2mVOEUMZUOaobdP9frxU0ZDfmEx8hHqaAFlMzXd8u4lCvYnrRAvI0Ij8D3jGSmCNtJS3Fm_lb4o8acqoV-GEc3C-hhoO2v-9AeItDFDd1juRsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076497","not_before":"1521072597","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjU5NywibmJmIjoxNTIxMDcyNTk3LCJleHAiOjE1MjEwNzY0OTcsImFpbyI6IjQyUmdZR0RMcWp3a1hxR1Z6dU4wL1BNWkU2TXVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZteXNBQUEiLCJ2ZXIiOiIxLjAifQ.wDsTKavXlvc5lDugT1XVhebRatT75peW9nnb8EiX80Xr3m7Fl2HyARKtDOI08bHJmpnRWcVumu9Wo9qkgsG4ZQuzTUyksRCwFQ2ah104QXlkvalA9eUH0roqhLDBOMceJJUb26SKqTsURAZSDGG_T2eGOlIp3e4H0V2tRTiGQxEgDPcz1SCUwT27f0RdrAE6ApGRKNRk0RpxE5CjtxkhAkZaKNs5ExCV8PazCy_vVn48bDCLUSMPZQEHuGhtEOgGhz-7RN2JMa54GPCgeVLY2vK9zI9ukR_vU6-9HpVqIbebKPtK3rzb95FPlPj83BEnj_5HNw54lZ99HZ2wu9nt3g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:56 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:58 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:14:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz8VYedBtU1k16JuEyPemFWikJNRsfRMgS2WgadOEG67wU4MqB8IeVEYF7yiz3WyKpHBFOKbv2cpmI1lVPQa8prlzlPr4IfVkVT9OI5YE1JyKk7ItMVFP9NvST2U3zgOYfCkMv81a1mL23muYw2w8_uvTNT-_MftNHLmZ6EHp3IrYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076501","not_before":"1521072601","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYwMSwibmJmIjoxNTIxMDcyNjAxLCJleHAiOjE1MjEwNzY1MDEsImFpbyI6IjQyUmdZRkM3MW1GdjM1S25YOUhxa3ZPcGx1c0JBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlgzQ3dBQUEiLCJ2ZXIiOiIxLjAifQ.gIivIq5Y3_x3yTRCVkhY1OODGyMDvhIlW4JAyHRcYLmkX9po7vMWQZq9M99tZyXgRnfn4hwjhIDb6z0AWsyT12sP2lF48vgHEN54ISmz-G29yQk7k5Zgb_4iWzXM3XAKkeyCO6CjeShJ1SftGBfYYx3TTQNo9XpDQ2n-AZBkA1kLsUhiXUA9SzcZJU0Ftcci4Gwm43OyB90gDudRDm1cmlmVwJTBFykZwWuTWp2RwYwxGmZxXgEte330eBiu0RkGgeP3P9sKNwdBd3vdSI7L4_nKYSUWQ2wV9QUjZVMycuo5rsYfqZEKQeHVucUgy5eM15seQ_vIhkMHHaNM8rGH5A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:02 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", - "value": "my value"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa add-record] - Connection: [keep-alive] - Content-Length: ['94'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"5463f764-5345-4439-a6f5-b185055da468","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}}'} - headers: - cache-control: [private] - content-length: ['462'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:02 GMT'] - etag: [5463f764-5345-4439-a6f5-b185055da468] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz0iF7_7BLE4zkXiLKGIHMz4KC8_yOdwvn9MLiQjNG9PY9ZL1KO6OdYALv_IBr29oOBAMgWNCfJhUUQ8nUkmy1JTokEuRfWRRNdtJiMm-XiubYuxdv7hfMHMZrUjxGfUrG9eo86d05d4DbTjPpoExuixhiJnE4KtkCOhtZtq7skMwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076506","not_before":"1521072606","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYwNiwibmJmIjoxNTIxMDcyNjA2LCJleHAiOjE1MjEwNzY1MDYsImFpbyI6IjQyUmdZSkJ5RTJMaFhicXcrL1ZpZm45RzFvVWhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZUQzBBQUEiLCJ2ZXIiOiIxLjAifQ.YZoxKF7JTCsADMq-ZNERHXBvupoBd2EC8u8UhyIRMOwvuI5C0jAeWCkAFNXmG6bJst2MAaXqcc0DYgQX9JCeapimbif-l81hm05jsqoi5TTgBr2xNuNmd6l_ea_rYYggPOTRK1t3ZyHf9gEXgn8wOprsJljSHxSqLu1Of8vMXzZAR2EJBw5DmtnwG2c_DU5xCfoqMByzVb7kSOdeMw8BGEM2Pw0I66LrfZt3ZMruQxlixtAP0CwfWe8JjkVx8eQdDazapAC3_qUercEZ3aPecttjYDohXuc9L1YtxpvomByR4Oe89XalE63dWmFbKjBg12mZMxfUoL8UIdSlxugNIQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:06 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9775812-1d14-493f-ab02-f66b25080cfb","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} - headers: - cache-control: [private] - content-length: ['405'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:08 GMT'] - etag: [a9775812-1d14-493f-ab02-f66b25080cfb] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:09 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz6TR4TOS_TVooEJpUjdeqw60ZCz5pApCLWAhaZLnyRuGuy1jkQTGCeQQqKakWTEZ2jqX4e2988AJ7eiC4UTViWmaTCKoGhFYE4I4mgfeH0oOCUoLaR8a2VWgk1oTrB-RCMACaBsjXLe6PeiPb_Qwymeb13zZRuXMIsgt_tF4NnR8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076511","not_before":"1521072611","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYxMSwibmJmIjoxNTIxMDcyNjExLCJleHAiOjE1MjEwNzY1MTEsImFpbyI6IjQyUmdZREJaRmZxMDFLTG1EOHZ1WHhjZjFkVDZBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkY4eTBBQUEiLCJ2ZXIiOiIxLjAifQ.gEyrX4-n1LOlxSN_2VOayJg1TGFO4sjlBoBVXyyD_Y_RNP7u2RPzdLfz5hwBtyF3Vk-G9RqJRk2EDUAdPp_DllKZf1-ISjXTrp6euIs8MZxSQniOoWegMCdYf5yqco_SO9OGWLhS81e9OO7DrgwnO5pUwaJqXVXx3J-An6Y0vW7gSpyAOCoG9N9NM7C5yZOgWaJwZXxti-BEH4SRZSGdQ3WLGkJLkqZ_WI7nzqlEdgubAhsNlMDfRX974ztonV9v51IPXlp8jwHgxN7r8N1DNV7Y0vzN0kp1Cb9RNVwKQST6rskthQeurjf5XyKQlPrJ5ishJYH-jQhXEtXHNFe4Ow"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:11 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9775812-1d14-493f-ab02-f66b25080cfb","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} - headers: - cache-control: [private] - content-length: ['405'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:12 GMT'] - etag: [a9775812-1d14-493f-ab02-f66b25080cfb] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:13 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz4_K60BZygJqMokiHfafdDRlM3sJ_yK0zkkX6CWwKGs200NXEXslZbbFgE6wLj0kNXXYH47LY_zv-p_bz9yhE4nv2WCAjY-PRSfchpa1jlyLjfwba-mhg4cooBWNp8t4Dl_yR6VYyatUdIUfdKkHXVaCROuCLGXBG66chfz1N_X4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076515","not_before":"1521072615","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYxNSwibmJmIjoxNTIxMDcyNjE1LCJleHAiOjE1MjEwNzY1MTUsImFpbyI6IjQyUmdZUGhwT3RHcU5lSFhwQU0zdi9MY25oNnBEQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhIakFBQUEiLCJ2ZXIiOiIxLjAifQ.pslym-iTlsrS6n2jXm1Lgr_X0Kdy_CuqB-qtF6qw8SxONcvQUS87475-c_XKpVzNmIELc8VULisCP9MmZ7Z-cnjFtsKf5-0PkBz8E1uqV3qgHAiVRo6JvyclW7ZB3JbO5HGgMC8I0TbGjhnzevh4FQgedEnPYZjhP6LRXyct0s-5l_ZQSiDUazXOt12uGvrJvx1jmlvRFsQmGj2f6k0b0lnmSCeKStupHcYRP1hH9RB078_D_7Rhm9ZL1_81qIwzeK4AW8GfLiwnmcbW3sRj8iB8QBpUdS4_E9FEFHFkZuLvAB1jV2DSumA87GMOjK2lglPxX3j5sCIzXJs3tRfNyA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:15 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "a9775812-1d14-493f-ab02-f66b25080cfb", "properties": {"TTL": - 3600, "CNAMERecord": {"cname": "mycname"}}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Length: ['114'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5179e3be-9b4b-45e9-a0c5-1515620d1428","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} - headers: - cache-control: [private] - content-length: ['439'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:16 GMT'] - etag: [5179e3be-9b4b-45e9-a0c5-1515620d1428] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:18 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzLC2orwH0bdOy07UJsYPVB0oyRbHkI1Dw-xyrl5M0q0TR_sPOhy9cS81Uozcw2V5NyLtfEOOqmYGx3197lfD8QUPCS0KQzoqjjeYzXU-GRU8BqG2oOoTHgDKPQUdQczs_NXn11qSOwIHA556K6Jvvlnm5Y_xCrBZH3YmYXjDcrlogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076519","not_before":"1521072619","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYxOSwibmJmIjoxNTIxMDcyNjE5LCJleHAiOjE1MjEwNzY1MTksImFpbyI6IjQyUmdZUGplZUs5dFNVRHloT3FsNS9UU3YyOElBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldsd1lBQUEiLCJ2ZXIiOiIxLjAifQ.QE5mghkTA5z8P-Okf4957GhsJVrtUo4WekDmiS-_oM3NULHoTkZ-_ph8qSOIHWNgEhbjephx39EHoevqavwKYKPdKbNDT9LxKp2Gxt5QH0hMbvROCJbxwFsrHPbMv3oBPyn9mQhc8EcKE1PEL3fosUDhO9W_sYeI8nAkNwJ63U9TFjpgxKSz0k6IjF_r5EplzxGG7qMEZeU019uSK5xGm8GNboGvIvD4li_BHJ_PfAJP0o50kMxP9u8-e4dDfc2f6bFa-7wuHazJTEZUvNAoOtu3QAhkmOEVqKeaKMi5T8C367z2s2Gj74vraVot5iKXjrUmh2cnP7QhTLj4wGLgIg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:19 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['233'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:23 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzWWXNeRw2nYi6IHD1YhY21T_5dzqUGlqXXu_2mrULGGnXWYsZBMjSgxkHtC2jc2lmIzKc5mQPeTPoda1ZSyFHKQY7qwlkSUjP-BcEa4SaJyOyACZTV4H9qJ36FoEs-EgaVNyxZqLG35h1zadfqEWzao-RPYqQ48EPl1pQaHaKoIggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076526","not_before":"1521072626","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYyNiwibmJmIjoxNTIxMDcyNjI2LCJleHAiOjE1MjEwNzY1MjYsImFpbyI6IjQyUmdZRGkyemt2VGE4UEpsLzNpZjhVOU9mNnlBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh6aklBQUEiLCJ2ZXIiOiIxLjAifQ.MhPJMgLPJyr6WAe-5t3V6nSZ0WD2Uxp9k10IW5QeuHmA29-mTqAzN9f-EKsHInPl_Axd7QMA0NQsKiaMnPg-9lmapxTJNNLxn4fPpU4SwcxsYh7Ou4yTTiDi0F1qob-R_YxdjPea_yf5GS6dAF9KKUZhOCf3qvnJ7OF3OLoTIo-Ivu737kQTicomo6scjgpUOf16Ao48X0GkPYm8sk0YQQE8LYxV5NaY7BcMEUWgZYGjwZ6zcyoXxlpy6NZxv7KNAmU4McENtSyT5ZwnPWr7XUHYaZQVmOxCzxySpe6qDNuJ9KHSAxd6FSL7pKvY2rAKAZd9Sf3lHxnoe04O5M7I5A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:26 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname set-record] - Connection: [keep-alive] - Content-Length: ['66'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"97e5ff9b-fbcb-4e25-a583-2788dda59048","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} - headers: - cache-control: [private] - content-length: ['448'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:27 GMT'] - etag: [97e5ff9b-fbcb-4e25-a583-2788dda59048] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:28 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJjOJxEy-hB4wFx0_6iOP5zfn2hwyMK9p956vYMPJDBvyCgwyPtJc1NZ0OZ5_jSGWYubOzf0ZN3zW6cXf57aQKuvL75cK8gtiS7Y0utDkdIebm2g_52y6ja-oMu52UZVcOXb19Ad3_XlqVEqsLomBeLmPm10eyW-1LDpjtl594I0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076530","not_before":"1521072630","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYzMCwibmJmIjoxNTIxMDcyNjMwLCJleHAiOjE1MjEwNzY1MzAsImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlgzek1BQUEiLCJ2ZXIiOiIxLjAifQ.M18773V3d1jxi8e_aT_NgmrERCSApK_0yo5IsqCY1l8rHmO6aZQPNe0sGLfWRpvofLuh46H07wFvppSR2XQVPQqVSNqgAhwlhJ_tFS1zWxlRWjDj3wCbXzFtmFEGT7bMouYSO1saj1iazqctWa7tfcCnNfUINcHBAKFpznblwLJZEP7E_wQfr8E3gdnhqLLg1xxhkg7ogiCPvf0wauJVG7K_Q7bzvjdNJRw1SU5iDlE6Ulj8sMgPbt8cpFsXHG2Mdpsm4WAYCj_xYyHicH0mXLER8BdFdFtErexEB7RXeMKKM_c0ySZuvID_PJeWIenWNhkSGKfdVL2MmXNYvIEqtQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:30 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"78c4c1ca-c5ef-4d79-b3cd-23e265050232","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['405'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:32 GMT'] - etag: [78c4c1ca-c5ef-4d79-b3cd-23e265050232] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:32 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzx05CkCHgK1BukBUkLOxzOrVjF4WfFWlQfssidsLANHHfDc3J5fLxM95Uh-FE3MQc4L1xQFQNxWLRr5MJsOwqwi0G2mrIWDCNg5XW57q3ElKSAK5WahmlaHzwptn1B2dxNjYN1uae_CWAK9FtzzkG_M-iAl8QqF3PjUIa0DeWAQUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076534","not_before":"1521072634","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYzNCwibmJmIjoxNTIxMDcyNjM0LCJleHAiOjE1MjEwNzY1MzQsImFpbyI6IjQyUmdZSkJ5RTJMaFhicXcrL1ZpZm45RzFvVWhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZXRElBQUEiLCJ2ZXIiOiIxLjAifQ.hVHOBrKRKrgFjBECLChAkPe8FvZEnz0ZBis4dvo4yUuabPvpqBpLmJrYhXVleSbagiUU2YSvKfO0hrTTXutU10xr_fkg-P0H8zc181TdAsIpycSNSJmV9ozAw_vzMK2SL0cf0OIXcANyIAK33I2OZDwG7MjUMIuYkPlW1zi4xtHj2TlSKJleQUYRGxXFL_hUQnKp4Jj_cjx-dBQ2SJk7P4qizO9jihmy4Ua09WrTqrId7T-Zvp83lrZHUNjOVD9Uk-aF-RT7FQRaFR1JFIL-hyNWUyLvVofQZg1YJntF1CI9uIRTSwn1KvZWbrJT3fpytAWbGBSz-r3hzvo0SLPmsA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:34 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"78c4c1ca-c5ef-4d79-b3cd-23e265050232","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['405'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:35 GMT'] - etag: [78c4c1ca-c5ef-4d79-b3cd-23e265050232] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:36 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzQwXXgA5IT1eVpzxafVZGmBjCY0-ejqVgYAuZZLDqIn-GRbpYUfm7kWWOGi-lofj5z5H5TsZvbhRCgWMDPXlESjwffP9nswP4f-H55buJxlJ26eHQEze7jEEoOYS7msRUUDpC6W3FQVDy-Lqf2E3IP9S4i8lYWjNkQYI3YeEXp8IgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076538","not_before":"1521072638","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjYzOCwibmJmIjoxNTIxMDcyNjM4LCJleHAiOjE1MjEwNzY1MzgsImFpbyI6IjQyUmdZSGlVTENnbk9EVmVjWEhQNXgyL1pVOTRBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYzeklBQUEiLCJ2ZXIiOiIxLjAifQ.DxAWNTjMUdcaxxRsXj4lOtvNq1lV3zaIuPLzoKIBf5Sh4jzj6wZ53_qW5419R_YQ2NccF65NKq3O5vd23PhUJtMcDqMdSnRucQO8MEklk_FltF-kLdFeGmbK1Q8TEgA_n7fAzHZsAcPz0LlpvbmwghnkKvM7YfoVxshmT0IVpk9jik6YsuJRZii_3-z3hTmIxdSUgHkb_RccUv0DUpKsjVgMBFWHpta_dlKSY-ryRLU70Z8sHp1NL5L1A3R7eAMy3tXMxfmTM4WQQqGLvuX85Fi0_D8zAWq48w2a3s6i-O16u_vAljbYDGIHSfRmOZFmvy1EgPsVLwjnEqg9pAugxw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:38 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "78c4c1ca-c5ef-4d79-b3cd-23e265050232", "properties": {"TTL": - 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Length: ['130'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"d14b9a5f-9125-4741-ae07-d6d8c2e5ef67","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} - headers: - cache-control: [private] - content-length: ['438'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:40 GMT'] - etag: [d14b9a5f-9125-4741-ae07-d6d8c2e5ef67] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzmAuNZB_YehSST0KZbWJjWoZomxEPSMZATmne9EvGBchpwmObf8a5R_KqOyNRC9YWGQf35jy1cs8E4Y--P1eOxSWHrbPunLdpVUepRtoAhLaesyxt7IWPNsqTJXpzgLyVRxs5trbln7w7c0NhHJssTkfccsXYQw0VUwXLaSC_fykgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262799","expires_on":"1521076555","not_before":"1521072655","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY1NSwibmJmIjoxNTIxMDcyNjU1LCJleHAiOjE1MjEwNzY1NTUsImFpbyI6IjQyUmdZRkNJbi9QNjBpblpNNU81WHoxMnRzeXZBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyNzk5LCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFCUUFBQUEiLCJ2ZXIiOiIxLjAifQ.pRHxHHpdmy7w2oZ4Am46yzwe6QEGkjlrztfKUM7ckoX4-dr0dkyOrBQ5xe1llIV6_cF79LAadrhoteQZvXL2317D-GvbYUEk8l8R13NsF0SB3E0Cpi38TSvaXy4noVlqb0Y_LewQBizzMgl1x737GRDgVDlzH5sjh6oXYKumoq_H3oCPCJ-UUwr1hhZqhd9r6HAx0-Z5a_M276usj4EOZZ0MLXj_bXYHJyiYwmTkI7gV5OrCrgxIimfQRSg1t9fq3CI1erloT21qnjpgiKpcd4Rz4__Lll-l9_N5Flyf72eds-JhXyUW1JQs6BD2TRWKDrvGFRKlr6ykurCqo-sEhw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:56 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['230'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:57 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:15:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzhsZJ_kCC_oP7jN7oXw6U7mO23W_pDeZRrhDOOSSC6TRbN1tb3DTa6XNtOxFDYhKQd1rfV_A4M1jGlfc8u4M-mxAaZefnsaRbg9ujGADj2CTEqksAxWWNKXY-U5H_CKbA2U_D0ugsCgFhYf3P6-phdUqtqQi1V5fI5v4hIjLrfVUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076560","not_before":"1521072660","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY2MCwibmJmIjoxNTIxMDcyNjYwLCJleHAiOjE1MjEwNzY1NjAsImFpbyI6IjQyUmdZTGplSjhraWUyekgwU3EySHQ4TlcvOCtBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldQUW9BQUEiLCJ2ZXIiOiIxLjAifQ.e4Y4CZCtb13b7XeNvTkJd8eOI_3w1J_erAMFGntL44TmN3M_vF114F0Fh83fb9F1gzXYTXU5RZBD7Fih5JE-K-Eoq0m2vcM-9EvabPvkEILudaFGiiZDMwVQRM-mGUYvC_xRluMn1P0FSu9JaF33QoJsbaQa0sOi5PKeHuvLu_TF8-dWhLbTtATqzihgctymZLigWvmf1UO38IX1xOBUufKh77sHImIW6YJp5YAQMZ97o0U1IB5ZXcRlwgR1WmYNtxwAUDFlqJ5Jf2VYpz-BlDcc23TDCBAqoDqCiCQriVFogQ3ilF5SiqDu0qFf4dQEFmfUJh3b6rdFsARMZk-XeA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:00 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": - "12"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx add-record] - Connection: [keep-alive] - Content-Length: ['82'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"75748521-27a4-486f-b550-3278c3a1083a","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} - headers: - cache-control: [private] - content-length: ['447'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:01 GMT'] - etag: [75748521-27a4-486f-b550-3278c3a1083a] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:03 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAun_662IChCfLRgkgTp4AoaY7uM45R7n27uA3gN-5bVvQV8DzKZ8Kx7TdjBqD01XU5pErGLTJBpzbJ1wgO_uShRK1kwIZ2jh4hfM5xasDBxzjCKtHQFSzYDyeRnUxZLkAtV6UJPVJN3LvCNNyxgLIBKXGoNjRhbeCWx1coXbRpIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076564","not_before":"1521072664","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY2NCwibmJmIjoxNTIxMDcyNjY0LCJleHAiOjE1MjEwNzY1NjQsImFpbyI6IjQyUmdZT0E2bGxIdzd0aTZWZjFMandkbmFuOVdCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldqd29BQUEiLCJ2ZXIiOiIxLjAifQ.dFj084KKvd9qWDz8XJ4kN2TbMlV9ucL4xfRVuaL6-RQeT17qFVG6uqT753RgHAfV8O58T9imgce5n5y9V_eivt_Ewugh6k3fSvE75GeD_d45z04YfVhImfh04gNjcPWryAUPJG7ovfC_zFpTGHzGubpnTmuAcL8oWGn4Qc5w82BPHSFwSSHxsUd90fiS24efhWHHKxcX7kf8EfUN2Gig-KKV-Y5idjoJcn9g6Ok2CM_5xbvLpCrBIoqwkWP8kJboH9l1NAxA6kQlKqZ4Q0kP0mLdlF8aPAz6tXF2fEjzg-kv7OcgG9x4u5sA8X8aoXi7wjxc7tRetxYfIuk7KgnW-Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:03 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"6e4417b9-aa1f-4a43-be00-bb8223893754","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:06 GMT'] - etag: [6e4417b9-aa1f-4a43-be00-bb8223893754] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:07 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHziHXwCtOSuW_wsAfIULT5VH5kqDPRo8sSkLhf-KAXWIXM2eCaJvf_opxS_GLRxh0ZNKeJX18nmVdel49OMFhSRWAdISw5Dfcwv6XMQKnh37UiYdlFmje-kXfJOh0GxJRpU-hpad2_5IceyhQYV3AwZP_DGDJ4oMxVFMp35amVnEwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076568","not_before":"1521072668","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY2OCwibmJmIjoxNTIxMDcyNjY4LCJleHAiOjE1MjEwNzY1NjgsImFpbyI6IjQyUmdZTGhTdjYrLzJ2L0E5OFJJYm92b0xaeXpBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZZVGNBQUEiLCJ2ZXIiOiIxLjAifQ.Y5BTVei7FEj72UxNQtr76kKB-XwfqGwP3Xp99adE3MmhlrkyprPPQhLASEHYdsnxHd59FCDMyndKb79_vOwka6b3oE-XPxOaTfQ7dAj4jQ3jv6GCWfNrRh2W07FNIbHY80maR_kbFzATAB40-A6leRuprM1bD1gfjGL8Xx74pP1Luw98TPqrW3E0XWmZcBVmdhV88A6uROjUWrHqpgGDnSl1W3wfRKdpFpUmO1L8Gzk0JRkqcCOOY6_Cbx2MlnBR3pkeHOjfOdiE6fl4QJPDSdABfdjCzgRNCLqCZEolj-zYLhd00B2C1-8nZwVqhIHxbbY5fjlWWlMFKhIvk5silA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:08 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"6e4417b9-aa1f-4a43-be00-bb8223893754","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:10 GMT'] - etag: [6e4417b9-aa1f-4a43-be00-bb8223893754] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:11 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzlCyF1uJV979tfxvn_sG02oWk_ECqs1BoxUFgcYtCQ25rBNGq8HpOkqaSXY8XXPZuczM8Bdap9KFvMWMvBVkgCCLJDwVU_fvrNrruCrmlD_RbT6y2eJgiIl4SV-VEeXs7xON_fMnL5usatnTVUG2t9lcGkSkKE6aeQY26D6tJkyIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076573","not_before":"1521072673","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY3MywibmJmIjoxNTIxMDcyNjczLCJleHAiOjE1MjEwNzY1NzMsImFpbyI6IjQyUmdZUGgvUHk4OFhlVGVtUVBOYi9ybTM5KzNFZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhDVDBBQUEiLCJ2ZXIiOiIxLjAifQ.iNLeyLEVr1cJiuLKrqZz-EG1H-PGrse6G4BpI04fraJmMKd9xY0sMX9BN_SUbtFKzqxP3S6FXChEIerCNqdhMB-3F6DQjnVbsg5FC8cLMW7_yhzE3hC1ebJJVsZ2TZtNcwEnkUg0DRshzXWXgDY_44U2NnwdI0NINMZXKO5HoWLSx-rsFqtTWyjFqFVfyPjscuiWrW8WXM6W1Ce2jF63SFKYEj2nPPy_8EX8OwR6R-QPEORv-An8KN9T8Cw3gyctJ146UfEDdOlG9u2xNmrufKB8EA8yWb9jYZSMTd--ZrCt6tjJVGLvWnLYhGadSY6F4Tuch7UjhXvZS0li5YME5w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "6e4417b9-aa1f-4a43-be00-bb8223893754", "properties": {"TTL": - 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Length: ['121'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"90b36675-f763-4968-b40f-2d3bb5ce142d","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} - headers: - cache-control: [private] - content-length: ['436'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:15 GMT'] - etag: [90b36675-f763-4968-b40f-2d3bb5ce142d] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5xp0T3ObCFUfT-r79InD2of3ABEkWs6f0TO10wPJMvm3cX1RbEprL63Te7VQELn5VwMBqajmFTS8E6ScEyI3wYd_Ej7LEs9v7UUxzZnTThuF8nKTUThaqee6pD6VHYLnOIljOlTfAszgBRwoK_uj8pfqrgKT58MFnzWe1B22aAUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076578","not_before":"1521072678","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY3OCwibmJmIjoxNTIxMDcyNjc4LCJleHAiOjE1MjEwNzY1NzgsImFpbyI6IjQyUmdZUEQ3VitkVDJIbkMvODdXYzJMK1ZydDNBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZLemtBQUEiLCJ2ZXIiOiIxLjAifQ.hz7hxHbiGAukP6Sg0SW2hcGaHEmG2CpnJIH1Kr7advrdlzW3kuFEFuGCGK0Y0emxvun1O61zPfOsklDJjfQn43fdIKwLI9dMkixbP24DQvVCHnw1-4nQiLc67uaPBe3QVZFULHEJVvh5ECdefYCb74SdfkMvtsHikAhRRiOkMSgtyd4jUcnR53JgQ5dyQsCLTe3MMihtbqKvjcMjEh2eKcqgPDA8gafi8y8S3CiYLE78hys4ofnT8xwKalfWIXg9NHMHlWDqJQbqfJAHentPtpDHJo2gsa9FT-cNS9sEdexxL2e3V4ZNlueUsA6Qcy9nU63a0hspJxKQXQ7fTKFR7g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:18 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:19 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_22qRsnmYKdfsyQka19bt3AXnEQIQ6RkDz0nC9mz9WHHuOkylLRK-KNhmw9jsXTQGgizR8ShYfAI9LqQ5azxeH92iQ1UKi0XwYMkkZZ5OUty9_8yXegyfDL3SnQH7ygh7ynq3z4c-9utI4xZvuP5GbQ7dozgFmnG-81J8wqoy2MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076583","not_before":"1521072683","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY4MywibmJmIjoxNTIxMDcyNjgzLCJleHAiOjE1MjEwNzY1ODMsImFpbyI6IjQyUmdZTmo4bzVsanRyVzgxY3Y3c3dzdnYyRFVBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlgzejRBQUEiLCJ2ZXIiOiIxLjAifQ.p0L_Mq-fR1hnR794-EvunO7KLpwEKQF5D6nR6hJLvP7jATGSDM4JW9zLeyF9fk2V3iauOJUSk7XoSqXuM67Ykj1ZMbX7yO5kXw1kXh5tploXbpW9jDpbte4UZaCMtk5ccVfjnlm5nHUtMJD-lpNr_-NVbukib-YAulQD4WLnuPWwmNCorPdy-AXWJAWngWzMknvuFTPX2qjvD4ipJ1EH-NaqYObWNzVvCVVuWTgyIV9P0oWHd-aRsAh300markC-x7ng3krMhIZJvkqvTMq5_LXFoykIfnKXgfItIyG2rERfIKFFE8LGwOybcOdtnda6v39pHEaU2pTGUr-_s7nKGQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:23 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr add-record] - Connection: [keep-alive] - Content-Length: ['73'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"bfb79dbf-cabc-46a1-a76a-f88caa2fa442","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} - headers: - cache-control: [private] - content-length: ['445'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:23 GMT'] - etag: [bfb79dbf-cabc-46a1-a76a-f88caa2fa442] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:25 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHze3wt3eQTBojJABNKGqUjUgPax64d0mm6fxpYIyGu_lmy5Bmw-mnGfNBSqYL-rChC1YurMbZ3EU-ox2O25CiVnTq-VsKlZ_sNNTHlOqTmQi1CWTym1-gjExoMHHWArQtDH4OeUNyoediXlMkEG339it7rA3DRWJnK5YqtUHef688gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076587","not_before":"1521072687","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY4NywibmJmIjoxNTIxMDcyNjg3LCJleHAiOjE1MjEwNzY1ODcsImFpbyI6IjQyUmdZTGk0TmViU2hRVWVWbnVlcHl5ZldidkJEd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkJDTF9LbUJCRUVtT3R1OFhZUXdBQUEiLCJ2ZXIiOiIxLjAifQ.vO7C1qXIbONw80nobh4iso1kDXWMxE_t7iMYJsG28cJDESz9CkjymGtQ8uh6Az60nf1tJgh91T5vcrhBqjA5Za98JN76Ld_7VYqS47rutNL-O4jnDcK6qFPIaj5oboKXk4uxw26Xklq_jmVkI6at3_H3SSTIbDF7ESbnZMZk-z5AEGDY2gaeW7zKNf5hCkqR0avffmLetDqeTx556bLA97QPzY9n8kx8C-10abkJ8UNR3oSjXFvicZORXCJn0sWqK-PbshGdXw2pPREn3fp_ZZSFoJ6isRKz2hAbTr1vZUkr24IUjoMlDmAZ0VJJ-dks8-mSZsApXCnpjEweiht_Og"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:27 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"a024cc27-1cec-4971-85d1-780279173773","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:29 GMT'] - etag: [a024cc27-1cec-4971-85d1-780279173773] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz0GcGX59NzwynSjX9Ujlr5znoPsGQ3uAe3ZHXudg--B_OUbox-XXnruemHeVSoKYc24c-sHKIgt8YWEKtlUyuo5kb8m8mnfySCVwFzMDUH2co-7KBUThLhNu1IYPHUy2VBZAv9CvRPcG4cyEkVUdQwR0Kg5EkDZCx1wXebU_d1tkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076591","not_before":"1521072691","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY5MSwibmJmIjoxNTIxMDcyNjkxLCJleHAiOjE1MjEwNzY1OTEsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYwam9BQUEiLCJ2ZXIiOiIxLjAifQ.rTBTw16zN6cHpV5_FgkuL1oq-_jeXhvnJ7Ze2HvG0rdpf7LTAaE6tW5ukQDVY1gn7AWxzZDlQ7F2z46EDd8_KPKuUlrnBf_3X2N8sRJse2XtfmXlPmMUJMgpJXAk7O5g6Ts_nP3a3RxWAv_5kLKxSM_GxaHX2UZFljspqCYtBDnXRPd9x3yPbrI6cJDbuffcnFAIbg-UVwegjYW2As3B-1chJ3y69KkXQlrMi8bdWNhzLMxoxwVAC-dzavoFCIHzXtiDRDINwce6oZYfNhktMfSm-S95Ta7TAdmWVz9SDlx4bOxPQ-eMUMk2bjtigQI-Rkfe6E10OQLOoSjy8g-QmQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:31 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"a024cc27-1cec-4971-85d1-780279173773","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:32 GMT'] - etag: [a024cc27-1cec-4971-85d1-780279173773] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzrrmN1hZ_K6TA-JgPj9EaBUIQHnLFSgNNlajgebYER9U8nNbsJdPtO_rUnB1nopy4L4AzvEYOD1cQLCtdUd5oOHSecd9CvD-828Bi7S8-7xrSnPYfA3uA8fTQqyr5i8lz5watm_AtZdPs9snVyf3qyJr4BLZvOOVP1xGyQilP5lYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076595","not_before":"1521072695","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjY5NSwibmJmIjoxNTIxMDcyNjk1LCJleHAiOjE1MjEwNzY1OTUsImFpbyI6IjQyUmdZSGdjcXhSd25NSGtQL2NjRStsYTF5Qm1BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhzRUVBQUEiLCJ2ZXIiOiIxLjAifQ.smK-DBBIDvftqXQOUpCYQ6fZ2ZUYf_G-xA_jnV2CiAwS7twOuKZo6rQXk7KqFiMYQGW2QZHIU4a4BZuRn7IEKtaxqGDxIiQBE58az459MD8aAAqF_rIss6tsZBalMUQZzE7OvO1eFy4NmBiYS-jdH4pEIwyw3rsp8IqH_knichMHMYEld0QLQ-R7gRv2Dkylip8pHqzBkdDl2iybW4Qmm-dSzvy01vtauAfSmQxOIPVAc8-9XVL6XNCh_XlyLPWdfMoSrhCXeylUJm7XMg4PuLyjlWNSKqVy_gNERZ0gxUWQUVjFYdG2ZkyumY8u9qb9nilaBhoF8AGsXwPxg_8h8A"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:35 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "a024cc27-1cec-4971-85d1-780279173773", "properties": {"TTL": - 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Length: ['162'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3d5eaaa5-9557-467d-b4f9-7883c6df6e9c","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} - headers: - cache-control: [private] - content-length: ['471'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:37 GMT'] - etag: [3d5eaaa5-9557-467d-b4f9-7883c6df6e9c] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:38 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzGjNQPOhI50REpLpiLiWihAbbKeuHwY6UHh_epfwVP-TsGBc6HXwnGt40HlVXdUKb4Ow1su8RaLBMIURkYsLGX3_8pRE8jUBDxTOkQXsbNOwNo-gmfnuC3wdLP4aZ9z88fqo7t2RRORQ77ERi1FqnUwCQmZiGRRO5_NAmEuFt9YIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076600","not_before":"1521072700","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcwMCwibmJmIjoxNTIxMDcyNzAwLCJleHAiOjE1MjEwNzY2MDAsImFpbyI6IjQyUmdZR2cyTzZpdzlNTWRtMHNaZDdsTUQvWHhBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldOZzBBQUEiLCJ2ZXIiOiIxLjAifQ.nfBmYPLRuxse63jWKw4rttcNCO_0zJEFBsOO9du5tWXbVyECO4tYMNsYWM9xBAf2iqD7KjekhDYeo5oIL5hqr1GwfnTWOzYy9FWjB8R40pGVEyIlsGqBn7dBnAS0KDLsL1vavpxZpoYCGS-khJQPsX9z5hM1hPJgejjokJBZ0GEc4QoPcG_hWen-QdeNeVO7Gs6t9C0aYgbWZyLbesJbBDC089l9VjJ8hjVSNSOXX1gjExSjhF9soxqrD064JHB9rZG7dkPw1FcBXUqMV0BFYwt3ge3Xzysp71oYUs5u9kCWdPkwdbZV1-_ayDntDPDgikW2qlIULnWhaHtWkhyNlw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:39 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:41 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:42 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_dhsiWX7QEFj4hPqtWgwZUePD4A0HZN1MtQb1wcYtXh7R7uXNswXSafbEhzxFjOpKLf5nPOOfsc3zChmZh2IA_e7006poIdKniw5jwGCW0dWy2510tSL2MIoowF_lUoA1cTglhpxRcxukkyZnvLHBiPvx7HHsgFn4ShfPz3XVl0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076604","not_before":"1521072704","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcwNCwibmJmIjoxNTIxMDcyNzA0LCJleHAiOjE1MjEwNzY2MDQsImFpbyI6IjQyUmdZT0NLRUxBT0RNazBMTFV3eVBEMEs5NE9BQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh1MElBQUEiLCJ2ZXIiOiIxLjAifQ.wL_sJBQX8emXWt8nqoSf83LEysF2iRD511hhnjSfbzwZvtYGmbeg1L33kqla1RnLW_OJOS2JLjwGxxtZtXz5Zk7hOkmjH20rflioi7XZr7q1hqu-2dq0NfUgWd_nYSUfXtJanijOJdfULcKDXDvzK7ME4-r6EV1XGLBZE6Z_zXzjy5BcIHXlq2JfJDJLIHGD6D8M2EwYmfZBbtqHfWU1tkoHRjLJ6v6TsB-ZUWk6BPz9rnjI3o6E4uFkFTAvDOeesQ9OCet5oQSHmi-fheZ1oQ6Mhq15KY16cYslC6YBBQYXTFYDp6oLewgykMZtiOktenHVkTnshvhvrxrzDMwQNg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, - "port": 1234, "target": "target.com"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv add-record] - Connection: [keep-alive] - Content-Length: ['114'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"d77d5080-217a-4c87-914a-ad01e65bfba8","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} - headers: - cache-control: [private] - content-length: ['480'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:45 GMT'] - etag: [d77d5080-217a-4c87-914a-ad01e65bfba8] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:46 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzNlmd8u4qbi4VdIi9bUF_GAvLzov5JlmUz3bxHqtQHDOVq3jXVjpxXQ3w4-2FaKKkwV6_y7PzvoDL4er8jovpb6xAL48xhdyiC4w1zk3vtQDQaPQtaagdjDrp4IMKtXptrvdiqUIP42Vpp0Clz9kOatQlR9aO8m-YOxh_nmgeVREgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3598","ext_expires_in":"262799","expires_on":"1521076616","not_before":"1521072716","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcxNiwibmJmIjoxNTIxMDcyNzE2LCJleHAiOjE1MjEwNzY2MTYsImFpbyI6IjQyUmdZSGdsSmR3VEZ0dDV2WHZGMTF2YnB1WE1CQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyNzk5LCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dDd0FBQUEiLCJ2ZXIiOiIxLjAifQ.myjaai3TfrMXsQWQu-uwbdeBUsvNvf6gY7WnYmklnDODsUfipzxNa8O2amJBDUAxCHLqmxkDV__j5KJNffPnuoVDcfrXCOO_90FjN21yh48EVR9UCJVmIWnuxLOjvP7JgPq832LHK95lH1dPeWop5_CQ7qYG06O2yblpuDK67WrdYjhvSpT0eVJjZVZG0xDiXHeC7IxwSaqocT0wa3roBmmqeB1i-DiYdN0XU0dWdTrnCXhdkQqaudXr1psW1saw4WQwTg28uFFhbLnr3VxAR7AkB9nRmfsf5lP7wQUtAv-PyXEww4EFJeM-3P-EQq7q6edz2a_mIqW2TfZDUO1Q1g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:57 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt create] - Connection: [keep-alive] - Content-Length: ['29'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d895a22d-d5fb-4c23-9926-9d9c34b2eb04","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:58 GMT'] - etag: [d895a22d-d5fb-4c23-9926-9d9c34b2eb04] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:16:59 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzTGKjbWapgitZV4bKcotruKHzgfRknjrzNa3GQBkaAqd6wjYCHFn7aFp_75vcXYHhmgpCT7H3_ojweVcD7JzPVOGtEV0dKLW_KBvFft5yKOvHaP9_1PjjgCqnvh7zPDDJ-DfWLJHVTwZKI8egUdgUyZKB-BSTBSz4xWfpLXX9JoIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076621","not_before":"1521072721","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcyMSwibmJmIjoxNTIxMDcyNzIxLCJleHAiOjE1MjEwNzY2MjEsImFpbyI6IjQyUmdZR0MvcUJqQmVLVXk3RVdRb1Y2S2dLSWVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklLWlVBQUEiLCJ2ZXIiOiIxLjAifQ.R4wCuKfN4nRah69aGOugjOrp8MY5OsGfiqYsrbCvTnaIeQA4XXz698in9MbTRFarXbdWu7fSMuNWWFmSVGXYo4_QV-64MraHDBap8bjUEUfCcFx1Tz8KVrT5FnCy9VkWXxqFL14px9roJY2Isanlgyspqz5iVJBwRp1NUtbpWwqsMu_rPxOjsyXqpGRt2_1TKc-zHtsjZTMZeV6T-nSzq0TtsiV_3-Yf9bp4jz9Va5NPMT8ZJ-JJJmdqU1BXzKL9QuuUugW0u7sy8K9WpSBkV5gV1K3owol9HVdLjawowuuqwuMWhjcQql-WI4FEkmROGQ81oqdMRGtOe1oqSqTMVQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:01 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"d895a22d-d5fb-4c23-9926-9d9c34b2eb04","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} - headers: - cache-control: [private] - content-length: ['411'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:03 GMT'] - etag: [d895a22d-d5fb-4c23-9926-9d9c34b2eb04] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:04 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzFrsl1ZIa_Q0h40fZQX82Ir96xFg46-x6gU93jzu3yms4GokElYjHHFeYYACA6ub0ikuXsgYe2SDS9i_Yxcm7Pwm76GTsCUvDfLxocWWy_zWfKpzhlfj3sKlBNorPB9dDlFIThTSyGjfJq6wBzrNNJMh29jZbD_HKsvi7sMV7sBIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076626","not_before":"1521072726","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjcyNiwibmJmIjoxNTIxMDcyNzI2LCJleHAiOjE1MjEwNzY2MjYsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkY0VDBBQUEiLCJ2ZXIiOiIxLjAifQ.r6FRXf_MPnITxZuy1Oi3ORyt18Nt_8UR8ITqoepUkoqvuRLFhOgIHZNgKmSdmFWjl-c3OqiGsX_13qWEa4TeV5pgJGlHLBi3nDsH_mR2JpcIrjHYvGFTpv4EBNoKXHv-ISLPUYdRwV8ACRrbgJUcdDMpHoUurONgGwgBP1ObedCfUpWi_57DIn1KAeM1htUy6Id_9jzh20hhQolbjva38KAM8dFPtmO04ccGL5JcjQpR46QXrextDEpW7hCteC9HVrpjUKJdSAspxzPsO8eZDFDhvQT3I8WFDPp583ioLZgTp4mBkxe_6puBShh-L-2aS4Kw9qAOmZgU62dt_f0KYw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:06 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "d895a22d-d5fb-4c23-9926-9d9c34b2eb04", "properties": {"TTL": - 3600, "TXTRecords": [{"value": ["some_text"]}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Length: ['119'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} - headers: - cache-control: [private] - content-length: ['434'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:08 GMT'] - etag: [ab848ade-e6d7-4c46-b182-fc0f08b42caf] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:08 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzDxKhJ7aSi413EAme_uXx7dCAWjGXkzDNUArahSAVvxhtP79L5Q7bOWYJwVailr8rm15wy-xfEsyED1Tdf1eBGESTAFiRZ9mF6skHVpQZWdLXA-FjaXEr5X_3T0MzWvK6haDm_C1enhOB_Xw0x4X3GwfOi056c2CdqTGj4JAhJoIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076630","not_before":"1521072730","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjczMCwibmJmIjoxNTIxMDcyNzMwLCJleHAiOjE1MjEwNzY2MzAsImFpbyI6IjQyUmdZUGptNGQxVVlDSmRaQ3lUdHNiMzFEcFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZNVDRBQUEiLCJ2ZXIiOiIxLjAifQ.KE7HWY5xqE5z1RLjeDh7tu4RyKkocpq8GYxl59Q6Oi5oiYtCDJ-y1kcCtn7VVQxLVqIrT9KquDKYodEHJitS3GMbBHHC3qkcdvr1vbCflpxIwYOA7jjW5_Oypib8u2wgKYxzj4nO22o9BKWiWc1vEFKz6Y2AUSRS8r66VEFmN9cRt9tPiABUNrRvGjvFsVIpejHbNJM81-cyT65URSU8HPfNjHmJACF_C-Icb0hGXa64vhtWkBcHKn5GDwhPsRaYYt_GKsFRrDSM_1PbsQGICoc-0PQiCC7mp3wCYgSoC3m7SE-xoEDQZwDCcaMQYIMdynOj-2Xohf_NCqeFbtwGJg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:10 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['231'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:11 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:12 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzm_0sW0qnX1MgOPay7CzKqL92_rok_qOWEoUDCcOWhG_z_Ix8jB3SVp9Ah0QfBMwWXhNL2IxwmHWUB_w5sLyU8cBwwol8RHM2s-sMO8oJoIKc_M58iI26fTw-efTITXqa_Lu3bhAOyxYbTMNE7OdZmzUdQyjFmcldsNT4pXXLvtIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076635","not_before":"1521072735","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjczNSwibmJmIjoxNTIxMDcyNzM1LCJleHAiOjE1MjEwNzY2MzUsImFpbyI6IjQyUmdZRERYRDYxWUxWYnFaWjR1eFhwMVcwQWJBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldGZzhBQUEiLCJ2ZXIiOiIxLjAifQ.V5QWgPmzDF-MKsC7q39EKQr-9aLAoCxgg_g9mSWYyYgnXwkrKzfKKW5CgrKnQoyY_d1tfJmMa9kdQJCfmx2WHnq5fMGg9VeLpiGJM48f6Gzi3sqs6sBna-tlMtQYBD8k-SpgN_eHmFWVs6Kv8gInWgCMcQNX_n9fd8MqvFvddK407YF3IUdFKXOAA_N3_omC1boxi0UFR1keI0Dfs5B_Szb34MNAdcV_YyMQYozgOv0HoKJ48MHzn_lGAa_DZiB4Cvw8Z2tKM64rNJ52L8h2VkX75vLddYKNLYQUPYfc8pOw60FVC0gJqfRnvIfTVPjp-ySznLmA1w9lmdM1Xyrj2g"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:15 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Length: ['71'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fee9c1c9-e48e-4909-a259-871ed016589f","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} - headers: - cache-control: [private] - content-length: ['443'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:16 GMT'] - etag: [fee9c1c9-e48e-4909-a259-871ed016589f] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzvlbeUurLvyOYUp6w4CYAidupF9SxEy6l85KPTO636gzY0A7RGt49ZWVCC7u5s_xyt_Cz9voTWbb_xeHKC0IgTNTAmRNL5e2doOknGpy9pVqVDa6h2DqaEQXSt3s_sPHbrBu9-W59kvo5cL93DzgbV5tauS7jllIGAORUW22ys70gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076639","not_before":"1521072739","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjczOSwibmJmIjoxNTIxMDcyNzM5LCJleHAiOjE1MjEwNzY2MzksImFpbyI6IjQyUmdZSEE1dGZkY25hMXpaUG9hZzltY1BiZnRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhyVVlBQUEiLCJ2ZXIiOiIxLjAifQ.V4UfQdG7N-VbIbijwEk8kD4xjCqrmnAJc5jO1VM50JVeXCB9BD3hwBNo0AlukEBliOq5fKRIFdXd7YlC2bHE6zzZ2sPucgjuCYZ3o_ygu98QK7VkN5d1buawYBSfclAWL19M6TNGlPDVpKn0s-76tPQZd0kUZpf5RIaIAUaKfLpjOK-vOauwdeuYbnECkxZMdwFm7-ePC1RAVL3Pnf-IMUSiwcZyiCBoEqPIMo_8h0fPWdaFRY12U-tUuPmuEvkj6vzEV4ZdRO6T0sq4bYoU7xaY4UWMhBrMRI8Xf_45PvSWCriIiD9JiuJ-tJftyD9UQxbbmabKXBDM_b2PGqHAow"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:19 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"826fd72e-d887-4142-bf03-f5b08762a08a","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} - headers: - cache-control: [private] - content-length: ['426'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:20 GMT'] - etag: [826fd72e-d887-4142-bf03-f5b08762a08a] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:21 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzBuB6Wao-2m6rfzuGgAjZZD8sBkr8z1Zj0wMiOAzhVJc5NBPL0XakPQ4EXN6bLLl58ITev6Ff_AkwGyLMPnC6aTJfW9WBVrSGxM4T9FEv2zV9oZpCyFjPkCo7GAda5nUbyPvKDXTcAgaKv1g6CwV_kg6kvHtYnnN2GrAC_qnqtfIgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076643","not_before":"1521072743","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc0MywibmJmIjoxNTIxMDcyNzQzLCJleHAiOjE1MjEwNzY2NDMsImFpbyI6IjQyUmdZT0N3WnRlZDZQd2lOV3pobkJTUEh5azdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dNUUFBQUEiLCJ2ZXIiOiIxLjAifQ.EPQJgw3MYWoYHva1EKTtc2-XVCntOOff53YtU87G4pMJBzyxmqOaESDcPWP8Wn18yqED_YC-0fqtUqbzkKrTAFBM9XHe5W0-fIdnYcoN9ihsMvojZmWGVWbhvsCTluhrMNsks9aila0oEAr3H0j3bm28yl8MYQWjOkImCb4S_Mi0MlDi2bJaJzAXV839npueQqk_JBPNtUYT2xadrzjzArDt1qoPRzJPMFAksrXUoLUMo1qTO9BmKDExA4j7wIQIphtNZaE4XfV6MFCb44aldYwlHcdjPZaWlIRc2ZYt7MJjd1SQkQDf6kqJM1pWa4IOgoIVbD4v-w28yABTihU92w"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:22 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "826fd72e-d887-4142-bf03-f5b08762a08a", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a add-record] - Connection: [keep-alive] - Content-Length: ['151'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['454'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:24 GMT'] - etag: [0af830dd-f446-403a-9bd1-c3956e5079ad] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:25 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdlKvgckQ1weVGg_MGcy176nyt81hMCWGvqDmZPj317cjT_-hzrgeND-5v3N1xYpQ7W0em6nb_XxQNus-o7cuAWhy06CZ2nvM_FGuwMjG8v6pPxhHzkbcNC7WbtN6DSC5cVqAmQjPn-ndqVl24Xwna4MWiE4ycSIPbb-N5zxPWI4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076647","not_before":"1521072747","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc0NywibmJmIjoxNTIxMDcyNzQ3LCJleHAiOjE1MjEwNzY2NDcsImFpbyI6IjQyUmdZR0JNazMzNTlramFja2ExY1AxWHAxNDZBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZVRDhBQUEiLCJ2ZXIiOiIxLjAifQ.u2NGVpEZugq0U0jhLFy1YNCtyW7T2xYfuvlkyUjhq4eIUCF8PMilWnSSyrGkCFT4dI48quiuOg4liD1kRwya5XYOeUQPgiDn_GDF8AEiLtyDrshmmbn-0irEVn1t-HqLZt39sa3G4RaafDdXro0TFDEPa9qepdTxXGW1hltfkWGB0mzTIPaWoPczI0ggyrjJUj0H7wRhmnXGhRRBm27_gmzVK8LcCR_ieJcRhdGLjGt6PCE8dpTLgM3u-Pd5mK72gvdLqRkiOeuxrpcq8f8FSuxnEngbvE73AQJxjCMBsVth3VcDcCIDahx4jF5idckvUI4MQIDXHudvTwzTUxNnTg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:27 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set soa update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"20379bf6-f3b6-4f8c-8b14-c48b5543572d","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} - headers: - cache-control: [private] - content-length: ['554'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:29 GMT'] - etag: [20379bf6-f3b6-4f8c-8b14-c48b5543572d] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:30 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5CgKJ-cMDLMNyQwMjIBtJGLG7T7WgPn_P44uo-Q662Ys9pThC6qbxSCC155zz3_aCzXfilKDXpUIIdx9cl-erRoDLA38O2rr49izjx34z5D2Nh4c564lNqHRBr2LtavePl7UvF7gVY0XqbPeYdv2FNN9X_pMUyKarNEjeGqaRBYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076651","not_before":"1521072751","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc1MSwibmJmIjoxNTIxMDcyNzUxLCJleHAiOjE1MjEwNzY2NTEsImFpbyI6IjQyUmdZQ2pYV1JueEtkUWswOFlxL2RZQjc0VFRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InBPN2tzTGhsdTBhdUVJWldvZzhBQUEiLCJ2ZXIiOiIxLjAifQ.woU69fMjeejPjwnQSMLpi4f8w5e92lH_uZ0eqHdQA8tnH7B6ijXWGyw7tA8zv8t-YjDDtKQqqJ4DeRilBAImEGz--POVDWtaQPtEC-gfsMpm_q4o94kZ54pK0qCixBvWMZSJbNlc_3fAIzVoV35noYnta3dksUKPnU8F3wqRL4lLVd_vszVtf_4jKsWxk9gzpy29HareN0gxdF1A7NfJ1PfLXhzPhCnTUHi43AbTiHHIG41EH5d0jiN3fjuCxHjgU2tOkLOr4Ugpn1o79ppJ9rIph7MQ-WE93Bermnc7KCSkzlGpA1wLjpiOBCdIKjRqss2k4Wsjaq5TGMc7B_raVQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:31 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set soa update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"20379bf6-f3b6-4f8c-8b14-c48b5543572d","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} - headers: - cache-control: [private] - content-length: ['554'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:32 GMT'] - etag: [20379bf6-f3b6-4f8c-8b14-c48b5543572d] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzovS5KdmYcpCm31S3vTrAjrAv_yTyCE2cKAecX-i0lAtX3mNgThzX4gCESwT3h192sSzLq1FrI72Gqg0u9uR5DyWa06uFcT0JYnFMN8maHjXLatLDWmhmEA9pAzlO1rA2jOlRXhUZ4kMVnBtEugFzH7FDFjkOFe0QsUaR1XBGTzYgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076655","not_before":"1521072755","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc1NSwibmJmIjoxNTIxMDcyNzU1LCJleHAiOjE1MjEwNzY2NTUsImFpbyI6IjQyUmdZTEErcUtUSEVuM0w4cXo2cHNzRkxwOWlBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkYzVDhBQUEiLCJ2ZXIiOiIxLjAifQ.v2GBtvWCW3yJsonnJi8LLKgn_JNtkzr5TgymG6iV0yLRmrohC_0mRDO57paeghnrfsuLiVoqw7dK9C08ZIh7_RenWsXG926H_QHjvSod0b7b3eMzX8uXipOiMhlf7I4mkF4g7_5OPepMjgcQFFO9L-jZht-F8oqEFlBlrb0TuKiiezk4_RYkWW0UmtzjnI6Ts3t-5p7vSDzbGVz6wXo4xKGDxwIdviBV0KMQU1Teg3V6JkP_2VeSEI6KDWnf6TSsz7hvAEcvUsvC25WwpieObqtycz3CEFn1QFU3M0oc3zlFW11KUYZKmdtPn5aj6bLZW-9uFnjg1j2mzmUi-73VqQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:35 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "20379bf6-f3b6-4f8c-8b14-c48b5543572d", "properties": {"TTL": - 3600, "SOARecord": {"host": "internal.cloudapp.net", "email": "foo.com", "serialNumber": - 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set soa update] - Connection: [keep-alive] - Content-Length: ['238'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"1d08ef9f-39ed-4ed5-ac1e-936c84e48722","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} - headers: - cache-control: [private] - content-length: ['521'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:36 GMT'] - etag: [1d08ef9f-39ed-4ed5-ac1e-936c84e48722] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:37 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzonXUtxjK-QO31-zt2Hg4XFOE0dnwmEijKFhF3NhN2F1dy6vJ6Im7kIjXePagt5TwaYqmFy8zmZOnxPkaV7NgE8JKdKZYvn6PDPNuE0tN1DEcXE12RWZl4DAepN1SqaaBtsGrtXgGyHuzWi9bcVg5kpEHoUpHCCL4y0ChkdJHs9MgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076659","not_before":"1521072759","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc1OSwibmJmIjoxNTIxMDcyNzU5LCJleHAiOjE1MjEwNzY2NTksImFpbyI6IjQyUmdZRGkrLzZEYmF6RkJIbkgzQ3pWUGYyMWxCd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZPVUFBQUEiLCJ2ZXIiOiIxLjAifQ.t8MDW-KAewEamdtrwDCalY5tySgnc_5AyFrcxPi2sxV_SfmYoTBF6w_ZJ0LH72uPSDuxV3OTl8ur2I0ElSonZzm3Twjd1xJ3GPDXVNbgaKcpXzz76fZhgZ8F68DpR3MlLicG4DGrJ-ubK8Ob0Kt7U_wYkFCTx6DuqFIPr7ZKcBewO2l-ZaKZdXTQrYJSI3uqtJgjkhTh3xty4LETGEPHZ8E8M5zRV4GMAtnsrU1H8s5vuBEzWy2uOEpL1gRkir6RoRdrMHj09uuFokVnxpuPCNV83st9OlF-bB0AwIXcvyShh9cDkMrKkIQEOpqCLDIsBbo0ipnmSxhHfRht_pCh7Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:39 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 - response: - body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' - does not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} - headers: - cache-control: [private] - content-length: ['228'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:41 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:41 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzjDx8qpVEpBVj8RM0zOtWopIulirrgnlxY3vYsLZbR55OErcn_ZaoFGSQuX59wwhkXWBs82Lc6KaYKgf6z4t4egsBoUOt31Oe-2jce3NNpKzNABs6lZCAbpqZ9jLFmdrZZo61RD4LoAU5Sg5fCQcB6H_9wwXYv3hpR7ZA_O0IMUkgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076663","not_before":"1521072763","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc2MywibmJmIjoxNTIxMDcyNzYzLCJleHAiOjE1MjEwNzY2NjMsImFpbyI6IjQyUmdZRGhSdDNUSmZQTWxNM29LdEp6T2E5citCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZtVUFBQUEiLCJ2ZXIiOiIxLjAifQ.SD-Xn4zMmYuaN4d0dB-1oJ9yG6W0PLu2ea7dEvEt8uzM2Rsm5327r4_uGe0_p3RRgJu5JclNaNieT6db3AFHDWW3mcmIXvxNrvBVBjzH_3sSPNR0sb2SG44lfh_lwIdTwoMZ8GOBMNXhPgS5Gt4R9pUypJKBIehx8TKHkXEHH9PPMNPWDIyzS_1N0NenIP9ZWxCoxFtf_iCtehNii1_xAkix3Gju4aJ6yXxbQ15iFZQ83mbSKtzf1V8genm0YWuChLeZn2w7OR-QyoeJCSUk_mqIZ4d6F1AzS31WyZhmcEnAPdjUVwLhVtG7Cj1WBGdvJ7Ke1kCJR9azT_g0Kk_omw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", - "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt add-record] - Connection: [keep-alive] - Content-Length: ['566'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a2dee0d7-68a4-4b2b-8c4c-ef25731eed78","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} - headers: - cache-control: [private] - content-length: ['928'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:44 GMT'] - etag: [a2dee0d7-68a4-4b2b-8c4c-ef25731eed78] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzUZE2NLC0xDO2G25cO2Ea8ZYPW6ztv9GZw5aLWYyNbIIByjQ_Hf3yjRQ2iWD-jaWEEqN79t8otGsIg1r3CgNnq7d6Hg4IbejLfgiyJWGNvWHq4wfwDdPSnF694eMGdcF2UWANhmysLOnudgBKSi8jd-8Is-HxNSMBFJvEqpVW4PQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076667","not_before":"1521072767","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc2NywibmJmIjoxNTIxMDcyNzY3LCJleHAiOjE1MjEwNzY2NjcsImFpbyI6IjQyUmdZUGcvd1QvaGRWUkE3eHp2ODJYZDV3cTdBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlg0a2tBQUEiLCJ2ZXIiOiIxLjAifQ.caE1aV_Br_6HOx54oJccbA489DO5UVuJAtHQISP0oT8VcwQ1mxvgNiVG77jy0e_lI7euYTOSaIFNdghbPIHy093cWMewr2LnGgpJb2cZdaYaSX9T5FytuGZLWF2WhWAfNS0Ee0YnNXQ98hgo0pcYZDz8LhatmP6Ir0zucpw3AvHuMqxovH-r2rb9m4EwQ76RuoiUVUxXwT7UnD99AvUJ-Bhs3hP9SledcN3AQjlswJy_AuFTvBbVp6GYRM9cUZ6mJ6PVlPi2gDSrBX6BLJpgMUwsGSFp-3aWODeJ4anGYkoN9rys3-Xs9KYI8ta-ueKChM-CCy5ztoK-59TCcmPWpg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:47 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-0999-2764f2bbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":10000000,"nameServers":null,"numberOfRecordSets":18}}'} - headers: - cache-control: [private] - content-length: ['445'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:48 GMT'] - etag: [00000004-0000-0000-0999-2764f2bbd301] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:50 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzA9khpwWJPVZ9Kfo2BXBAwODs1fAQJCtlZWGvfoYBoHPSVpyHiNMi3KhrFMt0snl5WG6-Cz-uNWYbGXLoAb2UFi-qVceM7qeF_DG4xuzNQXf2jOF4jrwKHSaQzg4do7OTG9tJN0UaUFlO-v7mp6X1USZVtpwI0e0o1QcNgj1BlHsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076671","not_before":"1521072771","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc3MSwibmJmIjoxNTIxMDcyNzcxLCJleHAiOjE1MjEwNzY2NzEsImFpbyI6IjQyUmdZSWlQbC96ZEgzbnZmSDN2WW5lM3pLZWJBUT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlNnb1dMOEtvdjBlZm9KUklzSlVBQUEiLCJ2ZXIiOiIxLjAifQ.iKiJdsy7w_GBCfClKZCgbWaTwoU3BHHCFvbqylBxgDi3EBOyR9XWwht9fMS4UQLAkjBg0FK78PtQkwi7DbD7VcAjYyM2DCMhOnC_A5ZtS7463ckB33Ce7CZw1jFd2Xwz1D0LD5vgfWdEmasZEgsM-KZrT0FMdqhrPgosdBjs_lOGhIqUJYxRTIbJscsYskIVBjznycrt9FXt19V1TOVoywd_d2NNZnK3Z4GkxeUJ7q7TPN5GSm7GC2HucRlUYjsAyl3i-KjvEdURuR6aM2uFWPDe5VhWctueFQkLGI6vZabF7rIhuv2nyXIKRZ_eeQcPHHrGHlYG0zitOLqL2zZOPQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:51 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['454'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:52 GMT'] - etag: [0af830dd-f446-403a-9bd1-c3956e5079ad] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:54 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz0eE1KKJXVrvxBlDoaH-q48uEiFJteDmAtJa4WsWsSzeD26PS3fojrPgHlRUPrTV1I9Is1WRX33C9LTEzXFz00mjeOEemabOEhECCOlZZeYumZqv4LplFh3BaWjHSw8I9kq5jooI3fovH1tTLsB9xI7P2a3Q4ZynIZVBJKtEPgSQgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076675","not_before":"1521072775","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc3NSwibmJmIjoxNTIxMDcyNzc1LCJleHAiOjE1MjEwNzY2NzUsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZqMEVBQUEiLCJ2ZXIiOiIxLjAifQ.reuhH6M7z4EYWcG2PQW4FL0SezPLtiXD33KJ0wiAb9L3QL-wRMfJ9bYIQbnneJvCFuCSJA8AVIelfzKLk7uxsI6C9MMaOtAf7fXahMoZDzCy1ZZ-_TUhQ_ApCrdmA3d2Z8LUFXPgGNhKftIVYtbvlDoJI_CUiUr4yQFX_efhtaIIZUT1IZvA20vqjZwmtu7vItqiYAd5cOWG71QeFwwwAiz_-BNo6KIFOdfXPVX0ZoAd9oex0NzH3FneyGYma0wD7j4oSjYZGGWaJ_t5-6LBLUK4ByILsH3P4itudnhEAT3P-W2nhaEkevri-8aM0gUB6b4Be1ZIKzjeh6cjF8hwHg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:55 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/recordsets?api-version=2017-09-01 - response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"1d08ef9f-39ed-4ed5-ac1e-936c84e48722","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a2dee0d7-68a4-4b2b-8c4c-ef25731eed78","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1abadcfa-54fd-4473-b821-9b1f255873f0","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1875dfe0-e68b-401c-9471-86f9de7aab68","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"9fce67d7-20fc-4e60-89d4-e6a802e64ee0","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"8ea96a7a-e981-47fe-bc8e-f383a8824b19","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"5463f764-5345-4439-a6f5-b185055da468","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5179e3be-9b4b-45e9-a0c5-1515620d1428","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"97e5ff9b-fbcb-4e25-a583-2788dda59048","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"d14b9a5f-9125-4741-ae07-d6d8c2e5ef67","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"75748521-27a4-486f-b550-3278c3a1083a","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"90b36675-f763-4968-b40f-2d3bb5ce142d","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"bfb79dbf-cabc-46a1-a76a-f88caa2fa442","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3d5eaaa5-9557-467d-b4f9-7883c6df6e9c","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"d77d5080-217a-4c87-914a-ad01e65bfba8","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fee9c1c9-e48e-4909-a259-871ed016589f","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} - headers: - cache-control: [private] - content-length: ['8682'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:56 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:58 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzgJGrdrAJzbEsptYkbZhsVxkvfoKLF1lHMII2BmR03_JIRNxHGvxHFY8J_9m5vjNQz1V16PsI0keYmZPcjS8hRPm6ysLN5F37L0WtZCdpnwpafZwAUctBuCsAHDvakk6olm37h9PgZeX6poM3n2x_0TxkXdZjicuz6uUFYCRRL3YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076679","not_before":"1521072779","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc3OSwibmJmIjoxNTIxMDcyNzc5LCJleHAiOjE1MjEwNzY2NzksImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlhIMHNBQUEiLCJ2ZXIiOiIxLjAifQ.AfFgXVzdghNCoGrD6MwMnwqEsK0-vpV0p1h1sbCGUeOw-sGVc67SL78dXIy2JlO-0HYL02xQQNemRuvd141L-Os5ZAl-1UFiwfXfloYlr3hOPDH6DUy0P3b9tJXTaUgm76gZ4Iohu8SLmBrP9M8FJT6Oj_-ndU9bYqLQjwmUNd6rWcyNci8u6KKldq8l_mnG3gGPo6MbZGLe0KFWP2LBRX7KYSCVBsXB6fphV1YkAwL3xb91BSXrIN815y_scOE3GYwcG0WmUi4Vn8h09mgDIimgFvQz2H1_Irag6bi7P5cAAsgbHnI6wXyPueLeJgtYo39gOVf9_ctj-ByFXftjag"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:17:59 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT?api-version=2017-09-01 - response: - body: {string: '{"value":[{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a2dee0d7-68a4-4b2b-8c4c-ef25731eed78","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fee9c1c9-e48e-4909-a259-871ed016589f","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} - headers: - cache-control: [private] - content-length: ['1819'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:00 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:02 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMdUxQ0pjEc3OQlDR_i5DcLj6kQMjr96phYDAL2Z1Zm1PpMbPUQiCPzqUHw-7HfhEb776FUjWhczBfxD4ezsLPnZ0a0mXXguw_6gfu-BNnqnd01NeaQVpQyNW_Euvydmas5DqYxlovC0VOMUq2uPNvNfAt65xSIsXsXIaYh6g99kgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076683","not_before":"1521072783","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc4MywibmJmIjoxNTIxMDcyNzgzLCJleHAiOjE1MjEwNzY2ODMsImFpbyI6IjQyUmdZR2d2YitPdjFIQlI1MzRTTXR0UzdHa1FBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ik5sdE16VDU5YzAtcWxsNkZQa0lBQUEiLCJ2ZXIiOiIxLjAifQ.kFyhV-DrBW6pm3bIAzngXZ3JLFupOvc7vgL98PKdARYKpFzRa23TLYUSxQEEIe7K7-j9YcacWzeQQpNserbDKrESAJFAS2GVfAFmfHc8wa3xXy0NI6RWY1K0YEq2mhus2GB53TF1RlwVVxj-Oab_77lztddqvU3a1YuJ-ULd_VZHbDwef7ALEqhPAZu7_FBVvOYX9cQ6VcukAY59XHAIS9xkagWqJ5cyiV208fVB9dQHroh6jDxlTpf1JxEkibX3hyw8PX58vSY0bsjgPqzKjC3KVYrWydTlN1SDEWKPuidXcWs-0fLpWLHX2KGEItMLR_CXeauT5V7m6ovq5X-wdw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:02 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0af830dd-f446-403a-9bd1-c3956e5079ad","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['454'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:05 GMT'] - etag: [0af830dd-f446-403a-9bd1-c3956e5079ad] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:06 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzV9PEWgZhEGJXioveoW6cXSfyDTLN4Xy4H_GbAA0LZew4N4yrc1X-fuPr5knPE2qMOx9c2eHi6aTem4vsvBjcAp6sRwlPbC6G4DGE6sUJ3JvEaouZFl93wSp5FsiziQmH97UKhrIlO5nHrwTSuAHz3sBCEViasJcfpqh1YsBMB5kgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076688","not_before":"1521072788","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc4OCwibmJmIjoxNTIxMDcyNzg4LCJleHAiOjE1MjEwNzY2ODgsImFpbyI6IjQyUmdZTkMvdmJhNWRFdjMrVTgvY3I5Nzc1OTZCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3VmpsUzhBQUEiLCJ2ZXIiOiIxLjAifQ.xoUYKGEBkIUQV3BJ2HIN78yzRgErXVzA5-OWW4L1odR9wkqbMCy4KOSi-KZb-dq0_iffDc8M8ssu2VTGUDGlohhX_PRHOrGjEBBXk7_4XGWP9mVrc7BKNNhZyOos3vj6OeDorK3RfS3I1kznpSmIVqq8DFxoMA1iPiml4cqLgbpwGixkhyt0CkZOeH6ZYPxE-YzWvspa7F5NCf36iM3LrlC2b6u4vGruFCfuE04GBbPAt40jsEt2dBswCWPDuBykaeY_uljnNg2SxBNGgVNqZhghTVeZO4bUyt1Bb0bsfbGKq3vHn6RcUpqGebUThcCfWie0Ame2ur4fLKzVgbkFUQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:08 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: '{"etag": "0af830dd-f446-403a-9bd1-c3956e5079ad", "properties": {"TTL": - 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] - Connection: [keep-alive] - Content-Length: ['121'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: PUT - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"823f6eee-bf96-4f8b-8ca7-5a9659b6ec39","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} - headers: - cache-control: [private] - content-length: ['426'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:09 GMT'] - etag: [823f6eee-bf96-4f8b-8ca7-5a9659b6ec39] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJrcX4HVM0UtQsiOiJZpah2dFh6oUlhcL1Va4Y1bm44NSonri4P1MPMJL6TIrG7CzycBK__haSuEVKtTnlqQoihoeBFX7-hgdQJZE2HODZf3JYlK2buDIbBgQQwnEbf7Fx-fHi03npxAVbNHIF7qwrFXy7Ow_0cNsMTWgTPRko70gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076692","not_before":"1521072792","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc5MiwibmJmIjoxNTIxMDcyNzkyLCJleHAiOjE1MjEwNzY2OTIsImFpbyI6IjQyUmdZQWgwQ3p2OGwyZi82eWJoazNwWmR2OE9BUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFQd1FBQUEiLCJ2ZXIiOiIxLjAifQ.A4ZPCjZVYypBQezJHP5dSTXrhUhmcQM8PblXeFpgw9nJmUqzMblPx_-IPN2UDomumvE4HDuF06ZGWrUZIia5lNOP991MT6WG5RxEIScwIpplBJ79o9W5dVryJ4myh2VjoJ5CSkxgwDoyynyeYY21JnjGxXZfPdlG1k-TsGDDQTbC5a8tZMJ2bRXU6B3_77xBM6wEuFTyhhD2H-MzqEUQPbKnhcuWDAYO0ERtDEXBpOHDGTVlKsGS2yBWG6rUtasJKw9arwwAIGcckrsn_2STtfJvK-CGA4nSgut8hWjvbhckMnhIwuNjZahcUyRu6_-LOUc9cuh1x0QrlDEz3Kh7UA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1abadcfa-54fd-4473-b821-9b1f255873f0","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} - headers: - cache-control: [private] - content-length: ['455'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:15 GMT'] - etag: [1abadcfa-54fd-4473-b821-9b1f255873f0] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzIbmzmcIlX8bi_AfYWPmpMNsGIQb1ggRmbNXHd-_fSuG9koiMVJYNNPP431i2tSLjOAnDyL-yaCeOFWAh_Wz-U1bujGnsldyv2CZLcKom_lj2-c0gmtwCa9OFrRCTWF9LdqXvFslVRnSErmrpyM9aI59vOKRJBbsWfNCreIczb3ggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076698","not_before":"1521072798","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjc5OCwibmJmIjoxNTIxMDcyNzk4LCJleHAiOjE1MjEwNzY2OTgsImFpbyI6IjQyUmdZRmd5ZmYyem9oZVpueUp2Vk1iNjErbkpBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFzd1FBQUEiLCJ2ZXIiOiIxLjAifQ.i7nW8TXnPp8h1t-8X7L413sgcmaS_xz8Mp8VR54Jdml_cLljnka67ukgGpPEiR8NEBiqoc9FzpM_zzdA_7TwzvJp3x89MJ9Yb6xKPqsIfEwst_-w7h8YUnQqNUHYb59o2IfPktGLTUZuo15iUQzo28cPkZiq1KmiOaIqiecyqWteluX5-qeizjWrkFisekCeYNMmzmlV_sV1u8PqPb6Jc6NDGtaWao2NfRj8CY4UILSA2QBtOp_aMN8tWBDDPjPH8wvFORadA-XZH_5bltBN9VltQkWdrTlkBKnU0LihBq4bDs6pzWZACG2kJzA23GgHGPUgqnnU5SLhV57uuKofwQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:17 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set aaaa remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:18:20 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:20 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz7KNDqgrhlQVX0LnxJdKe2WZf4GTz8n32jkVsaeFq5cZWFqj4l7O1czt41X1n3vwTeGsoqJWWqjn3XERRu-itgGNph-Yuf9-PBi1P0X5Cy6Vr2GCraqweoNs7VsM5ZjdY2nM4kF54ZY8iak0xr6wS9w7Z6-V93peaEsdsBg_rVI8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076704","not_before":"1521072804","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgwNCwibmJmIjoxNTIxMDcyODA0LCJleHAiOjE1MjEwNzY3MDQsImFpbyI6IjQyUmdZR0ExTzdwQzAvbmpCKzJLckx6T2xVbHhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtPQk1BQUEiLCJ2ZXIiOiIxLjAifQ.rgX09a8MWLqLVRKIHSlgsRW7HvI9t02pLBENpR8t89q4brXgrxtDXoSG1WqNJIHxTjp_buAffWoG5F5A-lONVghcwv66C_7fMuczWgDmeX03hKtiqNHO_Gq4EoFNAxvjG4iMOrDviTgYbVzgGx_IK8qn6JpmO4T3BxUwpIWuoI8gVfjxSqAKNXBGU_-spiCnvetIxXlM_45vlrAk5lE53pf92EXf-nY3AYpJMYk9bWoSHSSVtX6PAUpcw7KweUi5XiKf0tdtTx0mWJZl8qTu2uZG9dzr7TqdEadRA2xPzDX1-NgrDd5JpK0YVaOwFwYK1ifBvFLDGe9Yd17UkPZr9Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:23 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa remove-record] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"8ea96a7a-e981-47fe-bc8e-f383a8824b19","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9da64a6a-a6f7-44aa-a739-9dca8474d5f1","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] - content-length: ['453'] + content-length: ['471'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:25 GMT'] - etag: [8ea96a7a-e981-47fe-bc8e-f383a8824b19] + date: ['Thu, 15 Mar 2018 01:35:50 GMT'] + etag: [9da64a6a-a6f7-44aa-a739-9dca8474d5f1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:26 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJlwt-g6ryl9tiwKUbScvAQrGhgP1QZ9mdvAjUlY7L6egGl_mJyB26xC8aOcrt3Zoezr596HbK-Ql9Svc0E1D0rWWhMAbe9t88OI54DUSe89mYD6YQs7NI7YESyoSCtrWFQ6_U2lZ7mIe4_nh1DWij9kTWDNHfITWCDJ-VcQtNb0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076708","not_before":"1521072808","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgwOCwibmJmIjoxNTIxMDcyODA4LCJleHAiOjE1MjEwNzY3MDgsImFpbyI6IjQyUmdZQkRxcVRYL1hpemxFTHY3Y25xWmVmOFpBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dmd0FBQUEiLCJ2ZXIiOiIxLjAifQ.CX9YXrCXEcglgyvGpw0f81piykqC04DbI-0Mgxo6SH4wT1zf4WL4fP_zmYMkUtrtv7mF-rSsf20a-4dI-RgAzxP3cbpffgVa6A4JvaNVVR4NaD0I6hl59kyqa9LlgvsGhUJiJBrQILhePcSC-Rfu4R0csoi0j27MvST_MnELjlP8BsGG5YhCcK_sBQQsxU-Xm6LiXqGVqGQhLQ4o1bsF3U4vV_n4CJBEpEGPkH9IoEXMm7qHjuY4Bn2dW3G53x2H7U6NPN2IvZKNkyCBgkqyyTKFBJhDjP0uFZGzufdtVQUVR1CN1vl4vDvd5ZCFVsadOb7B-G1rN49SVI89MIm_oQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:29 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set caa remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:18:30 GMT'] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:31 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzXOoSfu1UvqHmdOfqx6Rw1Set3qzTUxXXKengcEzPQVMtkkGSWrdxCoSasIBOXf1qTCv0Oj6Yd1VHFdg53w1GBrLQtkz6hVIpuauOEeBMSAPd7oq29eQNKzgNEKoh9aXMiu_l2PsU07wSnPrTNyzIoswS8n6J6DWoDFSz0OQ6bSUgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076713","not_before":"1521072813","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgxMywibmJmIjoxNTIxMDcyODEzLCJleHAiOjE1MjEwNzY3MTMsImFpbyI6IjQyUmdZRGdrb2hTek9HV25OYXZ0b1VOWGwvcjhCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjU2VVdzS0xTWFUta2dvU2JtdzRBQUEiLCJ2ZXIiOiIxLjAifQ.mFTYXe24ry6SB32NimrRljY7o60Y9MnKmmekWjkur3NBqeiTHicvWuA2KjkoCgOXZfC65DJ-AcVo5gsfyZHvsEIEF7DgdWiqpeHf-pW467emHGE9jMsMezK6-c9T48XHf5Mzitt8K58qJfVZgEIUpNqbamejf34JcP5sMbU6BUwTcO6fXOvK-NrmLGtj0RIPpwtDraTwDsZ0edgyVn2EiLANXdG0NcdJH8ysxdB16big-p21BwWc2DeFtvS-YzMW2wrbyOJfKU2H2lSnnTskYCI3e7ydnn2pmZj6AtuRAns8K5ZE20pPFcJTe6REUbW_uAlgDnx4OvwXfKSBa8iTPg"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:33 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname remove-record] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5179e3be-9b4b-45e9-a0c5-1515620d1428","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} - headers: - cache-control: [private] - content-length: ['439'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:35 GMT'] - etag: [5179e3be-9b4b-45e9-a0c5-1515620d1428] - server: [Microsoft-IIS/8.5] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-aspnet-version: [4.0.30319] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:35 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz2l1GQDz7ivjHc3srmV-mMVTfYh8h7rM87Pzh8mTf4xbKmTB_7XBlcLm-imTPXg8BARemhUbRmz1ILbC1Uz5M_H95crOPOp6I__uw72ITAf6dhyXiOo5GK-PXk7wSkkTnVMtb3dEneVRJNcTHXQmrtucPU3NBfxUixEgStAp2RwogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076718","not_before":"1521072818","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgxOCwibmJmIjoxNTIxMDcyODE4LCJleHAiOjE1MjEwNzY3MTgsImFpbyI6IjQyUmdZTkJpYlErUytMbnRsYnlTNHFmL1V6NThBZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtweFFBQUEiLCJ2ZXIiOiIxLjAifQ.ppUbRXogUdAdiOuci0e7SYK6DAQ0IKtA3CT3XjmHP_13CMUwkvBGs9SCrpOSN0O_71UQVryGAnjSwWyFlZcv7TXQOWeOq1L64phljRDBrS1RT4qkIMnfe0nL5CxtQo0H8jJhkeqVZkwy7_xFniSsDBjwM7MAusYFXUFikG1wxy1yVLtm-Y15Y3GIsMMDWvGTE8pyJmiWtivY2LZa5s97JABmCvlbcgmDAwd13tCE39JSIPL2t1ghxvXPbhVIfMSc1lnn50QC6iC9_gJZZa_8FjcuO46llz0iQCxsgzz1lA-IJzlbR-e6OLCK-bCTuEV9_P0iUEs9GjffUYwYmkRJfQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:38 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set cname remove-record] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 - response: - body: {string: ''} - headers: - cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:18:39 GMT'] + date: ['Thu, 15 Mar 2018 01:35:52 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:40 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzyHuSMGsfN3UelwDphe7Y0_8X7jnczkUZecexy7nWyoKSsSW10N0nVRENQZPn_Lv73JqiTNM0I4PvGaKe0kH5CeZs5kI_MJkDYHPupwGepTbMvWdbQB1Hkc3DJNs7cm5ju4m-zgHWSNn6GyyPxMla_5ocmBdf6t_HGcKreQponKwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262799","expires_on":"1521076722","not_before":"1521072822","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgyMiwibmJmIjoxNTIxMDcyODIyLCJleHAiOjE1MjEwNzY3MjIsImFpbyI6IjQyUmdZQWlPWTYzdnNqdTFlTityU3ZzNWNTK1ZBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyNzk5LCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFKQVlBQUEiLCJ2ZXIiOiIxLjAifQ.WG0gbNaK4Fs-TgWi3fWAFGvLPZnLCEsOptYMyahgj29a4loLHWto8rgr3_diSQmRB7UMr92dfTHRJfXvXtV97eUt_9yboBudBMeBvxEY5m00IvtD3L3Gqw7CpYPw9_Lqs63ccEzZDT7aHHCLjgwPZJZrUxM-XyMsZA2C7sq-PhqrjRrls1H1l012BN4Q_Qq9I620QNoF4-U_kMMgc5YyjN-5Q_8263qBG9QXdr2zJPWTnLfc1p8fM8mGKA96Y9tirCjWriAcmFlS8_U_xbsx3fK95nX_WMrVG5GvzFLv8OKZA6g32AFdBvnnmqNRiC0yBdQfDSLZsgERvK1LQSNRGA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: null + body: '{"properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, + "port": 1234, "target": "target.com"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx remove-record] + CommandName: [network dns record-set srv add-record] Connection: [keep-alive] + Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"d14b9a5f-9125-4741-ae07-d6d8c2e5ef67","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"a390aa71-ee9c-4f20-9e55-2231a1c23979","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] - content-length: ['438'] + content-length: ['480'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:44 GMT'] - etag: [d14b9a5f-9125-4741-ae07-d6d8c2e5ef67] + date: ['Thu, 15 Mar 2018 01:35:56 GMT'] + etag: [a390aa71-ee9c-4f20-9e55-2231a1c23979] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 - response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} - headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] - cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:45 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz8UhqMtElu1gEZg_pmXGonO4CTpULYcjQZDFcUr5CfrUqZ_JNmjVmZICENoyM9kAbokrtogwRdVSOimU_mh0M9vg_wbrDWi2nUaFH35UJjTYMY1bgyY2dr3pQnejo8kRv0GtMKJEtjuTcQFKEfDCYxHVJD5Wy6oaJP40TFSwltgwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=001; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076726","not_before":"1521072826","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgyNiwibmJmIjoxNTIxMDcyODI2LCJleHAiOjE1MjEwNzY3MjYsImFpbyI6IjQyUmdZQWgwQ3p2OGwyZi82eWJoazNwWmR2OE9BUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtZeFVBQUEiLCJ2ZXIiOiIxLjAifQ.Ywx4JYGvYJG2un-K_6PdvMvNk4piacHmh6och8nEMZe4KIsSm85rjSE7zmzAqUkPZltnC8ezzVrC0WuNsI4xDGogWZsgEPTCAcLiWzQz8Bi1DwHEhNJB7irmxRBLe3AwlG0JBfUXDOsJjExbI67TxPDCmdIdo7obdCosQ2ZO17hibLWfqZUVWBS9crynPL7H5ArTTtqQnFgncGA-25DkcL3NJGIqUgYyS4xxvqQTwOpsH2Sg-pWM4YZn07qvj9_7ILpb7jDQYVDfYXOzqxxAeUCuJQx6Rgp5C28OXXjnaY3imdrzj2DDri8gue5ivHHT4H9bl423b4DSjiI1gthqKQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:46 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: - body: null + body: '{"properties": {"TTL": 3600}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set mx remove-record] + CommandName: [network dns record-set txt create] Connection: [keep-alive] - Content-Length: ['0'] + Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"cc4292dc-2123-4213-8ce7-81737862b60d","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:18:48 GMT'] + content-length: ['411'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:35:58 GMT'] + etag: [cc4292dc-2123-4213-8ce7-81737862b60d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"cc4292dc-2123-4213-8ce7-81737862b60d","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:49 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzqG_GE1zknP6wDiPqbJEDse3lrmR0P6hXWC6EvxcdC4SWf7vZ3rtuHAHJpZMrMAJ5awqOo-EUne-UHInrRVqiMJH05NLdczCC14oQX-oUYUQZhUZjiMwmps0hHgyzI58abVNZj5ygl4YS6J0mZvR8SGzU0jyys6Qa_eAH4YlO55AgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:00 GMT'] + etag: [cc4292dc-2123-4213-8ce7-81737862b60d] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076731","not_before":"1521072831","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgzMSwibmJmIjoxNTIxMDcyODMxLCJleHAiOjE1MjEwNzY3MzEsImFpbyI6IjQyUmdZTGo5bXBsRmNkMlVWbGFSWTdwbUFqY1dBd0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3VmpYelVBQUEiLCJ2ZXIiOiIxLjAifQ.ivqRPIzHX0yRDHwTjIABAZyQoRUwvXKNhDRyV5-WEaL2mmF75tTFlakA1_jUg4FejRlYHfjDkM3ZyWYuMc4tP9UeXBhQz07Oh1VkhuAd3Z3Gc780I0tOB4TedyWelEerfaNYp9XHY8i1C6zHWg9tGapG8dePYMswwMmG53KyrLZfYDxDV3bspgTAYU9BEmR9G9cctVtGdYB_8KESXrInNBLj5jjl6OiYnyTYkzdZ0z5WpVR3HBE6pRMZE21jD5qQiwWTpcxH32QnCeqYnMhuCUZJMY7kHO1EsWnaAarSPqiAdcEyKYJUByZaI3tbCZBRcQff1UK8sa6D4CU_g8dErA"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:51 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} -- request: - body: null + body: '{"etag": "cc4292dc-2123-4213-8ce7-81737862b60d", "properties": {"TTL": + 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr remove-record] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] + Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"90b36675-f763-4968-b40f-2d3bb5ce142d","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] - content-length: ['436'] + content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:51 GMT'] - etag: [90b36675-f763-4968-b40f-2d3bb5ce142d] + date: ['Thu, 15 Mar 2018 01:36:03 GMT'] + etag: [744d84bc-7f65-4188-a617-779db7987d80] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzm1jixZ9LW2FkhESr8rkYtjBUO3V6yTw947_6Ek0NcFDWOBftWcQY2xszbFODqVg9zkP5rWJARm8y_VRU0XHKflicSO9YCItMYrRCPrpdxTlH-LifnNeEdzEjIPgkZxTnuLcX2Oc7BdJSAh67bPbiPu2tP0k_biScsZr7ThguBIwgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=002; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:06 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['71'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076735","not_before":"1521072835","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgzNSwibmJmIjoxNTIxMDcyODM1LCJleHAiOjE1MjEwNzY3MzUsImFpbyI6IjQyUmdZRWo4ZTd5TnNTTXdjbmZORGNFWjlWc21BQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlhrYi1Uc2R6czBpenN4Z2EzQWdBQUEiLCJ2ZXIiOiIxLjAifQ.Ze133w8blEuykouz-6Suneos3YaGwLuIxxpOzUTlCUS8-_6kKsEWRSNhkyZ7fOw1OeZPCAsUXJiRqMb_GrECvpXwo3f2wFi2HTZcqvs-sHo6zbdJ5w6BRwIrF4JZXoszet7qLeE2Rt3W7WEY7M8rXrKgiuDDP5Yo5LjgTAuikRvZoBcSVDytZQCjRA6KQXtu6OMybUMO1-ae8lzLV_A-8wOpRl3UVH__4sIBPSAHIMvLiPKz9UD0vKcQRMn2IorSzvAH7RWN4SBTuxrCH5sjgcCedmjMirb8YvjO67qmpOECLnLYlFApmw554uf-SFgf70rYh9_xq2qfKJHhfFUX9A"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1374d38-c4ea-44fe-932a-63da5f5792ae","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['443'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:55 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:09 GMT'] + etag: [e1374d38-c4ea-44fe-932a-63da5f5792ae] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 201, message: Created} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set ptr remove-record] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:18:56 GMT'] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:36:11 GMT'] + etag: [1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a add-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['151'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:57 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_JYZVJiikn90juGsudACnfEyTJzKyvJoOVNOQYbcy7oJV0H0cL7NJwiFXUZxjl30wKnQIDjOqRO_rPADuBIFvXIgoEiPCrJfv9FIvF4JczzvgtA_G49jnT6rq68dZHAP5MEMhliKV95Cs0inBRP7hB3Zy9Kjf_HGR6O5dh23H3YgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:13 GMT'] + etag: [37240086-cbe3-497d-a559-08c7d39c2d5e] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076739","not_before":"1521072839","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3MjgzOSwibmJmIjoxNTIxMDcyODM5LCJleHAiOjE1MjEwNzY3MzksImFpbyI6IjQyUmdZUGpkbGlhUklPaWtFS053aDJmbGdndEhBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkJDTF9LbUJCRUVtT3R1OFhDaDhBQUEiLCJ2ZXIiOiIxLjAifQ.OYOdr1puP67ErACi_VbJM-4ODzIf8rDtPvFlVjHfa0ZntWW4UlKpgnbf3sBac5Rs3DWzbB09y_JhQ9w-i7VjOxPaBeQDv_SauOULFeEhXC3l46rEGxm-IxZPGNfbySb2rByYGW1I891V_2L8kK8CQlPau23eesNl3XjWIg_iVQTcdif8CkYmJ8pE1W9z-hJ0FuOZL_O43FadLakAxqMenj54GVYfuByf2uK0N8Bv4bVQCzXGi7tkqpjoqHGoKaAVQ7ssKFX5Vz6OZDQ7l3DbK2ttSIbvg8iqOOr0ObOxzdLPYqpdCexM_WPfIrPJGk5NUmh2gohHVrlX0ClPFF_zLg"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"13c6ece6-c903-43b4-98fd-d3dc74ceb9df","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['554'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:18:59 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:16 GMT'] + etag: [13c6ece6-c903-43b4-98fd-d3dc74ceb9df] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv remove-record] + CommandName: [network dns record-set soa update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3d5eaaa5-9557-467d-b4f9-7883c6df6e9c","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"13c6ece6-c903-43b4-98fd-d3dc74ceb9df","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] - content-length: ['471'] + content-length: ['554'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:01 GMT'] - etag: [3d5eaaa5-9557-467d-b4f9-7883c6df6e9c] + date: ['Thu, 15 Mar 2018 01:36:18 GMT'] + etag: [13c6ece6-c903-43b4-98fd-d3dc74ceb9df] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "13c6ece6-c903-43b4-98fd-d3dc74ceb9df", "properties": {"TTL": + 3600, "SOARecord": {"host": "internal.cloudapp.net", "email": "foo.com", "serialNumber": + 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set soa update] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['238'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"866430c7-42f1-46b1-8ad3-8147dd39d81a","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['521'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:01 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzP00m3EMzThgW_wiIuyHq_kCua6_YeOd0pd03cFHe1trOGSWlUSSCUmiLinAzpzx1Nd5r3k6rR_1IEKmvQ8i6SmXiPjjUcWo5M5bvJEXNS6xD9G49EO1pJ5-F3_R30XAwxG0GdI2zOpTd_APo2BN1Ptqlqi1ks041HWWrHRs6vV4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:21 GMT'] + etag: [866430c7-42f1-46b1-8ad3-8147dd39d81a] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076743","not_before":"1521072843","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg0MywibmJmIjoxNTIxMDcyODQzLCJleHAiOjE1MjEwNzY3NDMsImFpbyI6IjQyUmdZTmo4bzVsanRyVzgxY3Y3c3dzdnYyRFVBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlhrYi1Uc2R6czBpenN4Z2FiZ2tBQUEiLCJ2ZXIiOiIxLjAifQ.LQpZbs3qcE0W_eRVujnAIe1au3i5FdXYDgGpq-KpOZoyBULAaX4sBic0BQLF9xJLriIQDppgwUlZ_b6S1BBv-fHNItjaf8DN45un1V7CvOUO6FJ2Jftxb9AQVHplA-AzP4XV3Pt6zAG_LgNKekSSVkFrBSHxGkS9LgWnZqbQ0piSgxk1siBanvl1uVhD1MEfHR9N2bL4esYYBP-80LmiwP_Ix0dN6rK1fjCNCUwys6lR2b-84jPNLYofavscpnulmZcuETZ72MYCJbL6vv5mRmZzz29oyQOe9kQOjJPwJeEnCtQzw1ZesMfw0VYaQocRJZW-0vl-o9KTk2_e7YUfXg"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' + does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['228'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:03 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:22 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] + status: {code: 404, message: Not Found} - request: - body: null + body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234", + "56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set srv remove-record] + CommandName: [network dns record-set txt add-record] Connection: [keep-alive] - Content-Length: ['0'] + Content-Length: ['566'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c5f7c0d6-be60-4d5d-8c95-9b52fe51891f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:19:05 GMT'] + content-length: ['928'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:36:25 GMT'] + etag: [c5f7c0d6-be60-4d5d-8c95-9b52fe51891f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone show] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":18,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['948'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:06 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz5Tor8E_lqK-urdRWcL8NSPDYKfO0QaKhm9SqRwAODcip3CmA4eWENbO7iEi6xDE-_sdsiXEDa8PMJv_s7wk7KUg8CxYE5-S3xH4CNtC6WZq4-mtNmwTJW_i_AsxR8yfFMrGSvFvBiFCgSJOzNrd_fp2Hvxh7ROAkkRkc11dD2sMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:27 GMT'] + etag: [00000004-0000-0000-2707-43b4fdbbd301] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076748","not_before":"1521072848","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg0OCwibmJmIjoxNTIxMDcyODQ4LCJleHAiOjE1MjEwNzY3NDgsImFpbyI6IjQyUmdZTWhlejJHZU42TW4vRWFlMXN2VmJwcHRBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IkRmck1VRkc3eUVDMGk4VDFHQWdBQUEiLCJ2ZXIiOiIxLjAifQ.YKmyzj_MR0Syg7zq9m8CqE61SQ_8x2GfF17__tAElrmL5sMVuXo1Eyl0mi0nHdwvhDPND3ZJ52IQtF3GIQTHJ2lvMYol592mLNOcmKvCxllQwQ958anLeXF4EDOaCR1NIBQDaPQDH-lQHOjqapNFR9gGBgUwJkEjVF7Sdl40YpcDKZzTB-2kDv5jW9ixHqiK_9VACsSkEJECusfEJv90qvmCd-6haXvwBtLsCOdrX06pP8tJhQbTTGR3YkAvcRbSbNsBMVyXy1dSPwhS-kiHFq6Sqei2xfUfFS0JYXZA-3iY9MYs-0DPr3g6p1vbpljndXt_Ep_5FkUSXerVymL_Eg"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:08 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:31 GMT'] + etag: [37240086-cbe3-497d-a559-08c7d39c2d5e] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt remove-record] + CommandName: [network dns record-set list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/recordsets?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab848ade-e6d7-4c46-b182-fc0f08b42caf","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"866430c7-42f1-46b1-8ad3-8147dd39d81a","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c5f7c0d6-be60-4d5d-8c95-9b52fe51891f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9f711f24-26a5-4597-87db-eb813f3bcd77","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"dc61039b-7c54-4460-beba-3f70159617fb","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"d100b92f-0e63-445c-8593-f65c7c9af583","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"32e76d2c-4ee9-4034-8ba4-86205048181c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"95778715-8b3e-4976-9b56-b6a92038e9b2","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"3f95862c-47e5-42b6-a015-fd63525ba425","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"791a3d38-f38c-419a-964a-76556a329571","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"ceee2596-6a36-4ea1-b9ac-7e71d4166ee6","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"5f243d9e-4998-453d-8591-2ed2427482f1","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"81e1d7c4-7083-4c07-99bd-01afb8fc5d96","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9da64a6a-a6f7-44aa-a739-9dca8474d5f1","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"a390aa71-ee9c-4f20-9e55-2231a1c23979","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1374d38-c4ea-44fe-932a-63da5f5792ae","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] - content-length: ['434'] + content-length: ['8682'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:09 GMT'] - etag: [ab848ade-e6d7-4c46-b182-fc0f08b42caf] + date: ['Thu, 15 Mar 2018 01:36:33 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt list] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c5f7c0d6-be60-4d5d-8c95-9b52fe51891f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1374d38-c4ea-44fe-932a-63da5f5792ae","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['1819'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:10 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdnUpiaRKIJp3aX2s7I45sElzshUZmn_C4W8BUWb2jM6HR5gS19iXFHEbvRYA7wJj9NmP_aBqxZJ7VnMK6psm3ZbJVicRH3AcGDSJlxS_qJwGGBRxqAQ-hRzBJ--p7q8Gpcp6A3kKFrd6EPYXeGpn4AMcrDoNV59lvqE4EQ6iVPAgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=007; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:35 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076753","not_before":"1521072853","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg1MywibmJmIjoxNTIxMDcyODUzLCJleHAiOjE1MjEwNzY3NTMsImFpbyI6IjQyUmdZTWhwa1dLN3ZGWXQrLzZ1ZGNLTm44VldBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InFRMWJJZnhDNkVlemNWQVZOQUFBQUEiLCJ2ZXIiOiIxLjAifQ.hlkEAGnL8sV-b1zFhyGFFn4nRkh9Csd-RLAHixICPz53WmbRm9Yv8QH8QKIItYC99gqkZf6SXFMVYLnpItNZkhSku8yJb163Kych4egPTtWOMtuUeYwSACrgcLy-NlDNn7i0hUx-sNA09_rqX-EI12NKUKGItxXvi4GNaGQ3nEOxWm8_4O2nzKqSNg0nG0y4MQv-ZG6wXqmEHYJM5jWovAq0STqnDnZmnrH80CySNsxiEpn0hxSVJxJGhu5XEXZnpnZa_vxwLGUvUUMOEx899slo6NzrEXzZNDeTZzffTkoV3YuG-FZE8x1Xwews1vIeq_zOlofqZ2Q4Zo35wrVYiw"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:13 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:38 GMT'] + etag: [37240086-cbe3-497d-a559-08c7d39c2d5e] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: '{"etag": "37240086-cbe3-497d-a559-08c7d39c2d5e", "properties": {"TTL": + 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set txt remove-record] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] - Content-Length: ['0'] + Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: ''} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e9424d53-54e1-4972-8ded-d88d5a8c79ac","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] - content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:19:15 GMT'] + content-length: ['426'] + content-type: [application/json; charset=utf-8] + date: ['Thu, 15 Mar 2018 01:36:40 GMT'] + etag: [e9424d53-54e1-4972-8ded-d88d5a8c79ac] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9f711f24-26a5-4597-87db-eb813f3bcd77","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['455'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:16 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz_IQy76JSNYJznE2ByEBt5TK-JAjx6guv3N2x1lMifgwvJYUjMrNlXnUxN7zPh3bUmL0FKf1KjQg5AaLUt4bxYR_VOCYN0LeNEyU3xtlH-fIfvmAgntmDNoAcg3A5cMyIsKelSTSiuOLxTUHcq2dQLPZV0zLJHvtXCtaM12xDfB4gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:42 GMT'] + etag: [9f711f24-26a5-4597-87db-eb813f3bcd77] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set aaaa remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076758","not_before":"1521072858","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg1OCwibmJmIjoxNTIxMDcyODU4LCJleHAiOjE1MjEwNzY3NTgsImFpbyI6IjQyUmdZSkQ3YjdocG51RE9FMXRtVEd4N043OWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Im9EQ1lNRVZDUlVHRUhfX1VGaWdBQUEiLCJ2ZXIiOiIxLjAifQ.UxjgmBuVP2PZj-f9AOQ0VWQ0EkaWgY2HTd-4IgkEz-Ryb5aAA8l3Sq8RFhOumSQ7xgJFMavTWl6zbzQES6F7XvzCjvKjm4XAe1-50_rX7VReZVbeOGikyv2CKlwtNmMGD8LDnl_tKzBel6uYtldvEGm2Gnph3VcGA2eetneydkcg-jN3ozIvVO0B_gsG6fFsJATzTjPGHtFJpZ-FVJ9I-7QEHZyJFpOHojzuCrnDILqqWZuVsdn97YgpTbOEQhbkP2qIcgd5GAY540kRGsDvnOKCiInvQUYAvq58d4DIULXwr3LFFzDK0kjo9tsD05I2bwu2dn0xt50nJp-BstBfiw"}'} + body: {string: ''} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:18 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:36:45 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a show] + CommandName: [network dns record-set caa remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"823f6eee-bf96-4f8b-8ca7-5a9659b6ec39","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"32e76d2c-4ee9-4034-8ba4-86205048181c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}}'} headers: cache-control: [private] - content-length: ['426'] + content-length: ['453'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:18 GMT'] - etag: [823f6eee-bf96-4f8b-8ca7-5a9659b6ec39] + date: ['Thu, 15 Mar 2018 01:36:48 GMT'] + etag: [32e76d2c-4ee9-4034-8ba4-86205048181c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set caa remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: ''} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:19 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzkKY1PkmKdqdG0roWpSs4pMrDBgCRb5efbc3I38xqaxPP-3zjJmmilFiheFbHh2iMhVhV8xROyMJGkMqapa657ISCqjJ4fSU1iYBG_EGGCgTx7A4lrs_UmTqBeBzbqiSWG8xmPGPL_nBQf9Q0xX4LbW__qJlmczqQ0oiWIBFjyLMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:36:50 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076762","not_before":"1521072862","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg2MiwibmJmIjoxNTIxMDcyODYyLCJleHAiOjE1MjEwNzY3NjIsImFpbyI6IjQyUmdZSmlZbVA5MHo3ZlN5UXFCRXBjdERIZUpBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InVTLXJRVm5EdlVLVF9iYlh0MVVBQUEiLCJ2ZXIiOiIxLjAifQ.FIKwXXcycQwggl6HM_6SLUrGEcZJOpSQxYv9FMLC7TTmzKgRkYtxF8EAhRpg_n4Eqb9CAUdo9SGBfhSFAP4ywFu9lnfqhzPBmXG9qYh_Rx7I8tNr5qExZNN1FVbTGpa4ZZYLjs7Luovnlc5PkS6TTeoxtiD-NTZoaMqByyvPVNn8JOeKeDSCW9xD2S5yra9ICMY54bNIjNkeFj40CCMLXH36F9JguYI3VkV7FhcdkqgG-kVVo81WpCV9rEw_HTbx6tYQX37lTCD5GIehziUxCmwnu6v09H6lXHHViQJoS1iqXOJx3rCj4IhrQ77HnMlfe2GSh1b1r8wT5EEzGZu8AQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:22 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] + CommandName: [network dns record-set cname remove-record] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"823f6eee-bf96-4f8b-8ca7-5a9659b6ec39","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] - content-length: ['426'] + content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:23 GMT'] - etag: [823f6eee-bf96-4f8b-8ca7-5a9659b6ec39] + date: ['Thu, 15 Mar 2018 01:36:53 GMT'] + etag: [2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set cname remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: ''} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:24 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzjENfNtZvUgde0fT8MvXMS2OuJCzFXlDdi5Sj0K3577-akOLiDxcyIXugjjurU_JrxNvDNi_tbFlzS6lkJchqRb_uZMCGeyeiC0xjEGjfblJgR-3DbNdGmVpCI8GaVL8qS1WBI-bpQJDvyiX2uBhoRC3RKeaOgjBo-Tz23mRJRYsgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=004; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:36:55 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set mx remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076765","not_before":"1521072865","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg2NSwibmJmIjoxNTIxMDcyODY1LCJleHAiOjE1MjEwNzY3NjUsImFpbyI6IjQyUmdZRWo4dGJDQ1JjUno2WnlIRDJkejlFVzlCQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGtDQmtBQUEiLCJ2ZXIiOiIxLjAifQ.JhjvBQS_QwgovOfyZupVGBs3zwvi_X2JybMNptzqcSjZxtYv5nRWp1pAAbZsunaUYOkLmNYLHIq-8Z06bvRjxI3dEoe_f8AznVEwF35bROfagIa4-ZyH20EJG7ZndAKCXS9xosuO-obR0hjCHkAJWetwBkxmGDvueGHQ3Vsgx6ARZn7GWNhfFyJ1RQd4VLmJCje-jwzTL3pfMx86otofX3IXdeu5GODvkUsW5q463SnFWormF4OfJe2xf2p0L_AfzSn2E7mi1lYH8gmrGX6jx2wcIFjOxEQrE4OAwtbpLTVNLB7wRfepH2ZTxLjfI7o6UToQr-Hb16mTqXWBVKncKA"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"791a3d38-f38c-419a-964a-76556a329571","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['438'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:26 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:36:57 GMT'] + etag: [791a3d38-f38c-419a-964a-76556a329571] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a remove-record] + CommandName: [network dns record-set mx remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:19:28 GMT'] + date: ['Thu, 15 Mar 2018 01:37:00 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set ptr remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"5f243d9e-4998-453d-8591-2ed2427482f1","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:29 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzYqcGWLKGWGx8xWA-Df_HFzJoV8ZGDQD0_xHAsfRE72Njf0-wYR3GDysFYCdVOZQa1FxnVo1XksLSUvz6ciaym_HhPAlQAR9qkoiC9UI4dHUKOBjtIDlXbrPs9CkWJmWT_QFo6AQoxWFz54HTJRRnSV1RMYtjlQV_ILH0deaagDcgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:37:02 GMT'] + etag: [5f243d9e-4998-453d-8591-2ed2427482f1] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076770","not_before":"1521072870","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg3MCwibmJmIjoxNTIxMDcyODcwLCJleHAiOjE1MjEwNzY3NzAsImFpbyI6IjQyUmdZT0E2bGxIdzd0aTZWZjFMandkbmFuOVdCUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IlhrYi1Uc2R6czBpenN4Z2FtQXNBQUEiLCJ2ZXIiOiIxLjAifQ.m1l9X1JSERnc3BplXZESC_-WOqwJKRQ4GcorADeOLlKDPKmIDXRHfA8nWlACvdWyliK88vw41fOlUJ4ZqUbXxobl34jgfq0NTNqW4-6Niyto1Xf4aHnz7jMmihoWNhYO-d_8q2LytKHRGLhFaB8r-Rk1SBhWWcVbPxcuyJu5RvGq2226efWUz8yh6jCP29UgdefWjweBja_qHB_mRCxsDnrIWnbhYdrNsLXopye7AlyR3MFYE4NH6y3jb5iy63FuiHpkGXQhejS2mm98W5qF9LNB-gGdxp-SLwREYN6znny6_lDx2e6z-B45aGlBa48Cb3x3VXUl4_k7ROPj6AOMyw"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:30 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a show] + CommandName: [network dns record-set ptr remove-record] Connection: [keep-alive] + Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] - method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does - not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + body: {string: ''} headers: cache-control: [private] - content-length: ['226'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:31 GMT'] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:37:06 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set srv remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9da64a6a-a6f7-44aa-a739-9dca8474d5f1","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['471'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:33 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzzipXIi27YlY0crbXznS_vDkMxCWxjnrwyX1w6frM60HHpVF5q6ld88H7MkgP-g8qSBxf6K5-CQvS4GjD56ScqfJEPk8d_X8wMZHC75HfWI_16FyvjnTD7tQkHCpC1k9pq7w1e3F66ZEw1d_qkbwhc7CvIX2E0qohpKuFHxMXeHMgAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=005; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:37:08 GMT'] + etag: [9da64a6a-a6f7-44aa-a739-9dca8474d5f1] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076775","not_before":"1521072875","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg3NSwibmJmIjoxNTIxMDcyODc1LCJleHAiOjE1MjEwNzY3NzUsImFpbyI6IjQyUmdZS2htRmE2cVgzWmxRK3VOVTlFQmhaWjVBQT09IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ii1uU1k0Qzg5Y0VPZFVfZGsxQmtBQUEiLCJ2ZXIiOiIxLjAifQ.K5go-bCKooFD07dbGc1K9ORL8MiyPfCDN4yvZLhLp5NwI4CN_fsN1-8OzwZ7IcFZyRsowiZtLlbaDCeJHpVq7bLVz9IxjI2wnNLvVCJllDpRkgP9qKd8Uaf-GzNtc4x8CI2wXoeIB3bkrEaQYnKnsKyVFM0aS6eXVKMUmQ4rC64T2mWVRppCX7dXHqJc-kutVTInyXuGtnpgC1V3e0juUsc-l6cg9bRAynVtP0HcnEr7I1NVVnPbs0nYKggUBf005oGw38DLE2bBsh1RyeIzFqA5sjJArkQ5fjbLMRdwI_ia8FNm7YmWjKGAb7qRRNF5mP6gFvq0a6Jd20fku-ZsiQ"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:34 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns record-set a delete] + CommandName: [network dns record-set srv remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [private] - date: ['Thu, 15 Mar 2018 00:19:36 GMT'] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:37:13 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 204, message: No Content} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:37 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzAAekmjQu7m99lb2RNJ7d1VnP94MTCRYz83jtJO_gCo0mGkJGJ-WCRgwZgrG7wm-gx30pKFqy-RPIjOOL7Fk4cBEmzSQ6kxekmb6keGjLAX2U-5HD3aZUsMGYpWW2-XwCcHE4b6cKifqP9kZ5j0ExmRrQ0NV2ESaE6nvYd1dx2D8gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:37:15 GMT'] + etag: [744d84bc-7f65-4188-a617-779db7987d80] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set txt remove-record] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076779","not_before":"1521072879","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg3OSwibmJmIjoxNTIxMDcyODc5LCJleHAiOjE1MjEwNzY3NzksImFpbyI6IjQyUmdZRGdrb2hTek9HV25OYXZ0b1VOWGwvcjhCZ0E9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6Ijhmdno0LTVWVUVTNkRCTVN3QUVBQUEiLCJ2ZXIiOiIxLjAifQ.m07Z-NIYvROXidvlR5b_6Tkx2dLa4nge8aRXhQzIlMjrvfkI1SpvQFrpsyR79Fr89sFxIWwNIsgyRrzceYczSKSEiHM39151-gBUpWtpQrM74ArbFfPSL2uf6Jtgv3bZ_LFAi8yzbEb5SoENEjQb2Y27QD2Ez9gOWWZltEhmrmMGeQLKbfA0G1xtQnIkHgCwSabmDeBzXdqTJfRLFMPA7--haYXHvaNeJpn5aK58NjOaRJZZvTKZYVxeqt6acR_5L5Rzsy4YL3xl-KgCt6tnylWRwd3T4Gl0SBvRg_kxZ9zDeaMMzri46IUrFA2q68NAYXfvYUUJorTSdjEUtj10IQ"}'} + body: {string: ''} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:39 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + cache-control: [private] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:37:18 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null @@ -8929,277 +2529,221 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does - not exist in resource group ''cli_test_dns000001'' of subscription ''3cfb1b34-e5a9-4f98-bf9c-e4d69a6b170c''."}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e9424d53-54e1-4972-8ded-d88d5a8c79ac","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] - content-length: ['226'] + content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:40 GMT'] + date: ['Thu, 15 Mar 2018 01:37:20 GMT'] + etag: [e9424d53-54e1-4972-8ded-d88d5a8c79ac] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] - status: {code: 404, message: Not Found} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e9424d53-54e1-4972-8ded-d88d5a8c79ac","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:41 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHznK7a4WiviH2w8cUt6X3qXwhlcvJc3Fz0lk7jALPS74Dkk0nhyxYCJy4pjqbkcg3G0K_EGIiq45njFFSAO6olabN92v42AUA4Oi5_AqOUsNGLfY3ClRBHxcjiFBgLxLywQTqWICFCmu-Xdr2QdfqqbKEOiF9Ue_Y_qfwZEFgZzLggAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=008; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:37:22 GMT'] + etag: [e9424d53-54e1-4972-8ded-d88d5a8c79ac] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D - headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token - response: - body: {string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"262800","expires_on":"1521076783","not_before":"1521072883","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg4MywibmJmIjoxNTIxMDcyODgzLCJleHAiOjE1MjEwNzY3ODMsImFpbyI6IjQyUmdZSWhMZmRteGIydDBoK1hXcHNQTm9VZVBBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6InA3SThCNUZoOFVxaG13Z3dDZ0VBQUEiLCJ2ZXIiOiIxLjAifQ.ZqdraP0NAz-XeSoGY2QnFJJirLplnZljzEiokyvUo9sk2nYoHXgxA0UEHOXPOpzNuynoPR0QcA4x4Cj-PuRBs4iqUOYW08rSX0EYIMtUm7i3cGR_xEGWBu9DZ5NQe4My8ouMJ0LXj07Q2hJ4haL58S7sjAKAJ-gYmSfH8DUl4FK7eiWRBTqPHK6MjLX8Kwnr8QeyoMa-yHjpORFOQ-JauTOrq1HJI5yBJBVCaIM5cE3LtEMz7-VJmT6g2NoXjlkbbynXr1QF_0D29N3C4NhiIXTKppmz5Bme8tq1_OnBdnvI1Xd2h9UNcFjhOjDh6PqSV7pLejW6LCBJPgaStidD9Q"}'} - headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:43 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone delete] + CommandName: [network dns record-set a remove-record] Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: body: {string: ''} headers: - azure-asyncoperation: ['https://api-dogfood.resources.windows-int.net:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566699865208327e7aa7df5?api-version=2017-09-01'] cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:19:45 GMT'] - location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566699865208327e7aa7df5?api-version=2017-09-01'] + date: ['Thu, 15 Mar 2018 01:37:25 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + status: {code: 200, message: OK} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a show] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] cache-control: [private] - content-length: ['101'] + content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:49 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzWI7qPCG6y0mcfXaOSIXm4ctWTwjeBzt8PllOssYnpnMwVpO42gsjDZd8zq3Wo_ugSaKd3GqzH0UydlcKGq3ieqA_HKEc6olbRxtIFxHy6mnMAyjxPu5j6KXPUFltof7PRznOp0unTJNo2eBgF8bTkNljSDYe8MCfngWNsrx-Ft0gAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=003; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:37:27 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns record-set a delete] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076792","not_before":"1521072892","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg5MiwibmJmIjoxNTIxMDcyODkyLCJleHAiOjE1MjEwNzY3OTIsImFpbyI6IjQyUmdZQ2l6MXZhNXZPbnhOdDMxaGJPVFhocjhBUUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjMtY25INlhWVlVtZ1I3VmpjajRBQUEiLCJ2ZXIiOiIxLjAifQ.N_IVg_aMTFAC8D4hQHXDB3SGXR4qSn8h-BJCpvZrfYEZp1Ftn_eoxBVz-3tgu5lv9KGRxabM-Zs9FBvXC5twc3TlixNkQvYeaDSflfolGoIlNzej6XhMPoVCF3CGmpuoqRuMjQT6d1fWc8e7csQ0qyrNwR7KeN4VRUmV18GL_KJnWypEGh2f2xBkmZfqlSXu8WZSrwMXFkgZfO09rHMJ2Gc0-EVDI-z0p7-Kc2V5zZ8Ia-iksjC5nRTXGa9QnBVC891C-AkbtriwLJQt3RYPDNS-Zc51Z4SaoLYtUkAkdmeFQn2y0Q5cZ4DHAlcgY7QijiSt1yxUUe1mbW4XUCHXIA"}'} + body: {string: ''} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:51 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + cache-control: [private] + date: ['Thu, 15 Mar 2018 01:37:31 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] + status: {code: 204, message: No Content} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [network dns zone delete] + CommandName: [network dns record-set a show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566699865208327e7aa7df5?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview response: - body: {string: '{"status":"Succeeded"}'} + body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does + not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} headers: cache-control: [private] - content-length: ['22'] + content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:53 GMT'] + date: ['Thu, 15 Mar 2018 01:37:33 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['5999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 404, message: Not Found} - request: body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] Connection: [keep-alive] - User-Agent: [python-requests/2.18.4] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: GET - uri: https://login.windows.net/common/discovery/instance?authorization_endpoint=https%3A%2F%2Flogin.windows-ppe.net%2F%2Foauth2%2Fauthorize&api-version=1.0 + Content-Length: ['0'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + accept-language: [en-US] + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"tenant_discovery_endpoint":"https://login.windows-ppe.net/common/.well-known/openid-configuration"}'} + body: {string: ''} headers: - access-control-allow-methods: ['GET, OPTIONS'] - access-control-allow-origin: ['*'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667465809210474c5b7231?api-version=2018-03-01-preview'] cache-control: [private] - content-length: ['101'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:53 GMT'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - server: [Microsoft-IIS/10.0] - set-cookie: [esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzEvyNRCMnyQuGjCoLs2VkDFNAqq4VUyD_Nu5eEEEGwFW47gs770sdtZGpPte9TiYbqjmKaMOOuKiych1gJP2ox_Xcy7ewZHYfD_4J8yA5zWYCWZAlqodvAQMY76_fL94Q6bAtF0A6R_uEXT1-n6KIXmfoWL1jaGEbiKKaLXH8gVogAA; - domain=.login.windows.net; path=/; secure; HttpOnly, x-ms-gateway-slice=006; - path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly] + content-length: ['0'] + date: ['Thu, 15 Mar 2018 01:37:37 GMT'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone6365667465809210474c5b7231?api-version=2018-03-01-preview'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 202, message: Accepted} - request: - body: grant_type=client_credentials&client_id=6f9efcfc-8ff0-416d-91db-bf0accf7adc4&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_secret=C3tGq4MjX%2Bo3vVVepe6f6KLmOVbiIuIdfGQfvWw6874%3D + body: null headers: - Accept: ['*/*'] - Accept-Charset: [utf-8] + Accept: [application/json] Accept-Encoding: ['gzip, deflate'] + CommandName: [network dns zone delete] Connection: [keep-alive] - Content-Length: ['193'] - User-Agent: [python-requests/2.18.4] - content-type: [application/x-www-form-urlencoded] - return-client-request-id: ['true'] - x-client-CPU: [x64] - x-client-OS: [win32] - x-client-SKU: [Python] - x-client-Ver: [0.5.0] - method: POST - uri: https://login.windows-ppe.net/24c154bb-0619-4338-b30a-6aad6370ee14/oauth2/token + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667465809210474c5b7231?api-version=2018-03-01-preview response: - body: {string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"262800","expires_on":"1521076796","not_before":"1521072896","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyIsImtpZCI6IjZnTDg4d09VM0hBSE10VHJzVEdVLUpfVGZEbyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsImlhdCI6MTUyMTA3Mjg5NiwibmJmIjoxNTIxMDcyODk2LCJleHAiOjE1MjEwNzY3OTYsImFpbyI6IjQyUmdZSGlodjZlN3VQQ1k2WGIvMWQrdlBFaWJBQUE9IiwiYXBwaWQiOiI2ZjllZmNmYy04ZmYwLTQxNmQtOTFkYi1iZjBhY2NmN2FkYzQiLCJhcHBpZGFjciI6IjEiLCJlX2V4cCI6MjYyODAwLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLXBwZS5uZXQvMjRjMTU0YmItMDYxOS00MzM4LWIzMGEtNmFhZDYzNzBlZTE0LyIsIm9pZCI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInN1YiI6ImEzMDk2NDg1LTYzMzMtNDExMi04MTg0LTczMDY1NDI5NzYwZiIsInRpZCI6IjI0YzE1NGJiLTA2MTktNDMzOC1iMzBhLTZhYWQ2MzcwZWUxNCIsInV0aSI6IjQzazEyZjZsTkVDR3dHZ19LQUFBQUEiLCJ2ZXIiOiIxLjAifQ.nW0ghdVm_j7F332zpyua8D4RVgiw5lc6n866PStAL2a0iXr43nuokYFZ8HRNruoCYJfnk2curK_9sLjeiw3bTzc-lnyXkGnGse9ngIXhZoN1Y0KMFsrdpdI5MzX69xJYJDW1jM4nluBcx7GLuXKt0HiOe5AUHlUhZ_yw6bHhriIH-wd0svIBgHtlM1wAqlCkuFa17GdSEZ_iXZ4JKZE14sDxZvICUXq-woBNWweaJI3fC78YBPFJIAxZ36LekoE1cKeBoNLaP3ykrrPrtCVWx1QI1TrCvKwFydF3pfYLolHJEv68rRUb7mV2U4XL2sBJX9CgycFKUILWW3WhSNcKGg"}'} + body: {string: '{"status":"Succeeded"}'} headers: - cache-control: ['no-cache, no-store'] - content-length: ['1387'] + cache-control: [private] + content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 00:19:56 GMT'] - expires: ['-1'] - p3p: [CP="DSP CUR OTPi IND OTRi ONL FIN"] - pragma: [no-cache] - set-cookie: [stsservicecookie=estsppe; path=/; secure; HttpOnly] + date: ['Thu, 15 Mar 2018 01:37:43 GMT'] + server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-clitelem: ['1,0,0,,'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null @@ -9212,18 +2756,18 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE - uri: https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 15 Mar 2018 00:19:57 GMT'] + date: ['Thu, 15 Mar 2018 01:37:48 GMT'] expires: ['-1'] - location: ['https://api-dogfood.resources.windows-int.net/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TWlFPSkdYVkhVRzM2NTI1RFZaNlQyV0NXRTJCSElOTHwwRDg2Q0Y0MDk1OTc2MTIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TUVdISFdYNlBYTFpSVkdNWVlHNFVFWUUyQ1JWQllIRXwxRkZEODJBNTQ1OEJCMkFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/dns/setup.py b/src/dns/setup.py index b156e7a395c..e32a47dcf4d 100644 --- a/src/dns/setup.py +++ b/src/dns/setup.py @@ -23,9 +23,7 @@ 'License :: OSI Approved :: MIT License', ] -DEPENDENCIES = [ - 'msrestazure>=0.4.22' -] +DEPENDENCIES = [] setup( name='dns', diff --git a/src/index.json b/src/index.json index afbc3ac11b4..c41f8c036cd 100644 --- a/src/index.json +++ b/src/index.json @@ -642,8 +642,8 @@ "dns": [ { "filename": "dns-0.0.1-py2.py3-none-any.whl", - "sha256Digest": "TODO", - "downloadUrl": "TODO", + "sha256Digest": "0d2e4ad1a20cdd9fc63180b1039ac790ffea4dbd879469d98fee34c98345c9d8", + "downloadUrl": "https://dnscliextension.blob.core.windows.net/cliextensions/dns-0.0.1-py2.py3-none-any.whl", "metadata": { "classifiers": [ "Development Status :: 4 - Beta", From a4de7f5b30e7b53c048cc181900f097976fe4dad Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 07:02:18 +0500 Subject: [PATCH 07/11] Adding API version when creating DnsManagementClient --- src/dns/azext_dns/_client_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dns/azext_dns/_client_factory.py b/src/dns/azext_dns/_client_factory.py index 8d107e24924..fa354229707 100644 --- a/src/dns/azext_dns/_client_factory.py +++ b/src/dns/azext_dns/_client_factory.py @@ -7,4 +7,4 @@ def cf_dns_mgmt_zones(cli_ctx, _): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azext_dns.dns.dns_management_client import DnsManagementClient - return get_mgmt_service_client(cli_ctx, DnsManagementClient).zones + return get_mgmt_service_client(cli_ctx, DnsManagementClient, api_version="2018-03-01-preview").zones From 1fb7879e54a0e5f687ae94a3c7b763e2158f23ef Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 08:59:58 +0500 Subject: [PATCH 08/11] Re-recording tests. --- src/dns/azext_dns/_client_factory.py | 2 +- .../tests/latest/recordings/test_dns.yaml | 898 ++++++++--------- .../latest/recordings/test_private_dns.yaml | 920 +++++++++--------- 3 files changed, 912 insertions(+), 908 deletions(-) diff --git a/src/dns/azext_dns/_client_factory.py b/src/dns/azext_dns/_client_factory.py index fa354229707..8d107e24924 100644 --- a/src/dns/azext_dns/_client_factory.py +++ b/src/dns/azext_dns/_client_factory.py @@ -7,4 +7,4 @@ def cf_dns_mgmt_zones(cli_ctx, _): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azext_dns.dns.dns_management_client import DnsManagementClient - return get_mgmt_service_client(cli_ctx, DnsManagementClient, api_version="2018-03-01-preview").zones + return get_mgmt_service_client(cli_ctx, DnsManagementClient).zones diff --git a/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml index 24c680ee292..e1fc584ff63 100644 --- a/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml +++ b/src/dns/azext_dns/tests/latest/recordings/test_dns.yaml @@ -10,7 +10,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:13 GMT'] + date: ['Thu, 15 Mar 2018 03:47:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: null @@ -36,17 +36,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cojacotest\/providers\/Microsoft.Network\/dnszones\/cojacoexample.com","name":"cojacoexample.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f0e-0dfdb3fcd101","location":"global","tags":{"department":"HumanResources","importance":"Emergency"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":4,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/jonune-pinger-rg\/providers\/Microsoft.Network\/dnszones\/jonune.com","name":"jonune.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2fcd-6d879726d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1.karthiktestzone123.com","name":"child1.karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3add-f115b43fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1karthiktestzone123.com","name":"child1karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8cab-9601a63fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/karthiktestzone123.com","name":"karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-72b8-5bafaaa4d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/vladtest.test","name":"vladtest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc07-5f972e2ad201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.asmx","name":"a.asmx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-64eb-63a8f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.msgx","name":"a.msgx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0076-784ad162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.rules.test","name":"a.rules.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b305-26eae362d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.skin","name":"a.skin","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-59b5-8941d162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.svc","name":"a.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d3fe-87fece62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.aspx","name":"c.aspx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3920-5fc0f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.svc","name":"c.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36a2-4db6f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/karthik.com","name":"karthik.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f92-66b1c962d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/test.testrules","name":"test.testrules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a9d0-5a5dcd62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1034\/providers\/Microsoft.Network\/dnszones\/onesdk4979.pstest.test","name":"onesdk4979.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b767-5791d02ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1046\/providers\/Microsoft.Network\/dnszones\/onesdk6026.pstest.test","name":"onesdk6026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c3a-32120448d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1069\/providers\/Microsoft.Network\/dnszones\/onesdk724.pstest.test","name":"onesdk724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-89f8-fda5082ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1110\/providers\/Microsoft.Network\/dnszones\/onesdk2419.pstest.test","name":"onesdk2419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4c45-bbac8452d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1155\/providers\/Microsoft.Network\/dnszones\/onesdk8597.pstest.test","name":"onesdk8597.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0b4b-cd88ce53d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1269\/providers\/Microsoft.Network\/dnszones\/onesdk1935.pstest.test","name":"onesdk1935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2581-78c8f140d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1597\/providers\/Microsoft.Network\/dnszones\/onesdk7046.pstest.test","name":"onesdk7046.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bca1-ecb66b3bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1616\/providers\/Microsoft.Network\/dnszones\/onesdk7626.pstest.test","name":"onesdk7626.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-22ec-d6c51639d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1620\/providers\/Microsoft.Network\/dnszones\/onesdk2799.pstest.test","name":"onesdk2799.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4185-f1194d38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1732\/providers\/Microsoft.Network\/dnszones\/onesdk4494.pstest.test","name":"onesdk4494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05a8-5a00b64cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1906\/providers\/Microsoft.Network\/dnszones\/onesdk1575.pstest.test","name":"onesdk1575.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bace-07c7452dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2066\/providers\/Microsoft.Network\/dnszones\/onesdk1064.pstest.test","name":"onesdk1064.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4864-748c7537d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2526\/providers\/Microsoft.Network\/dnszones\/onesdk146.pstest.test","name":"onesdk146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1389-cbd6e235d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2773\/providers\/Microsoft.Network\/dnszones\/onesdk6501.pstest.test","name":"onesdk6501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e5df-1fe72b56d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk5047.pstest.test","name":"onesdk5047.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d34b-f8b47446d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2916\/providers\/Microsoft.Network\/dnszones\/onesdk3106.pstest.test","name":"onesdk3106.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0caf-f0f69154d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2985\/providers\/Microsoft.Network\/dnszones\/onesdk5810.pstest.test","name":"onesdk5810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c661-fe870753d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3150\/providers\/Microsoft.Network\/dnszones\/onesdk4105.pstest.test","name":"onesdk4105.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-58b9-f3fda234d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3153\/providers\/Microsoft.Network\/dnszones\/onesdk6890.pstest.test","name":"onesdk6890.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9f5-d9cf164fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3702\/providers\/Microsoft.Network\/dnszones\/onesdk4390.pstest.test","name":"onesdk4390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e717-3529e04fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3740\/providers\/Microsoft.Network\/dnszones\/onesdk3868.pstest.test","name":"onesdk3868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-42ef-30d3102ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3930\/providers\/Microsoft.Network\/dnszones\/onesdk7182.pstest.test","name":"onesdk7182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f5b6-b9a6604ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk583.pstest.test","name":"onesdk583.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5fad-5e93b436d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk453\/providers\/Microsoft.Network\/dnszones\/onesdk9431.pstest.test","name":"onesdk9431.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc5c-80257b2cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4907\/providers\/Microsoft.Network\/dnszones\/onesdk8724.pstest.test","name":"onesdk8724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fff3-57db474ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4971\/providers\/Microsoft.Network\/dnszones\/onesdk5149.pstest.test","name":"onesdk5149.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-54d3-0e15a83ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5110\/providers\/Microsoft.Network\/dnszones\/onesdk9387.pstest.test","name":"onesdk9387.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-76ae-88857f4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5394\/providers\/Microsoft.Network\/dnszones\/onesdk5675.pstest.test","name":"onesdk5675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9c28-5ea1bd41d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5453\/providers\/Microsoft.Network\/dnszones\/onesdk9910.pstest.test","name":"onesdk9910.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-02ff-3947be4cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5626\/providers\/Microsoft.Network\/dnszones\/onesdk3052.pstest.test","name":"onesdk3052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d6fd-f87ea950d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5752\/providers\/Microsoft.Network\/dnszones\/onesdk1764.pstest.test","name":"onesdk1764.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c82e-4cb1922bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5945\/providers\/Microsoft.Network\/dnszones\/onesdk4636.pstest.test","name":"onesdk4636.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0769-0da02356d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6005\/providers\/Microsoft.Network\/dnszones\/onesdk4419.pstest.test","name":"onesdk4419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-41d2-eb13043dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6140\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-418e-1615a59dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6359\/providers\/Microsoft.Network\/dnszones\/onesdk4630.pstest.test","name":"onesdk4630.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c1cb-e10e6355d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6657\/providers\/Microsoft.Network\/dnszones\/onesdk5052.pstest.test","name":"onesdk5052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ae24-e0a39c51d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6702\/providers\/Microsoft.Network\/dnszones\/onesdk5546.pstest.test","name":"onesdk5546.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e621-38c9164fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7002\/providers\/Microsoft.Network\/dnszones\/onesdk8767.pstest.test","name":"onesdk8767.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4bee-01812240d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7310\/providers\/Microsoft.Network\/dnszones\/onesdk8039.pstest.test","name":"onesdk8039.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b569-bccdf140d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7432\/providers\/Microsoft.Network\/dnszones\/onesdk9736.pstest.test","name":"onesdk9736.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b95-e57b2b4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7671\/providers\/Microsoft.Network\/dnszones\/onesdk5367.pstest.test","name":"onesdk5367.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dea3-6685a950d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7960\/providers\/Microsoft.Network\/dnszones\/onesdk9256.pstest.test","name":"onesdk9256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2947-b8906c46d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8189\/providers\/Microsoft.Network\/dnszones\/onesdk1990.pstest.test","name":"onesdk1990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ee0c-dabff44bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8194\/providers\/Microsoft.Network\/dnszones\/onesdk9649.pstest.test","name":"onesdk9649.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8c03-5998733bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8405\/providers\/Microsoft.Network\/dnszones\/onesdk846.pstest.test","name":"onesdk846.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e92d-d3233747d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8706\/providers\/Microsoft.Network\/dnszones\/onesdk5873.pstest.test","name":"onesdk5873.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c78b-e99dff52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8876\/providers\/Microsoft.Network\/dnszones\/onesdk7912.pstest.test","name":"onesdk7912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f503-62ec7c52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9274\/providers\/Microsoft.Network\/dnszones\/onesdk2187.pstest.test","name":"onesdk2187.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e6ff-5fd41f35d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9476\/providers\/Microsoft.Network\/dnszones\/onesdk8662.pstest.test","name":"onesdk8662.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fe43-1f1a043dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9505\/providers\/Microsoft.Network\/dnszones\/onesdk9266.pstest.test","name":"onesdk9266.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f86e-f90c0448d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9530\/providers\/Microsoft.Network\/dnszones\/onesdk2511.pstest.test","name":"onesdk2511.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-98de-dcf1ce3dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk4780.pstest.test","name":"onesdk4780.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f939-1816ce48d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9728\/providers\/Microsoft.Network\/dnszones\/onesdk7582.pstest.test","name":"onesdk7582.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-76b8-9bc77d37d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9954\/providers\/Microsoft.Network\/dnszones\/onesdk9424.pstest.test","name":"onesdk9424.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0bcb-2fa4234bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk996\/providers\/Microsoft.Network\/dnszones\/onesdk7788.pstest.test","name":"onesdk7788.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e53a-fb2b7b2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone1_importcoy5bcpdvmjp7pccd6xd4vgwgifhkmhod36umlar2j3zztl3osbnjty\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6237-b45c0abcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":16}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone1_importmlzmxo6pz75bsyfjj5vpaa5gsrjcf36pdv6drrglivv6hbx73c2hkuy\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-badd-3a5900bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone1_importvyoefieahfgkvu6jnr36wv2457dwgylo3zeam26rcczn6pjnkiqvkrc\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7770-c08e08bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone2_importelj3wwtkykd4jyueaqezrn5ak6wluvdnx5656ezhji4cwqd4ec27r2a\/providers\/Microsoft.Network\/dnszones\/zone2.com","name":"zone2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ffe3-3c5007bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone3_import3lqkbxginzk3kg2n3arr66pje3tsxzq64drzuq7nh7mwcrj722oe2tx\/providers\/Microsoft.Network\/dnszones\/zone3.com","name":"zone3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9b02-a06209bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone3_importqzzd64yjky3jepv43tnf2wadziszoku3sdgyuyzu47steurwlttjiwp\/providers\/Microsoft.Network\/dnszones\/zone3.com","name":"zone3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4a32-078a07bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone5_import7c3kw4ugv7xfwqlbsv55qsmp2fqr2nf2fsat5pr6reknjot4j2tx3iu\/providers\/Microsoft.Network\/dnszones\/zone5.com","name":"zone5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-391b-dd1808bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone5_importwa76qcesf6isppa5t6m3sa6hejww6gs5auz3nrw32euhdgm3j27xeu5\/providers\/Microsoft.Network\/dnszones\/zone5.com","name":"zone5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1b61-e5fb09bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cojacotest\/providers\/Microsoft.Network\/dnszones\/cojacoexample.com","name":"cojacoexample.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f0e-0dfdb3fcd101","location":"global","tags":{"department":"HumanResources","importance":"Emergency"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":4}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/jonune-pinger-rg\/providers\/Microsoft.Network\/dnszones\/jonune.com","name":"jonune.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2fcd-6d879726d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1.karthiktestzone123.com","name":"child1.karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3add-f115b43fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1karthiktestzone123.com","name":"child1karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8cab-9601a63fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/karthiktestzone123.com","name":"karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-72b8-5bafaaa4d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/vladtest.test","name":"vladtest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc07-5f972e2ad201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.asmx","name":"a.asmx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-64eb-63a8f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.msgx","name":"a.msgx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0076-784ad162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.rules.test","name":"a.rules.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b305-26eae362d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.skin","name":"a.skin","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-59b5-8941d162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.svc","name":"a.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d3fe-87fece62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.aspx","name":"c.aspx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3920-5fc0f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.svc","name":"c.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36a2-4db6f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/karthik.com","name":"karthik.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f92-66b1c962d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/test.testrules","name":"test.testrules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a9d0-5a5dcd62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1034\/providers\/Microsoft.Network\/dnszones\/onesdk4979.pstest.test","name":"onesdk4979.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b767-5791d02ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1046\/providers\/Microsoft.Network\/dnszones\/onesdk6026.pstest.test","name":"onesdk6026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c3a-32120448d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1069\/providers\/Microsoft.Network\/dnszones\/onesdk724.pstest.test","name":"onesdk724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-89f8-fda5082ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1110\/providers\/Microsoft.Network\/dnszones\/onesdk2419.pstest.test","name":"onesdk2419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4c45-bbac8452d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1155\/providers\/Microsoft.Network\/dnszones\/onesdk8597.pstest.test","name":"onesdk8597.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0b4b-cd88ce53d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1269\/providers\/Microsoft.Network\/dnszones\/onesdk1935.pstest.test","name":"onesdk1935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2581-78c8f140d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1597\/providers\/Microsoft.Network\/dnszones\/onesdk7046.pstest.test","name":"onesdk7046.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bca1-ecb66b3bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1616\/providers\/Microsoft.Network\/dnszones\/onesdk7626.pstest.test","name":"onesdk7626.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-22ec-d6c51639d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1620\/providers\/Microsoft.Network\/dnszones\/onesdk2799.pstest.test","name":"onesdk2799.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4185-f1194d38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1732\/providers\/Microsoft.Network\/dnszones\/onesdk4494.pstest.test","name":"onesdk4494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05a8-5a00b64cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1906\/providers\/Microsoft.Network\/dnszones\/onesdk1575.pstest.test","name":"onesdk1575.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bace-07c7452dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2066\/providers\/Microsoft.Network\/dnszones\/onesdk1064.pstest.test","name":"onesdk1064.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4864-748c7537d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2526\/providers\/Microsoft.Network\/dnszones\/onesdk146.pstest.test","name":"onesdk146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1389-cbd6e235d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2773\/providers\/Microsoft.Network\/dnszones\/onesdk6501.pstest.test","name":"onesdk6501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e5df-1fe72b56d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk5047.pstest.test","name":"onesdk5047.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d34b-f8b47446d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2916\/providers\/Microsoft.Network\/dnszones\/onesdk3106.pstest.test","name":"onesdk3106.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0caf-f0f69154d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2985\/providers\/Microsoft.Network\/dnszones\/onesdk5810.pstest.test","name":"onesdk5810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c661-fe870753d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3150\/providers\/Microsoft.Network\/dnszones\/onesdk4105.pstest.test","name":"onesdk4105.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-58b9-f3fda234d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3153\/providers\/Microsoft.Network\/dnszones\/onesdk6890.pstest.test","name":"onesdk6890.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9f5-d9cf164fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3702\/providers\/Microsoft.Network\/dnszones\/onesdk4390.pstest.test","name":"onesdk4390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e717-3529e04fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3740\/providers\/Microsoft.Network\/dnszones\/onesdk3868.pstest.test","name":"onesdk3868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-42ef-30d3102ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3930\/providers\/Microsoft.Network\/dnszones\/onesdk7182.pstest.test","name":"onesdk7182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f5b6-b9a6604ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk583.pstest.test","name":"onesdk583.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5fad-5e93b436d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk453\/providers\/Microsoft.Network\/dnszones\/onesdk9431.pstest.test","name":"onesdk9431.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc5c-80257b2cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4907\/providers\/Microsoft.Network\/dnszones\/onesdk8724.pstest.test","name":"onesdk8724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fff3-57db474ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4971\/providers\/Microsoft.Network\/dnszones\/onesdk5149.pstest.test","name":"onesdk5149.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-54d3-0e15a83ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5110\/providers\/Microsoft.Network\/dnszones\/onesdk9387.pstest.test","name":"onesdk9387.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-76ae-88857f4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5394\/providers\/Microsoft.Network\/dnszones\/onesdk5675.pstest.test","name":"onesdk5675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9c28-5ea1bd41d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5453\/providers\/Microsoft.Network\/dnszones\/onesdk9910.pstest.test","name":"onesdk9910.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-02ff-3947be4cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5626\/providers\/Microsoft.Network\/dnszones\/onesdk3052.pstest.test","name":"onesdk3052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d6fd-f87ea950d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5752\/providers\/Microsoft.Network\/dnszones\/onesdk1764.pstest.test","name":"onesdk1764.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c82e-4cb1922bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5945\/providers\/Microsoft.Network\/dnszones\/onesdk4636.pstest.test","name":"onesdk4636.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0769-0da02356d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6005\/providers\/Microsoft.Network\/dnszones\/onesdk4419.pstest.test","name":"onesdk4419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-41d2-eb13043dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6140\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-418e-1615a59dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6359\/providers\/Microsoft.Network\/dnszones\/onesdk4630.pstest.test","name":"onesdk4630.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c1cb-e10e6355d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6657\/providers\/Microsoft.Network\/dnszones\/onesdk5052.pstest.test","name":"onesdk5052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ae24-e0a39c51d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6702\/providers\/Microsoft.Network\/dnszones\/onesdk5546.pstest.test","name":"onesdk5546.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e621-38c9164fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7002\/providers\/Microsoft.Network\/dnszones\/onesdk8767.pstest.test","name":"onesdk8767.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4bee-01812240d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7310\/providers\/Microsoft.Network\/dnszones\/onesdk8039.pstest.test","name":"onesdk8039.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b569-bccdf140d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7432\/providers\/Microsoft.Network\/dnszones\/onesdk9736.pstest.test","name":"onesdk9736.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b95-e57b2b4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7671\/providers\/Microsoft.Network\/dnszones\/onesdk5367.pstest.test","name":"onesdk5367.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dea3-6685a950d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7960\/providers\/Microsoft.Network\/dnszones\/onesdk9256.pstest.test","name":"onesdk9256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2947-b8906c46d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8189\/providers\/Microsoft.Network\/dnszones\/onesdk1990.pstest.test","name":"onesdk1990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ee0c-dabff44bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8194\/providers\/Microsoft.Network\/dnszones\/onesdk9649.pstest.test","name":"onesdk9649.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8c03-5998733bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8405\/providers\/Microsoft.Network\/dnszones\/onesdk846.pstest.test","name":"onesdk846.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e92d-d3233747d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8706\/providers\/Microsoft.Network\/dnszones\/onesdk5873.pstest.test","name":"onesdk5873.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c78b-e99dff52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8876\/providers\/Microsoft.Network\/dnszones\/onesdk7912.pstest.test","name":"onesdk7912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f503-62ec7c52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9274\/providers\/Microsoft.Network\/dnszones\/onesdk2187.pstest.test","name":"onesdk2187.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e6ff-5fd41f35d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9476\/providers\/Microsoft.Network\/dnszones\/onesdk8662.pstest.test","name":"onesdk8662.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fe43-1f1a043dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9505\/providers\/Microsoft.Network\/dnszones\/onesdk9266.pstest.test","name":"onesdk9266.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f86e-f90c0448d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9530\/providers\/Microsoft.Network\/dnszones\/onesdk2511.pstest.test","name":"onesdk2511.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-98de-dcf1ce3dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk4780.pstest.test","name":"onesdk4780.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f939-1816ce48d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9728\/providers\/Microsoft.Network\/dnszones\/onesdk7582.pstest.test","name":"onesdk7582.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-76b8-9bc77d37d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9954\/providers\/Microsoft.Network\/dnszones\/onesdk9424.pstest.test","name":"onesdk9424.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0bcb-2fa4234bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk996\/providers\/Microsoft.Network\/dnszones\/onesdk7788.pstest.test","name":"onesdk7788.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e53a-fb2b7b2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}}]}'} headers: cache-control: [private] - content-length: ['36767'] + content-length: ['39648'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:16 GMT'] + date: ['Thu, 15 Mar 2018 03:47:52 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -66,23 +66,23 @@ interactions: Content-Length: ['60'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc80-d66810bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} headers: cache-control: [private] content-length: ['556'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:22 GMT'] - etag: [00000002-0000-0000-43b8-b50bfdbbd301] + date: ['Thu, 15 Mar 2018 03:47:59 GMT'] + etag: [00000002-0000-0000-bc80-d66810bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -94,24 +94,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc80-d66810bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}}]}'} headers: cache-control: [private] - content-length: ['568'] + content-length: ['548'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:26 GMT'] + date: ['Thu, 15 Mar 2018 03:48:03 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -123,25 +123,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc80-d66810bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}}'} headers: cache-control: [private] - content-length: ['556'] + content-length: ['536'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:28 GMT'] - etag: [00000002-0000-0000-43b8-b50bfdbbd301] + date: ['Thu, 15 Mar 2018 03:48:05 GMT'] + etag: [00000002-0000-0000-bc80-d66810bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -154,23 +154,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"a87700fc-bca8-499a-9b49-f15664d3ee7d","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0db46f1b-0801-45f1-a618-01584acd1feb","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['385'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:32 GMT'] - etag: [a87700fc-bca8-499a-9b49-f15664d3ee7d] + date: ['Thu, 15 Mar 2018 03:48:10 GMT'] + etag: [0db46f1b-0801-45f1-a618-01584acd1feb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11995'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -182,29 +182,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"a87700fc-bca8-499a-9b49-f15664d3ee7d","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"0db46f1b-0801-45f1-a618-01584acd1feb","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['385'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:33 GMT'] - etag: [a87700fc-bca8-499a-9b49-f15664d3ee7d] + date: ['Thu, 15 Mar 2018 03:48:13 GMT'] + etag: [0db46f1b-0801-45f1-a618-01584acd1feb] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "a87700fc-bca8-499a-9b49-f15664d3ee7d", "properties": {"TTL": + body: '{"etag": "0db46f1b-0801-45f1-a618-01584acd1feb", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: Accept: [application/json] @@ -214,25 +214,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7df577c3-c736-4169-a7e1-4c68efb76d11","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"735aacca-5d72-430a-98c4-571deec5c20f","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:37 GMT'] - etag: [7df577c3-c736-4169-a7e1-4c68efb76d11] + date: ['Thu, 15 Mar 2018 03:48:16 GMT'] + etag: [735aacca-5d72-430a-98c4-571deec5c20f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11992'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -244,10 +244,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -255,7 +255,7 @@ interactions: cache-control: [private] content-length: ['229'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:39 GMT'] + date: ['Thu, 15 Mar 2018 03:48:23 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -273,23 +273,23 @@ interactions: Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"4b86d240-840a-4b40-a381-16ee747b8876","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"ad77f87b-0366-430f-9117-1e04c5127a3a","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['421'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:42 GMT'] - etag: [4b86d240-840a-4b40-a381-16ee747b8876] + date: ['Thu, 15 Mar 2018 03:48:28 GMT'] + etag: [ad77f87b-0366-430f-9117-1e04c5127a3a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11991'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -302,23 +302,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"ba8e28ce-824e-48c3-ba26-0cd486a49e5d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"f2a443f7-e351-44d9-b4a5-43068403b6a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:44 GMT'] - etag: [ba8e28ce-824e-48c3-ba26-0cd486a49e5d] + date: ['Thu, 15 Mar 2018 03:48:31 GMT'] + etag: [f2a443f7-e351-44d9-b4a5-43068403b6a4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -330,29 +330,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"ba8e28ce-824e-48c3-ba26-0cd486a49e5d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"f2a443f7-e351-44d9-b4a5-43068403b6a4","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:47 GMT'] - etag: [ba8e28ce-824e-48c3-ba26-0cd486a49e5d] + date: ['Thu, 15 Mar 2018 03:48:34 GMT'] + etag: [f2a443f7-e351-44d9-b4a5-43068403b6a4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "ba8e28ce-824e-48c3-ba26-0cd486a49e5d", "properties": {"TTL": + body: '{"etag": "f2a443f7-e351-44d9-b4a5-43068403b6a4", "properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: Accept: [application/json] @@ -362,25 +362,25 @@ interactions: Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"35a61ca5-d23e-4415-a95f-838a4b259684","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"b9294fa5-82ff-4cde-b7c3-5bf15ee95042","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:50 GMT'] - etag: [35a61ca5-d23e-4415-a95f-838a4b259684] + date: ['Thu, 15 Mar 2018 03:48:38 GMT'] + etag: [b9294fa5-82ff-4cde-b7c3-5bf15ee95042] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -392,10 +392,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -403,7 +403,7 @@ interactions: cache-control: [private] content-length: ['232'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:52 GMT'] + date: ['Thu, 15 Mar 2018 03:48:40 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -421,18 +421,18 @@ interactions: Content-Length: ['87'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c0836117-5b1c-4554-b6c0-25cb9f825f0b","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"fe7ea1f8-0169-4feb-9066-bd28ecb4a370","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['450'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:29:55 GMT'] - etag: [c0836117-5b1c-4554-b6c0-25cb9f825f0b] + date: ['Thu, 15 Mar 2018 03:48:45 GMT'] + etag: [fe7ea1f8-0169-4feb-9066-bd28ecb4a370] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -450,23 +450,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"5d33dff0-b3c7-47b0-8baf-76c7a843c46c","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"61bc5a5d-5e39-4475-9fcd-3d6fd2ee9a60","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:01 GMT'] - etag: [5d33dff0-b3c7-47b0-8baf-76c7a843c46c] + date: ['Thu, 15 Mar 2018 03:48:49 GMT'] + etag: [61bc5a5d-5e39-4475-9fcd-3d6fd2ee9a60] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -478,29 +478,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"5d33dff0-b3c7-47b0-8baf-76c7a843c46c","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"61bc5a5d-5e39-4475-9fcd-3d6fd2ee9a60","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:03 GMT'] - etag: [5d33dff0-b3c7-47b0-8baf-76c7a843c46c] + date: ['Thu, 15 Mar 2018 03:48:56 GMT'] + etag: [61bc5a5d-5e39-4475-9fcd-3d6fd2ee9a60] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "5d33dff0-b3c7-47b0-8baf-76c7a843c46c", "properties": {"TTL": + body: '{"etag": "61bc5a5d-5e39-4475-9fcd-3d6fd2ee9a60", "properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' headers: Accept: [application/json] @@ -510,26 +510,26 @@ interactions: Content-Length: ['142'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"d4e0f820-2608-4fa9-944e-bcd60e8d7146","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"c13725b2-3a94-4ab7-b5eb-bd56df07f592","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:06 GMT'] - etag: [d4e0f820-2608-4fa9-944e-bcd60e8d7146] + date: ['Thu, 15 Mar 2018 03:48:59 GMT'] + etag: [c13725b2-3a94-4ab7-b5eb-bd56df07f592] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -541,10 +541,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -552,7 +552,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:08 GMT'] + date: ['Thu, 15 Mar 2018 03:49:03 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -571,19 +571,19 @@ interactions: Content-Length: ['94'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"bd5b2dd4-4130-42be-bc28-f09b202f205b","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"f8e97fac-fb40-45e6-8ed9-73c0a6f2d658","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['448'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:12 GMT'] - etag: [bd5b2dd4-4130-42be-bc28-f09b202f205b] + date: ['Thu, 15 Mar 2018 03:49:07 GMT'] + etag: [f8e97fac-fb40-45e6-8ed9-73c0a6f2d658] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -601,23 +601,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9431d91-5198-43c6-9792-a7e15d6fb591","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"005ba13f-f0ad-4243-9ac0-f01923cec6db","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:17 GMT'] - etag: [a9431d91-5198-43c6-9792-a7e15d6fb591] + date: ['Thu, 15 Mar 2018 03:49:10 GMT'] + etag: [005ba13f-f0ad-4243-9ac0-f01923cec6db] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -629,29 +629,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a9431d91-5198-43c6-9792-a7e15d6fb591","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"005ba13f-f0ad-4243-9ac0-f01923cec6db","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:20 GMT'] - etag: [a9431d91-5198-43c6-9792-a7e15d6fb591] + date: ['Thu, 15 Mar 2018 03:49:13 GMT'] + etag: [005ba13f-f0ad-4243-9ac0-f01923cec6db] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "a9431d91-5198-43c6-9792-a7e15d6fb591", "properties": {"TTL": + body: '{"etag": "005ba13f-f0ad-4243-9ac0-f01923cec6db", "properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: Accept: [application/json] @@ -661,18 +661,18 @@ interactions: Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"af198552-3ebd-4d5d-bede-d28ee413e81d","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['425'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:23 GMT'] - etag: [5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1] + date: ['Thu, 15 Mar 2018 03:49:17 GMT'] + etag: [af198552-3ebd-4d5d-bede-d28ee413e81d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -691,10 +691,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -702,7 +702,7 @@ interactions: cache-control: [private] content-length: ['233'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:25 GMT'] + date: ['Thu, 15 Mar 2018 03:49:20 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -720,18 +720,18 @@ interactions: Content-Length: ['66'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"00512ce5-2470-4ffa-88d7-330f6ac28342","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7c80d7b9-ec82-4387-a8e0-4f094e26613b","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:29 GMT'] - etag: [00512ce5-2470-4ffa-88d7-330f6ac28342] + date: ['Thu, 15 Mar 2018 03:49:24 GMT'] + etag: [7c80d7b9-ec82-4387-a8e0-4f094e26613b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -749,18 +749,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"1c6acc56-47df-45ef-a9d6-9dc388c5060c","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"df9f379e-be6f-4044-927d-4cac02d0a6f5","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:31 GMT'] - etag: [1c6acc56-47df-45ef-a9d6-9dc388c5060c] + date: ['Thu, 15 Mar 2018 03:49:28 GMT'] + etag: [df9f379e-be6f-4044-927d-4cac02d0a6f5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -777,29 +777,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"1c6acc56-47df-45ef-a9d6-9dc388c5060c","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"df9f379e-be6f-4044-927d-4cac02d0a6f5","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:35 GMT'] - etag: [1c6acc56-47df-45ef-a9d6-9dc388c5060c] + date: ['Thu, 15 Mar 2018 03:49:31 GMT'] + etag: [df9f379e-be6f-4044-927d-4cac02d0a6f5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "1c6acc56-47df-45ef-a9d6-9dc388c5060c", "properties": {"TTL": + body: '{"etag": "df9f379e-be6f-4044-927d-4cac02d0a6f5", "properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' headers: Accept: [application/json] @@ -809,25 +809,25 @@ interactions: Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"4ffd202b-f3b0-49f3-b8e6-1bf70f625d32","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"ec9ba6e2-59ba-4f6f-9aa9-d1d61e1eb16e","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:37 GMT'] - etag: [4ffd202b-f3b0-49f3-b8e6-1bf70f625d32] + date: ['Thu, 15 Mar 2018 03:49:35 GMT'] + etag: [ec9ba6e2-59ba-4f6f-9aa9-d1d61e1eb16e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11996'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -839,10 +839,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -850,7 +850,7 @@ interactions: cache-control: [private] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:40 GMT'] + date: ['Thu, 15 Mar 2018 03:49:38 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -869,23 +869,23 @@ interactions: Content-Length: ['82'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"c53c26da-2698-467f-96d5-cd1bbb8521b5","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"3b8450bc-5ef7-4ecc-b6c2-e1dd1ca9da42","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['433'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:43 GMT'] - etag: [c53c26da-2698-467f-96d5-cd1bbb8521b5] + date: ['Thu, 15 Mar 2018 03:49:42 GMT'] + etag: [3b8450bc-5ef7-4ecc-b6c2-e1dd1ca9da42] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -898,23 +898,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"58e06e5f-79f7-4dad-b2f1-d252b397a8df","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"45a36fd1-6e8a-4eb3-bbf5-47cfea001632","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:46 GMT'] - etag: [58e06e5f-79f7-4dad-b2f1-d252b397a8df] + date: ['Thu, 15 Mar 2018 03:49:45 GMT'] + etag: [45a36fd1-6e8a-4eb3-bbf5-47cfea001632] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -926,29 +926,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"58e06e5f-79f7-4dad-b2f1-d252b397a8df","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"45a36fd1-6e8a-4eb3-bbf5-47cfea001632","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'} headers: cache-control: [private] content-length: ['391'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:49 GMT'] - etag: [58e06e5f-79f7-4dad-b2f1-d252b397a8df] + date: ['Thu, 15 Mar 2018 03:49:48 GMT'] + etag: [45a36fd1-6e8a-4eb3-bbf5-47cfea001632] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "58e06e5f-79f7-4dad-b2f1-d252b397a8df", "properties": {"TTL": + body: '{"etag": "45a36fd1-6e8a-4eb3-bbf5-47cfea001632", "properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}' headers: Accept: [application/json] @@ -958,25 +958,25 @@ interactions: Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"364a0c6a-80b9-4e78-8c1e-8ff68adc9e87","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"a31e8a66-97d8-4ded-8507-7226b1920559","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['415'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:52 GMT'] - etag: [364a0c6a-80b9-4e78-8c1e-8ff68adc9e87] + date: ['Thu, 15 Mar 2018 03:49:52 GMT'] + etag: [a31e8a66-97d8-4ded-8507-7226b1920559] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -988,10 +988,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsnsalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -999,7 +999,7 @@ interactions: cache-control: [private] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:54 GMT'] + date: ['Thu, 15 Mar 2018 03:49:56 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1017,23 +1017,23 @@ interactions: Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"e1bd3cc8-fa52-4508-a346-df6741904b97","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"8bbdb280-4ac9-4eaf-af79-ef83c20cf8d9","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:30:56 GMT'] - etag: [e1bd3cc8-fa52-4508-a346-df6741904b97] + date: ['Thu, 15 Mar 2018 03:49:58 GMT'] + etag: [8bbdb280-4ac9-4eaf-af79-ef83c20cf8d9] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1046,18 +1046,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"3f79e793-b502-4d5e-96cc-b5d21c0ab97c","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"9eb2002c-056e-4349-aedb-d6716c7b9eda","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:00 GMT'] - etag: [3f79e793-b502-4d5e-96cc-b5d21c0ab97c] + date: ['Thu, 15 Mar 2018 03:50:02 GMT'] + etag: [9eb2002c-056e-4349-aedb-d6716c7b9eda] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1074,18 +1074,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"3f79e793-b502-4d5e-96cc-b5d21c0ab97c","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"9eb2002c-056e-4349-aedb-d6716c7b9eda","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:02 GMT'] - etag: [3f79e793-b502-4d5e-96cc-b5d21c0ab97c] + date: ['Thu, 15 Mar 2018 03:50:05 GMT'] + etag: [9eb2002c-056e-4349-aedb-d6716c7b9eda] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1096,7 +1096,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "3f79e793-b502-4d5e-96cc-b5d21c0ab97c", "properties": {"TTL": + body: '{"etag": "9eb2002c-056e-4349-aedb-d6716c7b9eda", "properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: Accept: [application/json] @@ -1106,18 +1106,18 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b7a347b3-b4a4-4482-a07c-257257d5e936","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"c3b93309-de55-4c71-9022-4dbc10b1cb3a","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['422'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:04 GMT'] - etag: [b7a347b3-b4a4-4482-a07c-257257d5e936] + date: ['Thu, 15 Mar 2018 03:50:09 GMT'] + etag: [c3b93309-de55-4c71-9022-4dbc10b1cb3a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1136,10 +1136,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1147,7 +1147,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:06 GMT'] + date: ['Thu, 15 Mar 2018 03:50:16 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1165,18 +1165,18 @@ interactions: Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"43463580-432c-4640-aef9-3021eee07cc8","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"e10c941b-4c30-4532-8fb2-992117cc1d3f","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['431'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:10 GMT'] - etag: [43463580-432c-4640-aef9-3021eee07cc8] + date: ['Thu, 15 Mar 2018 03:50:19 GMT'] + etag: [e10c941b-4c30-4532-8fb2-992117cc1d3f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1194,18 +1194,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f6c056dc-0599-4cef-9da1-a930c3eb319b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"46c9e340-8d65-4b7c-aee6-d857abd2b3b0","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:12 GMT'] - etag: [f6c056dc-0599-4cef-9da1-a930c3eb319b] + date: ['Thu, 15 Mar 2018 03:50:25 GMT'] + etag: [46c9e340-8d65-4b7c-aee6-d857abd2b3b0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1222,18 +1222,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"f6c056dc-0599-4cef-9da1-a930c3eb319b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"46c9e340-8d65-4b7c-aee6-d857abd2b3b0","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:15 GMT'] - etag: [f6c056dc-0599-4cef-9da1-a930c3eb319b] + date: ['Thu, 15 Mar 2018 03:50:28 GMT'] + etag: [46c9e340-8d65-4b7c-aee6-d857abd2b3b0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1244,7 +1244,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "f6c056dc-0599-4cef-9da1-a930c3eb319b", "properties": {"TTL": + body: '{"etag": "46c9e340-8d65-4b7c-aee6-d857abd2b3b0", "properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' headers: Accept: [application/json] @@ -1254,18 +1254,18 @@ interactions: Content-Length: ['162'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ebb20850-5834-4f25-b1e2-bde29504bd88","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"88db6195-87b9-490b-8635-089fb24f3f38","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['457'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:17 GMT'] - etag: [ebb20850-5834-4f25-b1e2-bde29504bd88] + date: ['Thu, 15 Mar 2018 03:50:32 GMT'] + etag: [88db6195-87b9-490b-8635-089fb24f3f38] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1284,10 +1284,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1295,7 +1295,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:20 GMT'] + date: ['Thu, 15 Mar 2018 03:50:36 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1314,23 +1314,23 @@ interactions: Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"190a4113-822f-4a3b-a518-47be856f4d84","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"916b5fef-fdcf-4711-9766-8c299b22dfd0","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['466'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:22 GMT'] - etag: [190a4113-822f-4a3b-a518-47be856f4d84] + date: ['Thu, 15 Mar 2018 03:50:39 GMT'] + etag: [916b5fef-fdcf-4711-9766-8c299b22dfd0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1343,23 +1343,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"5ecc6055-9d70-41f3-b931-99403e506a12","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ec298901-8810-4584-8714-58363fdcd168","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:25 GMT'] - etag: [5ecc6055-9d70-41f3-b931-99403e506a12] + date: ['Thu, 15 Mar 2018 03:50:43 GMT'] + etag: [ec298901-8810-4584-8714-58363fdcd168] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1371,29 +1371,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"5ecc6055-9d70-41f3-b931-99403e506a12","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ec298901-8810-4584-8714-58363fdcd168","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['397'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:28 GMT'] - etag: [5ecc6055-9d70-41f3-b931-99403e506a12] + date: ['Thu, 15 Mar 2018 03:50:47 GMT'] + etag: [ec298901-8810-4584-8714-58363fdcd168] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "5ecc6055-9d70-41f3-b931-99403e506a12", "properties": {"TTL": + body: '{"etag": "ec298901-8810-4584-8714-58363fdcd168", "properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: Accept: [application/json] @@ -1403,18 +1403,18 @@ interactions: Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"acf60e64-6bea-4eb0-91ca-8291aaea590a","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['420'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:30 GMT'] - etag: [f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc] + date: ['Thu, 15 Mar 2018 03:50:51 GMT'] + etag: [acf60e64-6bea-4eb0-91ca-8291aaea590a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1433,10 +1433,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1444,12 +1444,12 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:32 GMT'] + date: ['Thu, 15 Mar 2018 03:50:54 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -1462,18 +1462,18 @@ interactions: Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a4f11888-47a5-4913-b9e1-89a8a0bae32d","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6fb800e2-53b1-4399-80e6-e4b5fafb5aa1","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['429'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:35 GMT'] - etag: [a4f11888-47a5-4913-b9e1-89a8a0bae32d] + date: ['Thu, 15 Mar 2018 03:50:56 GMT'] + etag: [6fb800e2-53b1-4399-80e6-e4b5fafb5aa1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1490,29 +1490,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"7df577c3-c736-4169-a7e1-4c68efb76d11","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"735aacca-5d72-430a-98c4-571deec5c20f","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:37 GMT'] - etag: [7df577c3-c736-4169-a7e1-4c68efb76d11] + date: ['Thu, 15 Mar 2018 03:51:01 GMT'] + etag: [735aacca-5d72-430a-98c4-571deec5c20f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "7df577c3-c736-4169-a7e1-4c68efb76d11", "properties": {"TTL": + body: '{"etag": "735aacca-5d72-430a-98c4-571deec5c20f", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] @@ -1522,25 +1522,25 @@ interactions: Content-Length: ['151'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"b09d91bd-d766-42c1-ae5e-5302a89ff13c","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:40 GMT'] - etag: [d0b302f6-7584-4b5e-9f55-5ed1d2413f21] + date: ['Thu, 15 Mar 2018 03:51:05 GMT'] + etag: [b09d91bd-d766-42c1-ae5e-5302a89ff13c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11995'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1552,18 +1552,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"94fe4c15-73d9-4a9d-80d4-47025f28e618","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"08870883-a030-4d36-ad40-05924e69bf95","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-08.ppe.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:42 GMT'] - etag: [94fe4c15-73d9-4a9d-80d4-47025f28e618] + date: ['Thu, 15 Mar 2018 03:51:07 GMT'] + etag: [08870883-a030-4d36-ad40-05924e69bf95] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1582,18 +1582,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"94fe4c15-73d9-4a9d-80d4-47025f28e618","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"08870883-a030-4d36-ad40-05924e69bf95","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-08.ppe.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:45 GMT'] - etag: [94fe4c15-73d9-4a9d-80d4-47025f28e618] + date: ['Thu, 15 Mar 2018 03:51:10 GMT'] + etag: [08870883-a030-4d36-ad40-05924e69bf95] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1604,8 +1604,8 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "94fe4c15-73d9-4a9d-80d4-47025f28e618", "properties": {"TTL": - 3600, "SOARecord": {"host": "ns1-09.ppe.azure-dns.com.", "email": "foo.com", + body: '{"etag": "08870883-a030-4d36-ad40-05924e69bf95", "properties": {"TTL": + 3600, "SOARecord": {"host": "ns1-08.ppe.azure-dns.com.", "email": "foo.com", "serialNumber": 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' headers: @@ -1616,25 +1616,25 @@ interactions: Content-Length: ['242'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e7687d6a-b7ae-446e-80ba-7da671a72ce3","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"4ed2f980-cb08-446f-9dd4-d3c1e5369996","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-08.ppe.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} headers: cache-control: [private] content-length: ['511'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:51 GMT'] - etag: [e7687d6a-b7ae-446e-80ba-7da671a72ce3] + date: ['Thu, 15 Mar 2018 03:51:14 GMT'] + etag: [4ed2f980-cb08-446f-9dd4-d3c1e5369996] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1646,10 +1646,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1657,7 +1657,7 @@ interactions: cache-control: [private] content-length: ['228'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:53 GMT'] + date: ['Thu, 15 Mar 2018 03:51:16 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1676,23 +1676,23 @@ interactions: Content-Length: ['566'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fa4d83f8-98f2-4b6a-a8cc-4278f2789877","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"0a095966-c27c-4c4d-8170-b66980c67d1d","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} headers: cache-control: [private] content-length: ['914'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:55 GMT'] - etag: [fa4d83f8-98f2-4b6a-a8cc-4278f2789877] + date: ['Thu, 15 Mar 2018 03:51:22 GMT'] + etag: [0a095966-c27c-4c4d-8170-b66980c67d1d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1704,18 +1704,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-43b8-b50bfdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":21,"zoneType":"Public"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc80-d66810bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":21}}'} headers: cache-control: [private] - content-length: ['557'] + content-length: ['537'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:31:57 GMT'] - etag: [00000002-0000-0000-43b8-b50bfdbbd301] + date: ['Thu, 15 Mar 2018 03:51:26 GMT'] + etag: [00000002-0000-0000-bc80-d66810bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1734,25 +1734,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"b09d91bd-d766-42c1-ae5e-5302a89ff13c","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:00 GMT'] - etag: [d0b302f6-7584-4b5e-9f55-5ed1d2413f21] + date: ['Thu, 15 Mar 2018 03:51:29 GMT'] + etag: [b09d91bd-d766-42c1-ae5e-5302a89ff13c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1764,26 +1764,26 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"9db05edd-6352-4057-836c-436642eb39fa","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-09.ppe.azure-dns.com."},{"nsdname":"ns2-09.ppe.azure-dns.net."},{"nsdname":"ns3-09.ppe.azure-dns.org."},{"nsdname":"ns4-09.ppe.azure-dns.info."}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e7687d6a-b7ae-446e-80ba-7da671a72ce3","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-09.ppe.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fa4d83f8-98f2-4b6a-a8cc-4278f2789877","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"35a61ca5-d23e-4415-a95f-838a4b259684","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c0836117-5b1c-4554-b6c0-25cb9f825f0b","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"4b86d240-840a-4b40-a381-16ee747b8876","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"d4e0f820-2608-4fa9-944e-bcd60e8d7146","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"bd5b2dd4-4130-42be-bc28-f09b202f205b","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"00512ce5-2470-4ffa-88d7-330f6ac28342","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"4ffd202b-f3b0-49f3-b8e6-1bf70f625d32","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"c53c26da-2698-467f-96d5-cd1bbb8521b5","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"364a0c6a-80b9-4e78-8c1e-8ff68adc9e87","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"e1bd3cc8-fa52-4508-a346-df6741904b97","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b7a347b3-b4a4-4482-a07c-257257d5e936","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"43463580-432c-4640-aef9-3021eee07cc8","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ebb20850-5834-4f25-b1e2-bde29504bd88","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"190a4113-822f-4a3b-a518-47be856f4d84","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a4f11888-47a5-4913-b9e1-89a8a0bae32d","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"b123b48d-305b-4f35-9a3f-c5760cb7668c","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-08.ppe.azure-dns.com."},{"nsdname":"ns2-08.ppe.azure-dns.net."},{"nsdname":"ns3-08.ppe.azure-dns.org."},{"nsdname":"ns4-08.ppe.azure-dns.info."}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"4ed2f980-cb08-446f-9dd4-d3c1e5369996","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-08.ppe.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"0a095966-c27c-4c4d-8170-b66980c67d1d","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"b09d91bd-d766-42c1-ae5e-5302a89ff13c","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"b9294fa5-82ff-4cde-b7c3-5bf15ee95042","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"fe7ea1f8-0169-4feb-9066-bd28ecb4a370","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"ad77f87b-0366-430f-9117-1e04c5127a3a","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"c13725b2-3a94-4ab7-b5eb-bd56df07f592","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"f8e97fac-fb40-45e6-8ed9-73c0a6f2d658","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"af198552-3ebd-4d5d-bede-d28ee413e81d","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7c80d7b9-ec82-4387-a8e0-4f094e26613b","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"ec9ba6e2-59ba-4f6f-9aa9-d1d61e1eb16e","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"3b8450bc-5ef7-4ecc-b6c2-e1dd1ca9da42","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"a31e8a66-97d8-4ded-8507-7226b1920559","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"8bbdb280-4ac9-4eaf-af79-ef83c20cf8d9","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"c3b93309-de55-4c71-9022-4dbc10b1cb3a","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"e10c941b-4c30-4532-8fb2-992117cc1d3f","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"88db6195-87b9-490b-8635-089fb24f3f38","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"916b5fef-fdcf-4711-9766-8c299b22dfd0","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"acf60e64-6bea-4eb0-91ca-8291aaea590a","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6fb800e2-53b1-4399-80e6-e4b5fafb5aa1","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['9812'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:02 GMT'] + date: ['Thu, 15 Mar 2018 03:51:33 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1795,17 +1795,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"fa4d83f8-98f2-4b6a-a8cc-4278f2789877","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a4f11888-47a5-4913-b9e1-89a8a0bae32d","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"0a095966-c27c-4c4d-8170-b66980c67d1d","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"acf60e64-6bea-4eb0-91ca-8291aaea590a","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6fb800e2-53b1-4399-80e6-e4b5fafb5aa1","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['1777'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:04 GMT'] + date: ['Thu, 15 Mar 2018 03:51:37 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1824,18 +1824,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d0b302f6-7584-4b5e-9f55-5ed1d2413f21","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"b09d91bd-d766-42c1-ae5e-5302a89ff13c","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:07 GMT'] - etag: [d0b302f6-7584-4b5e-9f55-5ed1d2413f21] + date: ['Thu, 15 Mar 2018 03:51:42 GMT'] + etag: [b09d91bd-d766-42c1-ae5e-5302a89ff13c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1846,7 +1846,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "d0b302f6-7584-4b5e-9f55-5ed1d2413f21", "properties": {"TTL": + body: '{"etag": "b09d91bd-d766-42c1-ae5e-5302a89ff13c", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] @@ -1856,25 +1856,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"455f3a36-7388-4c62-87c2-279cbec90efc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"fa608fe1-ceb3-4726-b95f-9ccaeae31420","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:09 GMT'] - etag: [455f3a36-7388-4c62-87c2-279cbec90efc] + date: ['Thu, 15 Mar 2018 03:51:45 GMT'] + etag: [fa608fe1-ceb3-4726-b95f-9ccaeae31420] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11996'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1886,25 +1886,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"35a61ca5-d23e-4415-a95f-838a4b259684","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"b9294fa5-82ff-4cde-b7c3-5bf15ee95042","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:11 GMT'] - etag: [35a61ca5-d23e-4415-a95f-838a4b259684] + date: ['Thu, 15 Mar 2018 03:51:48 GMT'] + etag: [b9294fa5-82ff-4cde-b7c3-5bf15ee95042] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1917,16 +1917,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:14 GMT'] + date: ['Thu, 15 Mar 2018 03:51:53 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1943,19 +1943,19 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"d4e0f820-2608-4fa9-944e-bcd60e8d7146","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"c13725b2-3a94-4ab7-b5eb-bd56df07f592","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:16 GMT'] - etag: [d4e0f820-2608-4fa9-944e-bcd60e8d7146] + date: ['Thu, 15 Mar 2018 03:51:56 GMT'] + etag: [c13725b2-3a94-4ab7-b5eb-bd56df07f592] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1975,16 +1975,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:19 GMT'] + date: ['Thu, 15 Mar 2018 03:51:59 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2001,25 +2001,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"af198552-3ebd-4d5d-bede-d28ee413e81d","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['425'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:21 GMT'] - etag: [5c7f6a89-d391-4a9d-9d62-0ed5615f2ca1] + date: ['Thu, 15 Mar 2018 03:52:03 GMT'] + etag: [af198552-3ebd-4d5d-bede-d28ee413e81d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2032,16 +2032,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:24 GMT'] + date: ['Thu, 15 Mar 2018 03:52:06 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2058,18 +2058,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"4ffd202b-f3b0-49f3-b8e6-1bf70f625d32","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"ec9ba6e2-59ba-4f6f-9aa9-d1d61e1eb16e","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:26 GMT'] - etag: [4ffd202b-f3b0-49f3-b8e6-1bf70f625d32] + date: ['Thu, 15 Mar 2018 03:52:09 GMT'] + etag: [ec9ba6e2-59ba-4f6f-9aa9-d1d61e1eb16e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2089,16 +2089,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:28 GMT'] + date: ['Thu, 15 Mar 2018 03:52:12 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2115,25 +2115,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"364a0c6a-80b9-4e78-8c1e-8ff68adc9e87","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"a31e8a66-97d8-4ded-8507-7226b1920559","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['415'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:31 GMT'] - etag: [364a0c6a-80b9-4e78-8c1e-8ff68adc9e87] + date: ['Thu, 15 Mar 2018 03:52:15 GMT'] + etag: [a31e8a66-97d8-4ded-8507-7226b1920559] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2146,16 +2146,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:33 GMT'] + date: ['Thu, 15 Mar 2018 03:52:23 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2172,25 +2172,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b7a347b3-b4a4-4482-a07c-257257d5e936","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"c3b93309-de55-4c71-9022-4dbc10b1cb3a","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['422'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:35 GMT'] - etag: [b7a347b3-b4a4-4482-a07c-257257d5e936] + date: ['Thu, 15 Mar 2018 03:52:26 GMT'] + etag: [c3b93309-de55-4c71-9022-4dbc10b1cb3a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2203,16 +2203,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:38 GMT'] + date: ['Thu, 15 Mar 2018 03:52:29 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2229,25 +2229,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ebb20850-5834-4f25-b1e2-bde29504bd88","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"88db6195-87b9-490b-8635-089fb24f3f38","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['457'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:40 GMT'] - etag: [ebb20850-5834-4f25-b1e2-bde29504bd88] + date: ['Thu, 15 Mar 2018 03:52:33 GMT'] + etag: [88db6195-87b9-490b-8635-089fb24f3f38] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2260,16 +2260,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:42 GMT'] + date: ['Thu, 15 Mar 2018 03:52:36 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2286,18 +2286,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"acf60e64-6bea-4eb0-91ca-8291aaea590a","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['420'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:44 GMT'] - etag: [f4b7f66f-ca97-4ef0-8700-ddd7bcc793dc] + date: ['Thu, 15 Mar 2018 03:52:40 GMT'] + etag: [acf60e64-6bea-4eb0-91ca-8291aaea590a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2317,16 +2317,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:47 GMT'] + date: ['Thu, 15 Mar 2018 03:52:43 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2343,18 +2343,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"455f3a36-7388-4c62-87c2-279cbec90efc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"fa608fe1-ceb3-4726-b95f-9ccaeae31420","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:49 GMT'] - etag: [455f3a36-7388-4c62-87c2-279cbec90efc] + date: ['Thu, 15 Mar 2018 03:52:47 GMT'] + etag: [fa608fe1-ceb3-4726-b95f-9ccaeae31420] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2373,25 +2373,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"455f3a36-7388-4c62-87c2-279cbec90efc","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"fa608fe1-ceb3-4726-b95f-9ccaeae31420","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:51 GMT'] - etag: [455f3a36-7388-4c62-87c2-279cbec90efc] + date: ['Thu, 15 Mar 2018 03:52:50 GMT'] + etag: [fa608fe1-ceb3-4726-b95f-9ccaeae31420] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2404,16 +2404,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:32:54 GMT'] + date: ['Thu, 15 Mar 2018 03:52:54 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2430,10 +2430,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -2441,12 +2441,12 @@ interactions: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:32:56 GMT'] + date: ['Thu, 15 Mar 2018 03:52:57 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -2459,15 +2459,15 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] - date: ['Thu, 15 Mar 2018 01:32:58 GMT'] + date: ['Thu, 15 Mar 2018 03:53:01 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2484,10 +2484,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -2495,12 +2495,12 @@ interactions: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:01 GMT'] + date: ['Thu, 15 Mar 2018 03:53:04 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -2513,23 +2513,23 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01 response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667438538733220223cb40?api-version=2018-03-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566827886606381ac169b36?api-version=2017-09-01'] cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:33:05 GMT'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone6365667438538733220223cb40?api-version=2018-03-01-preview'] + date: ['Thu, 15 Mar 2018 03:53:08 GMT'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566827886606381ac169b36?api-version=2017-09-01'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -2539,24 +2539,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network dns zone delete] Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667438538733220223cb40?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566827886606381ac169b36?api-version=2017-09-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [private] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:10 GMT'] + date: ['Thu, 15 Mar 2018 03:53:16 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2570,7 +2572,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.28] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -2579,12 +2581,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:33:15 GMT'] + date: ['Thu, 15 Mar 2018 03:53:21 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TWDZWVTI1WVE2QkI3UzdJMk1WT05PSFVNRlhDRUpSWXxGN0I0OUFDNDZEQ0I5NzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TUkUzNzdRTDdYSTdTM0U0VUs0Q0w0VkdHSDZBNFdCUnxBMkNBQUUzQ0I0QjZBMUM4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml index e5e6d11d8e0..30bf9c7b30a 100644 --- a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml +++ b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml @@ -10,7 +10,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:20 GMT'] + date: ['Thu, 15 Mar 2018 03:53:28 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -37,7 +37,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.28] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -47,7 +47,7 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:22 GMT'] + date: ['Thu, 15 Mar 2018 03:53:32 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -65,33 +65,33 @@ interactions: Content-Length: ['123'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ - ,\r\n \"etag\": \"W/\\\"8bdf8143-5327-4950-bf2c-13512837cf38\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3144ce85-edf3-4614-b24a-22d732d34da2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9da656a9-44e0-4259-a0ee-fbc44d4ca047\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"2a324cce-f014-4de7-a466-aee71cdf42ad\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ : false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/301254d6-dcbf-49fe-ac6e-01b7917b8ffe?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7acd6eac-88b7-4b81-bc99-fdb2548123e2?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['770'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:27 GMT'] + date: ['Thu, 15 Mar 2018 03:53:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -102,17 +102,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/301254d6-dcbf-49fe-ac6e-01b7917b8ffe?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7acd6eac-88b7-4b81-bc99-fdb2548123e2?api-version=2017-11-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:33 GMT'] + date: ['Thu, 15 Mar 2018 03:53:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -130,16 +130,16 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ - ,\r\n \"etag\": \"W/\\\"e9c797b6-ee37-474c-8e1b-d5176bfb0646\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"bbe40868-c0ab-4538-9eb3-f51f7ca1e2a8\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9da656a9-44e0-4259-a0ee-fbc44d4ca047\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"2a324cce-f014-4de7-a466-aee71cdf42ad\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -149,8 +149,8 @@ interactions: cache-control: [no-cache] content-length: ['771'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:35 GMT'] - etag: [W/"e9c797b6-ee37-474c-8e1b-d5176bfb0646"] + date: ['Thu, 15 Mar 2018 03:53:48 GMT'] + etag: [W/"bbe40868-c0ab-4538-9eb3-f51f7ca1e2a8"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -169,7 +169,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.28] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -179,7 +179,7 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:36 GMT'] + date: ['Thu, 15 Mar 2018 03:53:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -197,27 +197,27 @@ interactions: Content-Length: ['123'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ - ,\r\n \"etag\": \"W/\\\"4b0b5c00-f600-482b-b0ff-73b8f7cf572f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a8af1b87-e1d5-449b-af7f-f9f281c1470f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"3d162e4f-bab3-4605-a0af-45492c3cdeaf\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"eb9e94d1-1ab5-4947-a880-843cd3c41649\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ : false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8fa6702d-14cc-45f9-ad24-2b643a88fa37?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7728ca54-3b51-4347-848b-70e098b763ed?api-version=2017-11-01'] cache-control: [no-cache] content-length: ['770'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:41 GMT'] + date: ['Thu, 15 Mar 2018 03:53:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -234,17 +234,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8fa6702d-14cc-45f9-ad24-2b643a88fa37?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7728ca54-3b51-4347-848b-70e098b763ed?api-version=2017-11-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:47 GMT'] + date: ['Thu, 15 Mar 2018 03:54:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -262,16 +262,16 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 response: body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ - ,\r\n \"etag\": \"W/\\\"20d40e40-c513-4589-b504-423e6d74887f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4c706068-c5ef-4c92-adf5-e542364633e0\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"3d162e4f-bab3-4605-a0af-45492c3cdeaf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"eb9e94d1-1ab5-4947-a880-843cd3c41649\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -281,8 +281,8 @@ interactions: cache-control: [no-cache] content-length: ['771'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:52 GMT'] - etag: [W/"20d40e40-c513-4589-b504-423e6d74887f"] + date: ['Thu, 15 Mar 2018 03:54:10 GMT'] + etag: [W/"4c706068-c5ef-4c92-adf5-e542364633e0"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -300,24 +300,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cojacotest\/providers\/Microsoft.Network\/dnszones\/cojacoexample.com","name":"cojacoexample.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f0e-0dfdb3fcd101","location":"global","tags":{"department":"HumanResources","importance":"Emergency"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":4,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/jonune-pinger-rg\/providers\/Microsoft.Network\/dnszones\/jonune.com","name":"jonune.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2fcd-6d879726d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1.karthiktestzone123.com","name":"child1.karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3add-f115b43fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1karthiktestzone123.com","name":"child1karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8cab-9601a63fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/karthiktestzone123.com","name":"karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-72b8-5bafaaa4d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/vladtest.test","name":"vladtest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc07-5f972e2ad201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.asmx","name":"a.asmx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-64eb-63a8f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.msgx","name":"a.msgx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0076-784ad162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.rules.test","name":"a.rules.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b305-26eae362d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.skin","name":"a.skin","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-59b5-8941d162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.svc","name":"a.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d3fe-87fece62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.aspx","name":"c.aspx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3920-5fc0f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.svc","name":"c.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36a2-4db6f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/karthik.com","name":"karthik.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f92-66b1c962d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":6,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/test.testrules","name":"test.testrules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a9d0-5a5dcd62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1034\/providers\/Microsoft.Network\/dnszones\/onesdk4979.pstest.test","name":"onesdk4979.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b767-5791d02ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1046\/providers\/Microsoft.Network\/dnszones\/onesdk6026.pstest.test","name":"onesdk6026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c3a-32120448d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1069\/providers\/Microsoft.Network\/dnszones\/onesdk724.pstest.test","name":"onesdk724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-89f8-fda5082ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1110\/providers\/Microsoft.Network\/dnszones\/onesdk2419.pstest.test","name":"onesdk2419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4c45-bbac8452d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1155\/providers\/Microsoft.Network\/dnszones\/onesdk8597.pstest.test","name":"onesdk8597.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0b4b-cd88ce53d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1269\/providers\/Microsoft.Network\/dnszones\/onesdk1935.pstest.test","name":"onesdk1935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2581-78c8f140d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1597\/providers\/Microsoft.Network\/dnszones\/onesdk7046.pstest.test","name":"onesdk7046.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bca1-ecb66b3bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1616\/providers\/Microsoft.Network\/dnszones\/onesdk7626.pstest.test","name":"onesdk7626.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-22ec-d6c51639d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1620\/providers\/Microsoft.Network\/dnszones\/onesdk2799.pstest.test","name":"onesdk2799.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4185-f1194d38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1732\/providers\/Microsoft.Network\/dnszones\/onesdk4494.pstest.test","name":"onesdk4494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05a8-5a00b64cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1906\/providers\/Microsoft.Network\/dnszones\/onesdk1575.pstest.test","name":"onesdk1575.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bace-07c7452dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2066\/providers\/Microsoft.Network\/dnszones\/onesdk1064.pstest.test","name":"onesdk1064.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4864-748c7537d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2526\/providers\/Microsoft.Network\/dnszones\/onesdk146.pstest.test","name":"onesdk146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1389-cbd6e235d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2773\/providers\/Microsoft.Network\/dnszones\/onesdk6501.pstest.test","name":"onesdk6501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e5df-1fe72b56d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk5047.pstest.test","name":"onesdk5047.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d34b-f8b47446d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2916\/providers\/Microsoft.Network\/dnszones\/onesdk3106.pstest.test","name":"onesdk3106.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0caf-f0f69154d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2985\/providers\/Microsoft.Network\/dnszones\/onesdk5810.pstest.test","name":"onesdk5810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c661-fe870753d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3150\/providers\/Microsoft.Network\/dnszones\/onesdk4105.pstest.test","name":"onesdk4105.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-58b9-f3fda234d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3153\/providers\/Microsoft.Network\/dnszones\/onesdk6890.pstest.test","name":"onesdk6890.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9f5-d9cf164fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3702\/providers\/Microsoft.Network\/dnszones\/onesdk4390.pstest.test","name":"onesdk4390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e717-3529e04fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3740\/providers\/Microsoft.Network\/dnszones\/onesdk3868.pstest.test","name":"onesdk3868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-42ef-30d3102ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3930\/providers\/Microsoft.Network\/dnszones\/onesdk7182.pstest.test","name":"onesdk7182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f5b6-b9a6604ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk583.pstest.test","name":"onesdk583.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5fad-5e93b436d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk453\/providers\/Microsoft.Network\/dnszones\/onesdk9431.pstest.test","name":"onesdk9431.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc5c-80257b2cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4907\/providers\/Microsoft.Network\/dnszones\/onesdk8724.pstest.test","name":"onesdk8724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fff3-57db474ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4971\/providers\/Microsoft.Network\/dnszones\/onesdk5149.pstest.test","name":"onesdk5149.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-54d3-0e15a83ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5110\/providers\/Microsoft.Network\/dnszones\/onesdk9387.pstest.test","name":"onesdk9387.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-76ae-88857f4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5394\/providers\/Microsoft.Network\/dnszones\/onesdk5675.pstest.test","name":"onesdk5675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9c28-5ea1bd41d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5453\/providers\/Microsoft.Network\/dnszones\/onesdk9910.pstest.test","name":"onesdk9910.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-02ff-3947be4cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5626\/providers\/Microsoft.Network\/dnszones\/onesdk3052.pstest.test","name":"onesdk3052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d6fd-f87ea950d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5752\/providers\/Microsoft.Network\/dnszones\/onesdk1764.pstest.test","name":"onesdk1764.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c82e-4cb1922bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5945\/providers\/Microsoft.Network\/dnszones\/onesdk4636.pstest.test","name":"onesdk4636.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0769-0da02356d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6005\/providers\/Microsoft.Network\/dnszones\/onesdk4419.pstest.test","name":"onesdk4419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-41d2-eb13043dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6140\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-418e-1615a59dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6359\/providers\/Microsoft.Network\/dnszones\/onesdk4630.pstest.test","name":"onesdk4630.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c1cb-e10e6355d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6657\/providers\/Microsoft.Network\/dnszones\/onesdk5052.pstest.test","name":"onesdk5052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ae24-e0a39c51d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6702\/providers\/Microsoft.Network\/dnszones\/onesdk5546.pstest.test","name":"onesdk5546.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e621-38c9164fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7002\/providers\/Microsoft.Network\/dnszones\/onesdk8767.pstest.test","name":"onesdk8767.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4bee-01812240d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7310\/providers\/Microsoft.Network\/dnszones\/onesdk8039.pstest.test","name":"onesdk8039.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b569-bccdf140d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7432\/providers\/Microsoft.Network\/dnszones\/onesdk9736.pstest.test","name":"onesdk9736.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b95-e57b2b4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7671\/providers\/Microsoft.Network\/dnszones\/onesdk5367.pstest.test","name":"onesdk5367.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dea3-6685a950d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7960\/providers\/Microsoft.Network\/dnszones\/onesdk9256.pstest.test","name":"onesdk9256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2947-b8906c46d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8189\/providers\/Microsoft.Network\/dnszones\/onesdk1990.pstest.test","name":"onesdk1990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ee0c-dabff44bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8194\/providers\/Microsoft.Network\/dnszones\/onesdk9649.pstest.test","name":"onesdk9649.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8c03-5998733bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8405\/providers\/Microsoft.Network\/dnszones\/onesdk846.pstest.test","name":"onesdk846.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e92d-d3233747d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8706\/providers\/Microsoft.Network\/dnszones\/onesdk5873.pstest.test","name":"onesdk5873.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c78b-e99dff52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8876\/providers\/Microsoft.Network\/dnszones\/onesdk7912.pstest.test","name":"onesdk7912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f503-62ec7c52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9274\/providers\/Microsoft.Network\/dnszones\/onesdk2187.pstest.test","name":"onesdk2187.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e6ff-5fd41f35d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9476\/providers\/Microsoft.Network\/dnszones\/onesdk8662.pstest.test","name":"onesdk8662.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fe43-1f1a043dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9505\/providers\/Microsoft.Network\/dnszones\/onesdk9266.pstest.test","name":"onesdk9266.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f86e-f90c0448d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9530\/providers\/Microsoft.Network\/dnszones\/onesdk2511.pstest.test","name":"onesdk2511.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-98de-dcf1ce3dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk4780.pstest.test","name":"onesdk4780.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f939-1816ce48d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9728\/providers\/Microsoft.Network\/dnszones\/onesdk7582.pstest.test","name":"onesdk7582.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-76b8-9bc77d37d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9954\/providers\/Microsoft.Network\/dnszones\/onesdk9424.pstest.test","name":"onesdk9424.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0bcb-2fa4234bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk996\/providers\/Microsoft.Network\/dnszones\/onesdk7788.pstest.test","name":"onesdk7788.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e53a-fb2b7b2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone1_importcoy5bcpdvmjp7pccd6xd4vgwgifhkmhod36umlar2j3zztl3osbnjty\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-6237-b45c0abcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":16}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone1_importmlzmxo6pz75bsyfjj5vpaa5gsrjcf36pdv6drrglivv6hbx73c2hkuy\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-badd-3a5900bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone1_importvyoefieahfgkvu6jnr36wv2457dwgylo3zeam26rcczn6pjnkiqvkrc\/providers\/Microsoft.Network\/dnszones\/zone1.com","name":"zone1.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7770-c08e08bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone2_importelj3wwtkykd4jyueaqezrn5ak6wluvdnx5656ezhji4cwqd4ec27r2a\/providers\/Microsoft.Network\/dnszones\/zone2.com","name":"zone2.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ffe3-3c5007bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone3_import3lqkbxginzk3kg2n3arr66pje3tsxzq64drzuq7nh7mwcrj722oe2tx\/providers\/Microsoft.Network\/dnszones\/zone3.com","name":"zone3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9b02-a06209bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone3_importqzzd64yjky3jepv43tnf2wadziszoku3sdgyuyzu47steurwlttjiwp\/providers\/Microsoft.Network\/dnszones\/zone3.com","name":"zone3.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4a32-078a07bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone5_import7c3kw4ugv7xfwqlbsv55qsmp2fqr2nf2fsat5pr6reknjot4j2tx3iu\/providers\/Microsoft.Network\/dnszones\/zone5.com","name":"zone5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-391b-dd1808bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_dns_zone5_importwa76qcesf6isppa5t6m3sa6hejww6gs5auz3nrw32euhdgm3j27xeu5\/providers\/Microsoft.Network\/dnszones\/zone5.com","name":"zone5.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1b61-e5fb09bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cojacotest\/providers\/Microsoft.Network\/dnszones\/cojacoexample.com","name":"cojacoexample.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4f0e-0dfdb3fcd101","location":"global","tags":{"department":"HumanResources","importance":"Emergency"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":4}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/jonune-pinger-rg\/providers\/Microsoft.Network\/dnszones\/jonune.com","name":"jonune.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2fcd-6d879726d301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1.karthiktestzone123.com","name":"child1.karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3add-f115b43fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/child1karthiktestzone123.com","name":"child1karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8cab-9601a63fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/karthiktestzone123.com","name":"karthiktestzone123.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-72b8-5bafaaa4d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karravitest1\/providers\/Microsoft.Network\/dnszones\/vladtest.test","name":"vladtest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc07-5f972e2ad201","location":"global","tags":{"a":"b"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.asmx","name":"a.asmx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-64eb-63a8f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.msgx","name":"a.msgx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0076-784ad162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.rules.test","name":"a.rules.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b305-26eae362d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.skin","name":"a.skin","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-59b5-8941d162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/a.svc","name":"a.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d3fe-87fece62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.aspx","name":"c.aspx","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-3920-5fc0f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/c.svc","name":"c.svc","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-36a2-4db6f162d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/karthik.com","name":"karthik.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1f92-66b1c962d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":6}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/karthikdnszones\/providers\/Microsoft.Network\/dnszones\/test.testrules","name":"test.testrules","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-a9d0-5a5dcd62d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1034\/providers\/Microsoft.Network\/dnszones\/onesdk4979.pstest.test","name":"onesdk4979.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b767-5791d02ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1046\/providers\/Microsoft.Network\/dnszones\/onesdk6026.pstest.test","name":"onesdk6026.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-8c3a-32120448d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1069\/providers\/Microsoft.Network\/dnszones\/onesdk724.pstest.test","name":"onesdk724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-89f8-fda5082ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1110\/providers\/Microsoft.Network\/dnszones\/onesdk2419.pstest.test","name":"onesdk2419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-4c45-bbac8452d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1155\/providers\/Microsoft.Network\/dnszones\/onesdk8597.pstest.test","name":"onesdk8597.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-0b4b-cd88ce53d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1269\/providers\/Microsoft.Network\/dnszones\/onesdk1935.pstest.test","name":"onesdk1935.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2581-78c8f140d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1597\/providers\/Microsoft.Network\/dnszones\/onesdk7046.pstest.test","name":"onesdk7046.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-bca1-ecb66b3bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1616\/providers\/Microsoft.Network\/dnszones\/onesdk7626.pstest.test","name":"onesdk7626.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-22ec-d6c51639d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1620\/providers\/Microsoft.Network\/dnszones\/onesdk2799.pstest.test","name":"onesdk2799.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4185-f1194d38d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1732\/providers\/Microsoft.Network\/dnszones\/onesdk4494.pstest.test","name":"onesdk4494.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-05a8-5a00b64cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk1906\/providers\/Microsoft.Network\/dnszones\/onesdk1575.pstest.test","name":"onesdk1575.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bace-07c7452dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2066\/providers\/Microsoft.Network\/dnszones\/onesdk1064.pstest.test","name":"onesdk1064.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4864-748c7537d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2526\/providers\/Microsoft.Network\/dnszones\/onesdk146.pstest.test","name":"onesdk146.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-1389-cbd6e235d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2773\/providers\/Microsoft.Network\/dnszones\/onesdk6501.pstest.test","name":"onesdk6501.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e5df-1fe72b56d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2823\/providers\/Microsoft.Network\/dnszones\/onesdk5047.pstest.test","name":"onesdk5047.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d34b-f8b47446d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2916\/providers\/Microsoft.Network\/dnszones\/onesdk3106.pstest.test","name":"onesdk3106.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0caf-f0f69154d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk2985\/providers\/Microsoft.Network\/dnszones\/onesdk5810.pstest.test","name":"onesdk5810.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c661-fe870753d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3150\/providers\/Microsoft.Network\/dnszones\/onesdk4105.pstest.test","name":"onesdk4105.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-58b9-f3fda234d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3153\/providers\/Microsoft.Network\/dnszones\/onesdk6890.pstest.test","name":"onesdk6890.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-d9f5-d9cf164fd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3702\/providers\/Microsoft.Network\/dnszones\/onesdk4390.pstest.test","name":"onesdk4390.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e717-3529e04fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3740\/providers\/Microsoft.Network\/dnszones\/onesdk3868.pstest.test","name":"onesdk3868.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-42ef-30d3102ed201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk3930\/providers\/Microsoft.Network\/dnszones\/onesdk7182.pstest.test","name":"onesdk7182.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f5b6-b9a6604ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4038\/providers\/Microsoft.Network\/dnszones\/onesdk583.pstest.test","name":"onesdk583.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-5fad-5e93b436d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk453\/providers\/Microsoft.Network\/dnszones\/onesdk9431.pstest.test","name":"onesdk9431.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-bc5c-80257b2cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4907\/providers\/Microsoft.Network\/dnszones\/onesdk8724.pstest.test","name":"onesdk8724.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fff3-57db474ed201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk4971\/providers\/Microsoft.Network\/dnszones\/onesdk5149.pstest.test","name":"onesdk5149.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-54d3-0e15a83ad201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-06.ppe.azure-dns.com.","ns2-06.ppe.azure-dns.net.","ns3-06.ppe.azure-dns.org.","ns4-06.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5110\/providers\/Microsoft.Network\/dnszones\/onesdk9387.pstest.test","name":"onesdk9387.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-76ae-88857f4dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5394\/providers\/Microsoft.Network\/dnszones\/onesdk5675.pstest.test","name":"onesdk5675.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-9c28-5ea1bd41d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5453\/providers\/Microsoft.Network\/dnszones\/onesdk9910.pstest.test","name":"onesdk9910.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-02ff-3947be4cd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5626\/providers\/Microsoft.Network\/dnszones\/onesdk3052.pstest.test","name":"onesdk3052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-d6fd-f87ea950d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5752\/providers\/Microsoft.Network\/dnszones\/onesdk1764.pstest.test","name":"onesdk1764.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c82e-4cb1922bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk5945\/providers\/Microsoft.Network\/dnszones\/onesdk4636.pstest.test","name":"onesdk4636.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0769-0da02356d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6005\/providers\/Microsoft.Network\/dnszones\/onesdk4419.pstest.test","name":"onesdk4419.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-41d2-eb13043dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6140\/providers\/Microsoft.Network\/dnszones\/onesdk8278.pstest.test","name":"onesdk8278.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-418e-1615a59dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6359\/providers\/Microsoft.Network\/dnszones\/onesdk4630.pstest.test","name":"onesdk4630.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-c1cb-e10e6355d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.ppe.azure-dns.com.","ns2-07.ppe.azure-dns.net.","ns3-07.ppe.azure-dns.org.","ns4-07.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6657\/providers\/Microsoft.Network\/dnszones\/onesdk5052.pstest.test","name":"onesdk5052.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ae24-e0a39c51d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk6702\/providers\/Microsoft.Network\/dnszones\/onesdk5546.pstest.test","name":"onesdk5546.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-e621-38c9164fd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7002\/providers\/Microsoft.Network\/dnszones\/onesdk8767.pstest.test","name":"onesdk8767.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-4bee-01812240d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.ppe.azure-dns.com.","ns2-03.ppe.azure-dns.net.","ns3-03.ppe.azure-dns.org.","ns4-03.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7310\/providers\/Microsoft.Network\/dnszones\/onesdk8039.pstest.test","name":"onesdk8039.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b569-bccdf140d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7432\/providers\/Microsoft.Network\/dnszones\/onesdk9736.pstest.test","name":"onesdk9736.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2b95-e57b2b4bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7671\/providers\/Microsoft.Network\/dnszones\/onesdk5367.pstest.test","name":"onesdk5367.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-dea3-6685a950d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk7960\/providers\/Microsoft.Network\/dnszones\/onesdk9256.pstest.test","name":"onesdk9256.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2947-b8906c46d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8189\/providers\/Microsoft.Network\/dnszones\/onesdk1990.pstest.test","name":"onesdk1990.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-ee0c-dabff44bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8194\/providers\/Microsoft.Network\/dnszones\/onesdk9649.pstest.test","name":"onesdk9649.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-8c03-5998733bd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8405\/providers\/Microsoft.Network\/dnszones\/onesdk846.pstest.test","name":"onesdk846.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e92d-d3233747d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8706\/providers\/Microsoft.Network\/dnszones\/onesdk5873.pstest.test","name":"onesdk5873.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-c78b-e99dff52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk8876\/providers\/Microsoft.Network\/dnszones\/onesdk7912.pstest.test","name":"onesdk7912.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f503-62ec7c52d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9274\/providers\/Microsoft.Network\/dnszones\/onesdk2187.pstest.test","name":"onesdk2187.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e6ff-5fd41f35d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-01.ppe.azure-dns.com.","ns2-01.ppe.azure-dns.net.","ns3-01.ppe.azure-dns.org.","ns4-01.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9476\/providers\/Microsoft.Network\/dnszones\/onesdk8662.pstest.test","name":"onesdk8662.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-fe43-1f1a043dd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-02.ppe.azure-dns.com.","ns2-02.ppe.azure-dns.net.","ns3-02.ppe.azure-dns.org.","ns4-02.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9505\/providers\/Microsoft.Network\/dnszones\/onesdk9266.pstest.test","name":"onesdk9266.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-f86e-f90c0448d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.ppe.azure-dns.com.","ns2-05.ppe.azure-dns.net.","ns3-05.ppe.azure-dns.org.","ns4-05.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9530\/providers\/Microsoft.Network\/dnszones\/onesdk2511.pstest.test","name":"onesdk2511.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-98de-dcf1ce3dd201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9674\/providers\/Microsoft.Network\/dnszones\/onesdk4780.pstest.test","name":"onesdk4780.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-f939-1816ce48d201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9728\/providers\/Microsoft.Network\/dnszones\/onesdk7582.pstest.test","name":"onesdk7582.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-76b8-9bc77d37d201","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.ppe.azure-dns.com.","ns2-04.ppe.azure-dns.net.","ns3-04.ppe.azure-dns.org.","ns4-04.ppe.azure-dns.info."],"numberOfRecordSets":3}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk9954\/providers\/Microsoft.Network\/dnszones\/onesdk9424.pstest.test","name":"onesdk9424.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-0bcb-2fa4234bd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-09.ppe.azure-dns.com.","ns2-09.ppe.azure-dns.net.","ns3-09.ppe.azure-dns.org.","ns4-09.ppe.azure-dns.info."],"numberOfRecordSets":2}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/onesdk996\/providers\/Microsoft.Network\/dnszones\/onesdk7788.pstest.test","name":"onesdk7788.pstest.test","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-e53a-fb2b7b2cd201","location":"global","tags":{"tag2":"value2","tag1":"value1"},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-08.ppe.azure-dns.com.","ns2-08.ppe.azure-dns.net.","ns3-08.ppe.azure-dns.org.","ns4-08.ppe.azure-dns.info."],"numberOfRecordSets":2}}]}'} headers: cache-control: [private] - content-length: ['36767'] + content-length: ['39648'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:33:55 GMT'] + date: ['Thu, 15 Mar 2018 03:54:13 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -332,18 +332,18 @@ interactions: Content-Length: ['537'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:05 GMT'] - etag: [00000002-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:54:25 GMT'] + etag: [00000002-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -360,24 +360,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1}}]}'} headers: cache-control: [private] - content-length: ['959'] + content-length: ['452'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:08 GMT'] + date: ['Thu, 15 Mar 2018 03:54:29 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -389,18 +389,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:11 GMT'] - etag: [00000002-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:54:32 GMT'] + etag: [00000002-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -411,7 +411,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-2707-43b4fdbbd301", + body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-7710-884e11bcd301", "properties": {"zoneType": "Private"}}' headers: Accept: [application/json] @@ -421,18 +421,18 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['525'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:14 GMT'] - etag: [00000003-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:54:37 GMT'] + etag: [00000003-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -451,18 +451,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['525'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:16 GMT'] - etag: [00000003-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:54:40 GMT'] + etag: [00000003-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -473,7 +473,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-2707-43b4fdbbd301", + body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-7710-884e11bcd301", "properties": {"zoneType": "Private", "registrationVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' @@ -485,18 +485,18 @@ interactions: Content-Length: ['597'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:22 GMT'] - etag: [00000004-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:54:45 GMT'] + etag: [00000004-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -515,18 +515,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1}}'} headers: cache-control: [private] - content-length: ['947'] + content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:25 GMT'] - etag: [00000004-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:54:48 GMT'] + etag: [00000004-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -546,23 +546,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29fe82c9-5b32-4871-9ab2-255b4980c5ea","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"430693fa-c7f7-47bc-b3f3-bcd0573e5e28","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['399'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:28 GMT'] - etag: [29fe82c9-5b32-4871-9ab2-255b4980c5ea] + date: ['Thu, 15 Mar 2018 03:54:54 GMT'] + etag: [430693fa-c7f7-47bc-b3f3-bcd0573e5e28] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11995'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -574,18 +574,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29fe82c9-5b32-4871-9ab2-255b4980c5ea","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"430693fa-c7f7-47bc-b3f3-bcd0573e5e28","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['399'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:29 GMT'] - etag: [29fe82c9-5b32-4871-9ab2-255b4980c5ea] + date: ['Thu, 15 Mar 2018 03:54:58 GMT'] + etag: [430693fa-c7f7-47bc-b3f3-bcd0573e5e28] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -596,7 +596,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "29fe82c9-5b32-4871-9ab2-255b4980c5ea", "properties": {"TTL": + body: '{"etag": "430693fa-c7f7-47bc-b3f3-bcd0573e5e28", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: Accept: [application/json] @@ -606,25 +606,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"54f3ee8c-e5fc-4845-b41f-895f439cbf7f","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:32 GMT'] - etag: [1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d] + date: ['Thu, 15 Mar 2018 03:55:02 GMT'] + etag: [54f3ee8c-e5fc-4845-b41f-895f439cbf7f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -636,10 +636,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -647,12 +647,12 @@ interactions: cache-control: [private] content-length: ['229'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:34 GMT'] + date: ['Thu, 15 Mar 2018 03:55:06 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -665,23 +665,23 @@ interactions: Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"d100b92f-0e63-445c-8593-f65c7c9af583","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"c49c7858-180f-452d-8fb3-16a293000264","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['435'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:37 GMT'] - etag: [d100b92f-0e63-445c-8593-f65c7c9af583] + date: ['Thu, 15 Mar 2018 03:55:09 GMT'] + etag: [c49c7858-180f-452d-8fb3-16a293000264] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11996'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -694,23 +694,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"130c47fe-1a25-49fb-9e78-847c84760010","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9fbaddef-912b-4814-8ea6-cb8b24592227","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['417'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:40 GMT'] - etag: [130c47fe-1a25-49fb-9e78-847c84760010] + date: ['Thu, 15 Mar 2018 03:55:14 GMT'] + etag: [9fbaddef-912b-4814-8ea6-cb8b24592227] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -722,18 +722,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"130c47fe-1a25-49fb-9e78-847c84760010","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9fbaddef-912b-4814-8ea6-cb8b24592227","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['417'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:42 GMT'] - etag: [130c47fe-1a25-49fb-9e78-847c84760010] + date: ['Thu, 15 Mar 2018 03:55:16 GMT'] + etag: [9fbaddef-912b-4814-8ea6-cb8b24592227] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -744,7 +744,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "130c47fe-1a25-49fb-9e78-847c84760010", "properties": {"TTL": + body: '{"etag": "9fbaddef-912b-4814-8ea6-cb8b24592227", "properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: Accept: [application/json] @@ -754,18 +754,18 @@ interactions: Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9f711f24-26a5-4597-87db-eb813f3bcd77","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"4598ad87-5c90-4884-acdf-96a32e0d047b","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['455'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:45 GMT'] - etag: [9f711f24-26a5-4597-87db-eb813f3bcd77] + date: ['Thu, 15 Mar 2018 03:55:20 GMT'] + etag: [4598ad87-5c90-4884-acdf-96a32e0d047b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -784,10 +784,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -795,7 +795,7 @@ interactions: cache-control: [private] content-length: ['232'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:47 GMT'] + date: ['Thu, 15 Mar 2018 03:55:24 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -813,18 +813,18 @@ interactions: Content-Length: ['87'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"dc61039b-7c54-4460-beba-3f70159617fb","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c4efcaf8-85eb-4641-b137-b202b6b68b4b","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['464'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:49 GMT'] - etag: [dc61039b-7c54-4460-beba-3f70159617fb] + date: ['Thu, 15 Mar 2018 03:55:29 GMT'] + etag: [c4efcaf8-85eb-4641-b137-b202b6b68b4b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -842,18 +842,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"4620c953-f54a-4316-9977-20d413d09245","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"a73be2a5-3914-46d4-85c4-4f9bf0da16d1","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:52 GMT'] - etag: [4620c953-f54a-4316-9977-20d413d09245] + date: ['Thu, 15 Mar 2018 03:55:33 GMT'] + etag: [a73be2a5-3914-46d4-85c4-4f9bf0da16d1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -870,29 +870,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"4620c953-f54a-4316-9977-20d413d09245","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"a73be2a5-3914-46d4-85c4-4f9bf0da16d1","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:54 GMT'] - etag: [4620c953-f54a-4316-9977-20d413d09245] + date: ['Thu, 15 Mar 2018 03:55:36 GMT'] + etag: [a73be2a5-3914-46d4-85c4-4f9bf0da16d1] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "4620c953-f54a-4316-9977-20d413d09245", "properties": {"TTL": + body: '{"etag": "a73be2a5-3914-46d4-85c4-4f9bf0da16d1", "properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' headers: Accept: [application/json] @@ -902,19 +902,19 @@ interactions: Content-Length: ['142'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"32e76d2c-4ee9-4034-8ba4-86205048181c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"65c599ee-76f7-4cf7-afb7-e570a6846dd2","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['453'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:34:57 GMT'] - etag: [32e76d2c-4ee9-4034-8ba4-86205048181c] + date: ['Thu, 15 Mar 2018 03:55:42 GMT'] + etag: [65c599ee-76f7-4cf7-afb7-e570a6846dd2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -933,10 +933,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -944,7 +944,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:00 GMT'] + date: ['Thu, 15 Mar 2018 03:55:47 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -963,19 +963,19 @@ interactions: Content-Length: ['94'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"95778715-8b3e-4976-9b56-b6a92038e9b2","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"b4f6e6a5-0184-465f-8bec-9e65041d5fe3","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['462'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:02 GMT'] - etag: [95778715-8b3e-4976-9b56-b6a92038e9b2] + date: ['Thu, 15 Mar 2018 03:55:52 GMT'] + etag: [b4f6e6a5-0184-465f-8bec-9e65041d5fe3] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -993,23 +993,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"6521317e-e524-4821-b0aa-54e5021617c1","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f67ea4ff-da13-4e75-82dc-544520f36b4c","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:05 GMT'] - etag: [6521317e-e524-4821-b0aa-54e5021617c1] + date: ['Thu, 15 Mar 2018 03:55:55 GMT'] + etag: [f67ea4ff-da13-4e75-82dc-544520f36b4c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1021,18 +1021,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"6521317e-e524-4821-b0aa-54e5021617c1","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f67ea4ff-da13-4e75-82dc-544520f36b4c","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:07 GMT'] - etag: [6521317e-e524-4821-b0aa-54e5021617c1] + date: ['Thu, 15 Mar 2018 03:55:59 GMT'] + etag: [f67ea4ff-da13-4e75-82dc-544520f36b4c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1043,7 +1043,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "6521317e-e524-4821-b0aa-54e5021617c1", "properties": {"TTL": + body: '{"etag": "f67ea4ff-da13-4e75-82dc-544520f36b4c", "properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: Accept: [application/json] @@ -1053,25 +1053,25 @@ interactions: Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a380bb58-a627-4026-8b17-2b3122b15854","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:10 GMT'] - etag: [2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3] + date: ['Thu, 15 Mar 2018 03:56:03 GMT'] + etag: [a380bb58-a627-4026-8b17-2b3122b15854] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1083,10 +1083,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1094,7 +1094,7 @@ interactions: cache-control: [private] content-length: ['233'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:12 GMT'] + date: ['Thu, 15 Mar 2018 03:56:06 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1112,23 +1112,23 @@ interactions: Content-Length: ['66'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"3f95862c-47e5-42b6-a015-fd63525ba425","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"19448cea-557d-4a65-af6f-8d69fa1facfa","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['448'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:15 GMT'] - etag: [3f95862c-47e5-42b6-a015-fd63525ba425] + date: ['Thu, 15 Mar 2018 03:56:09 GMT'] + etag: [19448cea-557d-4a65-af6f-8d69fa1facfa] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1141,18 +1141,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"2afb76ae-eaf0-4ceb-8e07-a9e6acd11496","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0ea31823-7c68-45dc-8483-6153b850bf3a","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:17 GMT'] - etag: [2afb76ae-eaf0-4ceb-8e07-a9e6acd11496] + date: ['Thu, 15 Mar 2018 03:56:14 GMT'] + etag: [0ea31823-7c68-45dc-8483-6153b850bf3a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1169,29 +1169,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"2afb76ae-eaf0-4ceb-8e07-a9e6acd11496","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0ea31823-7c68-45dc-8483-6153b850bf3a","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:20 GMT'] - etag: [2afb76ae-eaf0-4ceb-8e07-a9e6acd11496] + date: ['Thu, 15 Mar 2018 03:56:18 GMT'] + etag: [0ea31823-7c68-45dc-8483-6153b850bf3a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "2afb76ae-eaf0-4ceb-8e07-a9e6acd11496", "properties": {"TTL": + body: '{"etag": "0ea31823-7c68-45dc-8483-6153b850bf3a", "properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' headers: Accept: [application/json] @@ -1201,25 +1201,25 @@ interactions: Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"791a3d38-f38c-419a-964a-76556a329571","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"37184bc1-d12e-4a0f-b501-0277b4834be5","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['438'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:23 GMT'] - etag: [791a3d38-f38c-419a-964a-76556a329571] + date: ['Thu, 15 Mar 2018 03:56:21 GMT'] + etag: [37184bc1-d12e-4a0f-b501-0277b4834be5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1231,10 +1231,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1242,12 +1242,12 @@ interactions: cache-control: [private] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:26 GMT'] + date: ['Thu, 15 Mar 2018 03:56:25 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -1261,23 +1261,23 @@ interactions: Content-Length: ['82'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"ceee2596-6a36-4ea1-b9ac-7e71d4166ee6","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"1e3f79e0-9d25-45be-b72d-7d0b385e6e15","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['447'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:29 GMT'] - etag: [ceee2596-6a36-4ea1-b9ac-7e71d4166ee6] + date: ['Thu, 15 Mar 2018 03:56:29 GMT'] + etag: [1e3f79e0-9d25-45be-b72d-7d0b385e6e15] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1290,18 +1290,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"204bda70-2700-4ab7-a748-3ed6363f087a","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"1263f4b9-f055-4e99-80bc-ea7a8336dd65","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:32 GMT'] - etag: [204bda70-2700-4ab7-a748-3ed6363f087a] + date: ['Thu, 15 Mar 2018 03:56:32 GMT'] + etag: [1263f4b9-f055-4e99-80bc-ea7a8336dd65] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1318,18 +1318,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"204bda70-2700-4ab7-a748-3ed6363f087a","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"1263f4b9-f055-4e99-80bc-ea7a8336dd65","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:34 GMT'] - etag: [204bda70-2700-4ab7-a748-3ed6363f087a] + date: ['Thu, 15 Mar 2018 03:56:35 GMT'] + etag: [1263f4b9-f055-4e99-80bc-ea7a8336dd65] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1340,7 +1340,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "204bda70-2700-4ab7-a748-3ed6363f087a", "properties": {"TTL": + body: '{"etag": "1263f4b9-f055-4e99-80bc-ea7a8336dd65", "properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: Accept: [application/json] @@ -1350,25 +1350,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"5f243d9e-4998-453d-8591-2ed2427482f1","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"681b8004-e804-47e6-bc69-4dea85245a58","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:37 GMT'] - etag: [5f243d9e-4998-453d-8591-2ed2427482f1] + date: ['Thu, 15 Mar 2018 03:56:39 GMT'] + etag: [681b8004-e804-47e6-bc69-4dea85245a58] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1380,10 +1380,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1391,12 +1391,12 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:40 GMT'] + date: ['Thu, 15 Mar 2018 03:56:41 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -1409,23 +1409,23 @@ interactions: Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"81e1d7c4-7083-4c07-99bd-01afb8fc5d96","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"e650a72d-0208-41f4-adc9-45aea8226670","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['445'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:42 GMT'] - etag: [81e1d7c4-7083-4c07-99bd-01afb8fc5d96] + date: ['Thu, 15 Mar 2018 03:56:46 GMT'] + etag: [e650a72d-0208-41f4-adc9-45aea8226670] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1438,23 +1438,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3748562a-fa48-429c-9eb6-b3f5cecb457b","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"036ac608-f12c-494d-9b09-ce47da8f041f","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:45 GMT'] - etag: [3748562a-fa48-429c-9eb6-b3f5cecb457b] + date: ['Thu, 15 Mar 2018 03:56:50 GMT'] + etag: [036ac608-f12c-494d-9b09-ce47da8f041f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1466,18 +1466,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3748562a-fa48-429c-9eb6-b3f5cecb457b","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"036ac608-f12c-494d-9b09-ce47da8f041f","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:47 GMT'] - etag: [3748562a-fa48-429c-9eb6-b3f5cecb457b] + date: ['Thu, 15 Mar 2018 03:56:53 GMT'] + etag: [036ac608-f12c-494d-9b09-ce47da8f041f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1488,7 +1488,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "3748562a-fa48-429c-9eb6-b3f5cecb457b", "properties": {"TTL": + body: '{"etag": "036ac608-f12c-494d-9b09-ce47da8f041f", "properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' headers: Accept: [application/json] @@ -1498,25 +1498,25 @@ interactions: Content-Length: ['162'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9da64a6a-a6f7-44aa-a739-9dca8474d5f1","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f01bfaa-3f08-42b1-a217-cde54b8228ba","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['471'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:50 GMT'] - etag: [9da64a6a-a6f7-44aa-a739-9dca8474d5f1] + date: ['Thu, 15 Mar 2018 03:56:57 GMT'] + etag: [1f01bfaa-3f08-42b1-a217-cde54b8228ba] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1528,10 +1528,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1539,7 +1539,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:52 GMT'] + date: ['Thu, 15 Mar 2018 03:57:00 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1558,18 +1558,18 @@ interactions: Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"a390aa71-ee9c-4f20-9e55-2231a1c23979","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"655f9bed-fad8-4004-9e3e-2f26063baf85","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['480'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:56 GMT'] - etag: [a390aa71-ee9c-4f20-9e55-2231a1c23979] + date: ['Thu, 15 Mar 2018 03:57:04 GMT'] + etag: [655f9bed-fad8-4004-9e3e-2f26063baf85] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1587,23 +1587,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"cc4292dc-2123-4213-8ce7-81737862b60d","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a9c33295-a43c-4180-8b9f-bc202b7d0172","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:35:58 GMT'] - etag: [cc4292dc-2123-4213-8ce7-81737862b60d] + date: ['Thu, 15 Mar 2018 03:57:09 GMT'] + etag: [a9c33295-a43c-4180-8b9f-bc202b7d0172] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1615,18 +1615,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"cc4292dc-2123-4213-8ce7-81737862b60d","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a9c33295-a43c-4180-8b9f-bc202b7d0172","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:00 GMT'] - etag: [cc4292dc-2123-4213-8ce7-81737862b60d] + date: ['Thu, 15 Mar 2018 03:57:13 GMT'] + etag: [a9c33295-a43c-4180-8b9f-bc202b7d0172] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1637,7 +1637,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "cc4292dc-2123-4213-8ce7-81737862b60d", "properties": {"TTL": + body: '{"etag": "a9c33295-a43c-4180-8b9f-bc202b7d0172", "properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: Accept: [application/json] @@ -1647,18 +1647,18 @@ interactions: Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:03 GMT'] - etag: [744d84bc-7f65-4188-a617-779db7987d80] + date: ['Thu, 15 Mar 2018 03:57:16 GMT'] + etag: [6abfbfec-66b1-4b27-b2e4-bc8863de6766] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1677,10 +1677,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1688,7 +1688,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:06 GMT'] + date: ['Thu, 15 Mar 2018 03:57:19 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1706,23 +1706,23 @@ interactions: Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1374d38-c4ea-44fe-932a-63da5f5792ae","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c69f04f9-b886-495f-aeca-404d5eb3d9ef","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['443'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:09 GMT'] - etag: [e1374d38-c4ea-44fe-932a-63da5f5792ae] + date: ['Thu, 15 Mar 2018 03:57:24 GMT'] + etag: [c69f04f9-b886-495f-aeca-404d5eb3d9ef] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1734,29 +1734,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"54f3ee8c-e5fc-4845-b41f-895f439cbf7f","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:11 GMT'] - etag: [1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d] + date: ['Thu, 15 Mar 2018 03:57:27 GMT'] + etag: [54f3ee8c-e5fc-4845-b41f-895f439cbf7f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "1dbd0ab7-2ca5-480e-acc0-5c3f2b199f5d", "properties": {"TTL": + body: '{"etag": "54f3ee8c-e5fc-4845-b41f-895f439cbf7f", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] @@ -1766,25 +1766,25 @@ interactions: Content-Length: ['151'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:13 GMT'] - etag: [37240086-cbe3-497d-a559-08c7d39c2d5e] + date: ['Thu, 15 Mar 2018 03:57:30 GMT'] + etag: [8318395b-f376-4bd6-9c3d-4b22bb211657] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11995'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1796,18 +1796,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"13c6ece6-c903-43b4-98fd-d3dc74ceb9df","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"11a8f9be-99fe-479a-9dfb-6596d6acc4b0","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['554'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:16 GMT'] - etag: [13c6ece6-c903-43b4-98fd-d3dc74ceb9df] + date: ['Thu, 15 Mar 2018 03:57:35 GMT'] + etag: [11a8f9be-99fe-479a-9dfb-6596d6acc4b0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1826,29 +1826,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"13c6ece6-c903-43b4-98fd-d3dc74ceb9df","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"11a8f9be-99fe-479a-9dfb-6596d6acc4b0","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['554'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:18 GMT'] - etag: [13c6ece6-c903-43b4-98fd-d3dc74ceb9df] + date: ['Thu, 15 Mar 2018 03:57:39 GMT'] + etag: [11a8f9be-99fe-479a-9dfb-6596d6acc4b0] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "13c6ece6-c903-43b4-98fd-d3dc74ceb9df", "properties": {"TTL": + body: '{"etag": "11a8f9be-99fe-479a-9dfb-6596d6acc4b0", "properties": {"TTL": 3600, "SOARecord": {"host": "internal.cloudapp.net", "email": "foo.com", "serialNumber": 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' headers: @@ -1859,18 +1859,18 @@ interactions: Content-Length: ['238'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"866430c7-42f1-46b1-8ad3-8147dd39d81a","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"68e3ce81-fb23-48e9-9f7e-3c9d8c959710","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} headers: cache-control: [private] content-length: ['521'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:21 GMT'] - etag: [866430c7-42f1-46b1-8ad3-8147dd39d81a] + date: ['Thu, 15 Mar 2018 03:57:42 GMT'] + etag: [68e3ce81-fb23-48e9-9f7e-3c9d8c959710] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1889,10 +1889,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''longtxt'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -1900,12 +1900,12 @@ interactions: cache-control: [private] content-length: ['228'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:22 GMT'] + date: ['Thu, 15 Mar 2018 03:57:45 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -1919,18 +1919,18 @@ interactions: Content-Length: ['566'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c5f7c0d6-be60-4d5d-8c95-9b52fe51891f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4ef107fc-0e57-4ea6-af06-3fc901a70888","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} headers: cache-control: [private] content-length: ['928'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:25 GMT'] - etag: [c5f7c0d6-be60-4d5d-8c95-9b52fe51891f] + date: ['Thu, 15 Mar 2018 03:57:47 GMT'] + etag: [4ef107fc-0e57-4ea6-af06-3fc901a70888] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1947,25 +1947,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-2707-43b4fdbbd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":18,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":18}}'} headers: cache-control: [private] - content-length: ['948'] + content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:27 GMT'] - etag: [00000004-0000-0000-2707-43b4fdbbd301] + date: ['Thu, 15 Mar 2018 03:57:51 GMT'] + etag: [00000004-0000-0000-7710-884e11bcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1977,18 +1977,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:31 GMT'] - etag: [37240086-cbe3-497d-a559-08c7d39c2d5e] + date: ['Thu, 15 Mar 2018 03:57:55 GMT'] + etag: [8318395b-f376-4bd6-9c3d-4b22bb211657] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2007,19 +2007,19 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/recordsets?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/recordsets?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"866430c7-42f1-46b1-8ad3-8147dd39d81a","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c5f7c0d6-be60-4d5d-8c95-9b52fe51891f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9f711f24-26a5-4597-87db-eb813f3bcd77","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"dc61039b-7c54-4460-beba-3f70159617fb","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"d100b92f-0e63-445c-8593-f65c7c9af583","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"32e76d2c-4ee9-4034-8ba4-86205048181c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"95778715-8b3e-4976-9b56-b6a92038e9b2","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"3f95862c-47e5-42b6-a015-fd63525ba425","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"791a3d38-f38c-419a-964a-76556a329571","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"ceee2596-6a36-4ea1-b9ac-7e71d4166ee6","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"5f243d9e-4998-453d-8591-2ed2427482f1","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"81e1d7c4-7083-4c07-99bd-01afb8fc5d96","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9da64a6a-a6f7-44aa-a739-9dca8474d5f1","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"a390aa71-ee9c-4f20-9e55-2231a1c23979","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1374d38-c4ea-44fe-932a-63da5f5792ae","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"68e3ce81-fb23-48e9-9f7e-3c9d8c959710","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4ef107fc-0e57-4ea6-af06-3fc901a70888","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"4598ad87-5c90-4884-acdf-96a32e0d047b","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c4efcaf8-85eb-4641-b137-b202b6b68b4b","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"c49c7858-180f-452d-8fb3-16a293000264","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"65c599ee-76f7-4cf7-afb7-e570a6846dd2","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"b4f6e6a5-0184-465f-8bec-9e65041d5fe3","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a380bb58-a627-4026-8b17-2b3122b15854","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"19448cea-557d-4a65-af6f-8d69fa1facfa","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"37184bc1-d12e-4a0f-b501-0277b4834be5","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"1e3f79e0-9d25-45be-b72d-7d0b385e6e15","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"681b8004-e804-47e6-bc69-4dea85245a58","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"e650a72d-0208-41f4-adc9-45aea8226670","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f01bfaa-3f08-42b1-a217-cde54b8228ba","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"655f9bed-fad8-4004-9e3e-2f26063baf85","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c69f04f9-b886-495f-aeca-404d5eb3d9ef","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['8682'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:33 GMT'] + date: ['Thu, 15 Mar 2018 03:57:58 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2038,17 +2038,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c5f7c0d6-be60-4d5d-8c95-9b52fe51891f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e1374d38-c4ea-44fe-932a-63da5f5792ae","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4ef107fc-0e57-4ea6-af06-3fc901a70888","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c69f04f9-b886-495f-aeca-404d5eb3d9ef","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['1819'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:35 GMT'] + date: ['Thu, 15 Mar 2018 03:58:01 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2067,18 +2067,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"37240086-cbe3-497d-a559-08c7d39c2d5e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:38 GMT'] - etag: [37240086-cbe3-497d-a559-08c7d39c2d5e] + date: ['Thu, 15 Mar 2018 03:58:09 GMT'] + etag: [8318395b-f376-4bd6-9c3d-4b22bb211657] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2089,7 +2089,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "37240086-cbe3-497d-a559-08c7d39c2d5e", "properties": {"TTL": + body: '{"etag": "8318395b-f376-4bd6-9c3d-4b22bb211657", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] @@ -2099,25 +2099,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e9424d53-54e1-4972-8ded-d88d5a8c79ac","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"39c039b7-9e78-4d5a-9b47-6c5db0748e4c","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:40 GMT'] - etag: [e9424d53-54e1-4972-8ded-d88d5a8c79ac] + date: ['Thu, 15 Mar 2018 03:58:13 GMT'] + etag: [39c039b7-9e78-4d5a-9b47-6c5db0748e4c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2129,25 +2129,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9f711f24-26a5-4597-87db-eb813f3bcd77","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"4598ad87-5c90-4884-acdf-96a32e0d047b","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['455'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:42 GMT'] - etag: [9f711f24-26a5-4597-87db-eb813f3bcd77] + date: ['Thu, 15 Mar 2018 03:58:17 GMT'] + etag: [4598ad87-5c90-4884-acdf-96a32e0d047b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2160,16 +2160,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:36:45 GMT'] + date: ['Thu, 15 Mar 2018 03:58:22 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2186,26 +2186,26 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"32e76d2c-4ee9-4034-8ba4-86205048181c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"65c599ee-76f7-4cf7-afb7-e570a6846dd2","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['453'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:48 GMT'] - etag: [32e76d2c-4ee9-4034-8ba4-86205048181c] + date: ['Thu, 15 Mar 2018 03:58:24 GMT'] + etag: [65c599ee-76f7-4cf7-afb7-e570a6846dd2] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2218,16 +2218,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:36:50 GMT'] + date: ['Thu, 15 Mar 2018 03:58:28 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2244,18 +2244,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a380bb58-a627-4026-8b17-2b3122b15854","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:53 GMT'] - etag: [2e6c5d29-9a8c-4640-9eb7-932f0c3b93d3] + date: ['Thu, 15 Mar 2018 03:58:32 GMT'] + etag: [a380bb58-a627-4026-8b17-2b3122b15854] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2275,16 +2275,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:36:55 GMT'] + date: ['Thu, 15 Mar 2018 03:58:36 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2301,25 +2301,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"791a3d38-f38c-419a-964a-76556a329571","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"37184bc1-d12e-4a0f-b501-0277b4834be5","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['438'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:36:57 GMT'] - etag: [791a3d38-f38c-419a-964a-76556a329571] + date: ['Thu, 15 Mar 2018 03:58:39 GMT'] + etag: [37184bc1-d12e-4a0f-b501-0277b4834be5] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2332,16 +2332,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:00 GMT'] + date: ['Thu, 15 Mar 2018 03:58:42 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2358,18 +2358,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"5f243d9e-4998-453d-8591-2ed2427482f1","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"681b8004-e804-47e6-bc69-4dea85245a58","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:02 GMT'] - etag: [5f243d9e-4998-453d-8591-2ed2427482f1] + date: ['Thu, 15 Mar 2018 03:58:46 GMT'] + etag: [681b8004-e804-47e6-bc69-4dea85245a58] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2389,16 +2389,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:06 GMT'] + date: ['Thu, 15 Mar 2018 03:58:48 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2415,25 +2415,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"9da64a6a-a6f7-44aa-a739-9dca8474d5f1","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f01bfaa-3f08-42b1-a217-cde54b8228ba","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['471'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:08 GMT'] - etag: [9da64a6a-a6f7-44aa-a739-9dca8474d5f1] + date: ['Thu, 15 Mar 2018 03:58:52 GMT'] + etag: [1f01bfaa-3f08-42b1-a217-cde54b8228ba] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2446,16 +2446,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:13 GMT'] + date: ['Thu, 15 Mar 2018 03:58:55 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2472,25 +2472,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"744d84bc-7f65-4188-a617-779db7987d80","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:15 GMT'] - etag: [744d84bc-7f65-4188-a617-779db7987d80] + date: ['Thu, 15 Mar 2018 03:58:59 GMT'] + etag: [6abfbfec-66b1-4b27-b2e4-bc8863de6766] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2503,16 +2503,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:18 GMT'] + date: ['Thu, 15 Mar 2018 03:59:04 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2529,25 +2529,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e9424d53-54e1-4972-8ded-d88d5a8c79ac","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"39c039b7-9e78-4d5a-9b47-6c5db0748e4c","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:20 GMT'] - etag: [e9424d53-54e1-4972-8ded-d88d5a8c79ac] + date: ['Thu, 15 Mar 2018 03:59:08 GMT'] + etag: [39c039b7-9e78-4d5a-9b47-6c5db0748e4c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2559,18 +2559,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e9424d53-54e1-4972-8ded-d88d5a8c79ac","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"39c039b7-9e78-4d5a-9b47-6c5db0748e4c","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:22 GMT'] - etag: [e9424d53-54e1-4972-8ded-d88d5a8c79ac] + date: ['Thu, 15 Mar 2018 03:59:12 GMT'] + etag: [39c039b7-9e78-4d5a-9b47-6c5db0748e4c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2590,16 +2590,16 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:25 GMT'] + date: ['Thu, 15 Mar 2018 03:59:14 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2616,10 +2616,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -2627,12 +2627,12 @@ interactions: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:27 GMT'] + date: ['Thu, 15 Mar 2018 03:59:18 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -2645,20 +2645,20 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: body: {string: ''} headers: cache-control: [private] - date: ['Thu, 15 Mar 2018 01:37:31 GMT'] + date: ['Thu, 15 Mar 2018 03:59:21 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 204, message: No Content} - request: @@ -2670,10 +2670,10 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does not exist in resource group ''cli_test_dns000001'' of subscription ''a984ce58-225e-44d2-bc79-20a834ce85ae''."}'} @@ -2681,12 +2681,12 @@ interactions: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:33 GMT'] + date: ['Thu, 15 Mar 2018 03:59:24 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -2699,18 +2699,18 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667465809210474c5b7231?api-version=2018-03-01-preview'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566831689649529c6df91bd?api-version=2017-09-01'] cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:37 GMT'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone6365667465809210474c5b7231?api-version=2018-03-01-preview'] + date: ['Thu, 15 Mar 2018 03:59:28 GMT'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566831689649529c6df91bd?api-version=2017-09-01'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2725,24 +2725,26 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network dns zone delete] Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone6365667465809210474c5b7231?api-version=2018-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566831689649529c6df91bd?api-version=2017-09-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [private] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 01:37:43 GMT'] + date: ['Thu, 15 Mar 2018 03:59:35 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2756,7 +2758,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.28] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -2765,12 +2767,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 15 Mar 2018 01:37:48 GMT'] + date: ['Thu, 15 Mar 2018 03:59:42 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TUVdISFdYNlBYTFpSVkdNWVlHNFVFWUUyQ1JWQllIRXwxRkZEODJBNTQ1OEJCMkFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TNEFDQVpHRlJYTEM1WEU3UDQ1NUpVV1RNVFk1N05UNXxENTJFNkJDNjk0MkUwMzRDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} version: 1 From cd1afab159fdef677c23cbe4c2ee71c1302a123b Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 09:03:46 +0500 Subject: [PATCH 09/11] Correcting sha256Digest --- src/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.json b/src/index.json index c41f8c036cd..78bb19de773 100644 --- a/src/index.json +++ b/src/index.json @@ -642,7 +642,7 @@ "dns": [ { "filename": "dns-0.0.1-py2.py3-none-any.whl", - "sha256Digest": "0d2e4ad1a20cdd9fc63180b1039ac790ffea4dbd879469d98fee34c98345c9d8", + "sha256Digest": "e806b1774a3a1e8283984f698307535465d273ef054317cfa2395a2562a92fe8", "downloadUrl": "https://dnscliextension.blob.core.windows.net/cliextensions/dns-0.0.1-py2.py3-none-any.whl", "metadata": { "classifiers": [ From d0a1a2e1a5b52ff15cbb80f6b6acc73514bd0153 Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 10:11:23 +0500 Subject: [PATCH 10/11] Re-recording test with latest master --- .../latest/recordings/test_private_dns.yaml | 752 +++++++++--------- 1 file changed, 375 insertions(+), 377 deletions(-) diff --git a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml index 30bf9c7b30a..7ea317883ef 100644 --- a/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml +++ b/src/dns/azext_dns/tests/latest/recordings/test_private_dns.yaml @@ -10,7 +10,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:28 GMT'] + date: ['Thu, 15 Mar 2018 05:02:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -37,7 +37,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -47,7 +47,7 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:32 GMT'] + date: ['Thu, 15 Mar 2018 05:02:51 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -65,33 +65,34 @@ interactions: Content-Length: ['123'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/2.0.0rc1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2018-01-01 response: body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ - ,\r\n \"etag\": \"W/\\\"3144ce85-edf3-4614-b24a-22d732d34da2\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3baf90ff-389d-4870-a321-4318f4497172\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"2a324cce-f014-4de7-a466-aee71cdf42ad\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"6df70e6f-a7c0-4dc5-9a0d-f2d01e29cef9\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ : false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7acd6eac-88b7-4b81-bc99-fdb2548123e2?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/20eb76fe-a628-4d87-8187-efaf053c5507?api-version=2018-01-01'] cache-control: [no-cache] content-length: ['770'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:38 GMT'] + date: ['Thu, 15 Mar 2018 05:02:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -100,19 +101,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] + msrest_azure/0.4.22 networkmanagementclient/2.0.0rc1 Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7acd6eac-88b7-4b81-bc99-fdb2548123e2?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/20eb76fe-a628-4d87-8187-efaf053c5507?api-version=2018-01-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:44 GMT'] + date: ['Thu, 15 Mar 2018 05:03:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -128,18 +128,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] + msrest_azure/0.4.22 networkmanagementclient/2.0.0rc1 Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet?api-version=2018-01-01 response: body: {string: "{\r\n \"name\": \"regvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet\"\ - ,\r\n \"etag\": \"W/\\\"bbe40868-c0ab-4538-9eb3-f51f7ca1e2a8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"84ef1778-39c0-4d67-9047-635695b21e91\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2a324cce-f014-4de7-a466-aee71cdf42ad\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6df70e6f-a7c0-4dc5-9a0d-f2d01e29cef9\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -149,8 +148,8 @@ interactions: cache-control: [no-cache] content-length: ['771'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:48 GMT'] - etag: [W/"bbe40868-c0ab-4538-9eb3-f51f7ca1e2a8"] + date: ['Thu, 15 Mar 2018 05:03:08 GMT'] + etag: [W/"84ef1778-39c0-4d67-9047-635695b21e91"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -169,7 +168,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -179,7 +178,7 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:51 GMT'] + date: ['Thu, 15 Mar 2018 05:03:12 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -197,33 +196,34 @@ interactions: Content-Length: ['123'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 networkmanagementclient/2.0.0rc1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2018-01-01 response: body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ - ,\r\n \"etag\": \"W/\\\"a8af1b87-e1d5-449b-af7f-f9f281c1470f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"daaf51e2-5605-42ae-b3b6-64d2c44f1c9a\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"eb9e94d1-1ab5-4947-a880-843cd3c41649\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"67af32a4-241f-412e-93bf-14ce6dc11fda\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ : false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7728ca54-3b51-4347-848b-70e098b763ed?api-version=2017-11-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40162787-32d2-4b9a-88db-456793b4462e?api-version=2018-01-01'] cache-control: [no-cache] content-length: ['770'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:53:59 GMT'] + date: ['Thu, 15 Mar 2018 05:03:18 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: null @@ -232,19 +232,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] + msrest_azure/0.4.22 networkmanagementclient/2.0.0rc1 Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7728ca54-3b51-4347-848b-70e098b763ed?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40162787-32d2-4b9a-88db-456793b4462e?api-version=2018-01-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:06 GMT'] + date: ['Thu, 15 Mar 2018 05:03:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -260,18 +259,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 networkmanagementclient/1.7.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] + msrest_azure/0.4.22 networkmanagementclient/2.0.0rc1 Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2017-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet?api-version=2018-01-01 response: body: {string: "{\r\n \"name\": \"resvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet\"\ - ,\r\n \"etag\": \"W/\\\"4c706068-c5ef-4c92-adf5-e542364633e0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"579d9fb3-ad35-4ba6-965d-fe68126cb0ea\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"eb9e94d1-1ab5-4947-a880-843cd3c41649\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"67af32a4-241f-412e-93bf-14ce6dc11fda\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -281,8 +279,8 @@ interactions: cache-control: [no-cache] content-length: ['771'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:10 GMT'] - etag: [W/"4c706068-c5ef-4c92-adf5-e542364633e0"] + date: ['Thu, 15 Mar 2018 05:03:29 GMT'] + etag: [W/"579d9fb3-ad35-4ba6-965d-fe68126cb0ea"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -300,7 +298,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01 @@ -310,7 +308,7 @@ interactions: cache-control: [private] content-length: ['39648'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:13 GMT'] + date: ['Thu, 15 Mar 2018 05:03:38 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -332,18 +330,18 @@ interactions: Content-Length: ['537'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:25 GMT'] - etag: [00000002-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:03:49 GMT'] + etag: [00000002-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -360,17 +358,17 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1}}]}'} headers: cache-control: [private] content-length: ['452'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:29 GMT'] + date: ['Thu, 15 Mar 2018 05:03:53 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -389,18 +387,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:32 GMT'] - etag: [00000002-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:03:58 GMT'] + etag: [00000002-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -411,7 +409,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-7710-884e11bcd301", + body: '{"location": "global", "tags": {}, "etag": "00000002-0000-0000-b2fc-cb001bbcd301", "properties": {"zoneType": "Private"}}' headers: Accept: [application/json] @@ -421,18 +419,18 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['525'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:37 GMT'] - etag: [00000003-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:04:03 GMT'] + etag: [00000003-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -451,18 +449,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000003-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[],"resolutionVirtualNetworks":[],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['525'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:40 GMT'] - etag: [00000003-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:04:07 GMT'] + etag: [00000003-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -473,7 +471,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-7710-884e11bcd301", + body: 'b''{"location": "global", "tags": {}, "etag": "00000003-0000-0000-b2fc-cb001bbcd301", "properties": {"zoneType": "Private", "registrationVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/regvnet"}], "resolutionVirtualNetworks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/virtualNetworks/resvnet"}]}}''' @@ -485,18 +483,18 @@ interactions: Content-Length: ['597'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-dns/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2018-03-01-preview response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1,"registrationVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/regvnet"}],"resolutionVirtualNetworks":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/virtualNetworks\/resvnet"}],"zoneType":"Private"}}'} headers: cache-control: [private] content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:45 GMT'] - etag: [00000004-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:04:20 GMT'] + etag: [00000004-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -515,18 +513,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":1}}'} headers: cache-control: [private] content-length: ['440'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:48 GMT'] - etag: [00000004-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:04:25 GMT'] + etag: [00000004-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -546,23 +544,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"430693fa-c7f7-47bc-b3f3-bcd0573e5e28","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e943279a-6b68-4675-941a-9e9be4852b48","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['399'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:54 GMT'] - etag: [430693fa-c7f7-47bc-b3f3-bcd0573e5e28] + date: ['Thu, 15 Mar 2018 05:04:30 GMT'] + etag: [e943279a-6b68-4675-941a-9e9be4852b48] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11995'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -574,29 +572,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"430693fa-c7f7-47bc-b3f3-bcd0573e5e28","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"e943279a-6b68-4675-941a-9e9be4852b48","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[]}}'} headers: cache-control: [private] content-length: ['399'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:54:58 GMT'] - etag: [430693fa-c7f7-47bc-b3f3-bcd0573e5e28] + date: ['Thu, 15 Mar 2018 05:04:35 GMT'] + etag: [e943279a-6b68-4675-941a-9e9be4852b48] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "430693fa-c7f7-47bc-b3f3-bcd0573e5e28", "properties": {"TTL": + body: '{"etag": "e943279a-6b68-4675-941a-9e9be4852b48", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}' headers: Accept: [application/json] @@ -606,25 +604,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"54f3ee8c-e5fc-4845-b41f-895f439cbf7f","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d6595ff2-96b3-4a12-b8ee-c4645150f08d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:02 GMT'] - etag: [54f3ee8c-e5fc-4845-b41f-895f439cbf7f] + date: ['Thu, 15 Mar 2018 05:04:39 GMT'] + etag: [d6595ff2-96b3-4a12-b8ee-c4645150f08d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -636,7 +634,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 @@ -647,7 +645,7 @@ interactions: cache-control: [private] content-length: ['229'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:06 GMT'] + date: ['Thu, 15 Mar 2018 05:04:42 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -665,23 +663,23 @@ interactions: Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"c49c7858-180f-452d-8fb3-16a293000264","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"5968927b-17c4-4ca0-8d30-9f6e9b171c43","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['435'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:09 GMT'] - etag: [c49c7858-180f-452d-8fb3-16a293000264] + date: ['Thu, 15 Mar 2018 05:04:47 GMT'] + etag: [5968927b-17c4-4ca0-8d30-9f6e9b171c43] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11996'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -694,23 +692,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9fbaddef-912b-4814-8ea6-cb8b24592227","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1eb1506c-fd22-472b-bfa8-df2afb2d546d","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['417'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:14 GMT'] - etag: [9fbaddef-912b-4814-8ea6-cb8b24592227] + date: ['Thu, 15 Mar 2018 05:04:50 GMT'] + etag: [1eb1506c-fd22-472b-bfa8-df2afb2d546d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -722,18 +720,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"9fbaddef-912b-4814-8ea6-cb8b24592227","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"1eb1506c-fd22-472b-bfa8-df2afb2d546d","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[]}}'} headers: cache-control: [private] content-length: ['417'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:16 GMT'] - etag: [9fbaddef-912b-4814-8ea6-cb8b24592227] + date: ['Thu, 15 Mar 2018 05:04:55 GMT'] + etag: [1eb1506c-fd22-472b-bfa8-df2afb2d546d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -744,7 +742,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "9fbaddef-912b-4814-8ea6-cb8b24592227", "properties": {"TTL": + body: '{"etag": "1eb1506c-fd22-472b-bfa8-df2afb2d546d", "properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}' headers: Accept: [application/json] @@ -754,18 +752,18 @@ interactions: Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"4598ad87-5c90-4884-acdf-96a32e0d047b","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"697ee323-98fd-4170-91bb-e16e82b8f1f8","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['455'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:20 GMT'] - etag: [4598ad87-5c90-4884-acdf-96a32e0d047b] + date: ['Thu, 15 Mar 2018 05:04:59 GMT'] + etag: [697ee323-98fd-4170-91bb-e16e82b8f1f8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -784,7 +782,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 @@ -795,7 +793,7 @@ interactions: cache-control: [private] content-length: ['232'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:24 GMT'] + date: ['Thu, 15 Mar 2018 05:05:03 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -813,18 +811,18 @@ interactions: Content-Length: ['87'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c4efcaf8-85eb-4641-b137-b202b6b68b4b","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"6c889beb-9955-4f96-aaf5-933a3f070ccf","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['464'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:29 GMT'] - etag: [c4efcaf8-85eb-4641-b137-b202b6b68b4b] + date: ['Thu, 15 Mar 2018 05:05:07 GMT'] + etag: [6c889beb-9955-4f96-aaf5-933a3f070ccf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -842,18 +840,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"a73be2a5-3914-46d4-85c4-4f9bf0da16d1","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"9ea74323-7366-4d37-8828-efe77adbdc21","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:33 GMT'] - etag: [a73be2a5-3914-46d4-85c4-4f9bf0da16d1] + date: ['Thu, 15 Mar 2018 05:05:12 GMT'] + etag: [9ea74323-7366-4d37-8828-efe77adbdc21] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -870,18 +868,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"a73be2a5-3914-46d4-85c4-4f9bf0da16d1","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"9ea74323-7366-4d37-8828-efe77adbdc21","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:36 GMT'] - etag: [a73be2a5-3914-46d4-85c4-4f9bf0da16d1] + date: ['Thu, 15 Mar 2018 05:05:15 GMT'] + etag: [9ea74323-7366-4d37-8828-efe77adbdc21] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -892,7 +890,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "a73be2a5-3914-46d4-85c4-4f9bf0da16d1", "properties": {"TTL": + body: '{"etag": "9ea74323-7366-4d37-8828-efe77adbdc21", "properties": {"TTL": 3600, "caaRecords": [{"flags": 0, "tag": "foo", "value": "my value"}]}}' headers: Accept: [application/json] @@ -902,19 +900,19 @@ interactions: Content-Length: ['142'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"65c599ee-76f7-4cf7-afb7-e570a6846dd2","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"189d1951-3606-4f33-9071-0d431d1aaf2c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['453'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:42 GMT'] - etag: [65c599ee-76f7-4cf7-afb7-e570a6846dd2] + date: ['Thu, 15 Mar 2018 05:05:19 GMT'] + etag: [189d1951-3606-4f33-9071-0d431d1aaf2c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -933,7 +931,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 @@ -944,7 +942,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:47 GMT'] + date: ['Thu, 15 Mar 2018 05:05:24 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -963,19 +961,19 @@ interactions: Content-Length: ['94'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaaalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"b4f6e6a5-0184-465f-8bec-9e65041d5fe3","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"ff2fa0e1-1277-4fc0-b20b-41c263ea3a57","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['462'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:52 GMT'] - etag: [b4f6e6a5-0184-465f-8bec-9e65041d5fe3] + date: ['Thu, 15 Mar 2018 05:05:30 GMT'] + etag: [ff2fa0e1-1277-4fc0-b20b-41c263ea3a57] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -993,23 +991,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f67ea4ff-da13-4e75-82dc-544520f36b4c","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"47c1df2b-95ef-4b06-bb90-25f8aa2dc957","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:55 GMT'] - etag: [f67ea4ff-da13-4e75-82dc-544520f36b4c] + date: ['Thu, 15 Mar 2018 05:05:35 GMT'] + etag: [47c1df2b-95ef-4b06-bb90-25f8aa2dc957] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1021,18 +1019,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f67ea4ff-da13-4e75-82dc-544520f36b4c","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"47c1df2b-95ef-4b06-bb90-25f8aa2dc957","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:55:59 GMT'] - etag: [f67ea4ff-da13-4e75-82dc-544520f36b4c] + date: ['Thu, 15 Mar 2018 05:05:38 GMT'] + etag: [47c1df2b-95ef-4b06-bb90-25f8aa2dc957] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1043,7 +1041,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "f67ea4ff-da13-4e75-82dc-544520f36b4c", "properties": {"TTL": + body: '{"etag": "47c1df2b-95ef-4b06-bb90-25f8aa2dc957", "properties": {"TTL": 3600, "CNAMERecord": {"cname": "mycname"}}}' headers: Accept: [application/json] @@ -1053,25 +1051,25 @@ interactions: Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a380bb58-a627-4026-8b17-2b3122b15854","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f303aeb9-4a83-47f8-8039-c51671e5056d","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:03 GMT'] - etag: [a380bb58-a627-4026-8b17-2b3122b15854] + date: ['Thu, 15 Mar 2018 05:05:42 GMT'] + etag: [f303aeb9-4a83-47f8-8039-c51671e5056d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1083,7 +1081,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 @@ -1094,7 +1092,7 @@ interactions: cache-control: [private] content-length: ['233'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:06 GMT'] + date: ['Thu, 15 Mar 2018 05:05:48 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1112,23 +1110,23 @@ interactions: Content-Length: ['66'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscnamealt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"19448cea-557d-4a65-af6f-8d69fa1facfa","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"c93e94db-599a-48b0-ba2f-95ed6319a2fc","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['448'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:09 GMT'] - etag: [19448cea-557d-4a65-af6f-8d69fa1facfa] + date: ['Thu, 15 Mar 2018 05:05:53 GMT'] + etag: [c93e94db-599a-48b0-ba2f-95ed6319a2fc] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1141,18 +1139,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0ea31823-7c68-45dc-8483-6153b850bf3a","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0d92e14b-15de-430d-83b8-18cc01a4f684","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:14 GMT'] - etag: [0ea31823-7c68-45dc-8483-6153b850bf3a] + date: ['Thu, 15 Mar 2018 05:05:56 GMT'] + etag: [0d92e14b-15de-430d-83b8-18cc01a4f684] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1169,18 +1167,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0ea31823-7c68-45dc-8483-6153b850bf3a","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"0d92e14b-15de-430d-83b8-18cc01a4f684","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[]}}'} headers: cache-control: [private] content-length: ['405'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:18 GMT'] - etag: [0ea31823-7c68-45dc-8483-6153b850bf3a] + date: ['Thu, 15 Mar 2018 05:06:01 GMT'] + etag: [0d92e14b-15de-430d-83b8-18cc01a4f684] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1191,7 +1189,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "0ea31823-7c68-45dc-8483-6153b850bf3a", "properties": {"TTL": + body: '{"etag": "0d92e14b-15de-430d-83b8-18cc01a4f684", "properties": {"TTL": 3600, "MXRecords": [{"preference": 13, "exchange": "12"}]}}' headers: Accept: [application/json] @@ -1201,18 +1199,18 @@ interactions: Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"37184bc1-d12e-4a0f-b501-0277b4834be5","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"32abfc83-9b30-40dd-961f-1004760c7551","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['438'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:21 GMT'] - etag: [37184bc1-d12e-4a0f-b501-0277b4834be5] + date: ['Thu, 15 Mar 2018 05:06:05 GMT'] + etag: [32abfc83-9b30-40dd-961f-1004760c7551] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1231,7 +1229,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 @@ -1242,7 +1240,7 @@ interactions: cache-control: [private] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:25 GMT'] + date: ['Thu, 15 Mar 2018 05:06:09 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1261,18 +1259,18 @@ interactions: Content-Length: ['82'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmxalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"1e3f79e0-9d25-45be-b72d-7d0b385e6e15","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"b3742e79-5cf5-4286-97c2-251129faf82b","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['447'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:29 GMT'] - etag: [1e3f79e0-9d25-45be-b72d-7d0b385e6e15] + date: ['Thu, 15 Mar 2018 05:06:14 GMT'] + etag: [b3742e79-5cf5-4286-97c2-251129faf82b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1290,18 +1288,18 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"1263f4b9-f055-4e99-80bc-ea7a8336dd65","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b535f4d5-962f-45b3-b5ab-cf053ae9ef7b","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:32 GMT'] - etag: [1263f4b9-f055-4e99-80bc-ea7a8336dd65] + date: ['Thu, 15 Mar 2018 05:06:18 GMT'] + etag: [b535f4d5-962f-45b3-b5ab-cf053ae9ef7b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1318,18 +1316,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"1263f4b9-f055-4e99-80bc-ea7a8336dd65","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"b535f4d5-962f-45b3-b5ab-cf053ae9ef7b","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:35 GMT'] - etag: [1263f4b9-f055-4e99-80bc-ea7a8336dd65] + date: ['Thu, 15 Mar 2018 05:06:21 GMT'] + etag: [b535f4d5-962f-45b3-b5ab-cf053ae9ef7b] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1340,7 +1338,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "1263f4b9-f055-4e99-80bc-ea7a8336dd65", "properties": {"TTL": + body: '{"etag": "b535f4d5-962f-45b3-b5ab-cf053ae9ef7b", "properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}' headers: Accept: [application/json] @@ -1350,25 +1348,25 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"681b8004-e804-47e6-bc69-4dea85245a58","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"913e4c96-10e9-4b28-96ab-c0a1a2153595","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:39 GMT'] - etag: [681b8004-e804-47e6-bc69-4dea85245a58] + date: ['Thu, 15 Mar 2018 05:06:25 GMT'] + etag: [913e4c96-10e9-4b28-96ab-c0a1a2153595] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1380,7 +1378,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 @@ -1391,7 +1389,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:41 GMT'] + date: ['Thu, 15 Mar 2018 05:06:31 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1409,18 +1407,18 @@ interactions: Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptralt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"e650a72d-0208-41f4-adc9-45aea8226670","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"02e0d1cd-2416-462e-9c8f-630a9acc62bf","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['445'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:46 GMT'] - etag: [e650a72d-0208-41f4-adc9-45aea8226670] + date: ['Thu, 15 Mar 2018 05:06:35 GMT'] + etag: [02e0d1cd-2416-462e-9c8f-630a9acc62bf] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1438,23 +1436,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"036ac608-f12c-494d-9b09-ce47da8f041f","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"c24872f4-8f2f-48df-9518-188cb75dd618","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:50 GMT'] - etag: [036ac608-f12c-494d-9b09-ce47da8f041f] + date: ['Thu, 15 Mar 2018 05:06:42 GMT'] + etag: [c24872f4-8f2f-48df-9518-188cb75dd618] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1466,18 +1464,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"036ac608-f12c-494d-9b09-ce47da8f041f","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"c24872f4-8f2f-48df-9518-188cb75dd618","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:53 GMT'] - etag: [036ac608-f12c-494d-9b09-ce47da8f041f] + date: ['Thu, 15 Mar 2018 05:06:46 GMT'] + etag: [c24872f4-8f2f-48df-9518-188cb75dd618] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1488,7 +1486,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "036ac608-f12c-494d-9b09-ce47da8f041f", "properties": {"TTL": + body: '{"etag": "c24872f4-8f2f-48df-9518-188cb75dd618", "properties": {"TTL": 3600, "SRVRecords": [{"priority": 1, "weight": 50, "port": 1234, "target": "target.com"}]}}' headers: Accept: [application/json] @@ -1498,25 +1496,25 @@ interactions: Content-Length: ['162'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f01bfaa-3f08-42b1-a217-cde54b8228ba","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ae3b67b9-06cf-427f-a01b-a388a37891a9","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['471'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:56:57 GMT'] - etag: [1f01bfaa-3f08-42b1-a217-cde54b8228ba] + date: ['Thu, 15 Mar 2018 05:06:51 GMT'] + etag: [ae3b67b9-06cf-427f-a01b-a388a37891a9] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1528,7 +1526,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 @@ -1539,7 +1537,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:00 GMT'] + date: ['Thu, 15 Mar 2018 05:06:56 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1558,23 +1556,23 @@ interactions: Content-Length: ['114'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrvalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"655f9bed-fad8-4004-9e3e-2f26063baf85","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"7ccb90c9-5090-427e-a94d-00fb586d1d59","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['480'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:04 GMT'] - etag: [655f9bed-fad8-4004-9e3e-2f26063baf85] + date: ['Thu, 15 Mar 2018 05:07:00 GMT'] + etag: [7ccb90c9-5090-427e-a94d-00fb586d1d59] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1587,23 +1585,23 @@ interactions: Content-Length: ['29'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a9c33295-a43c-4180-8b9f-bc202b7d0172","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"73000fc1-2ab3-4340-93aa-e37a3915bbc8","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:09 GMT'] - etag: [a9c33295-a43c-4180-8b9f-bc202b7d0172] + date: ['Thu, 15 Mar 2018 05:07:05 GMT'] + etag: [73000fc1-2ab3-4340-93aa-e37a3915bbc8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -1615,18 +1613,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"a9c33295-a43c-4180-8b9f-bc202b7d0172","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"73000fc1-2ab3-4340-93aa-e37a3915bbc8","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[]}}'} headers: cache-control: [private] content-length: ['411'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:13 GMT'] - etag: [a9c33295-a43c-4180-8b9f-bc202b7d0172] + date: ['Thu, 15 Mar 2018 05:07:16 GMT'] + etag: [73000fc1-2ab3-4340-93aa-e37a3915bbc8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1637,7 +1635,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "a9c33295-a43c-4180-8b9f-bc202b7d0172", "properties": {"TTL": + body: '{"etag": "73000fc1-2ab3-4340-93aa-e37a3915bbc8", "properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}' headers: Accept: [application/json] @@ -1647,18 +1645,18 @@ interactions: Content-Length: ['119'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4910c206-2f66-4b6f-9422-603c149466e4","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:16 GMT'] - etag: [6abfbfec-66b1-4b27-b2e4-bc8863de6766] + date: ['Thu, 15 Mar 2018 05:07:21 GMT'] + etag: [4910c206-2f66-4b6f-9422-603c149466e4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1677,7 +1675,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 @@ -1688,7 +1686,7 @@ interactions: cache-control: [private] content-length: ['231'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:19 GMT'] + date: ['Thu, 15 Mar 2018 05:07:27 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1706,18 +1704,18 @@ interactions: Content-Length: ['71'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxtalt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c69f04f9-b886-495f-aeca-404d5eb3d9ef","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"b076279a-19b8-47d5-9c5a-64aef2042a82","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['443'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:24 GMT'] - etag: [c69f04f9-b886-495f-aeca-404d5eb3d9ef] + date: ['Thu, 15 Mar 2018 05:07:33 GMT'] + etag: [b076279a-19b8-47d5-9c5a-64aef2042a82] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1734,29 +1732,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"54f3ee8c-e5fc-4845-b41f-895f439cbf7f","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d6595ff2-96b3-4a12-b8ee-c4645150f08d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:27 GMT'] - etag: [54f3ee8c-e5fc-4845-b41f-895f439cbf7f] + date: ['Thu, 15 Mar 2018 05:07:36 GMT'] + etag: [d6595ff2-96b3-4a12-b8ee-c4645150f08d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "54f3ee8c-e5fc-4845-b41f-895f439cbf7f", "properties": {"TTL": + body: '{"etag": "d6595ff2-96b3-4a12-b8ee-c4645150f08d", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] @@ -1766,25 +1764,25 @@ interactions: Content-Length: ['151'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"59bd77fc-7b0a-4327-8521-9546d5946d8d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:30 GMT'] - etag: [8318395b-f376-4bd6-9c3d-4b22bb211657] + date: ['Thu, 15 Mar 2018 05:07:42 GMT'] + etag: [59bd77fc-7b0a-4327-8521-9546d5946d8d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11995'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1796,18 +1794,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"11a8f9be-99fe-479a-9dfb-6596d6acc4b0","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e08c25dd-3e02-484c-a716-1e32d25cc01a","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['554'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:35 GMT'] - etag: [11a8f9be-99fe-479a-9dfb-6596d6acc4b0] + date: ['Thu, 15 Mar 2018 05:07:45 GMT'] + etag: [e08c25dd-3e02-484c-a716-1e32d25cc01a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1826,29 +1824,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"11a8f9be-99fe-479a-9dfb-6596d6acc4b0","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e08c25dd-3e02-484c-a716-1e32d25cc01a","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"internal.cloudapp.net","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'} headers: cache-control: [private] content-length: ['554'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:39 GMT'] - etag: [11a8f9be-99fe-479a-9dfb-6596d6acc4b0] + date: ['Thu, 15 Mar 2018 05:07:51 GMT'] + etag: [e08c25dd-3e02-484c-a716-1e32d25cc01a] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "11a8f9be-99fe-479a-9dfb-6596d6acc4b0", "properties": {"TTL": + body: '{"etag": "e08c25dd-3e02-484c-a716-1e32d25cc01a", "properties": {"TTL": 3600, "SOARecord": {"host": "internal.cloudapp.net", "email": "foo.com", "serialNumber": 123, "refreshTime": 60, "retryTime": 90, "expireTime": 30, "minimumTTL": 20}}}' headers: @@ -1859,18 +1857,18 @@ interactions: Content-Length: ['238'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SOA/@?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"68e3ce81-fb23-48e9-9f7e-3c9d8c959710","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"02766f7f-ae08-48ca-923f-e5b81525f832","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'} headers: cache-control: [private] content-length: ['521'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:42 GMT'] - etag: [68e3ce81-fb23-48e9-9f7e-3c9d8c959710] + date: ['Thu, 15 Mar 2018 05:07:55 GMT'] + etag: [02766f7f-ae08-48ca-923f-e5b81525f832] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -1889,7 +1887,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 @@ -1900,7 +1898,7 @@ interactions: cache-control: [private] content-length: ['228'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:45 GMT'] + date: ['Thu, 15 Mar 2018 05:07:58 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1919,18 +1917,18 @@ interactions: Content-Length: ['566'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/longtxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4ef107fc-0e57-4ea6-af06-3fc901a70888","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4260aae3-88a8-48b4-a651-31ed17fcde2f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'} headers: cache-control: [private] content-length: ['928'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:47 GMT'] - etag: [4ef107fc-0e57-4ea6-af06-3fc901a70888] + date: ['Thu, 15 Mar 2018 05:08:03 GMT'] + etag: [4260aae3-88a8-48b4-a651-31ed17fcde2f] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1947,25 +1945,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-7710-884e11bcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":18}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com","name":"myprivatezone.com","type":"Microsoft.Network\/dnszones","etag":"00000004-0000-0000-b2fc-cb001bbcd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":null,"numberOfRecordSets":18}}'} headers: cache-control: [private] content-length: ['441'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:51 GMT'] - etag: [00000004-0000-0000-7710-884e11bcd301] + date: ['Thu, 15 Mar 2018 05:08:06 GMT'] + etag: [00000004-0000-0000-b2fc-cb001bbcd301] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -1977,18 +1975,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"59bd77fc-7b0a-4327-8521-9546d5946d8d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:55 GMT'] - etag: [8318395b-f376-4bd6-9c3d-4b22bb211657] + date: ['Thu, 15 Mar 2018 05:08:09 GMT'] + etag: [59bd77fc-7b0a-4327-8521-9546d5946d8d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2007,19 +2005,19 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/recordsets?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"68e3ce81-fb23-48e9-9f7e-3c9d8c959710","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4ef107fc-0e57-4ea6-af06-3fc901a70888","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"4598ad87-5c90-4884-acdf-96a32e0d047b","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"c4efcaf8-85eb-4641-b137-b202b6b68b4b","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"c49c7858-180f-452d-8fb3-16a293000264","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"65c599ee-76f7-4cf7-afb7-e570a6846dd2","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"b4f6e6a5-0184-465f-8bec-9e65041d5fe3","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my - value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a380bb58-a627-4026-8b17-2b3122b15854","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"19448cea-557d-4a65-af6f-8d69fa1facfa","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"37184bc1-d12e-4a0f-b501-0277b4834be5","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"1e3f79e0-9d25-45be-b72d-7d0b385e6e15","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"681b8004-e804-47e6-bc69-4dea85245a58","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"e650a72d-0208-41f4-adc9-45aea8226670","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f01bfaa-3f08-42b1-a217-cde54b8228ba","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"655f9bed-fad8-4004-9e3e-2f26063baf85","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c69f04f9-b886-495f-aeca-404d5eb3d9ef","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"02766f7f-ae08-48ca-923f-e5b81525f832","properties":{"fqdn":"myprivatezone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"internal.cloudapp.net","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4260aae3-88a8-48b4-a651-31ed17fcde2f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"59bd77fc-7b0a-4327-8521-9546d5946d8d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"697ee323-98fd-4170-91bb-e16e82b8f1f8","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"6c889beb-9955-4f96-aaf5-933a3f070ccf","properties":{"fqdn":"myrsaaaaalt.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"5968927b-17c4-4ca0-8d30-9f6e9b171c43","properties":{"fqdn":"myrsaalt.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"189d1951-3606-4f33-9071-0d431d1aaf2c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"ff2fa0e1-1277-4fc0-b20b-41c263ea3a57","properties":{"fqdn":"myrscaaalt.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + value"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f303aeb9-4a83-47f8-8039-c51671e5056d","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"c93e94db-599a-48b0-ba2f-95ed6319a2fc","properties":{"fqdn":"myrscnamealt.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"32abfc83-9b30-40dd-961f-1004760c7551","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"b3742e79-5cf5-4286-97c2-251129faf82b","properties":{"fqdn":"myrsmxalt.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"913e4c96-10e9-4b28-96ab-c0a1a2153595","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"02e0d1cd-2416-462e-9c8f-630a9acc62bf","properties":{"fqdn":"myrsptralt.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ae3b67b9-06cf-427f-a01b-a388a37891a9","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"7ccb90c9-5090-427e-a94d-00fb586d1d59","properties":{"fqdn":"myrssrvalt.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4910c206-2f66-4b6f-9422-603c149466e4","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"b076279a-19b8-47d5-9c5a-64aef2042a82","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['8682'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:57:58 GMT'] + date: ['Thu, 15 Mar 2018 05:08:12 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2038,24 +2036,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT?api-version=2017-09-01 response: - body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4ef107fc-0e57-4ea6-af06-3fc901a70888","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"c69f04f9-b886-495f-aeca-404d5eb3d9ef","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} + body: {string: '{"value":[{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4260aae3-88a8-48b4-a651-31ed17fcde2f","properties":{"fqdn":"longtxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4910c206-2f66-4b6f-9422-603c149466e4","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"b076279a-19b8-47d5-9c5a-64aef2042a82","properties":{"fqdn":"myrstxtalt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'} headers: cache-control: [private] content-length: ['1819'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:01 GMT'] + date: ['Thu, 15 Mar 2018 05:08:17 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2067,29 +2065,29 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"8318395b-f376-4bd6-9c3d-4b22bb211657","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"59bd77fc-7b0a-4327-8521-9546d5946d8d","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['454'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:09 GMT'] - etag: [8318395b-f376-4bd6-9c3d-4b22bb211657] + date: ['Thu, 15 Mar 2018 05:08:20 GMT'] + etag: [59bd77fc-7b0a-4327-8521-9546d5946d8d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"etag": "8318395b-f376-4bd6-9c3d-4b22bb211657", "properties": {"TTL": + body: '{"etag": "59bd77fc-7b0a-4327-8521-9546d5946d8d", "properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.11"}]}}' headers: Accept: [application/json] @@ -2099,18 +2097,18 @@ interactions: Content-Length: ['121'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"39c039b7-9e78-4d5a-9b47-6c5db0748e4c","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"43b735cc-ea18-4c7d-93aa-96e4af9e5c8e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:13 GMT'] - etag: [39c039b7-9e78-4d5a-9b47-6c5db0748e4c] + date: ['Thu, 15 Mar 2018 05:08:26 GMT'] + etag: [43b735cc-ea18-4c7d-93aa-96e4af9e5c8e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2129,25 +2127,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"4598ad87-5c90-4884-acdf-96a32e0d047b","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"697ee323-98fd-4170-91bb-e16e82b8f1f8","properties":{"fqdn":"myrsaaaa.myprivatezone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'} headers: cache-control: [private] content-length: ['455'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:17 GMT'] - etag: [4598ad87-5c90-4884-acdf-96a32e0d047b] + date: ['Thu, 15 Mar 2018 05:08:29 GMT'] + etag: [697ee323-98fd-4170-91bb-e16e82b8f1f8] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2160,7 +2158,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/AAAA/myrsaaaa?api-version=2017-09-01 @@ -2169,7 +2167,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:58:22 GMT'] + date: ['Thu, 15 Mar 2018 05:08:33 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2186,19 +2184,19 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"65c599ee-76f7-4cf7-afb7-e570a6846dd2","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"189d1951-3606-4f33-9071-0d431d1aaf2c","properties":{"fqdn":"myrscaa.myprivatezone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my value"}]}}'} headers: cache-control: [private] content-length: ['453'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:24 GMT'] - etag: [65c599ee-76f7-4cf7-afb7-e570a6846dd2] + date: ['Thu, 15 Mar 2018 05:08:37 GMT'] + etag: [189d1951-3606-4f33-9071-0d431d1aaf2c] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2218,7 +2216,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CAA/myrscaa?api-version=2017-09-01 @@ -2227,7 +2225,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:58:28 GMT'] + date: ['Thu, 15 Mar 2018 05:08:39 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2244,18 +2242,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"a380bb58-a627-4026-8b17-2b3122b15854","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f303aeb9-4a83-47f8-8039-c51671e5056d","properties":{"fqdn":"myrscname.myprivatezone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'} headers: cache-control: [private] content-length: ['439'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:32 GMT'] - etag: [a380bb58-a627-4026-8b17-2b3122b15854] + date: ['Thu, 15 Mar 2018 05:08:43 GMT'] + etag: [f303aeb9-4a83-47f8-8039-c51671e5056d] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2275,7 +2273,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/CNAME/myrscname?api-version=2017-09-01 @@ -2284,7 +2282,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:58:36 GMT'] + date: ['Thu, 15 Mar 2018 05:08:47 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2301,18 +2299,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"37184bc1-d12e-4a0f-b501-0277b4834be5","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"32abfc83-9b30-40dd-961f-1004760c7551","properties":{"fqdn":"myrsmx.myprivatezone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'} headers: cache-control: [private] content-length: ['438'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:39 GMT'] - etag: [37184bc1-d12e-4a0f-b501-0277b4834be5] + date: ['Thu, 15 Mar 2018 05:08:51 GMT'] + etag: [32abfc83-9b30-40dd-961f-1004760c7551] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2332,7 +2330,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/MX/myrsmx?api-version=2017-09-01 @@ -2341,7 +2339,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:58:42 GMT'] + date: ['Thu, 15 Mar 2018 05:08:54 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2358,18 +2356,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"681b8004-e804-47e6-bc69-4dea85245a58","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"913e4c96-10e9-4b28-96ab-c0a1a2153595","properties":{"fqdn":"myrsptr.myprivatezone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'} headers: cache-control: [private] content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:46 GMT'] - etag: [681b8004-e804-47e6-bc69-4dea85245a58] + date: ['Thu, 15 Mar 2018 05:08:57 GMT'] + etag: [913e4c96-10e9-4b28-96ab-c0a1a2153595] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2389,7 +2387,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/PTR/myrsptr?api-version=2017-09-01 @@ -2398,7 +2396,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:58:48 GMT'] + date: ['Thu, 15 Mar 2018 05:09:01 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2415,25 +2413,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"1f01bfaa-3f08-42b1-a217-cde54b8228ba","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"ae3b67b9-06cf-427f-a01b-a388a37891a9","properties":{"fqdn":"myrssrv.myprivatezone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'} headers: cache-control: [private] content-length: ['471'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:52 GMT'] - etag: [1f01bfaa-3f08-42b1-a217-cde54b8228ba] + date: ['Thu, 15 Mar 2018 05:09:04 GMT'] + etag: [ae3b67b9-06cf-427f-a01b-a388a37891a9] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2446,7 +2444,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/SRV/myrssrv?api-version=2017-09-01 @@ -2455,7 +2453,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:58:55 GMT'] + date: ['Thu, 15 Mar 2018 05:09:08 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2472,18 +2470,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"6abfbfec-66b1-4b27-b2e4-bc8863de6766","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"4910c206-2f66-4b6f-9422-603c149466e4","properties":{"fqdn":"myrstxt.myprivatezone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'} headers: cache-control: [private] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:58:59 GMT'] - etag: [6abfbfec-66b1-4b27-b2e4-bc8863de6766] + date: ['Thu, 15 Mar 2018 05:09:11 GMT'] + etag: [4910c206-2f66-4b6f-9422-603c149466e4] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2503,7 +2501,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/TXT/myrstxt?api-version=2017-09-01 @@ -2512,7 +2510,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:59:04 GMT'] + date: ['Thu, 15 Mar 2018 05:09:14 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2529,18 +2527,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"39c039b7-9e78-4d5a-9b47-6c5db0748e4c","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"43b735cc-ea18-4c7d-93aa-96e4af9e5c8e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:59:08 GMT'] - etag: [39c039b7-9e78-4d5a-9b47-6c5db0748e4c] + date: ['Thu, 15 Mar 2018 05:09:19 GMT'] + etag: [43b735cc-ea18-4c7d-93aa-96e4af9e5c8e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -2559,25 +2557,25 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 response: - body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"39c039b7-9e78-4d5a-9b47-6c5db0748e4c","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} + body: {string: '{"id":"\/subscriptions\/a984ce58-225e-44d2-bc79-20a834ce85ae\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myprivatezone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"43b735cc-ea18-4c7d-93aa-96e4af9e5c8e","properties":{"fqdn":"myrsa.myprivatezone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'} headers: cache-control: [private] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:59:12 GMT'] - etag: [39c039b7-9e78-4d5a-9b47-6c5db0748e4c] + date: ['Thu, 15 Mar 2018 05:09:24 GMT'] + etag: [43b735cc-ea18-4c7d-93aa-96e4af9e5c8e] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11997'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2590,7 +2588,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 @@ -2599,7 +2597,7 @@ interactions: headers: cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:59:14 GMT'] + date: ['Thu, 15 Mar 2018 05:09:26 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2616,7 +2614,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 @@ -2627,12 +2625,12 @@ interactions: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:59:18 GMT'] + date: ['Thu, 15 Mar 2018 05:09:30 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: @@ -2645,7 +2643,7 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 @@ -2653,12 +2651,12 @@ interactions: body: {string: ''} headers: cache-control: [private] - date: ['Thu, 15 Mar 2018 03:59:21 GMT'] + date: ['Thu, 15 Mar 2018 05:09:36 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 204, message: No Content} - request: @@ -2670,7 +2668,7 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com/A/myrsa?api-version=2017-09-01 @@ -2681,7 +2679,7 @@ interactions: cache-control: [private] content-length: ['226'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:59:24 GMT'] + date: ['Thu, 15 Mar 2018 05:09:41 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2699,18 +2697,18 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myprivatezone.com?api-version=2017-09-01 response: body: {string: ''} headers: - azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566831689649529c6df91bd?api-version=2017-09-01'] + azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566873873364939b7149d89?api-version=2017-09-01'] cache-control: [private] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:59:28 GMT'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566831689649529c6df91bd?api-version=2017-09-01'] + date: ['Thu, 15 Mar 2018 05:09:47 GMT'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636566873873364939b7149d89?api-version=2017-09-01'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -2727,24 +2725,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 - msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.28] + msrest_azure/0.4.22 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.29] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566831689649529c6df91bd?api-version=2017-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636566873873364939b7149d89?api-version=2017-09-01 response: body: {string: '{"status":"Succeeded"}'} headers: cache-control: [private] content-length: ['22'] content-type: [application/json; charset=utf-8] - date: ['Thu, 15 Mar 2018 03:59:35 GMT'] + date: ['Thu, 15 Mar 2018 05:09:53 GMT'] server: [Microsoft-IIS/8.5] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-resource-requests: ['11998'] + x-ms-ratelimit-remaining-subscription-resource-requests: ['11999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -2758,7 +2756,7 @@ interactions: Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10 @@ -2767,12 +2765,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 15 Mar 2018 03:59:42 GMT'] + date: ['Thu, 15 Mar 2018 05:09:59 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TNEFDQVpHRlJYTEM1WEU3UDQ1NUpVV1RNVFk1N05UNXxENTJFNkJDNjk0MkUwMzRDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TSDdLNk5NM0xHUUdBREJCQkpWUFNLRjVTWDVLRVhHWHxCRDIwNzU0QzAyRTJFNjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} version: 1 From c2f78d1f91f575bca3e321e350c8809cd8a6050b Mon Sep 17 00:00:00 2001 From: Muhammad Waqar Date: Thu, 15 Mar 2018 22:35:16 +0500 Subject: [PATCH 11/11] Adding summary for tags. --- src/dns/azext_dns/_help.py | 4 ++++ src/index.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/dns/azext_dns/_help.py b/src/dns/azext_dns/_help.py index c98ac76eff2..9e7b5b9c757 100644 --- a/src/dns/azext_dns/_help.py +++ b/src/dns/azext_dns/_help.py @@ -23,6 +23,8 @@ parameters: - name: --if-none-match short-summary: Only create a DNS zone if one doesn't exist that matches the given name. + - name: --tags + short-summary: Resource tags for the DNS zone. - name: --zone-type short-summary: Type of the zone to be created. Valid values are 'Public' and 'Private'. - name: --registration-vnets @@ -41,6 +43,8 @@ parameters: - name: --if-match short-summary: Update only if the resource with the same ETAG exists. + - name: --tags + short-summary: Resource tags for the DNS zone. - name: --registration-vnets short-summary: Space-separated names or IDs of virtual networks that register hostnames in this DNS zone. Only applies to 'Private' zones. - name: --resolution-vnets diff --git a/src/index.json b/src/index.json index 78bb19de773..a830f80d373 100644 --- a/src/index.json +++ b/src/index.json @@ -642,7 +642,7 @@ "dns": [ { "filename": "dns-0.0.1-py2.py3-none-any.whl", - "sha256Digest": "e806b1774a3a1e8283984f698307535465d273ef054317cfa2395a2562a92fe8", + "sha256Digest": "8eff8fdbaf7bfa21cda0d91ee238359e73e92cdb6fcf5aab6cd4d63c7b3ded0e", "downloadUrl": "https://dnscliextension.blob.core.windows.net/cliextensions/dns-0.0.1-py2.py3-none-any.whl", "metadata": { "classifiers": [