UNPKG

azure-arm-datalake-store

Version:

Microsoft Azure Data Lake Store Management Client Library for node

70 lines (65 loc) 1.73 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'; /** * Data Lake Store virtual network rule list information. */ class VirtualNetworkRuleListResult extends Array { /** * Create a VirtualNetworkRuleListResult. * @property {string} [nextLink] The link (url) to the next page of results. */ constructor() { super(); } /** * Defines the metadata of VirtualNetworkRuleListResult * * @returns {object} metadata of VirtualNetworkRuleListResult * */ mapper() { return { required: false, serializedName: 'VirtualNetworkRuleListResult', type: { name: 'Composite', className: 'VirtualNetworkRuleListResult', modelProperties: { value: { required: false, readOnly: true, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'VirtualNetworkRuleElementType', type: { name: 'Composite', className: 'VirtualNetworkRule' } } } }, nextLink: { required: false, readOnly: true, serializedName: 'nextLink', type: { name: 'String' } } } } }; } } module.exports = VirtualNetworkRuleListResult;