UNPKG

azure-arm-datalake-store

Version:

Microsoft Azure Data Lake Store Management Client Library for node

81 lines (76 loc) 1.96 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 display information for a particular operation. * */ class OperationDisplay { /** * Create a OperationDisplay. * @property {string} [provider] The resource provider of the operation. * @property {string} [resource] The resource type of the operation. * @property {string} [operation] A friendly name of the operation. * @property {string} [description] A friendly description of the operation. */ constructor() { } /** * Defines the metadata of OperationDisplay * * @returns {object} metadata of OperationDisplay * */ mapper() { return { required: false, serializedName: 'OperationDisplay', type: { name: 'Composite', className: 'OperationDisplay', modelProperties: { provider: { required: false, readOnly: true, serializedName: 'provider', type: { name: 'String' } }, resource: { required: false, readOnly: true, serializedName: 'resource', type: { name: 'String' } }, operation: { required: false, readOnly: true, serializedName: 'operation', type: { name: 'String' } }, description: { required: false, readOnly: true, serializedName: 'description', type: { name: 'String' } } } } }; } } module.exports = OperationDisplay;