diff --git a/azure-mgmt-privatedns/HISTORY.rst b/azure-mgmt-privatedns/HISTORY.rst new file mode 100644 index 000000000000..8924d5d6c445 --- /dev/null +++ b/azure-mgmt-privatedns/HISTORY.rst @@ -0,0 +1,9 @@ +.. :changelog: + +Release History +=============== + +0.1.0 (1970-01-01) +++++++++++++++++++ + +* Initial Release diff --git a/azure-mgmt-privatedns/MANIFEST.in b/azure-mgmt-privatedns/MANIFEST.in new file mode 100644 index 000000000000..6ceb27f7a96e --- /dev/null +++ b/azure-mgmt-privatedns/MANIFEST.in @@ -0,0 +1,4 @@ +include *.rst +include azure/__init__.py +include azure/mgmt/__init__.py + diff --git a/azure-mgmt-privatedns/README.rst b/azure-mgmt-privatedns/README.rst new file mode 100644 index 000000000000..d0429ebc7565 --- /dev/null +++ b/azure-mgmt-privatedns/README.rst @@ -0,0 +1,30 @@ +Microsoft Azure SDK for Python +============================== + +This is the Microsoft Azure MyService Management Client Library. + +Azure Resource Manager (ARM) is the next generation of management APIs that +replace the old Azure Service Management (ASM). + +This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7. + +For the older Azure Service Management (ASM) libraries, see +`azure-servicemanagement-legacy `__ library. + +For a more complete set of Azure libraries, see the `azure `__ bundle package. + + +Usage +===== + +For code examples, see `MyService Management +`__ +on docs.microsoft.com. + + +Provide Feedback +================ + +If you encounter any bugs or have suggestions, please file an issue in the +`Issues `__ +section of the project. diff --git a/azure-mgmt-privatedns/azure/__init__.py b/azure-mgmt-privatedns/azure/__init__.py new file mode 100644 index 000000000000..0260537a02bb --- /dev/null +++ b/azure-mgmt-privatedns/azure/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) \ No newline at end of file diff --git a/azure-mgmt-privatedns/azure/mgmt/__init__.py b/azure-mgmt-privatedns/azure/mgmt/__init__.py new file mode 100644 index 000000000000..0260537a02bb --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) \ No newline at end of file diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py new file mode 100644 index 000000000000..d0aa64885b3f --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .private_dns_management_client import PrivateDnsManagementClient +from .version import VERSION + +__all__ = ['PrivateDnsManagementClient'] + +__version__ = VERSION + diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py new file mode 100644 index 000000000000..b4b8674ba773 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/__init__.py @@ -0,0 +1,75 @@ +# 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. +# -------------------------------------------------------------------------- + +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 +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 ( + ProvisioningState, + VirtualNetworkLinkState, + RecordType, +) + +__all__ = [ + 'PrivateZone', + 'SubResource', + 'VirtualNetworkLink', + 'ARecord', + 'AaaaRecord', + 'CnameRecord', + 'MxRecord', + 'PtrRecord', + 'SoaRecord', + 'SrvRecord', + 'TxtRecord', + 'RecordSet', + 'Resource', + 'TrackedResource', + 'ProxyResource', + 'PrivateZonePaged', + 'VirtualNetworkLinkPaged', + 'RecordSetPaged', + 'ProvisioningState', + 'VirtualNetworkLinkState', + 'RecordType', +] diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/aaaa_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/aaaa_record.py new file mode 100644 index 000000000000..4f4b45183a80 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/aaaa_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class AaaaRecord(Model): + """An AAAA record. + + :param ipv6_address: The IPv6 address of this AAAA record. + :type ipv6_address: str + """ + + _attribute_map = { + 'ipv6_address': {'key': 'ipv6Address', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(AaaaRecord, self).__init__(**kwargs) + self.ipv6_address = kwargs.get('ipv6_address', None) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/aaaa_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/aaaa_record_py3.py new file mode 100644 index 000000000000..2cd662761ff9 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/aaaa_record_py3.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class AaaaRecord(Model): + """An AAAA record. + + :param ipv6_address: The IPv6 address of this AAAA record. + :type ipv6_address: str + """ + + _attribute_map = { + 'ipv6_address': {'key': 'ipv6Address', 'type': 'str'}, + } + + def __init__(self, *, ipv6_address: str=None, **kwargs) -> None: + super(AaaaRecord, self).__init__(**kwargs) + self.ipv6_address = ipv6_address diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/arecord.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/arecord.py new file mode 100644 index 000000000000..7172ccbb9011 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/arecord.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ARecord(Model): + """An A record. + + :param ipv4_address: The IPv4 address of this A record. + :type ipv4_address: str + """ + + _attribute_map = { + 'ipv4_address': {'key': 'ipv4Address', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ARecord, self).__init__(**kwargs) + self.ipv4_address = kwargs.get('ipv4_address', None) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/arecord_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/arecord_py3.py new file mode 100644 index 000000000000..d38c7f033aae --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/arecord_py3.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ARecord(Model): + """An A record. + + :param ipv4_address: The IPv4 address of this A record. + :type ipv4_address: str + """ + + _attribute_map = { + 'ipv4_address': {'key': 'ipv4Address', 'type': 'str'}, + } + + def __init__(self, *, ipv4_address: str=None, **kwargs) -> None: + super(ARecord, self).__init__(**kwargs) + self.ipv4_address = ipv4_address diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/cname_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/cname_record.py new file mode 100644 index 000000000000..3812539e3504 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/cname_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class CnameRecord(Model): + """A CNAME record. + + :param cname: The canonical name for this CNAME record. + :type cname: str + """ + + _attribute_map = { + 'cname': {'key': 'cname', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(CnameRecord, self).__init__(**kwargs) + self.cname = kwargs.get('cname', None) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/cname_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/cname_record_py3.py new file mode 100644 index 000000000000..903f7071d615 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/cname_record_py3.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class CnameRecord(Model): + """A CNAME record. + + :param cname: The canonical name for this CNAME record. + :type cname: str + """ + + _attribute_map = { + 'cname': {'key': 'cname', 'type': 'str'}, + } + + def __init__(self, *, cname: str=None, **kwargs) -> None: + super(CnameRecord, self).__init__(**kwargs) + self.cname = cname diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/mx_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/mx_record.py new file mode 100644 index 000000000000..8027663c4de5 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/mx_record.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class MxRecord(Model): + """An MX record. + + :param preference: The preference value for this MX record. + :type preference: int + :param exchange: The domain name of the mail host for this MX record. + :type exchange: str + """ + + _attribute_map = { + 'preference': {'key': 'preference', 'type': 'int'}, + 'exchange': {'key': 'exchange', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(MxRecord, self).__init__(**kwargs) + self.preference = kwargs.get('preference', None) + self.exchange = kwargs.get('exchange', None) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/mx_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/mx_record_py3.py new file mode 100644 index 000000000000..6476cd65eb3a --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/mx_record_py3.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class MxRecord(Model): + """An MX record. + + :param preference: The preference value for this MX record. + :type preference: int + :param exchange: The domain name of the mail host for this MX record. + :type exchange: str + """ + + _attribute_map = { + 'preference': {'key': 'preference', 'type': 'int'}, + 'exchange': {'key': 'exchange', 'type': 'str'}, + } + + def __init__(self, *, preference: int=None, exchange: str=None, **kwargs) -> None: + super(MxRecord, self).__init__(**kwargs) + self.preference = preference + self.exchange = exchange diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_dns_management_client_enums.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_dns_management_client_enums.py new file mode 100644 index 000000000000..82445b7a2eb3 --- /dev/null +++ b/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/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone.py new file mode 100644 index 000000000000..da6f7358ef27 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone.py @@ -0,0 +1,107 @@ +# 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 .tracked_resource import TrackedResource + + +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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone_paged.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone_paged.py new file mode 100644 index 000000000000..21259ee5efcf --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone_paged.py @@ -0,0 +1,27 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.paging import Paged + + +class 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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone_py3.py new file mode 100644 index 000000000000..ca01b305e8b7 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/private_zone_py3.py @@ -0,0 +1,107 @@ +# 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 .tracked_resource_py3 import TrackedResource + + +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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/proxy_resource.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/proxy_resource.py new file mode 100644 index 000000000000..853224460eea --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/proxy_resource.py @@ -0,0 +1,44 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource import Resource + + +class 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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/proxy_resource_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/proxy_resource_py3.py new file mode 100644 index 000000000000..e85909431e15 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/proxy_resource_py3.py @@ -0,0 +1,44 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource_py3 import Resource + + +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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/ptr_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/ptr_record.py new file mode 100644 index 000000000000..1b14721c9855 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/ptr_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class PtrRecord(Model): + """A PTR record. + + :param ptrdname: The PTR target domain name for this PTR record. + :type ptrdname: str + """ + + _attribute_map = { + 'ptrdname': {'key': 'ptrdname', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(PtrRecord, self).__init__(**kwargs) + self.ptrdname = kwargs.get('ptrdname', None) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/ptr_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/ptr_record_py3.py new file mode 100644 index 000000000000..523afce05a26 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/ptr_record_py3.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class PtrRecord(Model): + """A PTR record. + + :param ptrdname: The PTR target domain name for this PTR record. + :type ptrdname: str + """ + + _attribute_map = { + 'ptrdname': {'key': 'ptrdname', 'type': 'str'}, + } + + def __init__(self, *, ptrdname: str=None, **kwargs) -> None: + super(PtrRecord, self).__init__(**kwargs) + self.ptrdname = ptrdname diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set.py new file mode 100644 index 000000000000..e824e9459101 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set.py @@ -0,0 +1,100 @@ +# 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 .proxy_resource import ProxyResource + + +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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set_paged.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set_paged.py new file mode 100644 index 000000000000..3b7aa7ee307a --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set_paged.py @@ -0,0 +1,27 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.paging import Paged + + +class RecordSetPaged(Paged): + """ + A paging container for iterating over a list of :class:`RecordSet ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[RecordSet]'} + } + + def __init__(self, *args, **kwargs): + + super(RecordSetPaged, self).__init__(*args, **kwargs) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set_py3.py new file mode 100644 index 000000000000..b4c9b4431d7d --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/record_set_py3.py @@ -0,0 +1,100 @@ +# 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 .proxy_resource_py3 import ProxyResource + + +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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/resource.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/resource.py new file mode 100644 index 000000000000..002dca378d74 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/resource.py @@ -0,0 +1,47 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class Resource(Model): + """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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/resource_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/resource_py3.py new file mode 100644 index 000000000000..0312e9e1bb53 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/resource_py3.py @@ -0,0 +1,47 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class Resource(Model): + """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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/soa_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/soa_record.py new file mode 100644 index 000000000000..8f2dce742499 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/soa_record.py @@ -0,0 +1,54 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SoaRecord(Model): + """An SOA record. + + :param host: The domain name of the authoritative name server for this SOA + record. + :type host: str + :param email: The email contact for this SOA record. + :type email: str + :param serial_number: The serial number for this SOA record. + :type serial_number: long + :param refresh_time: The refresh value for this SOA record. + :type refresh_time: long + :param retry_time: The retry time for this SOA record. + :type retry_time: long + :param expire_time: The expire time for this SOA record. + :type expire_time: long + :param minimum_ttl: The minimum value for this SOA record. By convention + this is used to determine the negative caching duration. + :type minimum_ttl: long + """ + + _attribute_map = { + 'host': {'key': 'host', 'type': 'str'}, + 'email': {'key': 'email', 'type': 'str'}, + 'serial_number': {'key': 'serialNumber', 'type': 'long'}, + 'refresh_time': {'key': 'refreshTime', 'type': 'long'}, + 'retry_time': {'key': 'retryTime', 'type': 'long'}, + 'expire_time': {'key': 'expireTime', 'type': 'long'}, + 'minimum_ttl': {'key': 'minimumTtl', 'type': 'long'}, + } + + def __init__(self, **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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/soa_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/soa_record_py3.py new file mode 100644 index 000000000000..c67060f17859 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/soa_record_py3.py @@ -0,0 +1,54 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SoaRecord(Model): + """An SOA record. + + :param host: The domain name of the authoritative name server for this SOA + record. + :type host: str + :param email: The email contact for this SOA record. + :type email: str + :param serial_number: The serial number for this SOA record. + :type serial_number: long + :param refresh_time: The refresh value for this SOA record. + :type refresh_time: long + :param retry_time: The retry time for this SOA record. + :type retry_time: long + :param expire_time: The expire time for this SOA record. + :type expire_time: long + :param minimum_ttl: The minimum value for this SOA record. By convention + this is used to determine the negative caching duration. + :type minimum_ttl: long + """ + + _attribute_map = { + 'host': {'key': 'host', 'type': 'str'}, + 'email': {'key': 'email', 'type': 'str'}, + 'serial_number': {'key': 'serialNumber', 'type': 'long'}, + 'refresh_time': {'key': 'refreshTime', 'type': 'long'}, + 'retry_time': {'key': 'retryTime', 'type': 'long'}, + 'expire_time': {'key': 'expireTime', 'type': 'long'}, + 'minimum_ttl': {'key': 'minimumTtl', 'type': 'long'}, + } + + def __init__(self, *, host: 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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/srv_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/srv_record.py new file mode 100644 index 000000000000..c7dc5fcdcbbd --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/srv_record.py @@ -0,0 +1,40 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SrvRecord(Model): + """An SRV record. + + :param priority: The priority value for this SRV record. + :type priority: int + :param weight: The weight value for this SRV record. + :type weight: int + :param port: The port value for this SRV record. + :type port: int + :param target: The target domain name for this SRV record. + :type target: str + """ + + _attribute_map = { + 'priority': {'key': 'priority', 'type': 'int'}, + 'weight': {'key': 'weight', 'type': 'int'}, + 'port': {'key': 'port', 'type': 'int'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__(self, **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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/srv_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/srv_record_py3.py new file mode 100644 index 000000000000..9a464f27cb09 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/srv_record_py3.py @@ -0,0 +1,40 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SrvRecord(Model): + """An SRV record. + + :param priority: The priority value for this SRV record. + :type priority: int + :param weight: The weight value for this SRV record. + :type weight: int + :param port: The port value for this SRV record. + :type port: int + :param target: The target domain name for this SRV record. + :type target: str + """ + + _attribute_map = { + 'priority': {'key': 'priority', 'type': 'int'}, + 'weight': {'key': 'weight', 'type': 'int'}, + 'port': {'key': 'port', 'type': 'int'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__(self, *, priority: 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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/sub_resource.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/sub_resource.py new file mode 100644 index 000000000000..6ab81f55f21b --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/sub_resource.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SubResource(Model): + """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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/sub_resource_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/sub_resource_py3.py new file mode 100644 index 000000000000..8f4c4c816061 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/sub_resource_py3.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class SubResource(Model): + """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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/tracked_resource.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/tracked_resource.py new file mode 100644 index 000000000000..4579dd469812 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/tracked_resource.py @@ -0,0 +1,52 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource import Resource + + +class 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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/tracked_resource_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/tracked_resource_py3.py new file mode 100644 index 000000000000..edbd77a08f35 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/tracked_resource_py3.py @@ -0,0 +1,52 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource_py3 import Resource + + +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 diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/txt_record.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/txt_record.py new file mode 100644 index 000000000000..472f1f22b5d3 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/txt_record.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class TxtRecord(Model): + """A TXT record. + + :param value: The text value of this TXT record. + :type value: list[str] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[str]'}, + } + + def __init__(self, **kwargs): + super(TxtRecord, self).__init__(**kwargs) + self.value = kwargs.get('value', None) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/txt_record_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/txt_record_py3.py new file mode 100644 index 000000000000..4faef766e859 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/txt_record_py3.py @@ -0,0 +1,28 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class TxtRecord(Model): + """A TXT record. + + :param value: The text value of this TXT record. + :type value: list[str] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[str]'}, + } + + def __init__(self, *, value=None, **kwargs) -> None: + super(TxtRecord, self).__init__(**kwargs) + self.value = value diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link.py new file mode 100644 index 000000000000..ea26327ae6b4 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link.py @@ -0,0 +1,81 @@ +# 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 .tracked_resource import TrackedResource + + +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/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link_paged.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link_paged.py new file mode 100644 index 000000000000..f177aa02de5b --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link_paged.py @@ -0,0 +1,27 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.paging import Paged + + +class 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) diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link_py3.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link_py3.py new file mode 100644 index 000000000000..39a8e713f67d --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/models/virtual_network_link_py3.py @@ -0,0 +1,81 @@ +# 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 .tracked_resource_py3 import TrackedResource + + +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/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py new file mode 100644 index 000000000000..bc3e85267d5b --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/__init__.py @@ -0,0 +1,20 @@ +# 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 .private_zones_operations import PrivateZonesOperations +from .virtual_network_links_operations import VirtualNetworkLinksOperations +from .record_sets_operations import RecordSetsOperations + +__all__ = [ + 'PrivateZonesOperations', + 'VirtualNetworkLinksOperations', + 'RecordSetsOperations', +] diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/private_zones_operations.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/private_zones_operations.py new file mode 100644 index 000000000000..826c7e981c0e --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/private_zones_operations.py @@ -0,0 +1,562 @@ +# 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. + + :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 internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['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 + + return response + + # Deserialize response + deserialized = models.PrivateZonePaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.PrivateZonePaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + 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 internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list_by_resource_group.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if top is not None: + query_parameters['$top'] = self._serialize.query("top", top, 'int') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['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 + + return response + + # Deserialize response + deserialized = models.PrivateZonePaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.PrivateZonePaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones'} diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/record_sets_operations.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/record_sets_operations.py new file mode 100644 index 000000000000..2410f80f7a8f --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/record_sets_operations.py @@ -0,0 +1,529 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +import uuid +from msrest.pipeline import ClientRawResponse +from msrestazure.azure_exceptions import CloudError + +from .. import models + + +class RecordSetsOperations(object): + """RecordSetsOperations operations. + + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + :ivar api_version: 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 internal_paging(next_link=None, raw=False): + + if not next_link: + # Construct URL + url = self.list_by_type.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + '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) + 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 + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list_by_type.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/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 internal_paging(next_link=None, raw=False): + + 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) + 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 + deserialized = models.RecordSetPaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.RecordSetPaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/ALL'} diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/virtual_network_links_operations.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/virtual_network_links_operations.py new file mode 100644 index 000000000000..54f2ba7411b7 --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/operations/virtual_network_links_operations.py @@ -0,0 +1,518 @@ +# 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. + + :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 internal_paging(next_link=None, raw=False): + + 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) + 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 + deserialized = models.VirtualNetworkLinkPaged(internal_paging, self._deserialize.dependencies) + + if raw: + header_dict = {} + client_raw_response = models.VirtualNetworkLinkPaged(internal_paging, self._deserialize.dependencies, header_dict) + return client_raw_response + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks'} diff --git a/azure-mgmt-privatedns/azure/mgmt/privatedns/private_dns_management_client.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/private_dns_management_client.py new file mode 100644 index 000000000000..a53a017f030a --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/private_dns_management_client.py @@ -0,0 +1,95 @@ +# 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 msrestazure import AzureConfiguration +from .version import VERSION +from .operations.private_zones_operations import PrivateZonesOperations +from .operations.virtual_network_links_operations import VirtualNetworkLinksOperations +from .operations.record_sets_operations import RecordSetsOperations +from . import models + + +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) + + 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 + + +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/azure-mgmt-privatedns/azure/mgmt/privatedns/version.py b/azure-mgmt-privatedns/azure/mgmt/privatedns/version.py new file mode 100644 index 000000000000..a39916c162ce --- /dev/null +++ b/azure-mgmt-privatedns/azure/mgmt/privatedns/version.py @@ -0,0 +1,13 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +VERSION = "1.0.0" + diff --git a/azure-mgmt-privatedns/sdk_packaging.toml b/azure-mgmt-privatedns/sdk_packaging.toml new file mode 100644 index 000000000000..7345cf9bc6ff --- /dev/null +++ b/azure-mgmt-privatedns/sdk_packaging.toml @@ -0,0 +1,8 @@ +[packaging] +package_name = "azure-mgmt-privatedns" +package_nspkg = "azure-mgmt-nspkg" +package_pprint_name = "MyService Management" +package_doc_id = "" +is_stable = false +is_arm = true +need_msrestazure = true diff --git a/azure-mgmt-privatedns/setup.cfg b/azure-mgmt-privatedns/setup.cfg new file mode 100644 index 000000000000..3c6e79cf31da --- /dev/null +++ b/azure-mgmt-privatedns/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/azure-mgmt-privatedns/setup.py b/azure-mgmt-privatedns/setup.py new file mode 100644 index 000000000000..142406e64b6e --- /dev/null +++ b/azure-mgmt-privatedns/setup.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python + +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +#-------------------------------------------------------------------------- + +import re +import os.path +from io import open +from setuptools import find_packages, setup + +# Change the PACKAGE_NAME only to change folder and different name +PACKAGE_NAME = "azure-mgmt-privatedns" +PACKAGE_PPRINT_NAME = "MyService Management" + +# a-b-c => a/b/c +package_folder_path = PACKAGE_NAME.replace('-', '/') +# a-b-c => a.b.c +namespace_name = PACKAGE_NAME.replace('-', '.') + +# azure v0.x is not compatible with this package +# azure v0.x used to have a __version__ attribute (newer versions don't) +try: + import azure + try: + ver = azure.__version__ + raise Exception( + 'This package is incompatible with azure=={}. '.format(ver) + + 'Uninstall it with "pip uninstall azure".' + ) + except AttributeError: + pass +except ImportError: + pass + +# Version extraction inspired from 'requests' +with open(os.path.join(package_folder_path, 'version.py'), 'r') as fd: + version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', + fd.read(), re.MULTILINE).group(1) + +if not version: + raise RuntimeError('Cannot find version information') + +with open('README.rst', encoding='utf-8') as f: + readme = f.read() +with open('HISTORY.rst', encoding='utf-8') as f: + history = f.read() + +setup( + name=PACKAGE_NAME, + version=version, + description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME), + long_description=readme + '\n\n' + history, + license='MIT License', + author='Microsoft Corporation', + author_email='azpysdkhelp@microsoft.com', + url='https://github.com/Azure/azure-sdk-for-python', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'License :: OSI Approved :: MIT License', + ], + zip_safe=False, + packages=find_packages(exclude=[ + 'tests', + # Exclude packages that will be covered by PEP420 or nspkg + 'azure', + 'azure.mgmt', + ]), + install_requires=[ + 'msrest>=0.5.0', + 'msrestazure>=0.4.32,<2.0.0', + 'azure-common~=1.1', + ], + extras_require={ + ":python_version<'3.0'": ['azure-mgmt-nspkg'], + } +)