UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

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