UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

70 lines (65 loc) 1.86 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'; /** * The List Virtual Machine operation response. */ class VirtualMachineScaleSetListWithLinkResult extends Array { /** * Create a VirtualMachineScaleSetListWithLinkResult. * @member {string} [nextLink] The uri to fetch the next page of Virtual * Machine Scale Sets. Call ListNext() with this to fetch the next page of * Virtual Machine Scale Sets. */ constructor() { super(); } /** * Defines the metadata of VirtualMachineScaleSetListWithLinkResult * * @returns {object} metadata of VirtualMachineScaleSetListWithLinkResult * */ mapper() { return { required: false, serializedName: 'VirtualMachineScaleSetListWithLinkResult', type: { name: 'Composite', className: 'VirtualMachineScaleSetListWithLinkResult', modelProperties: { value: { required: true, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'VirtualMachineScaleSetElementType', type: { name: 'Composite', className: 'VirtualMachineScaleSet' } } } }, nextLink: { required: false, serializedName: 'nextLink', type: { name: 'String' } } } } }; } } module.exports = VirtualMachineScaleSetListWithLinkResult;