Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions lib/services/monitor/lib/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
67 changes: 67 additions & 0 deletions lib/services/monitor/lib/lib/models/action.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* 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';

/**
* An alert action.
*
*/
class Action {
/**
* Create a Action.
* @member {string} [actionGroupId] the id of the action group to use.
* @member {object} [webhookProperties]
*/
constructor() {
}

/**
* Defines the metadata of Action
*
* @returns {object} metadata of Action
*
*/
mapper() {
return {
required: false,
serializedName: 'Action',
type: {
name: 'Composite',
className: 'Action',
modelProperties: {
actionGroupId: {
required: false,
serializedName: 'actionGroupId',
type: {
name: 'String'
}
},
webhookProperties: {
required: false,
serializedName: 'webhookProperties',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
}
}
}
};
}
}

module.exports = Action;
61 changes: 61 additions & 0 deletions lib/services/monitor/lib/lib/models/actionGroupList.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
* 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';

/**
* A list of action groups.
*/
class ActionGroupList extends Array {
/**
* Create a ActionGroupList.
* @member {string} [nextLink] Provides the link to retrieve the next set of
* elements.
*/
constructor() {
super();
}

/**
* Defines the metadata of ActionGroupList
*
* @returns {object} metadata of ActionGroupList
*
*/
mapper() {
return {
required: false,
serializedName: 'ActionGroupList',
type: {
name: 'Composite',
className: 'ActionGroupList',
modelProperties: {
value: {
required: false,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'ActionGroupResourceElementType',
type: {
name: 'Composite',
className: 'ActionGroupResource'
}
}
}
}
}
}
};
}
}

module.exports = ActionGroupList;
70 changes: 70 additions & 0 deletions lib/services/monitor/lib/lib/models/actionGroupPatchBody.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* 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';

/**
* An action group object for the body of patch operations.
*
*/
class ActionGroupPatchBody {
/**
* Create a ActionGroupPatchBody.
* @member {object} [tags] Resource tags
* @member {boolean} [enabled] Indicates whether this action group is
* enabled. If an action group is not enabled, then none of its actions will
* be activated. Default value: true .
*/
constructor() {
}

/**
* Defines the metadata of ActionGroupPatchBody
*
* @returns {object} metadata of ActionGroupPatchBody
*
*/
mapper() {
return {
required: false,
serializedName: 'ActionGroupPatchBody',
type: {
name: 'Composite',
className: 'ActionGroupPatchBody',
modelProperties: {
tags: {
required: false,
serializedName: 'tags',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
},
enabled: {
required: false,
serializedName: 'properties.enabled',
defaultValue: true,
type: {
name: 'Boolean'
}
}
}
}
};
}
}

module.exports = ActionGroupPatchBody;
Loading