We recommend using Azure Native.
azure.sentinel.AutomationRule
Explore with Pulumi AI
Manages a Sentinel Automation Rule.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example-rg",
    location: "west europe",
});
const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
    name: "example-workspace",
    location: example.location,
    resourceGroupName: example.name,
    sku: "PerGB2018",
});
const exampleLogAnalyticsWorkspaceOnboarding = new azure.sentinel.LogAnalyticsWorkspaceOnboarding("example", {workspaceId: exampleAnalyticsWorkspace.id});
const exampleAutomationRule = new azure.sentinel.AutomationRule("example", {
    name: "56094f72-ac3f-40e7-a0c0-47bd95f70336",
    logAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.workspaceId,
    displayName: "automation_rule1",
    order: 1,
    actionIncidents: [{
        order: 1,
        status: "Active",
    }],
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-rg",
    location="west europe")
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
    name="example-workspace",
    location=example.location,
    resource_group_name=example.name,
    sku="PerGB2018")
example_log_analytics_workspace_onboarding = azure.sentinel.LogAnalyticsWorkspaceOnboarding("example", workspace_id=example_analytics_workspace.id)
example_automation_rule = azure.sentinel.AutomationRule("example",
    name="56094f72-ac3f-40e7-a0c0-47bd95f70336",
    log_analytics_workspace_id=example_log_analytics_workspace_onboarding.workspace_id,
    display_name="automation_rule1",
    order=1,
    action_incidents=[{
        "order": 1,
        "status": "Active",
    }])
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/operationalinsights"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/sentinel"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-rg"),
			Location: pulumi.String("west europe"),
		})
		if err != nil {
			return err
		}
		exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "example", &operationalinsights.AnalyticsWorkspaceArgs{
			Name:              pulumi.String("example-workspace"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			Sku:               pulumi.String("PerGB2018"),
		})
		if err != nil {
			return err
		}
		exampleLogAnalyticsWorkspaceOnboarding, err := sentinel.NewLogAnalyticsWorkspaceOnboarding(ctx, "example", &sentinel.LogAnalyticsWorkspaceOnboardingArgs{
			WorkspaceId: exampleAnalyticsWorkspace.ID(),
		})
		if err != nil {
			return err
		}
		_, err = sentinel.NewAutomationRule(ctx, "example", &sentinel.AutomationRuleArgs{
			Name:                    pulumi.String("56094f72-ac3f-40e7-a0c0-47bd95f70336"),
			LogAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.WorkspaceId,
			DisplayName:             pulumi.String("automation_rule1"),
			Order:                   pulumi.Int(1),
			ActionIncidents: sentinel.AutomationRuleActionIncidentArray{
				&sentinel.AutomationRuleActionIncidentArgs{
					Order:  pulumi.Int(1),
					Status: pulumi.String("Active"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-rg",
        Location = "west europe",
    });
    var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
    {
        Name = "example-workspace",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = "PerGB2018",
    });
    var exampleLogAnalyticsWorkspaceOnboarding = new Azure.Sentinel.LogAnalyticsWorkspaceOnboarding("example", new()
    {
        WorkspaceId = exampleAnalyticsWorkspace.Id,
    });
    var exampleAutomationRule = new Azure.Sentinel.AutomationRule("example", new()
    {
        Name = "56094f72-ac3f-40e7-a0c0-47bd95f70336",
        LogAnalyticsWorkspaceId = exampleLogAnalyticsWorkspaceOnboarding.WorkspaceId,
        DisplayName = "automation_rule1",
        Order = 1,
        ActionIncidents = new[]
        {
            new Azure.Sentinel.Inputs.AutomationRuleActionIncidentArgs
            {
                Order = 1,
                Status = "Active",
            },
        },
    });
});
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.operationalinsights.AnalyticsWorkspace;
import com.pulumi.azure.operationalinsights.AnalyticsWorkspaceArgs;
import com.pulumi.azure.sentinel.LogAnalyticsWorkspaceOnboarding;
import com.pulumi.azure.sentinel.LogAnalyticsWorkspaceOnboardingArgs;
import com.pulumi.azure.sentinel.AutomationRule;
import com.pulumi.azure.sentinel.AutomationRuleArgs;
import com.pulumi.azure.sentinel.inputs.AutomationRuleActionIncidentArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-rg")
            .location("west europe")
            .build());
        var exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
            .name("example-workspace")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku("PerGB2018")
            .build());
        var exampleLogAnalyticsWorkspaceOnboarding = new LogAnalyticsWorkspaceOnboarding("exampleLogAnalyticsWorkspaceOnboarding", LogAnalyticsWorkspaceOnboardingArgs.builder()
            .workspaceId(exampleAnalyticsWorkspace.id())
            .build());
        var exampleAutomationRule = new AutomationRule("exampleAutomationRule", AutomationRuleArgs.builder()
            .name("56094f72-ac3f-40e7-a0c0-47bd95f70336")
            .logAnalyticsWorkspaceId(exampleLogAnalyticsWorkspaceOnboarding.workspaceId())
            .displayName("automation_rule1")
            .order(1)
            .actionIncidents(AutomationRuleActionIncidentArgs.builder()
                .order(1)
                .status("Active")
                .build())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-rg
      location: west europe
  exampleAnalyticsWorkspace:
    type: azure:operationalinsights:AnalyticsWorkspace
    name: example
    properties:
      name: example-workspace
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku: PerGB2018
  exampleLogAnalyticsWorkspaceOnboarding:
    type: azure:sentinel:LogAnalyticsWorkspaceOnboarding
    name: example
    properties:
      workspaceId: ${exampleAnalyticsWorkspace.id}
  exampleAutomationRule:
    type: azure:sentinel:AutomationRule
    name: example
    properties:
      name: 56094f72-ac3f-40e7-a0c0-47bd95f70336
      logAnalyticsWorkspaceId: ${exampleLogAnalyticsWorkspaceOnboarding.workspaceId}
      displayName: automation_rule1
      order: 1
      actionIncidents:
        - order: 1
          status: Active
Create AutomationRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutomationRule(name: string, args: AutomationRuleArgs, opts?: CustomResourceOptions);@overload
def AutomationRule(resource_name: str,
                   args: AutomationRuleArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def AutomationRule(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   display_name: Optional[str] = None,
                   log_analytics_workspace_id: Optional[str] = None,
                   order: Optional[int] = None,
                   action_incidents: Optional[Sequence[AutomationRuleActionIncidentArgs]] = None,
                   action_playbooks: Optional[Sequence[AutomationRuleActionPlaybookArgs]] = None,
                   condition_json: Optional[str] = None,
                   enabled: Optional[bool] = None,
                   expiration: Optional[str] = None,
                   name: Optional[str] = None,
                   triggers_on: Optional[str] = None,
                   triggers_when: Optional[str] = None)func NewAutomationRule(ctx *Context, name string, args AutomationRuleArgs, opts ...ResourceOption) (*AutomationRule, error)public AutomationRule(string name, AutomationRuleArgs args, CustomResourceOptions? opts = null)
public AutomationRule(String name, AutomationRuleArgs args)
public AutomationRule(String name, AutomationRuleArgs args, CustomResourceOptions options)
type: azure:sentinel:AutomationRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AutomationRuleArgs
- 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 AutomationRuleArgs
- 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 AutomationRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutomationRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutomationRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var automationRuleResource = new Azure.Sentinel.AutomationRule("automationRuleResource", new()
{
    DisplayName = "string",
    LogAnalyticsWorkspaceId = "string",
    Order = 0,
    ActionIncidents = new[]
    {
        new Azure.Sentinel.Inputs.AutomationRuleActionIncidentArgs
        {
            Order = 0,
            Classification = "string",
            ClassificationComment = "string",
            Labels = new[]
            {
                "string",
            },
            OwnerId = "string",
            Severity = "string",
            Status = "string",
        },
    },
    ActionPlaybooks = new[]
    {
        new Azure.Sentinel.Inputs.AutomationRuleActionPlaybookArgs
        {
            LogicAppId = "string",
            Order = 0,
            TenantId = "string",
        },
    },
    ConditionJson = "string",
    Enabled = false,
    Expiration = "string",
    Name = "string",
    TriggersOn = "string",
    TriggersWhen = "string",
});
example, err := sentinel.NewAutomationRule(ctx, "automationRuleResource", &sentinel.AutomationRuleArgs{
	DisplayName:             pulumi.String("string"),
	LogAnalyticsWorkspaceId: pulumi.String("string"),
	Order:                   pulumi.Int(0),
	ActionIncidents: sentinel.AutomationRuleActionIncidentArray{
		&sentinel.AutomationRuleActionIncidentArgs{
			Order:                 pulumi.Int(0),
			Classification:        pulumi.String("string"),
			ClassificationComment: pulumi.String("string"),
			Labels: pulumi.StringArray{
				pulumi.String("string"),
			},
			OwnerId:  pulumi.String("string"),
			Severity: pulumi.String("string"),
			Status:   pulumi.String("string"),
		},
	},
	ActionPlaybooks: sentinel.AutomationRuleActionPlaybookArray{
		&sentinel.AutomationRuleActionPlaybookArgs{
			LogicAppId: pulumi.String("string"),
			Order:      pulumi.Int(0),
			TenantId:   pulumi.String("string"),
		},
	},
	ConditionJson: pulumi.String("string"),
	Enabled:       pulumi.Bool(false),
	Expiration:    pulumi.String("string"),
	Name:          pulumi.String("string"),
	TriggersOn:    pulumi.String("string"),
	TriggersWhen:  pulumi.String("string"),
})
var automationRuleResource = new AutomationRule("automationRuleResource", AutomationRuleArgs.builder()
    .displayName("string")
    .logAnalyticsWorkspaceId("string")
    .order(0)
    .actionIncidents(AutomationRuleActionIncidentArgs.builder()
        .order(0)
        .classification("string")
        .classificationComment("string")
        .labels("string")
        .ownerId("string")
        .severity("string")
        .status("string")
        .build())
    .actionPlaybooks(AutomationRuleActionPlaybookArgs.builder()
        .logicAppId("string")
        .order(0)
        .tenantId("string")
        .build())
    .conditionJson("string")
    .enabled(false)
    .expiration("string")
    .name("string")
    .triggersOn("string")
    .triggersWhen("string")
    .build());
automation_rule_resource = azure.sentinel.AutomationRule("automationRuleResource",
    display_name="string",
    log_analytics_workspace_id="string",
    order=0,
    action_incidents=[{
        "order": 0,
        "classification": "string",
        "classification_comment": "string",
        "labels": ["string"],
        "owner_id": "string",
        "severity": "string",
        "status": "string",
    }],
    action_playbooks=[{
        "logic_app_id": "string",
        "order": 0,
        "tenant_id": "string",
    }],
    condition_json="string",
    enabled=False,
    expiration="string",
    name="string",
    triggers_on="string",
    triggers_when="string")
const automationRuleResource = new azure.sentinel.AutomationRule("automationRuleResource", {
    displayName: "string",
    logAnalyticsWorkspaceId: "string",
    order: 0,
    actionIncidents: [{
        order: 0,
        classification: "string",
        classificationComment: "string",
        labels: ["string"],
        ownerId: "string",
        severity: "string",
        status: "string",
    }],
    actionPlaybooks: [{
        logicAppId: "string",
        order: 0,
        tenantId: "string",
    }],
    conditionJson: "string",
    enabled: false,
    expiration: "string",
    name: "string",
    triggersOn: "string",
    triggersWhen: "string",
});
type: azure:sentinel:AutomationRule
properties:
    actionIncidents:
        - classification: string
          classificationComment: string
          labels:
            - string
          order: 0
          ownerId: string
          severity: string
          status: string
    actionPlaybooks:
        - logicAppId: string
          order: 0
          tenantId: string
    conditionJson: string
    displayName: string
    enabled: false
    expiration: string
    logAnalyticsWorkspaceId: string
    name: string
    order: 0
    triggersOn: string
    triggersWhen: string
AutomationRule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AutomationRule resource accepts the following input properties:
- DisplayName string
- The display name which should be used for this Sentinel Automation Rule.
- LogAnalytics stringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- Order int
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- ActionIncidents List<AutomationRule Action Incident> 
- One or more action_incidentblocks as defined below.
- ActionPlaybooks List<AutomationRule Action Playbook> 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- ConditionJson string
- A JSON array of one or more condition JSON objects as is defined here.
- Enabled bool
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- Expiration string
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- Name string
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- TriggersOn string
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- TriggersWhen string
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- DisplayName string
- The display name which should be used for this Sentinel Automation Rule.
- LogAnalytics stringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- Order int
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- ActionIncidents []AutomationRule Action Incident Args 
- One or more action_incidentblocks as defined below.
- ActionPlaybooks []AutomationRule Action Playbook Args 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- ConditionJson string
- A JSON array of one or more condition JSON objects as is defined here.
- Enabled bool
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- Expiration string
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- Name string
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- TriggersOn string
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- TriggersWhen string
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- displayName String
- The display name which should be used for this Sentinel Automation Rule.
- logAnalytics StringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- order Integer
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- actionIncidents List<AutomationRule Action Incident> 
- One or more action_incidentblocks as defined below.
- actionPlaybooks List<AutomationRule Action Playbook> 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- conditionJson String
- A JSON array of one or more condition JSON objects as is defined here.
- enabled Boolean
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration String
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- name String
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- triggersOn String
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggersWhen String
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- displayName string
- The display name which should be used for this Sentinel Automation Rule.
- logAnalytics stringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- order number
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- actionIncidents AutomationRule Action Incident[] 
- One or more action_incidentblocks as defined below.
- actionPlaybooks AutomationRule Action Playbook[] 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- conditionJson string
- A JSON array of one or more condition JSON objects as is defined here.
- enabled boolean
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration string
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- name string
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- triggersOn string
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggersWhen string
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- display_name str
- The display name which should be used for this Sentinel Automation Rule.
- log_analytics_ strworkspace_ id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- order int
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- action_incidents Sequence[AutomationRule Action Incident Args] 
- One or more action_incidentblocks as defined below.
- action_playbooks Sequence[AutomationRule Action Playbook Args] 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- condition_json str
- A JSON array of one or more condition JSON objects as is defined here.
- enabled bool
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration str
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- name str
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- triggers_on str
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggers_when str
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- displayName String
- The display name which should be used for this Sentinel Automation Rule.
- logAnalytics StringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- order Number
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- actionIncidents List<Property Map>
- One or more action_incidentblocks as defined below.
- actionPlaybooks List<Property Map>
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- conditionJson String
- A JSON array of one or more condition JSON objects as is defined here.
- enabled Boolean
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration String
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- name String
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- triggersOn String
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggersWhen String
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutomationRule 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 AutomationRule Resource
Get an existing AutomationRule 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?: AutomationRuleState, opts?: CustomResourceOptions): AutomationRule@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action_incidents: Optional[Sequence[AutomationRuleActionIncidentArgs]] = None,
        action_playbooks: Optional[Sequence[AutomationRuleActionPlaybookArgs]] = None,
        condition_json: Optional[str] = None,
        display_name: Optional[str] = None,
        enabled: Optional[bool] = None,
        expiration: Optional[str] = None,
        log_analytics_workspace_id: Optional[str] = None,
        name: Optional[str] = None,
        order: Optional[int] = None,
        triggers_on: Optional[str] = None,
        triggers_when: Optional[str] = None) -> AutomationRulefunc GetAutomationRule(ctx *Context, name string, id IDInput, state *AutomationRuleState, opts ...ResourceOption) (*AutomationRule, error)public static AutomationRule Get(string name, Input<string> id, AutomationRuleState? state, CustomResourceOptions? opts = null)public static AutomationRule get(String name, Output<String> id, AutomationRuleState state, CustomResourceOptions options)resources:  _:    type: azure:sentinel:AutomationRule    get:      id: ${id}- 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.
- ActionIncidents List<AutomationRule Action Incident> 
- One or more action_incidentblocks as defined below.
- ActionPlaybooks List<AutomationRule Action Playbook> 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- ConditionJson string
- A JSON array of one or more condition JSON objects as is defined here.
- DisplayName string
- The display name which should be used for this Sentinel Automation Rule.
- Enabled bool
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- Expiration string
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- LogAnalytics stringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- Name string
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- Order int
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- TriggersOn string
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- TriggersWhen string
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- ActionIncidents []AutomationRule Action Incident Args 
- One or more action_incidentblocks as defined below.
- ActionPlaybooks []AutomationRule Action Playbook Args 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- ConditionJson string
- A JSON array of one or more condition JSON objects as is defined here.
- DisplayName string
- The display name which should be used for this Sentinel Automation Rule.
- Enabled bool
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- Expiration string
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- LogAnalytics stringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- Name string
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- Order int
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- TriggersOn string
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- TriggersWhen string
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- actionIncidents List<AutomationRule Action Incident> 
- One or more action_incidentblocks as defined below.
- actionPlaybooks List<AutomationRule Action Playbook> 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- conditionJson String
- A JSON array of one or more condition JSON objects as is defined here.
- displayName String
- The display name which should be used for this Sentinel Automation Rule.
- enabled Boolean
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration String
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- logAnalytics StringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- name String
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- order Integer
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- triggersOn String
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggersWhen String
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- actionIncidents AutomationRule Action Incident[] 
- One or more action_incidentblocks as defined below.
- actionPlaybooks AutomationRule Action Playbook[] 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- conditionJson string
- A JSON array of one or more condition JSON objects as is defined here.
- displayName string
- The display name which should be used for this Sentinel Automation Rule.
- enabled boolean
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration string
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- logAnalytics stringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- name string
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- order number
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- triggersOn string
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggersWhen string
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- action_incidents Sequence[AutomationRule Action Incident Args] 
- One or more action_incidentblocks as defined below.
- action_playbooks Sequence[AutomationRule Action Playbook Args] 
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- condition_json str
- A JSON array of one or more condition JSON objects as is defined here.
- display_name str
- The display name which should be used for this Sentinel Automation Rule.
- enabled bool
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration str
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- log_analytics_ strworkspace_ id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- name str
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- order int
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- triggers_on str
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggers_when str
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
- actionIncidents List<Property Map>
- One or more action_incidentblocks as defined below.
- actionPlaybooks List<Property Map>
- One or more - action_playbookblocks as defined below.- Note: Either one - action_incidentblock or- action_playbookblock has to be specified.
- conditionJson String
- A JSON array of one or more condition JSON objects as is defined here.
- displayName String
- The display name which should be used for this Sentinel Automation Rule.
- enabled Boolean
- Whether this Sentinel Automation Rule is enabled? Defaults to true.
- expiration String
- The time in RFC3339 format of kind UTCthat determines when this Automation Rule should expire and be disabled.
- logAnalytics StringWorkspace Id 
- The ID of the Log Analytics Workspace where this Sentinel applies to. Changing this forces a new Sentinel Automation Rule to be created.
- name String
- The UUID which should be used for this Sentinel Automation Rule. Changing this forces a new Sentinel Automation Rule to be created.
- order Number
- The order of this Sentinel Automation Rule. Possible values varies between 1and1000.
- triggersOn String
- Specifies what triggers this automation rule. Possible values are AlertsandIncidents. Defaults toIncidents.
- triggersWhen String
- Specifies when will this automation rule be triggered. Possible values are CreatedandUpdated. Defaults toCreated.
Supporting Types
AutomationRuleActionIncident, AutomationRuleActionIncidentArgs        
- Order int
- The execution order of this action.
- Classification string
- The classification of the incident, when closing it. Possible values are: - BenignPositive_SuspiciousButExpected,- FalsePositive_InaccurateData,- FalsePositive_IncorrectAlertLogic,- TruePositive_SuspiciousActivityand- Undetermined.- Note: The - classificationis required when- statusis- Closed.
- ClassificationComment string
- The comment why the incident is to be closed. - Note: The - classification_commentis allowed to set only when- statusis- Closed.
- Labels List<string>
- Specifies a list of labels to add to the incident.
- OwnerId string
- The object ID of the entity this incident is assigned to.
- Severity string
- The severity to add to the incident. Possible values are - High,- Informational,- Lowand- Medium.- Note:: At least one of - status,- labels,- owner_idand- severityhas to be set.
- Status string
- The status to set to the incident. Possible values are: Active,Closed,New.
- Order int
- The execution order of this action.
- Classification string
- The classification of the incident, when closing it. Possible values are: - BenignPositive_SuspiciousButExpected,- FalsePositive_InaccurateData,- FalsePositive_IncorrectAlertLogic,- TruePositive_SuspiciousActivityand- Undetermined.- Note: The - classificationis required when- statusis- Closed.
- ClassificationComment string
- The comment why the incident is to be closed. - Note: The - classification_commentis allowed to set only when- statusis- Closed.
- Labels []string
- Specifies a list of labels to add to the incident.
- OwnerId string
- The object ID of the entity this incident is assigned to.
- Severity string
- The severity to add to the incident. Possible values are - High,- Informational,- Lowand- Medium.- Note:: At least one of - status,- labels,- owner_idand- severityhas to be set.
- Status string
- The status to set to the incident. Possible values are: Active,Closed,New.
- order Integer
- The execution order of this action.
- classification String
- The classification of the incident, when closing it. Possible values are: - BenignPositive_SuspiciousButExpected,- FalsePositive_InaccurateData,- FalsePositive_IncorrectAlertLogic,- TruePositive_SuspiciousActivityand- Undetermined.- Note: The - classificationis required when- statusis- Closed.
- classificationComment String
- The comment why the incident is to be closed. - Note: The - classification_commentis allowed to set only when- statusis- Closed.
- labels List<String>
- Specifies a list of labels to add to the incident.
- ownerId String
- The object ID of the entity this incident is assigned to.
- severity String
- The severity to add to the incident. Possible values are - High,- Informational,- Lowand- Medium.- Note:: At least one of - status,- labels,- owner_idand- severityhas to be set.
- status String
- The status to set to the incident. Possible values are: Active,Closed,New.
- order number
- The execution order of this action.
- classification string
- The classification of the incident, when closing it. Possible values are: - BenignPositive_SuspiciousButExpected,- FalsePositive_InaccurateData,- FalsePositive_IncorrectAlertLogic,- TruePositive_SuspiciousActivityand- Undetermined.- Note: The - classificationis required when- statusis- Closed.
- classificationComment string
- The comment why the incident is to be closed. - Note: The - classification_commentis allowed to set only when- statusis- Closed.
- labels string[]
- Specifies a list of labels to add to the incident.
- ownerId string
- The object ID of the entity this incident is assigned to.
- severity string
- The severity to add to the incident. Possible values are - High,- Informational,- Lowand- Medium.- Note:: At least one of - status,- labels,- owner_idand- severityhas to be set.
- status string
- The status to set to the incident. Possible values are: Active,Closed,New.
- order int
- The execution order of this action.
- classification str
- The classification of the incident, when closing it. Possible values are: - BenignPositive_SuspiciousButExpected,- FalsePositive_InaccurateData,- FalsePositive_IncorrectAlertLogic,- TruePositive_SuspiciousActivityand- Undetermined.- Note: The - classificationis required when- statusis- Closed.
- classification_comment str
- The comment why the incident is to be closed. - Note: The - classification_commentis allowed to set only when- statusis- Closed.
- labels Sequence[str]
- Specifies a list of labels to add to the incident.
- owner_id str
- The object ID of the entity this incident is assigned to.
- severity str
- The severity to add to the incident. Possible values are - High,- Informational,- Lowand- Medium.- Note:: At least one of - status,- labels,- owner_idand- severityhas to be set.
- status str
- The status to set to the incident. Possible values are: Active,Closed,New.
- order Number
- The execution order of this action.
- classification String
- The classification of the incident, when closing it. Possible values are: - BenignPositive_SuspiciousButExpected,- FalsePositive_InaccurateData,- FalsePositive_IncorrectAlertLogic,- TruePositive_SuspiciousActivityand- Undetermined.- Note: The - classificationis required when- statusis- Closed.
- classificationComment String
- The comment why the incident is to be closed. - Note: The - classification_commentis allowed to set only when- statusis- Closed.
- labels List<String>
- Specifies a list of labels to add to the incident.
- ownerId String
- The object ID of the entity this incident is assigned to.
- severity String
- The severity to add to the incident. Possible values are - High,- Informational,- Lowand- Medium.- Note:: At least one of - status,- labels,- owner_idand- severityhas to be set.
- status String
- The status to set to the incident. Possible values are: Active,Closed,New.
AutomationRuleActionPlaybook, AutomationRuleActionPlaybookArgs        
- LogicApp stringId 
- The ID of the Logic App that defines the playbook's logic.
- Order int
- The execution order of this action.
- TenantId string
- The ID of the Tenant that owns the playbook.
- LogicApp stringId 
- The ID of the Logic App that defines the playbook's logic.
- Order int
- The execution order of this action.
- TenantId string
- The ID of the Tenant that owns the playbook.
- logicApp StringId 
- The ID of the Logic App that defines the playbook's logic.
- order Integer
- The execution order of this action.
- tenantId String
- The ID of the Tenant that owns the playbook.
- logicApp stringId 
- The ID of the Logic App that defines the playbook's logic.
- order number
- The execution order of this action.
- tenantId string
- The ID of the Tenant that owns the playbook.
- logic_app_ strid 
- The ID of the Logic App that defines the playbook's logic.
- order int
- The execution order of this action.
- tenant_id str
- The ID of the Tenant that owns the playbook.
- logicApp StringId 
- The ID of the Logic App that defines the playbook's logic.
- order Number
- The execution order of this action.
- tenantId String
- The ID of the Tenant that owns the playbook.
Import
Sentinel Automation Rules can be imported using the resource id, e.g.
$ pulumi import azure:sentinel/automationRule:AutomationRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/providers/Microsoft.SecurityInsights/automationRules/rule1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.