azure-arm-insights
Version:
Microsoft Azure Insights Management Client Library for node
61 lines (56 loc) • 1.4 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.
*/
;
/**
* @class
* Initializes a new instance of the LogProfileCollection class.
* @constructor
* Represents a collection of log profiles.
*
*/
class LogProfileCollection extends Array {
constructor() {
super();
}
/**
* Defines the metadata of LogProfileCollection
*
* @returns {object} metadata of LogProfileCollection
*
*/
mapper() {
return {
required: false,
serializedName: 'LogProfileCollection',
type: {
name: 'Composite',
className: 'LogProfileCollection',
modelProperties: {
value: {
required: true,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'LogProfileResourceElementType',
type: {
name: 'Composite',
className: 'LogProfileResource'
}
}
}
}
}
}
};
}
}
module.exports = LogProfileCollection;