From 131e50268d3c5c17b5a4e4082970e3a07fa86e0a Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Wed, 18 Nov 2020 03:12:40 +0000 Subject: [PATCH] CodeGen from PR 11591 in Azure/azure-rest-api-specs s360 fixes for Azure DNS (#11591) * s360 fixes for Azure DNS * Additional property * Property fix * Readonly property * CloudError fix * Examples. cloud error * Avocado fix * read.md * Prettier --- .../azure/mgmt/privatedns/__init__.py | 7 +- .../azure/mgmt/privatedns/_configuration.py | 50 ++ .../_private_dns_management_client.py | 61 ++ .../azure/mgmt/privatedns/models/__init__.py | 84 +-- .../azure/mgmt/privatedns/models/_models.py | 617 ++++++++++++++++++ .../mgmt/privatedns/models/_models_py3.py | 617 ++++++++++++++++++ .../mgmt/privatedns/models/_paged_models.py | 53 ++ .../_private_dns_management_client_enums.py | 40 ++ .../mgmt/privatedns/operations/__init__.py | 6 +- .../operations/_private_zones_operations.py | 567 ++++++++++++++++ .../operations/_record_sets_operations.py | 532 +++++++++++++++ .../_virtual_network_links_operations.py | 521 +++++++++++++++ 12 files changed, 3107 insertions(+), 48 deletions(-) create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_configuration.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_private_dns_management_client.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models_py3.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_paged_models.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_private_dns_management_client_enums.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_private_zones_operations.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_record_sets_operations.py create mode 100644 sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_virtual_network_links_operations.py diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py index d0aa64885b3f..2d5078228714 100644 --- a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py @@ -9,10 +9,11 @@ # regenerated. # -------------------------------------------------------------------------- -from .private_dns_management_client import PrivateDnsManagementClient -from .version import VERSION +from ._configuration import PrivateDnsManagementClientConfiguration +from ._private_dns_management_client import PrivateDnsManagementClient +__all__ = ['PrivateDnsManagementClient', 'PrivateDnsManagementClientConfiguration'] -__all__ = ['PrivateDnsManagementClient'] +from .version import VERSION __version__ = VERSION diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_configuration.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_configuration.py new file mode 100644 index 000000000000..3d08cc714999 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_configuration.py @@ -0,0 +1,50 @@ +# 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 msrestazure import AzureConfiguration + +from .version import VERSION + + +class PrivateDnsManagementClientConfiguration(AzureConfiguration): + """Configuration for PrivateDnsManagementClient + 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: Gets subscription credentials which uniquely + identify Microsoft Azure subscription. The subscription ID forms part of + the URI for every service call. + :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(PrivateDnsManagementClientConfiguration, self).__init__(base_url) + + # Starting Autorest.Python 4.0.64, make connection pool activated by default + self.keep_alive = True + + self.add_user_agent('azure-mgmt-privatedns/{}'.format(VERSION)) + self.add_user_agent('Azure-SDK-For-Python') + + self.credentials = credentials + self.subscription_id = subscription_id diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_private_dns_management_client.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_private_dns_management_client.py new file mode 100644 index 000000000000..c6e212f96239 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/_private_dns_management_client.py @@ -0,0 +1,61 @@ +# 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 SDKClient +from msrest import Serializer, Deserializer + +from ._configuration import PrivateDnsManagementClientConfiguration +from .operations import PrivateZonesOperations +from .operations import VirtualNetworkLinksOperations +from .operations import RecordSetsOperations +from . import models + + +class PrivateDnsManagementClient(SDKClient): + """The Private DNS Management Client. + + :ivar config: Configuration for client. + :vartype config: PrivateDnsManagementClientConfiguration + + :ivar private_zones: PrivateZones operations + :vartype private_zones: azure.mgmt.privatedns.operations.PrivateZonesOperations + :ivar virtual_network_links: VirtualNetworkLinks operations + :vartype virtual_network_links: azure.mgmt.privatedns.operations.VirtualNetworkLinksOperations + :ivar record_sets: RecordSets operations + :vartype record_sets: azure.mgmt.privatedns.operations.RecordSetsOperations + + :param credentials: Credentials needed for the client to connect to Azure. + :type credentials: :mod:`A msrestazure Credentials + object` + :param subscription_id: Gets subscription credentials which uniquely + identify Microsoft Azure subscription. The subscription ID forms part of + the URI for every service call. + :type subscription_id: str + :param str base_url: Service URL + """ + + def __init__( + self, credentials, subscription_id, base_url=None): + + self.config = PrivateDnsManagementClientConfiguration(credentials, subscription_id, base_url) + super(PrivateDnsManagementClient, self).__init__(self.config.credentials, self.config) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self.api_version = '2018-09-01' + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + + self.private_zones = PrivateZonesOperations( + self._client, self.config, self._serialize, self._deserialize) + self.virtual_network_links = VirtualNetworkLinksOperations( + self._client, self.config, self._serialize, self._deserialize) + self.record_sets = RecordSetsOperations( + self._client, self.config, self._serialize, self._deserialize) diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py index b4b8674ba773..e492a956c35e 100644 --- a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py @@ -10,62 +10,62 @@ # -------------------------------------------------------------------------- try: - from .private_zone_py3 import PrivateZone - from .sub_resource_py3 import SubResource - from .virtual_network_link_py3 import VirtualNetworkLink - from .arecord_py3 import ARecord - from .aaaa_record_py3 import AaaaRecord - from .cname_record_py3 import CnameRecord - from .mx_record_py3 import MxRecord - from .ptr_record_py3 import PtrRecord - from .soa_record_py3 import SoaRecord - from .srv_record_py3 import SrvRecord - from .txt_record_py3 import TxtRecord - from .record_set_py3 import RecordSet - from .resource_py3 import Resource - from .tracked_resource_py3 import TrackedResource - from .proxy_resource_py3 import ProxyResource + from ._models_py3 import AaaaRecord + from ._models_py3 import ARecord + from ._models_py3 import CnameRecord + from ._models_py3 import MxRecord + from ._models_py3 import PrivateZone + from ._models_py3 import ProxyResource + from ._models_py3 import PtrRecord + from ._models_py3 import RecordSet + from ._models_py3 import Resource + from ._models_py3 import SoaRecord + from ._models_py3 import SrvRecord + from ._models_py3 import SubResource + from ._models_py3 import TrackedResource + from ._models_py3 import TxtRecord + from ._models_py3 import VirtualNetworkLink except (SyntaxError, ImportError): - from .private_zone import PrivateZone - from .sub_resource import SubResource - from .virtual_network_link import VirtualNetworkLink - from .arecord import ARecord - from .aaaa_record import AaaaRecord - from .cname_record import CnameRecord - from .mx_record import MxRecord - from .ptr_record import PtrRecord - from .soa_record import SoaRecord - from .srv_record import SrvRecord - from .txt_record import TxtRecord - from .record_set import RecordSet - from .resource import Resource - from .tracked_resource import TrackedResource - from .proxy_resource import ProxyResource -from .private_zone_paged import PrivateZonePaged -from .virtual_network_link_paged import VirtualNetworkLinkPaged -from .record_set_paged import RecordSetPaged -from .private_dns_management_client_enums import ( + from ._models import AaaaRecord + from ._models import ARecord + from ._models import CnameRecord + from ._models import MxRecord + from ._models import PrivateZone + from ._models import ProxyResource + from ._models import PtrRecord + from ._models import RecordSet + from ._models import Resource + from ._models import SoaRecord + from ._models import SrvRecord + from ._models import SubResource + from ._models import TrackedResource + from ._models import TxtRecord + from ._models import VirtualNetworkLink +from ._paged_models import PrivateZonePaged +from ._paged_models import RecordSetPaged +from ._paged_models import VirtualNetworkLinkPaged +from ._private_dns_management_client_enums import ( ProvisioningState, VirtualNetworkLinkState, RecordType, ) __all__ = [ - 'PrivateZone', - 'SubResource', - 'VirtualNetworkLink', - 'ARecord', 'AaaaRecord', + 'ARecord', 'CnameRecord', 'MxRecord', + 'PrivateZone', + 'ProxyResource', 'PtrRecord', - 'SoaRecord', - 'SrvRecord', - 'TxtRecord', 'RecordSet', 'Resource', + 'SoaRecord', + 'SrvRecord', + 'SubResource', 'TrackedResource', - 'ProxyResource', + 'TxtRecord', + 'VirtualNetworkLink', 'PrivateZonePaged', 'VirtualNetworkLinkPaged', 'RecordSetPaged', diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models.py new file mode 100644 index 000000000000..e7063b18ccc8 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models.py @@ -0,0 +1,617 @@ +# 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 +from msrest.exceptions import HttpOperationError + + +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, **kwargs): + super(AaaaRecord, self).__init__(**kwargs) + self.ipv6_address = kwargs.get('ipv6_address', None) + + +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, **kwargs): + super(ARecord, self).__init__(**kwargs) + self.ipv4_address = kwargs.get('ipv4_address', None) + + +class CloudError(Model): + """An error response from the service. + + :param error: Cloud error body. + :type error: ~azure.mgmt.privatedns.models.CloudErrorBody + """ + + _attribute_map = { + 'error': {'key': 'error', 'type': 'CloudErrorBody'}, + } + + def __init__(self, **kwargs): + super(CloudError, self).__init__(**kwargs) + self.error = kwargs.get('error', None) + + +class CloudErrorException(HttpOperationError): + """Server responsed with exception of type: 'CloudError'. + + :param deserialize: A deserializer + :param response: Server response to be deserialized. + """ + + def __init__(self, deserialize, response, *args): + + super(CloudErrorException, self).__init__(deserialize, response, 'CloudError', *args) + + +class CloudErrorBody(Model): + """An error response from the service. + + :param code: An identifier for the error. Codes are invariant and are + intended to be consumed programmatically. + :type code: str + :param message: A message describing the error, intended to be suitable + for display in a user interface. + :type message: str + :param target: The target of the particular error. For example, the name + of the property in error. + :type target: str + :param details: A list of additional details about the error. + :type details: list[~azure.mgmt.privatedns.models.CloudErrorBody] + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'details': {'key': 'details', 'type': '[CloudErrorBody]'}, + } + + def __init__(self, **kwargs): + super(CloudErrorBody, self).__init__(**kwargs) + self.code = kwargs.get('code', None) + self.message = kwargs.get('message', None) + self.target = kwargs.get('target', None) + self.details = kwargs.get('details', None) + + +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, **kwargs): + super(CnameRecord, self).__init__(**kwargs) + self.cname = kwargs.get('cname', None) + + +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, **kwargs): + super(MxRecord, self).__init__(**kwargs) + self.preference = kwargs.get('preference', None) + self.exchange = kwargs.get('exchange', None) + + +class Resource(Model): + """The core properties of ARM resources. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(Resource, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + + +class TrackedResource(Resource): + """The resource model definition for a ARM tracked top level resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: The Azure Region where the resource lives + :type location: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(TrackedResource, self).__init__(**kwargs) + self.tags = kwargs.get('tags', None) + self.location = kwargs.get('location', None) + + +class PrivateZone(TrackedResource): + """Describes a Private DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: The Azure Region where the resource lives + :type location: 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 Private 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 + Private 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 max_number_of_virtual_network_links: The maximum number of virtual + networks that can be linked to this Private DNS zone. This is a read-only + property and any attempt to set this value will be ignored. + :vartype max_number_of_virtual_network_links: long + :ivar number_of_virtual_network_links: The current number of virtual + networks that are linked to this Private DNS zone. This is a read-only + property and any attempt to set this value will be ignored. + :vartype number_of_virtual_network_links: long + :ivar max_number_of_virtual_network_links_with_registration: The maximum + number of virtual networks that can be linked to this Private DNS zone + with registration enabled. This is a read-only property and any attempt to + set this value will be ignored. + :vartype max_number_of_virtual_network_links_with_registration: long + :ivar number_of_virtual_network_links_with_registration: The current + number of virtual networks that are linked to this Private DNS zone with + registration enabled. This is a read-only property and any attempt to set + this value will be ignored. + :vartype number_of_virtual_network_links_with_registration: long + :ivar provisioning_state: The provisioning state of the resource. This is + a read-only property and any attempt to set this value will be ignored. + Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + 'Failed', 'Canceled' + :vartype provisioning_state: str or + ~azure.mgmt.privatedns.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'max_number_of_record_sets': {'readonly': True}, + 'number_of_record_sets': {'readonly': True}, + 'max_number_of_virtual_network_links': {'readonly': True}, + 'number_of_virtual_network_links': {'readonly': True}, + 'max_number_of_virtual_network_links_with_registration': {'readonly': True}, + 'number_of_virtual_network_links_with_registration': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', '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'}, + 'max_number_of_virtual_network_links': {'key': 'properties.maxNumberOfVirtualNetworkLinks', 'type': 'long'}, + 'number_of_virtual_network_links': {'key': 'properties.numberOfVirtualNetworkLinks', 'type': 'long'}, + 'max_number_of_virtual_network_links_with_registration': {'key': 'properties.maxNumberOfVirtualNetworkLinksWithRegistration', 'type': 'long'}, + 'number_of_virtual_network_links_with_registration': {'key': 'properties.numberOfVirtualNetworkLinksWithRegistration', 'type': 'long'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(PrivateZone, self).__init__(**kwargs) + self.etag = kwargs.get('etag', None) + self.max_number_of_record_sets = None + self.number_of_record_sets = None + self.max_number_of_virtual_network_links = None + self.number_of_virtual_network_links = None + self.max_number_of_virtual_network_links_with_registration = None + self.number_of_virtual_network_links_with_registration = None + self.provisioning_state = None + + +class ProxyResource(Resource): + """The resource model definition for an ARM proxy resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ProxyResource, self).__init__(**kwargs) + + +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, **kwargs): + super(PtrRecord, self).__init__(**kwargs) + self.ptrdname = kwargs.get('ptrdname', None) + + +class RecordSet(ProxyResource): + """Describes a DNS record set (a collection of DNS records with the same name + and type) in a Private DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :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 + :ivar is_auto_registered: Is the record set auto-registered in the Private + DNS zone through a virtual network link? + :vartype is_auto_registered: bool + :param a_records: The list of A records in the record set. + :type a_records: list[~azure.mgmt.privatedns.models.ARecord] + :param aaaa_records: The list of AAAA records in the record set. + :type aaaa_records: list[~azure.mgmt.privatedns.models.AaaaRecord] + :param cname_record: The CNAME record in the record set. + :type cname_record: ~azure.mgmt.privatedns.models.CnameRecord + :param mx_records: The list of MX records in the record set. + :type mx_records: list[~azure.mgmt.privatedns.models.MxRecord] + :param ptr_records: The list of PTR records in the record set. + :type ptr_records: list[~azure.mgmt.privatedns.models.PtrRecord] + :param soa_record: The SOA record in the record set. + :type soa_record: ~azure.mgmt.privatedns.models.SoaRecord + :param srv_records: The list of SRV records in the record set. + :type srv_records: list[~azure.mgmt.privatedns.models.SrvRecord] + :param txt_records: The list of TXT records in the record set. + :type txt_records: list[~azure.mgmt.privatedns.models.TxtRecord] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'fqdn': {'readonly': True}, + 'is_auto_registered': {'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'}, + 'is_auto_registered': {'key': 'properties.isAutoRegistered', 'type': 'bool'}, + 'a_records': {'key': 'properties.aRecords', 'type': '[ARecord]'}, + 'aaaa_records': {'key': 'properties.aaaaRecords', 'type': '[AaaaRecord]'}, + 'cname_record': {'key': 'properties.cnameRecord', 'type': 'CnameRecord'}, + 'mx_records': {'key': 'properties.mxRecords', 'type': '[MxRecord]'}, + 'ptr_records': {'key': 'properties.ptrRecords', 'type': '[PtrRecord]'}, + 'soa_record': {'key': 'properties.soaRecord', 'type': 'SoaRecord'}, + 'srv_records': {'key': 'properties.srvRecords', 'type': '[SrvRecord]'}, + 'txt_records': {'key': 'properties.txtRecords', 'type': '[TxtRecord]'}, + } + + def __init__(self, **kwargs): + super(RecordSet, self).__init__(**kwargs) + self.etag = kwargs.get('etag', None) + self.metadata = kwargs.get('metadata', None) + self.ttl = kwargs.get('ttl', None) + self.fqdn = None + self.is_auto_registered = None + self.a_records = kwargs.get('a_records', None) + self.aaaa_records = kwargs.get('aaaa_records', None) + self.cname_record = kwargs.get('cname_record', None) + self.mx_records = kwargs.get('mx_records', None) + self.ptr_records = kwargs.get('ptr_records', None) + self.soa_record = kwargs.get('soa_record', None) + self.srv_records = kwargs.get('srv_records', None) + self.txt_records = kwargs.get('txt_records', None) + + +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, **kwargs): + super(SoaRecord, self).__init__(**kwargs) + self.host = kwargs.get('host', None) + self.email = kwargs.get('email', None) + self.serial_number = kwargs.get('serial_number', None) + self.refresh_time = kwargs.get('refresh_time', None) + self.retry_time = kwargs.get('retry_time', None) + self.expire_time = kwargs.get('expire_time', None) + self.minimum_ttl = kwargs.get('minimum_ttl', None) + + +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, **kwargs): + super(SrvRecord, self).__init__(**kwargs) + self.priority = kwargs.get('priority', None) + self.weight = kwargs.get('weight', None) + self.port = kwargs.get('port', None) + self.target = kwargs.get('target', None) + + +class SubResource(Model): + """Reference to another subresource. + + :param id: Resource ID. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(SubResource, self).__init__(**kwargs) + self.id = kwargs.get('id', None) + + +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, **kwargs): + super(TxtRecord, self).__init__(**kwargs) + self.value = kwargs.get('value', None) + + +class VirtualNetworkLink(TrackedResource): + """Describes a link to virtual network for a Private DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: The Azure Region where the resource lives + :type location: str + :param etag: The ETag of the virtual network link. + :type etag: str + :param virtual_network: The reference of the virtual network. + :type virtual_network: ~azure.mgmt.privatedns.models.SubResource + :param registration_enabled: Is auto-registration of virtual machine + records in the virtual network in the Private DNS zone enabled? + :type registration_enabled: bool + :ivar virtual_network_link_state: The status of the virtual network link + to the Private DNS zone. Possible values are 'InProgress' and 'Done'. This + is a read-only property and any attempt to set this value will be ignored. + Possible values include: 'InProgress', 'Completed' + :vartype virtual_network_link_state: str or + ~azure.mgmt.privatedns.models.VirtualNetworkLinkState + :ivar provisioning_state: The provisioning state of the resource. This is + a read-only property and any attempt to set this value will be ignored. + Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + 'Failed', 'Canceled' + :vartype provisioning_state: str or + ~azure.mgmt.privatedns.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'virtual_network_link_state': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_network': {'key': 'properties.virtualNetwork', 'type': 'SubResource'}, + 'registration_enabled': {'key': 'properties.registrationEnabled', 'type': 'bool'}, + 'virtual_network_link_state': {'key': 'properties.virtualNetworkLinkState', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(VirtualNetworkLink, self).__init__(**kwargs) + self.etag = kwargs.get('etag', None) + self.virtual_network = kwargs.get('virtual_network', None) + self.registration_enabled = kwargs.get('registration_enabled', None) + self.virtual_network_link_state = None + self.provisioning_state = None diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models_py3.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models_py3.py new file mode 100644 index 000000000000..691ef8867e66 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_models_py3.py @@ -0,0 +1,617 @@ +# 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 +from msrest.exceptions import HttpOperationError + + +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: str=None, **kwargs) -> None: + super(AaaaRecord, self).__init__(**kwargs) + self.ipv6_address = ipv6_address + + +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: str=None, **kwargs) -> None: + super(ARecord, self).__init__(**kwargs) + self.ipv4_address = ipv4_address + + +class CloudError(Model): + """An error response from the service. + + :param error: Cloud error body. + :type error: ~azure.mgmt.privatedns.models.CloudErrorBody + """ + + _attribute_map = { + 'error': {'key': 'error', 'type': 'CloudErrorBody'}, + } + + def __init__(self, *, error=None, **kwargs) -> None: + super(CloudError, self).__init__(**kwargs) + self.error = error + + +class CloudErrorException(HttpOperationError): + """Server responsed with exception of type: 'CloudError'. + + :param deserialize: A deserializer + :param response: Server response to be deserialized. + """ + + def __init__(self, deserialize, response, *args): + + super(CloudErrorException, self).__init__(deserialize, response, 'CloudError', *args) + + +class CloudErrorBody(Model): + """An error response from the service. + + :param code: An identifier for the error. Codes are invariant and are + intended to be consumed programmatically. + :type code: str + :param message: A message describing the error, intended to be suitable + for display in a user interface. + :type message: str + :param target: The target of the particular error. For example, the name + of the property in error. + :type target: str + :param details: A list of additional details about the error. + :type details: list[~azure.mgmt.privatedns.models.CloudErrorBody] + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'details': {'key': 'details', 'type': '[CloudErrorBody]'}, + } + + def __init__(self, *, code: str=None, message: str=None, target: str=None, details=None, **kwargs) -> None: + super(CloudErrorBody, self).__init__(**kwargs) + self.code = code + self.message = message + self.target = target + self.details = details + + +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: str=None, **kwargs) -> None: + super(CnameRecord, self).__init__(**kwargs) + self.cname = cname + + +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: int=None, exchange: str=None, **kwargs) -> None: + super(MxRecord, self).__init__(**kwargs) + self.preference = preference + self.exchange = exchange + + +class Resource(Model): + """The core properties of ARM resources. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs) -> None: + super(Resource, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + + +class TrackedResource(Resource): + """The resource model definition for a ARM tracked top level resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: The Azure Region where the resource lives + :type location: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + } + + def __init__(self, *, tags=None, location: str=None, **kwargs) -> None: + super(TrackedResource, self).__init__(**kwargs) + self.tags = tags + self.location = location + + +class PrivateZone(TrackedResource): + """Describes a Private DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: The Azure Region where the resource lives + :type location: 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 Private 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 + Private 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 max_number_of_virtual_network_links: The maximum number of virtual + networks that can be linked to this Private DNS zone. This is a read-only + property and any attempt to set this value will be ignored. + :vartype max_number_of_virtual_network_links: long + :ivar number_of_virtual_network_links: The current number of virtual + networks that are linked to this Private DNS zone. This is a read-only + property and any attempt to set this value will be ignored. + :vartype number_of_virtual_network_links: long + :ivar max_number_of_virtual_network_links_with_registration: The maximum + number of virtual networks that can be linked to this Private DNS zone + with registration enabled. This is a read-only property and any attempt to + set this value will be ignored. + :vartype max_number_of_virtual_network_links_with_registration: long + :ivar number_of_virtual_network_links_with_registration: The current + number of virtual networks that are linked to this Private DNS zone with + registration enabled. This is a read-only property and any attempt to set + this value will be ignored. + :vartype number_of_virtual_network_links_with_registration: long + :ivar provisioning_state: The provisioning state of the resource. This is + a read-only property and any attempt to set this value will be ignored. + Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + 'Failed', 'Canceled' + :vartype provisioning_state: str or + ~azure.mgmt.privatedns.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'max_number_of_record_sets': {'readonly': True}, + 'number_of_record_sets': {'readonly': True}, + 'max_number_of_virtual_network_links': {'readonly': True}, + 'number_of_virtual_network_links': {'readonly': True}, + 'max_number_of_virtual_network_links_with_registration': {'readonly': True}, + 'number_of_virtual_network_links_with_registration': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', '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'}, + 'max_number_of_virtual_network_links': {'key': 'properties.maxNumberOfVirtualNetworkLinks', 'type': 'long'}, + 'number_of_virtual_network_links': {'key': 'properties.numberOfVirtualNetworkLinks', 'type': 'long'}, + 'max_number_of_virtual_network_links_with_registration': {'key': 'properties.maxNumberOfVirtualNetworkLinksWithRegistration', 'type': 'long'}, + 'number_of_virtual_network_links_with_registration': {'key': 'properties.numberOfVirtualNetworkLinksWithRegistration', 'type': 'long'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, *, tags=None, location: str=None, etag: str=None, **kwargs) -> None: + super(PrivateZone, self).__init__(tags=tags, location=location, **kwargs) + self.etag = etag + self.max_number_of_record_sets = None + self.number_of_record_sets = None + self.max_number_of_virtual_network_links = None + self.number_of_virtual_network_links = None + self.max_number_of_virtual_network_links_with_registration = None + self.number_of_virtual_network_links_with_registration = None + self.provisioning_state = None + + +class ProxyResource(Resource): + """The resource model definition for an ARM proxy resource. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__(self, **kwargs) -> None: + super(ProxyResource, self).__init__(**kwargs) + + +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: str=None, **kwargs) -> None: + super(PtrRecord, self).__init__(**kwargs) + self.ptrdname = ptrdname + + +class RecordSet(ProxyResource): + """Describes a DNS record set (a collection of DNS records with the same name + and type) in a Private DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :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 + :ivar is_auto_registered: Is the record set auto-registered in the Private + DNS zone through a virtual network link? + :vartype is_auto_registered: bool + :param a_records: The list of A records in the record set. + :type a_records: list[~azure.mgmt.privatedns.models.ARecord] + :param aaaa_records: The list of AAAA records in the record set. + :type aaaa_records: list[~azure.mgmt.privatedns.models.AaaaRecord] + :param cname_record: The CNAME record in the record set. + :type cname_record: ~azure.mgmt.privatedns.models.CnameRecord + :param mx_records: The list of MX records in the record set. + :type mx_records: list[~azure.mgmt.privatedns.models.MxRecord] + :param ptr_records: The list of PTR records in the record set. + :type ptr_records: list[~azure.mgmt.privatedns.models.PtrRecord] + :param soa_record: The SOA record in the record set. + :type soa_record: ~azure.mgmt.privatedns.models.SoaRecord + :param srv_records: The list of SRV records in the record set. + :type srv_records: list[~azure.mgmt.privatedns.models.SrvRecord] + :param txt_records: The list of TXT records in the record set. + :type txt_records: list[~azure.mgmt.privatedns.models.TxtRecord] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'fqdn': {'readonly': True}, + 'is_auto_registered': {'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'}, + 'is_auto_registered': {'key': 'properties.isAutoRegistered', 'type': 'bool'}, + 'a_records': {'key': 'properties.aRecords', 'type': '[ARecord]'}, + 'aaaa_records': {'key': 'properties.aaaaRecords', 'type': '[AaaaRecord]'}, + 'cname_record': {'key': 'properties.cnameRecord', 'type': 'CnameRecord'}, + 'mx_records': {'key': 'properties.mxRecords', 'type': '[MxRecord]'}, + 'ptr_records': {'key': 'properties.ptrRecords', 'type': '[PtrRecord]'}, + 'soa_record': {'key': 'properties.soaRecord', 'type': 'SoaRecord'}, + 'srv_records': {'key': 'properties.srvRecords', 'type': '[SrvRecord]'}, + 'txt_records': {'key': 'properties.txtRecords', 'type': '[TxtRecord]'}, + } + + def __init__(self, *, etag: str=None, metadata=None, ttl: int=None, a_records=None, aaaa_records=None, cname_record=None, mx_records=None, ptr_records=None, soa_record=None, srv_records=None, txt_records=None, **kwargs) -> None: + super(RecordSet, self).__init__(**kwargs) + self.etag = etag + self.metadata = metadata + self.ttl = ttl + self.fqdn = None + self.is_auto_registered = None + self.a_records = a_records + self.aaaa_records = aaaa_records + self.cname_record = cname_record + self.mx_records = mx_records + self.ptr_records = ptr_records + self.soa_record = soa_record + self.srv_records = srv_records + self.txt_records = txt_records + + +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: str=None, email: str=None, serial_number: int=None, refresh_time: int=None, retry_time: int=None, expire_time: int=None, minimum_ttl: int=None, **kwargs) -> None: + super(SoaRecord, self).__init__(**kwargs) + 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 + + +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: int=None, weight: int=None, port: int=None, target: str=None, **kwargs) -> None: + super(SrvRecord, self).__init__(**kwargs) + self.priority = priority + self.weight = weight + self.port = port + self.target = target + + +class SubResource(Model): + """Reference to another subresource. + + :param id: Resource ID. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__(self, *, id: str=None, **kwargs) -> None: + super(SubResource, self).__init__(**kwargs) + self.id = id + + +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, **kwargs) -> None: + super(TxtRecord, self).__init__(**kwargs) + self.value = value + + +class VirtualNetworkLink(TrackedResource): + """Describes a link to virtual network for a Private DNS zone. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Example - + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'. + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Example - + 'Microsoft.Network/privateDnsZones'. + :vartype type: str + :param tags: Resource tags. + :type tags: dict[str, str] + :param location: The Azure Region where the resource lives + :type location: str + :param etag: The ETag of the virtual network link. + :type etag: str + :param virtual_network: The reference of the virtual network. + :type virtual_network: ~azure.mgmt.privatedns.models.SubResource + :param registration_enabled: Is auto-registration of virtual machine + records in the virtual network in the Private DNS zone enabled? + :type registration_enabled: bool + :ivar virtual_network_link_state: The status of the virtual network link + to the Private DNS zone. Possible values are 'InProgress' and 'Done'. This + is a read-only property and any attempt to set this value will be ignored. + Possible values include: 'InProgress', 'Completed' + :vartype virtual_network_link_state: str or + ~azure.mgmt.privatedns.models.VirtualNetworkLinkState + :ivar provisioning_state: The provisioning state of the resource. This is + a read-only property and any attempt to set this value will be ignored. + Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + 'Failed', 'Canceled' + :vartype provisioning_state: str or + ~azure.mgmt.privatedns.models.ProvisioningState + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'virtual_network_link_state': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_network': {'key': 'properties.virtualNetwork', 'type': 'SubResource'}, + 'registration_enabled': {'key': 'properties.registrationEnabled', 'type': 'bool'}, + 'virtual_network_link_state': {'key': 'properties.virtualNetworkLinkState', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, *, tags=None, location: str=None, etag: str=None, virtual_network=None, registration_enabled: bool=None, **kwargs) -> None: + super(VirtualNetworkLink, self).__init__(tags=tags, location=location, **kwargs) + self.etag = etag + self.virtual_network = virtual_network + self.registration_enabled = registration_enabled + self.virtual_network_link_state = None + self.provisioning_state = None diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_paged_models.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_paged_models.py new file mode 100644 index 000000000000..12293702227a --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_paged_models.py @@ -0,0 +1,53 @@ +# 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 PrivateZonePaged(Paged): + """ + A paging container for iterating over a list of :class:`PrivateZone ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[PrivateZone]'} + } + + def __init__(self, *args, **kwargs): + + super(PrivateZonePaged, self).__init__(*args, **kwargs) +class VirtualNetworkLinkPaged(Paged): + """ + A paging container for iterating over a list of :class:`VirtualNetworkLink ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[VirtualNetworkLink]'} + } + + def __init__(self, *args, **kwargs): + + super(VirtualNetworkLinkPaged, self).__init__(*args, **kwargs) +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/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_private_dns_management_client_enums.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_private_dns_management_client_enums.py new file mode 100644 index 000000000000..82445b7a2eb3 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/models/_private_dns_management_client_enums.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 enum import Enum + + +class ProvisioningState(str, Enum): + + creating = "Creating" + updating = "Updating" + deleting = "Deleting" + succeeded = "Succeeded" + failed = "Failed" + canceled = "Canceled" + + +class VirtualNetworkLinkState(str, Enum): + + in_progress = "InProgress" + completed = "Completed" + + +class RecordType(str, Enum): + + a = "A" + aaaa = "AAAA" + cname = "CNAME" + mx = "MX" + ptr = "PTR" + soa = "SOA" + srv = "SRV" + txt = "TXT" diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py index bc3e85267d5b..fdee516a5908 100644 --- a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py @@ -9,9 +9,9 @@ # regenerated. # -------------------------------------------------------------------------- -from .private_zones_operations import PrivateZonesOperations -from .virtual_network_links_operations import VirtualNetworkLinksOperations -from .record_sets_operations import RecordSetsOperations +from ._private_zones_operations import PrivateZonesOperations +from ._virtual_network_links_operations import VirtualNetworkLinksOperations +from ._record_sets_operations import RecordSetsOperations __all__ = [ 'PrivateZonesOperations', diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_private_zones_operations.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_private_zones_operations.py new file mode 100644 index 000000000000..275cddc5f172 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_private_zones_operations.py @@ -0,0 +1,567 @@ +# 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.polling import LROPoller, NoPolling +from msrestazure.polling.arm_polling import ARMPolling + +from .. import models + + +class PrivateZonesOperations(object): + """PrivateZonesOperations operations. + + You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + + :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: Client Api Version. Constant value: "2018-09-01". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2018-09-01" + + self.config = config + + + def _create_or_update_initial( + self, resource_group_name, private_zone_name, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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['Accept'] = 'application/json' + 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, 'PrivateZone') + + # Construct and send request + request = self._client.put(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 201, 202]: + 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('PrivateZone', response) + if response.status_code == 201: + deserialized = self._deserialize('PrivateZone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def create_or_update( + self, resource_group_name, private_zone_name, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Creates or updates a Private DNS zone. Does not modify Links to virtual + networks or DNS records within the zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param parameters: Parameters supplied to the CreateOrUpdate + operation. + :type parameters: ~azure.mgmt.privatedns.models.PrivateZone + :param if_match: The ETag of the Private DNS zone. Omit this value to + always overwrite the current zone. Specify the last-seen ETag value to + prevent accidentally overwriting any concurrent changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new Private 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: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns PrivateZone or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.privatedns.models.PrivateZone] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.privatedns.models.PrivateZone]] + :raises: :class:`CloudError` + """ + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + private_zone_name=private_zone_name, + parameters=parameters, + if_match=if_match, + if_none_match=if_none_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('PrivateZone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}'} + + + def _update_initial( + self, resource_group_name, private_zone_name, parameters, if_match=None, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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['Accept'] = 'application/json' + 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, 'PrivateZone') + + # Construct and send request + request = self._client.patch(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202]: + 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('PrivateZone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def update( + self, resource_group_name, private_zone_name, parameters, if_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Updates a Private DNS zone. Does not modify virtual network links or + DNS records within the zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param parameters: Parameters supplied to the Update operation. + :type parameters: ~azure.mgmt.privatedns.models.PrivateZone + :param if_match: The ETag of the Private DNS zone. Omit this value to + always overwrite the current zone. Specify the last-seen ETag value to + prevent accidentally overwriting any concurrent changes. + :type if_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns PrivateZone or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.privatedns.models.PrivateZone] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.privatedns.models.PrivateZone]] + :raises: :class:`CloudError` + """ + raw_result = self._update_initial( + resource_group_name=resource_group_name, + private_zone_name=private_zone_name, + parameters=parameters, + if_match=if_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('PrivateZone', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}'} + + + def _delete_initial( + self, resource_group_name, private_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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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 = {} + 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, header_parameters) + response = self._client.send(request, 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, private_zone_name, if_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Deletes a Private DNS zone. WARNING: All DNS records in the zone will + also be deleted. This operation cannot be undone. Private DNS zone + cannot be deleted unless all virtual network links to it are removed. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param if_match: The ETag of the Private 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: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns None or + ClientRawResponse if raw==True + :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] + :raises: :class:`CloudError` + """ + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + private_zone_name=private_zone_name, + if_match=if_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}'} + + def get( + self, resource_group_name, private_zone_name, custom_headers=None, raw=False, **operation_config): + """Gets a Private DNS zone. Retrieves the zone properties, but not the + virtual networks links or the record sets within the zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_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: PrivateZone or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.privatedns.models.PrivateZone 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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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['Accept'] = 'application/json' + 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, header_parameters) + response = self._client.send(request, 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('PrivateZone', 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/privateDnsZones/{privateZoneName}'} + + def list( + self, top=None, custom_headers=None, raw=False, **operation_config): + """Lists the Private DNS zones in all resource groups in a subscription. + + :param top: The maximum number of Private 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 PrivateZone + :rtype: + ~azure.mgmt.privatedns.models.PrivateZonePaged[~azure.mgmt.privatedns.models.PrivateZone] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + 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['Accept'] = 'application/json' + 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, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, 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 + header_dict = None + if raw: + header_dict = {} + deserialized = models.PrivateZonePaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateDnsZones'} + + def list_by_resource_group( + self, resource_group_name, top=None, custom_headers=None, raw=False, **operation_config): + """Lists the Private 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 PrivateZone + :rtype: + ~azure.mgmt.privatedns.models.PrivateZonePaged[~azure.mgmt.privatedns.models.PrivateZone] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + 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['Accept'] = 'application/json' + 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, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, 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 + header_dict = None + if raw: + header_dict = {} + deserialized = models.PrivateZonePaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones'} diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_record_sets_operations.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_record_sets_operations.py new file mode 100644 index 000000000000..8d78d1032e0d --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_record_sets_operations.py @@ -0,0 +1,532 @@ +# 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. + + You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + + :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: Client Api Version. Constant value: "2018-09-01". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2018-09-01" + + self.config = config + + def create_or_update( + self, resource_group_name, private_zone_name, record_type, relative_record_set_name, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): + """Creates or updates a record set within a Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_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 Private DNS zone is created). Possible values include: 'A', + 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.privatedns.models.RecordType + :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 parameters: Parameters supplied to the CreateOrUpdate + operation. + :type parameters: ~azure.mgmt.privatedns.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 overwriting 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.privatedns.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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + '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['Accept'] = 'application/json' + 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, header_parameters, body_content) + response = self._client.send(request, 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/privateDnsZones/{privateZoneName}/{recordType}/{relativeRecordSetName}'} + + def update( + self, resource_group_name, private_zone_name, record_type, relative_record_set_name, parameters, if_match=None, custom_headers=None, raw=False, **operation_config): + """Updates a record set within a Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param record_type: The type of DNS record in this record set. + Possible values include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', + 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.privatedns.models.RecordType + :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 parameters: Parameters supplied to the Update operation. + :type parameters: ~azure.mgmt.privatedns.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 overwriting 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.privatedns.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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + '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['Accept'] = 'application/json' + 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, header_parameters, body_content) + response = self._client.send(request, 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/privateDnsZones/{privateZoneName}/{recordType}/{relativeRecordSetName}'} + + def delete( + self, resource_group_name, private_zone_name, record_type, relative_record_set_name, if_match=None, custom_headers=None, raw=False, **operation_config): + """Deletes a record set from a Private DNS zone. This operation cannot be + undone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_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 Private + DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CNAME', + 'MX', 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.privatedns.models.RecordType + :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 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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + '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 = {} + 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, header_parameters) + response = self._client.send(request, 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/privateDnsZones/{privateZoneName}/{recordType}/{relativeRecordSetName}'} + + def get( + self, resource_group_name, private_zone_name, record_type, relative_record_set_name, 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 private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param record_type: The type of DNS record in this record set. + Possible values include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', + 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.privatedns.models.RecordType + :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 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.privatedns.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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'recordType': self._serialize.url("record_type", record_type, 'RecordType'), + 'relativeRecordSetName': self._serialize.url("relative_record_set_name", relative_record_set_name, 'str', skip_quote=True), + '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['Accept'] = 'application/json' + 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, header_parameters) + response = self._client.send(request, 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/privateDnsZones/{privateZoneName}/{recordType}/{relativeRecordSetName}'} + + def list_by_type( + self, resource_group_name, private_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 Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param record_type: The type of record sets to enumerate. Possible + values include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT' + :type record_type: str or ~azure.mgmt.privatedns.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 to + be used to filter the record set enumeration. If this parameter is + specified, the returned enumeration will only contain 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.privatedns.models.RecordSetPaged[~azure.mgmt.privatedns.models.RecordSet] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + 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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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['Accept'] = 'application/json' + 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, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, 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 + header_dict = None + if raw: + header_dict = {} + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list_by_type.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/{recordType}'} + + def list( + self, resource_group_name, private_zone_name, top=None, recordsetnamesuffix=None, custom_headers=None, raw=False, **operation_config): + """Lists all record sets in a Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_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 to + be used to filter the record set enumeration. If this parameter is + specified, the returned enumeration will only contain 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.privatedns.models.RecordSetPaged[~azure.mgmt.privatedns.models.RecordSet] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + if not next_link: + # Construct URL + url = self.list.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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['Accept'] = 'application/json' + 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, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, 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 + header_dict = None + if raw: + header_dict = {} + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/ALL'} diff --git a/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_virtual_network_links_operations.py b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_virtual_network_links_operations.py new file mode 100644 index 000000000000..9a9e9b85b4f1 --- /dev/null +++ b/sdk/network/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/_virtual_network_links_operations.py @@ -0,0 +1,521 @@ +# 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.polling import LROPoller, NoPolling +from msrestazure.polling.arm_polling import ARMPolling + +from .. import models + + +class VirtualNetworkLinksOperations(object): + """VirtualNetworkLinksOperations operations. + + You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + + :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: Client Api Version. Constant value: "2018-09-01". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2018-09-01" + + self.config = config + + + def _create_or_update_initial( + self, resource_group_name, private_zone_name, virtual_network_link_name, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'virtualNetworkLinkName': self._serialize.url("virtual_network_link_name", virtual_network_link_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['Accept'] = 'application/json' + 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, 'VirtualNetworkLink') + + # Construct and send request + request = self._client.put(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 201, 202]: + 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('VirtualNetworkLink', response) + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkLink', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def create_or_update( + self, resource_group_name, private_zone_name, virtual_network_link_name, parameters, if_match=None, if_none_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Creates or updates a virtual network link to the specified Private DNS + zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param virtual_network_link_name: The name of the virtual network + link. + :type virtual_network_link_name: str + :param parameters: Parameters supplied to the CreateOrUpdate + operation. + :type parameters: ~azure.mgmt.privatedns.models.VirtualNetworkLink + :param if_match: The ETag of the virtual network link to the Private + DNS zone. Omit this value to always overwrite the current virtual + network link. Specify the last-seen ETag value to prevent accidentally + overwriting any concurrent changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new virtual network link + to the Private DNS zone to be created, but to prevent updating an + existing link. 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: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns VirtualNetworkLink or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.privatedns.models.VirtualNetworkLink] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.privatedns.models.VirtualNetworkLink]] + :raises: :class:`CloudError` + """ + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + private_zone_name=private_zone_name, + virtual_network_link_name=virtual_network_link_name, + parameters=parameters, + if_match=if_match, + if_none_match=if_none_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('VirtualNetworkLink', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks/{virtualNetworkLinkName}'} + + + def _update_initial( + self, resource_group_name, private_zone_name, virtual_network_link_name, parameters, if_match=None, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'virtualNetworkLinkName': self._serialize.url("virtual_network_link_name", virtual_network_link_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['Accept'] = 'application/json' + 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, 'VirtualNetworkLink') + + # Construct and send request + request = self._client.patch(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202]: + 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('VirtualNetworkLink', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def update( + self, resource_group_name, private_zone_name, virtual_network_link_name, parameters, if_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Updates a virtual network link to the specified Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param virtual_network_link_name: The name of the virtual network + link. + :type virtual_network_link_name: str + :param parameters: Parameters supplied to the Update operation. + :type parameters: ~azure.mgmt.privatedns.models.VirtualNetworkLink + :param if_match: The ETag of the virtual network link to the Private + DNS zone. Omit this value to always overwrite the current virtual + network link. Specify the last-seen ETag value to prevent accidentally + overwriting any concurrent changes. + :type if_match: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns VirtualNetworkLink or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.privatedns.models.VirtualNetworkLink] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.privatedns.models.VirtualNetworkLink]] + :raises: :class:`CloudError` + """ + raw_result = self._update_initial( + resource_group_name=resource_group_name, + private_zone_name=private_zone_name, + virtual_network_link_name=virtual_network_link_name, + parameters=parameters, + if_match=if_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('VirtualNetworkLink', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks/{virtualNetworkLinkName}'} + + + def _delete_initial( + self, resource_group_name, private_zone_name, virtual_network_link_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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'virtualNetworkLinkName': self._serialize.url("virtual_network_link_name", virtual_network_link_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 = {} + 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, header_parameters) + response = self._client.send(request, 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, private_zone_name, virtual_network_link_name, if_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + """Deletes a virtual network link to the specified Private DNS zone. + WARNING: In case of a registration virtual network, all auto-registered + DNS records in the zone for the virtual network 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 private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param virtual_network_link_name: The name of the virtual network + link. + :type virtual_network_link_name: str + :param if_match: The ETag of the virtual network link to the Private + 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: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns None or + ClientRawResponse if raw==True + :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] + :raises: :class:`CloudError` + """ + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + private_zone_name=private_zone_name, + virtual_network_link_name=virtual_network_link_name, + if_match=if_match, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks/{virtualNetworkLinkName}'} + + def get( + self, resource_group_name, private_zone_name, virtual_network_link_name, custom_headers=None, raw=False, **operation_config): + """Gets a virtual network link to the specified Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param virtual_network_link_name: The name of the virtual network + link. + :type virtual_network_link_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: VirtualNetworkLink or ClientRawResponse if raw=true + :rtype: ~azure.mgmt.privatedns.models.VirtualNetworkLink 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'), + 'privateZoneName': self._serialize.url("private_zone_name", private_zone_name, 'str'), + 'virtualNetworkLinkName': self._serialize.url("virtual_network_link_name", virtual_network_link_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['Accept'] = 'application/json' + 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, header_parameters) + response = self._client.send(request, 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('VirtualNetworkLink', 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/privateDnsZones/{privateZoneName}/virtualNetworkLinks/{virtualNetworkLinkName}'} + + def list( + self, resource_group_name, private_zone_name, top=None, custom_headers=None, raw=False, **operation_config): + """Lists the virtual network links to the specified Private DNS zone. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_zone_name: The name of the Private DNS zone (without a + terminating dot). + :type private_zone_name: str + :param top: The maximum number of virtual network links to return. If + not specified, returns up to 100 virtual network links. + :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 VirtualNetworkLink + :rtype: + ~azure.mgmt.privatedns.models.VirtualNetworkLinkPaged[~azure.mgmt.privatedns.models.VirtualNetworkLink] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + if not next_link: + # Construct URL + url = self.list.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'privateZoneName': self._serialize.url("private_zone_name", private_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') + 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['Accept'] = 'application/json' + 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, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, 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 + header_dict = None + if raw: + header_dict = {} + deserialized = models.VirtualNetworkLinkPaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks'}