UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

69 lines (64 loc) 1.59 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 Image operation response. */ class ImageListResult extends Array { /** * Create a ImageListResult. * @member {string} [nextLink] The uri to fetch the next page of Images. Call * ListNext() with this to fetch the next page of Images. */ constructor() { super(); } /** * Defines the metadata of ImageListResult * * @returns {object} metadata of ImageListResult * */ mapper() { return { required: false, serializedName: 'ImageListResult', type: { name: 'Composite', className: 'ImageListResult', modelProperties: { value: { required: true, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'ImageElementType', type: { name: 'Composite', className: 'Image' } } } }, nextLink: { required: false, serializedName: 'nextLink', type: { name: 'String' } } } } }; } } module.exports = ImageListResult;