UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

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