Skip to content
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
90 changes: 73 additions & 17 deletions packages/@azure/arm-monitor/dist/arm-monitor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/@azure/arm-monitor/dist/arm-monitor.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/@azure/arm-monitor/dist/arm-monitor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/@azure/arm-monitor/dist/arm-monitor.min.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
ErrorResponse,
ActionGroupPatchBody,
ActionGroupList,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
MetricAlertResource,
MetricAlertCriteria,
MetricAlertAction,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
ActivityLogAlertResource,
ActivityLogAlertAllOfCondition,
ActivityLogAlertLeafCondition,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
ActivityLogAlertResource,
ActivityLogAlertAllOfCondition,
ActivityLogAlertLeafCondition,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
ActivityLogAlertResource,
ActivityLogAlertAllOfCondition,
ActivityLogAlertLeafCondition,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
ActivityLogAlertResource,
ActivityLogAlertAllOfCondition,
ActivityLogAlertLeafCondition,
Expand Down
24 changes: 24 additions & 0 deletions packages/@azure/arm-monitor/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1555,6 +1555,24 @@ export interface AzureFunctionReceiver {
httpTriggerUrl: string;
}

/**
* @interface
* An interface representing ArmRoleReceiver.
* An arm role receiver.
*
*/
export interface ArmRoleReceiver {
/**
* @member {string} name The name of the arm role receiver. Names must be
* unique across all receivers within an action group.
*/
name: string;
/**
* @member {string} roleId The arm role id.
*/
roleId: string;
}

/**
* @interface
* An interface representing ActionGroupResource.
Expand Down Expand Up @@ -1619,6 +1637,12 @@ export interface ActionGroupResource extends Resource {
* azure function receivers that are part of this action group.
*/
azureFunctionReceivers?: AzureFunctionReceiver[];
/**
* @member {ArmRoleReceiver[]} [armRoleReceivers] The list of ARM role
* receivers that are part of this action group. Roles are Azure RBAC roles
* and only built-in roles are supported.
*/
armRoleReceivers?: ArmRoleReceiver[];
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export {
VoiceReceiver,
LogicAppReceiver,
AzureFunctionReceiver,
ArmRoleReceiver,
ActivityLogAlertResource,
ActivityLogAlertAllOfCondition,
ActivityLogAlertLeafCondition,
Expand Down
Loading