azure-arm-timeseriesinsights
Version:
TimeSeriesInsightsClient Library with typescript type definitions for node
86 lines (81 loc) • 2.1 kB
JavaScript
/*
* 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.
*/
;
/**
* Contains the localized display information for this particular operation /
* action.
*
*/
class OperationDisplay {
/**
* Create a OperationDisplay.
* @member {string} [provider] The localized friendly form of the resource
* provider name.
* @member {string} [resource] The localized friendly form of the resource
* type related to this action/operation.
* @member {string} [operation] The localized friendly name for the
* operation.
* @member {string} [description] The localized friendly description for the
* operation.
*/
constructor() {
}
/**
* Defines the metadata of OperationDisplay
*
* @returns {object} metadata of OperationDisplay
*
*/
mapper() {
return {
required: false,
serializedName: 'Operation_display',
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;