UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

56 lines (51 loc) 1.61 kB
/* * 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. */ 'use strict'; /** * Describes a virtual machines scale sets network configuration's DNS * settings. * */ class VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings { /** * Create a VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings. * @member {string} domainNameLabel 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 */ constructor() { } /** * Defines the metadata of VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings * * @returns {object} metadata of VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings * */ mapper() { return { required: false, serializedName: 'VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings', type: { name: 'Composite', className: 'VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings', modelProperties: { domainNameLabel: { required: true, serializedName: 'domainNameLabel', type: { name: 'String' } } } } }; } } module.exports = VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings;