azure.monitoring.ActionRuleActionGroup
Manages an Monitor Action Rule which type is action group.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleActionGroup = new Azure.Monitoring.ActionGroup("exampleActionGroup", new()
{
ResourceGroupName = exampleResourceGroup.Name,
ShortName = "example",
});
var exampleActionRuleActionGroup = new Azure.Monitoring.ActionRuleActionGroup("exampleActionRuleActionGroup", new()
{
ResourceGroupName = exampleResourceGroup.Name,
ActionGroupId = exampleActionGroup.Id,
Scope = new Azure.Monitoring.Inputs.ActionRuleActionGroupScopeArgs
{
Type = "ResourceGroup",
ResourceIds = new[]
{
exampleResourceGroup.Id,
},
},
Tags =
{
{ "foo", "bar" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/monitoring"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleActionGroup, err := monitoring.NewActionGroup(ctx, "exampleActionGroup", &monitoring.ActionGroupArgs{
ResourceGroupName: exampleResourceGroup.Name,
ShortName: pulumi.String("example"),
})
if err != nil {
return err
}
_, err = monitoring.NewActionRuleActionGroup(ctx, "exampleActionRuleActionGroup", &monitoring.ActionRuleActionGroupArgs{
ResourceGroupName: exampleResourceGroup.Name,
ActionGroupId: exampleActionGroup.ID(),
Scope: &monitoring.ActionRuleActionGroupScopeArgs{
Type: pulumi.String("ResourceGroup"),
ResourceIds: pulumi.StringArray{
exampleResourceGroup.ID(),
},
},
Tags: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.monitoring.ActionGroup;
import com.pulumi.azure.monitoring.ActionGroupArgs;
import com.pulumi.azure.monitoring.ActionRuleActionGroup;
import com.pulumi.azure.monitoring.ActionRuleActionGroupArgs;
import com.pulumi.azure.monitoring.inputs.ActionRuleActionGroupScopeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleActionGroup = new ActionGroup("exampleActionGroup", ActionGroupArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.shortName("example")
.build());
var exampleActionRuleActionGroup = new ActionRuleActionGroup("exampleActionRuleActionGroup", ActionRuleActionGroupArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.actionGroupId(exampleActionGroup.id())
.scope(ActionRuleActionGroupScopeArgs.builder()
.type("ResourceGroup")
.resourceIds(exampleResourceGroup.id())
.build())
.tags(Map.of("foo", "bar"))
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_action_group = azure.monitoring.ActionGroup("exampleActionGroup",
resource_group_name=example_resource_group.name,
short_name="example")
example_action_rule_action_group = azure.monitoring.ActionRuleActionGroup("exampleActionRuleActionGroup",
resource_group_name=example_resource_group.name,
action_group_id=example_action_group.id,
scope=azure.monitoring.ActionRuleActionGroupScopeArgs(
type="ResourceGroup",
resource_ids=[example_resource_group.id],
),
tags={
"foo": "bar",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleActionGroup = new azure.monitoring.ActionGroup("exampleActionGroup", {
resourceGroupName: exampleResourceGroup.name,
shortName: "example",
});
const exampleActionRuleActionGroup = new azure.monitoring.ActionRuleActionGroup("exampleActionRuleActionGroup", {
resourceGroupName: exampleResourceGroup.name,
actionGroupId: exampleActionGroup.id,
scope: {
type: "ResourceGroup",
resourceIds: [exampleResourceGroup.id],
},
tags: {
foo: "bar",
},
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleActionGroup:
type: azure:monitoring:ActionGroup
properties:
resourceGroupName: ${exampleResourceGroup.name}
shortName: example
exampleActionRuleActionGroup:
type: azure:monitoring:ActionRuleActionGroup
properties:
resourceGroupName: ${exampleResourceGroup.name}
actionGroupId: ${exampleActionGroup.id}
scope:
type: ResourceGroup
resourceIds:
- ${exampleResourceGroup.id}
tags:
foo: bar
Create ActionRuleActionGroup Resource
new ActionRuleActionGroup(name: string, args: ActionRuleActionGroupArgs, opts?: CustomResourceOptions);
@overload
def ActionRuleActionGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_group_id: Optional[str] = None,
condition: Optional[ActionRuleActionGroupConditionArgs] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
scope: Optional[ActionRuleActionGroupScopeArgs] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def ActionRuleActionGroup(resource_name: str,
args: ActionRuleActionGroupArgs,
opts: Optional[ResourceOptions] = None)
func NewActionRuleActionGroup(ctx *Context, name string, args ActionRuleActionGroupArgs, opts ...ResourceOption) (*ActionRuleActionGroup, error)
public ActionRuleActionGroup(string name, ActionRuleActionGroupArgs args, CustomResourceOptions? opts = null)
public ActionRuleActionGroup(String name, ActionRuleActionGroupArgs args)
public ActionRuleActionGroup(String name, ActionRuleActionGroupArgs args, CustomResourceOptions options)
type: azure:monitoring:ActionRuleActionGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActionRuleActionGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ActionRuleActionGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ActionRuleActionGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActionRuleActionGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActionRuleActionGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ActionRuleActionGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ActionRuleActionGroup resource accepts the following input properties:
- Action
Group stringId Specifies the resource id of monitor action group.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- Condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- Description string
Specifies a description for the Action Rule.
- Enabled bool
Is the Action Rule enabled? Defaults to
true
.- Name string
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- Scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Action
Group stringId Specifies the resource id of monitor action group.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- Condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- Description string
Specifies a description for the Action Rule.
- Enabled bool
Is the Action Rule enabled? Defaults to
true
.- Name string
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- Scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- map[string]string
A mapping of tags to assign to the resource.
- action
Group StringId Specifies the resource id of monitor action group.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- description String
Specifies a description for the Action Rule.
- enabled Boolean
Is the Action Rule enabled? Defaults to
true
.- name String
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- Map<String,String>
A mapping of tags to assign to the resource.
- action
Group stringId Specifies the resource id of monitor action group.
- resource
Group stringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- description string
Specifies a description for the Action Rule.
- enabled boolean
Is the Action Rule enabled? Defaults to
true
.- name string
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- {[key: string]: string}
A mapping of tags to assign to the resource.
- action_
group_ strid Specifies the resource id of monitor action group.
- resource_
group_ strname Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- description str
Specifies a description for the Action Rule.
- enabled bool
Is the Action Rule enabled? Defaults to
true
.- name str
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- Mapping[str, str]
A mapping of tags to assign to the resource.
- action
Group StringId Specifies the resource id of monitor action group.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- condition Property Map
A
condition
block as defined below.- description String
Specifies a description for the Action Rule.
- enabled Boolean
Is the Action Rule enabled? Defaults to
true
.- name String
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- scope Property Map
A
scope
block as defined below.- Map<String>
A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ActionRuleActionGroup resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing ActionRuleActionGroup Resource
Get an existing ActionRuleActionGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ActionRuleActionGroupState, opts?: CustomResourceOptions): ActionRuleActionGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_group_id: Optional[str] = None,
condition: Optional[ActionRuleActionGroupConditionArgs] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
scope: Optional[ActionRuleActionGroupScopeArgs] = None,
tags: Optional[Mapping[str, str]] = None) -> ActionRuleActionGroup
func GetActionRuleActionGroup(ctx *Context, name string, id IDInput, state *ActionRuleActionGroupState, opts ...ResourceOption) (*ActionRuleActionGroup, error)
public static ActionRuleActionGroup Get(string name, Input<string> id, ActionRuleActionGroupState? state, CustomResourceOptions? opts = null)
public static ActionRuleActionGroup get(String name, Output<String> id, ActionRuleActionGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action
Group stringId Specifies the resource id of monitor action group.
- Condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- Description string
Specifies a description for the Action Rule.
- Enabled bool
Is the Action Rule enabled? Defaults to
true
.- Name string
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- Scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Action
Group stringId Specifies the resource id of monitor action group.
- Condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- Description string
Specifies a description for the Action Rule.
- Enabled bool
Is the Action Rule enabled? Defaults to
true
.- Name string
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- Resource
Group stringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- Scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- map[string]string
A mapping of tags to assign to the resource.
- action
Group StringId Specifies the resource id of monitor action group.
- condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- description String
Specifies a description for the Action Rule.
- enabled Boolean
Is the Action Rule enabled? Defaults to
true
.- name String
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- Map<String,String>
A mapping of tags to assign to the resource.
- action
Group stringId Specifies the resource id of monitor action group.
- condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- description string
Specifies a description for the Action Rule.
- enabled boolean
Is the Action Rule enabled? Defaults to
true
.- name string
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- resource
Group stringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- {[key: string]: string}
A mapping of tags to assign to the resource.
- action_
group_ strid Specifies the resource id of monitor action group.
- condition
Action
Rule Action Group Condition Args A
condition
block as defined below.- description str
Specifies a description for the Action Rule.
- enabled bool
Is the Action Rule enabled? Defaults to
true
.- name str
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- resource_
group_ strname Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- scope
Action
Rule Action Group Scope Args A
scope
block as defined below.- Mapping[str, str]
A mapping of tags to assign to the resource.
- action
Group StringId Specifies the resource id of monitor action group.
- condition Property Map
A
condition
block as defined below.- description String
Specifies a description for the Action Rule.
- enabled Boolean
Is the Action Rule enabled? Defaults to
true
.- name String
Specifies the name of the Monitor Action Rule. Changing this forces a new resource to be created.
- resource
Group StringName Specifies the name of the resource group in which the Monitor Action Rule should exist. Changing this forces a new resource to be created.
- scope Property Map
A
scope
block as defined below.- Map<String>
A mapping of tags to assign to the resource.
Supporting Types
ActionRuleActionGroupCondition
- Alert
Context ActionRule Action Group Condition Alert Context A
alert_context
block as defined below.- Alert
Rule ActionId Rule Action Group Condition Alert Rule Id A
alert_rule_id
block as defined below.- Description
Action
Rule Action Group Condition Description A
description
block as defined below.- Monitor
Action
Rule Action Group Condition Monitor A
monitor
block as defined below.- Monitor
Service ActionRule Action Group Condition Monitor Service A
monitor_service
as block defined below.- Severity
Action
Rule Action Group Condition Severity A
severity
block as defined below.- Target
Resource ActionType Rule Action Group Condition Target Resource Type A
target_resource_type
block as defined below.
- Alert
Context ActionRule Action Group Condition Alert Context A
alert_context
block as defined below.- Alert
Rule ActionId Rule Action Group Condition Alert Rule Id A
alert_rule_id
block as defined below.- Description
Action
Rule Action Group Condition Description A
description
block as defined below.- Monitor
Action
Rule Action Group Condition Monitor A
monitor
block as defined below.- Monitor
Service ActionRule Action Group Condition Monitor Service A
monitor_service
as block defined below.- Severity
Action
Rule Action Group Condition Severity A
severity
block as defined below.- Target
Resource ActionType Rule Action Group Condition Target Resource Type A
target_resource_type
block as defined below.
- alert
Context ActionRule Action Group Condition Alert Context A
alert_context
block as defined below.- alert
Rule ActionId Rule Action Group Condition Alert Rule Id A
alert_rule_id
block as defined below.- description
Action
Rule Action Group Condition Description A
description
block as defined below.- monitor
Action
Rule Action Group Condition Monitor A
monitor
block as defined below.- monitor
Service ActionRule Action Group Condition Monitor Service A
monitor_service
as block defined below.- severity
Action
Rule Action Group Condition Severity A
severity
block as defined below.- target
Resource ActionType Rule Action Group Condition Target Resource Type A
target_resource_type
block as defined below.
- alert
Context ActionRule Action Group Condition Alert Context A
alert_context
block as defined below.- alert
Rule ActionId Rule Action Group Condition Alert Rule Id A
alert_rule_id
block as defined below.- description
Action
Rule Action Group Condition Description A
description
block as defined below.- monitor
Action
Rule Action Group Condition Monitor A
monitor
block as defined below.- monitor
Service ActionRule Action Group Condition Monitor Service A
monitor_service
as block defined below.- severity
Action
Rule Action Group Condition Severity A
severity
block as defined below.- target
Resource ActionType Rule Action Group Condition Target Resource Type A
target_resource_type
block as defined below.
- alert_
context ActionRule Action Group Condition Alert Context A
alert_context
block as defined below.- alert_
rule_ Actionid Rule Action Group Condition Alert Rule Id A
alert_rule_id
block as defined below.- description
Action
Rule Action Group Condition Description A
description
block as defined below.- monitor
Action
Rule Action Group Condition Monitor A
monitor
block as defined below.- monitor_
service ActionRule Action Group Condition Monitor Service A
monitor_service
as block defined below.- severity
Action
Rule Action Group Condition Severity A
severity
block as defined below.- target_
resource_ Actiontype Rule Action Group Condition Target Resource Type A
target_resource_type
block as defined below.
- alert
Context Property Map A
alert_context
block as defined below.- alert
Rule Property MapId A
alert_rule_id
block as defined below.- description Property Map
A
description
block as defined below.- monitor Property Map
A
monitor
block as defined below.- monitor
Service Property Map A
monitor_service
as block defined below.- severity Property Map
A
severity
block as defined below.- target
Resource Property MapType A
target_resource_type
block as defined below.
ActionRuleActionGroupConditionAlertContext
ActionRuleActionGroupConditionAlertRuleId
ActionRuleActionGroupConditionDescription
ActionRuleActionGroupConditionMonitor
ActionRuleActionGroupConditionMonitorService
- Operator string
The operator for a given condition. Possible values are
Equals
andNotEquals
.- Values List<string>
A list of values to match for a given condition. Possible values are
ActivityLog Administrative
,ActivityLog Autoscale
,ActivityLog Policy
,ActivityLog Recommendation
,ActivityLog Security
,Application Insights
,Azure Backup
,Azure Stack Edge
,Azure Stack Hub
,Custom
,Data Box Gateway
,Health Platform
,Log Alerts V2
,Log Analytics
,Platform
,Resource Health
,Smart Detector
andVM Insights - Health
.
- Operator string
The operator for a given condition. Possible values are
Equals
andNotEquals
.- Values []string
A list of values to match for a given condition. Possible values are
ActivityLog Administrative
,ActivityLog Autoscale
,ActivityLog Policy
,ActivityLog Recommendation
,ActivityLog Security
,Application Insights
,Azure Backup
,Azure Stack Edge
,Azure Stack Hub
,Custom
,Data Box Gateway
,Health Platform
,Log Alerts V2
,Log Analytics
,Platform
,Resource Health
,Smart Detector
andVM Insights - Health
.
- operator String
The operator for a given condition. Possible values are
Equals
andNotEquals
.- values List<String>
A list of values to match for a given condition. Possible values are
ActivityLog Administrative
,ActivityLog Autoscale
,ActivityLog Policy
,ActivityLog Recommendation
,ActivityLog Security
,Application Insights
,Azure Backup
,Azure Stack Edge
,Azure Stack Hub
,Custom
,Data Box Gateway
,Health Platform
,Log Alerts V2
,Log Analytics
,Platform
,Resource Health
,Smart Detector
andVM Insights - Health
.
- operator string
The operator for a given condition. Possible values are
Equals
andNotEquals
.- values string[]
A list of values to match for a given condition. Possible values are
ActivityLog Administrative
,ActivityLog Autoscale
,ActivityLog Policy
,ActivityLog Recommendation
,ActivityLog Security
,Application Insights
,Azure Backup
,Azure Stack Edge
,Azure Stack Hub
,Custom
,Data Box Gateway
,Health Platform
,Log Alerts V2
,Log Analytics
,Platform
,Resource Health
,Smart Detector
andVM Insights - Health
.
- operator str
The operator for a given condition. Possible values are
Equals
andNotEquals
.- values Sequence[str]
A list of values to match for a given condition. Possible values are
ActivityLog Administrative
,ActivityLog Autoscale
,ActivityLog Policy
,ActivityLog Recommendation
,ActivityLog Security
,Application Insights
,Azure Backup
,Azure Stack Edge
,Azure Stack Hub
,Custom
,Data Box Gateway
,Health Platform
,Log Alerts V2
,Log Analytics
,Platform
,Resource Health
,Smart Detector
andVM Insights - Health
.
- operator String
The operator for a given condition. Possible values are
Equals
andNotEquals
.- values List<String>
A list of values to match for a given condition. Possible values are
ActivityLog Administrative
,ActivityLog Autoscale
,ActivityLog Policy
,ActivityLog Recommendation
,ActivityLog Security
,Application Insights
,Azure Backup
,Azure Stack Edge
,Azure Stack Hub
,Custom
,Data Box Gateway
,Health Platform
,Log Alerts V2
,Log Analytics
,Platform
,Resource Health
,Smart Detector
andVM Insights - Health
.
ActionRuleActionGroupConditionSeverity
ActionRuleActionGroupConditionTargetResourceType
ActionRuleActionGroupScope
- Resource
Ids List<string> A list of resource IDs of the given scope type which will be the target of action rule.
- Type string
Specifies the type of target scope. Possible values are
ResourceGroup
andResource
.
- Resource
Ids []string A list of resource IDs of the given scope type which will be the target of action rule.
- Type string
Specifies the type of target scope. Possible values are
ResourceGroup
andResource
.
- resource
Ids List<String> A list of resource IDs of the given scope type which will be the target of action rule.
- type String
Specifies the type of target scope. Possible values are
ResourceGroup
andResource
.
- resource
Ids string[] A list of resource IDs of the given scope type which will be the target of action rule.
- type string
Specifies the type of target scope. Possible values are
ResourceGroup
andResource
.
- resource_
ids Sequence[str] A list of resource IDs of the given scope type which will be the target of action rule.
- type str
Specifies the type of target scope. Possible values are
ResourceGroup
andResource
.
- resource
Ids List<String> A list of resource IDs of the given scope type which will be the target of action rule.
- type String
Specifies the type of target scope. Possible values are
ResourceGroup
andResource
.
Import
Monitor Action Rule can be imported using the resource id
, e.g.
$ pulumi import azure:monitoring/actionRuleActionGroup:ActionRuleActionGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AlertsManagement/actionRules/actionRule1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.