UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

69 lines (64 loc) 1.67 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 response from the List Container Services operation. */ class ContainerServiceListResult extends Array { /** * Create a ContainerServiceListResult. * @member {string} [nextLink] The URL to get the next set of container * service results. */ constructor() { super(); } /** * Defines the metadata of ContainerServiceListResult * * @returns {object} metadata of ContainerServiceListResult * */ mapper() { return { required: false, serializedName: 'ContainerServiceListResult', type: { name: 'Composite', className: 'ContainerServiceListResult', modelProperties: { value: { required: false, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'ContainerServiceElementType', type: { name: 'Composite', className: 'ContainerService' } } } }, nextLink: { required: false, serializedName: 'nextLink', type: { name: 'String' } } } } }; } } module.exports = ContainerServiceListResult;