Source code for azure.mgmt.compute.v2018_04_01.models.virtual_machine_scale_set_public_ip_address_configuration_dns_settings_py3

# 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


[docs]class VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings(Model): """Describes a virtual machines scale sets network configuration's DNS settings. All required parameters must be populated in order to send to Azure. :param domain_name_label: Required. The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created :type domain_name_label: str """ _validation = { 'domain_name_label': {'required': True}, } _attribute_map = { 'domain_name_label': {'key': 'domainNameLabel', 'type': 'str'}, } def __init__(self, *, domain_name_label: str, **kwargs) -> None: super(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, self).__init__(**kwargs) self.domain_name_label = domain_name_label