Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
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
67 changes: 67 additions & 0 deletions lib/services/monitor/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/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/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