UNPKG

azure-arm-datalake-store

Version:

Microsoft Azure Data Lake Store Management Client Library for node

53 lines (48 loc) 1.26 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 parameters used to update a virtual network rule. * */ class UpdateVirtualNetworkRuleParameters { /** * Create a UpdateVirtualNetworkRuleParameters. * @property {string} [subnetId] The resource identifier for the subnet. */ constructor() { } /** * Defines the metadata of UpdateVirtualNetworkRuleParameters * * @returns {object} metadata of UpdateVirtualNetworkRuleParameters * */ mapper() { return { required: false, serializedName: 'UpdateVirtualNetworkRuleParameters', type: { name: 'Composite', className: 'UpdateVirtualNetworkRuleParameters', modelProperties: { subnetId: { required: false, serializedName: 'properties.subnetId', type: { name: 'String' } } } } }; } } module.exports = UpdateVirtualNetworkRuleParameters;