azure-native.insights.ActivityLogAlert
Explore with Pulumi AI
An Activity Log Alert rule resource. Azure REST API version: 2020-10-01. Prior API version in Azure Native 1.x: 2020-10-01.
Other available API versions: 2017-04-01, 2023-01-01-preview.
Example Usage
Create or update an Activity Log Alert rule
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var activityLogAlert = new AzureNative.Insights.ActivityLogAlert("activityLogAlert", new()
    {
        Actions = new AzureNative.Insights.Inputs.ActionListArgs
        {
            ActionGroups = new[]
            {
                new AzureNative.Insights.Inputs.ActionGroupArgs
                {
                    ActionGroupId = "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
                    WebhookProperties = 
                    {
                        { "sampleWebhookProperty", "SamplePropertyValue" },
                    },
                },
            },
        },
        ActivityLogAlertName = "SampleActivityLogAlertRule",
        Condition = new AzureNative.Insights.Inputs.AlertRuleAllOfConditionArgs
        {
            AllOf = new[]
            {
                new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
                {
                    Equals = "Administrative",
                    Field = "category",
                },
                new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
                {
                    Equals = "Error",
                    Field = "level",
                },
            },
        },
        Description = "Description of sample Activity Log Alert rule.",
        Enabled = true,
        Location = "Global",
        ResourceGroupName = "MyResourceGroup",
        Scopes = new[]
        {
            "/subscriptions/187f412d-1758-44d9-b052-169e2564721d",
        },
        Tags = null,
    });
});
package main
import (
	insights "github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := insights.NewActivityLogAlert(ctx, "activityLogAlert", &insights.ActivityLogAlertArgs{
			Actions: &insights.ActionListArgs{
				ActionGroups: insights.ActionGroupTypeArray{
					&insights.ActionGroupTypeArgs{
						ActionGroupId: pulumi.String("/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup"),
						WebhookProperties: pulumi.StringMap{
							"sampleWebhookProperty": pulumi.String("SamplePropertyValue"),
						},
					},
				},
			},
			ActivityLogAlertName: pulumi.String("SampleActivityLogAlertRule"),
			Condition: &insights.AlertRuleAllOfConditionArgs{
				AllOf: insights.AlertRuleAnyOfOrLeafConditionArray{
					&insights.AlertRuleAnyOfOrLeafConditionArgs{
						Equals: pulumi.String("Administrative"),
						Field:  pulumi.String("category"),
					},
					&insights.AlertRuleAnyOfOrLeafConditionArgs{
						Equals: pulumi.String("Error"),
						Field:  pulumi.String("level"),
					},
				},
			},
			Description:       pulumi.String("Description of sample Activity Log Alert rule."),
			Enabled:           pulumi.Bool(true),
			Location:          pulumi.String("Global"),
			ResourceGroupName: pulumi.String("MyResourceGroup"),
			Scopes: pulumi.StringArray{
				pulumi.String("/subscriptions/187f412d-1758-44d9-b052-169e2564721d"),
			},
			Tags: pulumi.StringMap{},
		})
		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.azurenative.insights.ActivityLogAlert;
import com.pulumi.azurenative.insights.ActivityLogAlertArgs;
import com.pulumi.azurenative.insights.inputs.ActionListArgs;
import com.pulumi.azurenative.insights.inputs.AlertRuleAllOfConditionArgs;
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 activityLogAlert = new ActivityLogAlert("activityLogAlert", ActivityLogAlertArgs.builder()
            .actions(ActionListArgs.builder()
                .actionGroups(ActionGroupArgs.builder()
                    .actionGroupId("/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup")
                    .webhookProperties(Map.of("sampleWebhookProperty", "SamplePropertyValue"))
                    .build())
                .build())
            .activityLogAlertName("SampleActivityLogAlertRule")
            .condition(AlertRuleAllOfConditionArgs.builder()
                .allOf(                
                    AlertRuleAnyOfOrLeafConditionArgs.builder()
                        .equals("Administrative")
                        .field("category")
                        .build(),
                    AlertRuleAnyOfOrLeafConditionArgs.builder()
                        .equals("Error")
                        .field("level")
                        .build())
                .build())
            .description("Description of sample Activity Log Alert rule.")
            .enabled(true)
            .location("Global")
            .resourceGroupName("MyResourceGroup")
            .scopes("/subscriptions/187f412d-1758-44d9-b052-169e2564721d")
            .tags()
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const activityLogAlert = new azure_native.insights.ActivityLogAlert("activityLogAlert", {
    actions: {
        actionGroups: [{
            actionGroupId: "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
            webhookProperties: {
                sampleWebhookProperty: "SamplePropertyValue",
            },
        }],
    },
    activityLogAlertName: "SampleActivityLogAlertRule",
    condition: {
        allOf: [
            {
                equals: "Administrative",
                field: "category",
            },
            {
                equals: "Error",
                field: "level",
            },
        ],
    },
    description: "Description of sample Activity Log Alert rule.",
    enabled: true,
    location: "Global",
    resourceGroupName: "MyResourceGroup",
    scopes: ["/subscriptions/187f412d-1758-44d9-b052-169e2564721d"],
    tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
activity_log_alert = azure_native.insights.ActivityLogAlert("activityLogAlert",
    actions={
        "action_groups": [{
            "action_group_id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
            "webhook_properties": {
                "sampleWebhookProperty": "SamplePropertyValue",
            },
        }],
    },
    activity_log_alert_name="SampleActivityLogAlertRule",
    condition={
        "all_of": [
            {
                "equals": "Administrative",
                "field": "category",
            },
            {
                "equals": "Error",
                "field": "level",
            },
        ],
    },
    description="Description of sample Activity Log Alert rule.",
    enabled=True,
    location="Global",
    resource_group_name="MyResourceGroup",
    scopes=["/subscriptions/187f412d-1758-44d9-b052-169e2564721d"],
    tags={})
resources:
  activityLogAlert:
    type: azure-native:insights:ActivityLogAlert
    properties:
      actions:
        actionGroups:
          - actionGroupId: /subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup
            webhookProperties:
              sampleWebhookProperty: SamplePropertyValue
      activityLogAlertName: SampleActivityLogAlertRule
      condition:
        allOf:
          - equals: Administrative
            field: category
          - equals: Error
            field: level
      description: Description of sample Activity Log Alert rule.
      enabled: true
      location: Global
      resourceGroupName: MyResourceGroup
      scopes:
        - /subscriptions/187f412d-1758-44d9-b052-169e2564721d
      tags: {}
Create or update an Activity Log Alert rule with 'anyOf' condition
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var activityLogAlert = new AzureNative.Insights.ActivityLogAlert("activityLogAlert", new()
    {
        Actions = new AzureNative.Insights.Inputs.ActionListArgs
        {
            ActionGroups = new[]
            {
                new AzureNative.Insights.Inputs.ActionGroupArgs
                {
                    ActionGroupId = "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
                    WebhookProperties = 
                    {
                        { "sampleWebhookProperty", "SamplePropertyValue" },
                    },
                },
            },
        },
        ActivityLogAlertName = "SampleActivityLogAlertRuleWithAnyOfCondition",
        Condition = new AzureNative.Insights.Inputs.AlertRuleAllOfConditionArgs
        {
            AllOf = new[]
            {
                new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
                {
                    Equals = "ServiceHealth",
                    Field = "category",
                },
                new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
                {
                    AnyOf = new[]
                    {
                        new AzureNative.Insights.Inputs.AlertRuleLeafConditionArgs
                        {
                            Equals = "Incident",
                            Field = "properties.incidentType",
                        },
                        new AzureNative.Insights.Inputs.AlertRuleLeafConditionArgs
                        {
                            Equals = "Maintenance",
                            Field = "properties.incidentType",
                        },
                    },
                },
            },
        },
        Description = "Description of sample Activity Log Alert rule with 'anyOf' condition.",
        Enabled = true,
        Location = "Global",
        ResourceGroupName = "MyResourceGroup",
        Scopes = new[]
        {
            "subscriptions/187f412d-1758-44d9-b052-169e2564721d",
        },
        Tags = null,
    });
});
package main
import (
	insights "github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := insights.NewActivityLogAlert(ctx, "activityLogAlert", &insights.ActivityLogAlertArgs{
			Actions: &insights.ActionListArgs{
				ActionGroups: insights.ActionGroupTypeArray{
					&insights.ActionGroupTypeArgs{
						ActionGroupId: pulumi.String("/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup"),
						WebhookProperties: pulumi.StringMap{
							"sampleWebhookProperty": pulumi.String("SamplePropertyValue"),
						},
					},
				},
			},
			ActivityLogAlertName: pulumi.String("SampleActivityLogAlertRuleWithAnyOfCondition"),
			Condition: &insights.AlertRuleAllOfConditionArgs{
				AllOf: insights.AlertRuleAnyOfOrLeafConditionArray{
					&insights.AlertRuleAnyOfOrLeafConditionArgs{
						Equals: pulumi.String("ServiceHealth"),
						Field:  pulumi.String("category"),
					},
					&insights.AlertRuleAnyOfOrLeafConditionArgs{
						AnyOf: insights.AlertRuleLeafConditionArray{
							&insights.AlertRuleLeafConditionArgs{
								Equals: pulumi.String("Incident"),
								Field:  pulumi.String("properties.incidentType"),
							},
							&insights.AlertRuleLeafConditionArgs{
								Equals: pulumi.String("Maintenance"),
								Field:  pulumi.String("properties.incidentType"),
							},
						},
					},
				},
			},
			Description:       pulumi.String("Description of sample Activity Log Alert rule with 'anyOf' condition."),
			Enabled:           pulumi.Bool(true),
			Location:          pulumi.String("Global"),
			ResourceGroupName: pulumi.String("MyResourceGroup"),
			Scopes: pulumi.StringArray{
				pulumi.String("subscriptions/187f412d-1758-44d9-b052-169e2564721d"),
			},
			Tags: pulumi.StringMap{},
		})
		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.azurenative.insights.ActivityLogAlert;
import com.pulumi.azurenative.insights.ActivityLogAlertArgs;
import com.pulumi.azurenative.insights.inputs.ActionListArgs;
import com.pulumi.azurenative.insights.inputs.AlertRuleAllOfConditionArgs;
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 activityLogAlert = new ActivityLogAlert("activityLogAlert", ActivityLogAlertArgs.builder()
            .actions(ActionListArgs.builder()
                .actionGroups(ActionGroupArgs.builder()
                    .actionGroupId("/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup")
                    .webhookProperties(Map.of("sampleWebhookProperty", "SamplePropertyValue"))
                    .build())
                .build())
            .activityLogAlertName("SampleActivityLogAlertRuleWithAnyOfCondition")
            .condition(AlertRuleAllOfConditionArgs.builder()
                .allOf(                
                    AlertRuleAnyOfOrLeafConditionArgs.builder()
                        .equals("ServiceHealth")
                        .field("category")
                        .build(),
                    AlertRuleAnyOfOrLeafConditionArgs.builder()
                        .anyOf(                        
                            AlertRuleLeafConditionArgs.builder()
                                .equals("Incident")
                                .field("properties.incidentType")
                                .build(),
                            AlertRuleLeafConditionArgs.builder()
                                .equals("Maintenance")
                                .field("properties.incidentType")
                                .build())
                        .build())
                .build())
            .description("Description of sample Activity Log Alert rule with 'anyOf' condition.")
            .enabled(true)
            .location("Global")
            .resourceGroupName("MyResourceGroup")
            .scopes("subscriptions/187f412d-1758-44d9-b052-169e2564721d")
            .tags()
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const activityLogAlert = new azure_native.insights.ActivityLogAlert("activityLogAlert", {
    actions: {
        actionGroups: [{
            actionGroupId: "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
            webhookProperties: {
                sampleWebhookProperty: "SamplePropertyValue",
            },
        }],
    },
    activityLogAlertName: "SampleActivityLogAlertRuleWithAnyOfCondition",
    condition: {
        allOf: [
            {
                equals: "ServiceHealth",
                field: "category",
            },
            {
                anyOf: [
                    {
                        equals: "Incident",
                        field: "properties.incidentType",
                    },
                    {
                        equals: "Maintenance",
                        field: "properties.incidentType",
                    },
                ],
            },
        ],
    },
    description: "Description of sample Activity Log Alert rule with 'anyOf' condition.",
    enabled: true,
    location: "Global",
    resourceGroupName: "MyResourceGroup",
    scopes: ["subscriptions/187f412d-1758-44d9-b052-169e2564721d"],
    tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
activity_log_alert = azure_native.insights.ActivityLogAlert("activityLogAlert",
    actions={
        "action_groups": [{
            "action_group_id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
            "webhook_properties": {
                "sampleWebhookProperty": "SamplePropertyValue",
            },
        }],
    },
    activity_log_alert_name="SampleActivityLogAlertRuleWithAnyOfCondition",
    condition={
        "all_of": [
            {
                "equals": "ServiceHealth",
                "field": "category",
            },
            {
                "any_of": [
                    {
                        "equals": "Incident",
                        "field": "properties.incidentType",
                    },
                    {
                        "equals": "Maintenance",
                        "field": "properties.incidentType",
                    },
                ],
            },
        ],
    },
    description="Description of sample Activity Log Alert rule with 'anyOf' condition.",
    enabled=True,
    location="Global",
    resource_group_name="MyResourceGroup",
    scopes=["subscriptions/187f412d-1758-44d9-b052-169e2564721d"],
    tags={})
resources:
  activityLogAlert:
    type: azure-native:insights:ActivityLogAlert
    properties:
      actions:
        actionGroups:
          - actionGroupId: /subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup
            webhookProperties:
              sampleWebhookProperty: SamplePropertyValue
      activityLogAlertName: SampleActivityLogAlertRuleWithAnyOfCondition
      condition:
        allOf:
          - equals: ServiceHealth
            field: category
          - anyOf:
              - equals: Incident
                field: properties.incidentType
              - equals: Maintenance
                field: properties.incidentType
      description: Description of sample Activity Log Alert rule with 'anyOf' condition.
      enabled: true
      location: Global
      resourceGroupName: MyResourceGroup
      scopes:
        - subscriptions/187f412d-1758-44d9-b052-169e2564721d
      tags: {}
Create or update an Activity Log Alert rule with 'containsAny'
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var activityLogAlert = new AzureNative.Insights.ActivityLogAlert("activityLogAlert", new()
    {
        Actions = new AzureNative.Insights.Inputs.ActionListArgs
        {
            ActionGroups = new[]
            {
                new AzureNative.Insights.Inputs.ActionGroupArgs
                {
                    ActionGroupId = "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
                    WebhookProperties = 
                    {
                        { "sampleWebhookProperty", "SamplePropertyValue" },
                    },
                },
            },
        },
        ActivityLogAlertName = "SampleActivityLogAlertRuleWithContainsAny",
        Condition = new AzureNative.Insights.Inputs.AlertRuleAllOfConditionArgs
        {
            AllOf = new[]
            {
                new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
                {
                    Equals = "ServiceHealth",
                    Field = "category",
                },
                new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
                {
                    ContainsAny = new[]
                    {
                        "North Europe",
                        "West Europe",
                    },
                    Field = "properties.impactedServices[*].ImpactedRegions[*].RegionName",
                },
            },
        },
        Description = "Description of sample Activity Log Alert rule with 'containsAny'.",
        Enabled = true,
        Location = "Global",
        ResourceGroupName = "MyResourceGroup",
        Scopes = new[]
        {
            "subscriptions/187f412d-1758-44d9-b052-169e2564721d",
        },
        Tags = null,
    });
});
package main
import (
	insights "github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := insights.NewActivityLogAlert(ctx, "activityLogAlert", &insights.ActivityLogAlertArgs{
			Actions: &insights.ActionListArgs{
				ActionGroups: insights.ActionGroupTypeArray{
					&insights.ActionGroupTypeArgs{
						ActionGroupId: pulumi.String("/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup"),
						WebhookProperties: pulumi.StringMap{
							"sampleWebhookProperty": pulumi.String("SamplePropertyValue"),
						},
					},
				},
			},
			ActivityLogAlertName: pulumi.String("SampleActivityLogAlertRuleWithContainsAny"),
			Condition: &insights.AlertRuleAllOfConditionArgs{
				AllOf: insights.AlertRuleAnyOfOrLeafConditionArray{
					&insights.AlertRuleAnyOfOrLeafConditionArgs{
						Equals: pulumi.String("ServiceHealth"),
						Field:  pulumi.String("category"),
					},
					&insights.AlertRuleAnyOfOrLeafConditionArgs{
						ContainsAny: pulumi.StringArray{
							pulumi.String("North Europe"),
							pulumi.String("West Europe"),
						},
						Field: pulumi.String("properties.impactedServices[*].ImpactedRegions[*].RegionName"),
					},
				},
			},
			Description:       pulumi.String("Description of sample Activity Log Alert rule with 'containsAny'."),
			Enabled:           pulumi.Bool(true),
			Location:          pulumi.String("Global"),
			ResourceGroupName: pulumi.String("MyResourceGroup"),
			Scopes: pulumi.StringArray{
				pulumi.String("subscriptions/187f412d-1758-44d9-b052-169e2564721d"),
			},
			Tags: pulumi.StringMap{},
		})
		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.azurenative.insights.ActivityLogAlert;
import com.pulumi.azurenative.insights.ActivityLogAlertArgs;
import com.pulumi.azurenative.insights.inputs.ActionListArgs;
import com.pulumi.azurenative.insights.inputs.AlertRuleAllOfConditionArgs;
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 activityLogAlert = new ActivityLogAlert("activityLogAlert", ActivityLogAlertArgs.builder()
            .actions(ActionListArgs.builder()
                .actionGroups(ActionGroupArgs.builder()
                    .actionGroupId("/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup")
                    .webhookProperties(Map.of("sampleWebhookProperty", "SamplePropertyValue"))
                    .build())
                .build())
            .activityLogAlertName("SampleActivityLogAlertRuleWithContainsAny")
            .condition(AlertRuleAllOfConditionArgs.builder()
                .allOf(                
                    AlertRuleAnyOfOrLeafConditionArgs.builder()
                        .equals("ServiceHealth")
                        .field("category")
                        .build(),
                    AlertRuleAnyOfOrLeafConditionArgs.builder()
                        .containsAny(                        
                            "North Europe",
                            "West Europe")
                        .field("properties.impactedServices[*].ImpactedRegions[*].RegionName")
                        .build())
                .build())
            .description("Description of sample Activity Log Alert rule with 'containsAny'.")
            .enabled(true)
            .location("Global")
            .resourceGroupName("MyResourceGroup")
            .scopes("subscriptions/187f412d-1758-44d9-b052-169e2564721d")
            .tags()
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const activityLogAlert = new azure_native.insights.ActivityLogAlert("activityLogAlert", {
    actions: {
        actionGroups: [{
            actionGroupId: "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
            webhookProperties: {
                sampleWebhookProperty: "SamplePropertyValue",
            },
        }],
    },
    activityLogAlertName: "SampleActivityLogAlertRuleWithContainsAny",
    condition: {
        allOf: [
            {
                equals: "ServiceHealth",
                field: "category",
            },
            {
                containsAny: [
                    "North Europe",
                    "West Europe",
                ],
                field: "properties.impactedServices[*].ImpactedRegions[*].RegionName",
            },
        ],
    },
    description: "Description of sample Activity Log Alert rule with 'containsAny'.",
    enabled: true,
    location: "Global",
    resourceGroupName: "MyResourceGroup",
    scopes: ["subscriptions/187f412d-1758-44d9-b052-169e2564721d"],
    tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
activity_log_alert = azure_native.insights.ActivityLogAlert("activityLogAlert",
    actions={
        "action_groups": [{
            "action_group_id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup",
            "webhook_properties": {
                "sampleWebhookProperty": "SamplePropertyValue",
            },
        }],
    },
    activity_log_alert_name="SampleActivityLogAlertRuleWithContainsAny",
    condition={
        "all_of": [
            {
                "equals": "ServiceHealth",
                "field": "category",
            },
            {
                "contains_any": [
                    "North Europe",
                    "West Europe",
                ],
                "field": "properties.impactedServices[*].ImpactedRegions[*].RegionName",
            },
        ],
    },
    description="Description of sample Activity Log Alert rule with 'containsAny'.",
    enabled=True,
    location="Global",
    resource_group_name="MyResourceGroup",
    scopes=["subscriptions/187f412d-1758-44d9-b052-169e2564721d"],
    tags={})
resources:
  activityLogAlert:
    type: azure-native:insights:ActivityLogAlert
    properties:
      actions:
        actionGroups:
          - actionGroupId: /subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/MyResourceGroup/providers/Microsoft.Insights/actionGroups/SampleActionGroup
            webhookProperties:
              sampleWebhookProperty: SamplePropertyValue
      activityLogAlertName: SampleActivityLogAlertRuleWithContainsAny
      condition:
        allOf:
          - equals: ServiceHealth
            field: category
          - containsAny:
              - North Europe
              - West Europe
            field: properties.impactedServices[*].ImpactedRegions[*].RegionName
      description: Description of sample Activity Log Alert rule with 'containsAny'.
      enabled: true
      location: Global
      resourceGroupName: MyResourceGroup
      scopes:
        - subscriptions/187f412d-1758-44d9-b052-169e2564721d
      tags: {}
Create ActivityLogAlert Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ActivityLogAlert(name: string, args: ActivityLogAlertArgs, opts?: CustomResourceOptions);@overload
def ActivityLogAlert(resource_name: str,
                     args: ActivityLogAlertArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def ActivityLogAlert(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     actions: Optional[ActionListArgs] = None,
                     condition: Optional[AlertRuleAllOfConditionArgs] = None,
                     resource_group_name: Optional[str] = None,
                     scopes: Optional[Sequence[str]] = None,
                     activity_log_alert_name: Optional[str] = None,
                     description: Optional[str] = None,
                     enabled: Optional[bool] = None,
                     location: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)func NewActivityLogAlert(ctx *Context, name string, args ActivityLogAlertArgs, opts ...ResourceOption) (*ActivityLogAlert, error)public ActivityLogAlert(string name, ActivityLogAlertArgs args, CustomResourceOptions? opts = null)
public ActivityLogAlert(String name, ActivityLogAlertArgs args)
public ActivityLogAlert(String name, ActivityLogAlertArgs args, CustomResourceOptions options)
type: azure-native:insights:ActivityLogAlert
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 ActivityLogAlertArgs
- 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 ActivityLogAlertArgs
- 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 ActivityLogAlertArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActivityLogAlertArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActivityLogAlertArgs
- 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 activityLogAlertResource = new AzureNative.Insights.ActivityLogAlert("activityLogAlertResource", new()
{
    Actions = new AzureNative.Insights.Inputs.ActionListArgs
    {
        ActionGroups = new[]
        {
            new AzureNative.Insights.Inputs.ActionGroupArgs
            {
                ActionGroupId = "string",
                WebhookProperties = 
                {
                    { "string", "string" },
                },
            },
        },
    },
    Condition = new AzureNative.Insights.Inputs.AlertRuleAllOfConditionArgs
    {
        AllOf = new[]
        {
            new AzureNative.Insights.Inputs.AlertRuleAnyOfOrLeafConditionArgs
            {
                AnyOf = new[]
                {
                    new AzureNative.Insights.Inputs.AlertRuleLeafConditionArgs
                    {
                        ContainsAny = new[]
                        {
                            "string",
                        },
                        Equals = "string",
                        Field = "string",
                    },
                },
                ContainsAny = new[]
                {
                    "string",
                },
                Equals = "string",
                Field = "string",
            },
        },
    },
    ResourceGroupName = "string",
    Scopes = new[]
    {
        "string",
    },
    ActivityLogAlertName = "string",
    Description = "string",
    Enabled = false,
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := insights.NewActivityLogAlert(ctx, "activityLogAlertResource", &insights.ActivityLogAlertArgs{
	Actions: &insights.ActionListArgs{
		ActionGroups: insights.ActionGroupTypeArray{
			&insights.ActionGroupTypeArgs{
				ActionGroupId: pulumi.String("string"),
				WebhookProperties: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
		},
	},
	Condition: &insights.AlertRuleAllOfConditionArgs{
		AllOf: insights.AlertRuleAnyOfOrLeafConditionArray{
			&insights.AlertRuleAnyOfOrLeafConditionArgs{
				AnyOf: insights.AlertRuleLeafConditionArray{
					&insights.AlertRuleLeafConditionArgs{
						ContainsAny: pulumi.StringArray{
							pulumi.String("string"),
						},
						Equals: pulumi.String("string"),
						Field:  pulumi.String("string"),
					},
				},
				ContainsAny: pulumi.StringArray{
					pulumi.String("string"),
				},
				Equals: pulumi.String("string"),
				Field:  pulumi.String("string"),
			},
		},
	},
	ResourceGroupName: pulumi.String("string"),
	Scopes: pulumi.StringArray{
		pulumi.String("string"),
	},
	ActivityLogAlertName: pulumi.String("string"),
	Description:          pulumi.String("string"),
	Enabled:              pulumi.Bool(false),
	Location:             pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var activityLogAlertResource = new ActivityLogAlert("activityLogAlertResource", ActivityLogAlertArgs.builder()
    .actions(ActionListArgs.builder()
        .actionGroups(ActionGroupArgs.builder()
            .actionGroupId("string")
            .webhookProperties(Map.of("string", "string"))
            .build())
        .build())
    .condition(AlertRuleAllOfConditionArgs.builder()
        .allOf(AlertRuleAnyOfOrLeafConditionArgs.builder()
            .anyOf(AlertRuleLeafConditionArgs.builder()
                .containsAny("string")
                .equals("string")
                .field("string")
                .build())
            .containsAny("string")
            .equals("string")
            .field("string")
            .build())
        .build())
    .resourceGroupName("string")
    .scopes("string")
    .activityLogAlertName("string")
    .description("string")
    .enabled(false)
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
activity_log_alert_resource = azure_native.insights.ActivityLogAlert("activityLogAlertResource",
    actions={
        "action_groups": [{
            "action_group_id": "string",
            "webhook_properties": {
                "string": "string",
            },
        }],
    },
    condition={
        "all_of": [{
            "any_of": [{
                "contains_any": ["string"],
                "equals": "string",
                "field": "string",
            }],
            "contains_any": ["string"],
            "equals": "string",
            "field": "string",
        }],
    },
    resource_group_name="string",
    scopes=["string"],
    activity_log_alert_name="string",
    description="string",
    enabled=False,
    location="string",
    tags={
        "string": "string",
    })
const activityLogAlertResource = new azure_native.insights.ActivityLogAlert("activityLogAlertResource", {
    actions: {
        actionGroups: [{
            actionGroupId: "string",
            webhookProperties: {
                string: "string",
            },
        }],
    },
    condition: {
        allOf: [{
            anyOf: [{
                containsAny: ["string"],
                equals: "string",
                field: "string",
            }],
            containsAny: ["string"],
            equals: "string",
            field: "string",
        }],
    },
    resourceGroupName: "string",
    scopes: ["string"],
    activityLogAlertName: "string",
    description: "string",
    enabled: false,
    location: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:insights:ActivityLogAlert
properties:
    actions:
        actionGroups:
            - actionGroupId: string
              webhookProperties:
                string: string
    activityLogAlertName: string
    condition:
        allOf:
            - anyOf:
                - containsAny:
                    - string
                  equals: string
                  field: string
              containsAny:
                - string
              equals: string
              field: string
    description: string
    enabled: false
    location: string
    resourceGroupName: string
    scopes:
        - string
    tags:
        string: string
ActivityLogAlert 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 ActivityLogAlert resource accepts the following input properties:
- Actions
Pulumi.Azure Native. Insights. Inputs. Action List 
- The actions that will activate when the condition is met.
- Condition
Pulumi.Azure Native. Insights. Inputs. Alert Rule All Of Condition 
- The condition that will cause this alert to activate.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Scopes List<string>
- A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
- ActivityLog stringAlert Name 
- The name of the Activity Log Alert rule.
- Description string
- A description of this Activity Log Alert rule.
- Enabled bool
- Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
- Location string
- The location of the resource. Azure Activity Log Alert rules are supported on Global, West Europe and North Europe regions.
- Dictionary<string, string>
- The tags of the resource.
- Actions
ActionList Args 
- The actions that will activate when the condition is met.
- Condition
AlertRule All Of Condition Args 
- The condition that will cause this alert to activate.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Scopes []string
- A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
- ActivityLog stringAlert Name 
- The name of the Activity Log Alert rule.
- Description string
- A description of this Activity Log Alert rule.
- Enabled bool
- Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
- Location string
- The location of the resource. Azure Activity Log Alert rules are supported on Global, West Europe and North Europe regions.
- map[string]string
- The tags of the resource.
- actions
ActionList 
- The actions that will activate when the condition is met.
- condition
AlertRule All Of Condition 
- The condition that will cause this alert to activate.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- scopes List<String>
- A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
- activityLog StringAlert Name 
- The name of the Activity Log Alert rule.
- description String
- A description of this Activity Log Alert rule.
- enabled Boolean
- Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
- location String
- The location of the resource. Azure Activity Log Alert rules are supported on Global, West Europe and North Europe regions.
- Map<String,String>
- The tags of the resource.
- actions
ActionList 
- The actions that will activate when the condition is met.
- condition
AlertRule All Of Condition 
- The condition that will cause this alert to activate.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- scopes string[]
- A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
- activityLog stringAlert Name 
- The name of the Activity Log Alert rule.
- description string
- A description of this Activity Log Alert rule.
- enabled boolean
- Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
- location string
- The location of the resource. Azure Activity Log Alert rules are supported on Global, West Europe and North Europe regions.
- {[key: string]: string}
- The tags of the resource.
- actions
ActionList Args 
- The actions that will activate when the condition is met.
- condition
AlertRule All Of Condition Args 
- The condition that will cause this alert to activate.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- scopes Sequence[str]
- A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
- activity_log_ stralert_ name 
- The name of the Activity Log Alert rule.
- description str
- A description of this Activity Log Alert rule.
- enabled bool
- Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
- location str
- The location of the resource. Azure Activity Log Alert rules are supported on Global, West Europe and North Europe regions.
- Mapping[str, str]
- The tags of the resource.
- actions Property Map
- The actions that will activate when the condition is met.
- condition Property Map
- The condition that will cause this alert to activate.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- scopes List<String>
- A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
- activityLog StringAlert Name 
- The name of the Activity Log Alert rule.
- description String
- A description of this Activity Log Alert rule.
- enabled Boolean
- Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
- location String
- The location of the resource. Azure Activity Log Alert rules are supported on Global, West Europe and North Europe regions.
- Map<String>
- The tags of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ActivityLogAlert resource produces the following output properties:
Supporting Types
ActionGroup, ActionGroupArgs    
- ActionGroup stringId 
- The resource ID of the Action Group. This cannot be null or empty.
- WebhookProperties Dictionary<string, string>
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- ActionGroup stringId 
- The resource ID of the Action Group. This cannot be null or empty.
- WebhookProperties map[string]string
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- actionGroup StringId 
- The resource ID of the Action Group. This cannot be null or empty.
- webhookProperties Map<String,String>
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- actionGroup stringId 
- The resource ID of the Action Group. This cannot be null or empty.
- webhookProperties {[key: string]: string}
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- action_group_ strid 
- The resource ID of the Action Group. This cannot be null or empty.
- webhook_properties Mapping[str, str]
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- actionGroup StringId 
- The resource ID of the Action Group. This cannot be null or empty.
- webhookProperties Map<String>
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
ActionGroupResponse, ActionGroupResponseArgs      
- ActionGroup stringId 
- The resource ID of the Action Group. This cannot be null or empty.
- WebhookProperties Dictionary<string, string>
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- ActionGroup stringId 
- The resource ID of the Action Group. This cannot be null or empty.
- WebhookProperties map[string]string
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- actionGroup StringId 
- The resource ID of the Action Group. This cannot be null or empty.
- webhookProperties Map<String,String>
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- actionGroup stringId 
- The resource ID of the Action Group. This cannot be null or empty.
- webhookProperties {[key: string]: string}
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- action_group_ strid 
- The resource ID of the Action Group. This cannot be null or empty.
- webhook_properties Mapping[str, str]
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
- actionGroup StringId 
- The resource ID of the Action Group. This cannot be null or empty.
- webhookProperties Map<String>
- the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
ActionList, ActionListArgs    
- ActionGroups List<Pulumi.Azure Native. Insights. Inputs. Action Group> 
- The list of the Action Groups.
- ActionGroups []ActionGroup Type 
- The list of the Action Groups.
- actionGroups List<ActionGroup> 
- The list of the Action Groups.
- actionGroups ActionGroup[] 
- The list of the Action Groups.
- action_groups Sequence[ActionGroup] 
- The list of the Action Groups.
- actionGroups List<Property Map>
- The list of the Action Groups.
ActionListResponse, ActionListResponseArgs      
- ActionGroups List<Pulumi.Azure Native. Insights. Inputs. Action Group Response> 
- The list of the Action Groups.
- ActionGroups []ActionGroup Response 
- The list of the Action Groups.
- actionGroups List<ActionGroup Response> 
- The list of the Action Groups.
- actionGroups ActionGroup Response[] 
- The list of the Action Groups.
- action_groups Sequence[ActionGroup Response] 
- The list of the Action Groups.
- actionGroups List<Property Map>
- The list of the Action Groups.
AlertRuleAllOfCondition, AlertRuleAllOfConditionArgs          
- AllOf List<Pulumi.Azure Native. Insights. Inputs. Alert Rule Any Of Or Leaf Condition> 
- The list of Activity Log Alert rule conditions.
- AllOf []AlertRule Any Of Or Leaf Condition 
- The list of Activity Log Alert rule conditions.
- allOf List<AlertRule Any Of Or Leaf Condition> 
- The list of Activity Log Alert rule conditions.
- allOf AlertRule Any Of Or Leaf Condition[] 
- The list of Activity Log Alert rule conditions.
- all_of Sequence[AlertRule Any Of Or Leaf Condition] 
- The list of Activity Log Alert rule conditions.
- allOf List<Property Map>
- The list of Activity Log Alert rule conditions.
AlertRuleAllOfConditionResponse, AlertRuleAllOfConditionResponseArgs            
- AllOf List<Pulumi.Azure Native. Insights. Inputs. Alert Rule Any Of Or Leaf Condition Response> 
- The list of Activity Log Alert rule conditions.
- AllOf []AlertRule Any Of Or Leaf Condition Response 
- The list of Activity Log Alert rule conditions.
- allOf List<AlertRule Any Of Or Leaf Condition Response> 
- The list of Activity Log Alert rule conditions.
- allOf AlertRule Any Of Or Leaf Condition Response[] 
- The list of Activity Log Alert rule conditions.
- all_of Sequence[AlertRule Any Of Or Leaf Condition Response] 
- The list of Activity Log Alert rule conditions.
- allOf List<Property Map>
- The list of Activity Log Alert rule conditions.
AlertRuleAnyOfOrLeafCondition, AlertRuleAnyOfOrLeafConditionArgs              
- AnyOf List<Pulumi.Azure Native. Insights. Inputs. Alert Rule Leaf Condition> 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- ContainsAny List<string>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- AnyOf []AlertRule Leaf Condition 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- ContainsAny []string
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- anyOf List<AlertRule Leaf Condition> 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals_ String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- anyOf AlertRule Leaf Condition[] 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- containsAny string[]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- any_of Sequence[AlertRule Leaf Condition] 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- contains_any Sequence[str]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals str
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field str
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- anyOf List<Property Map>
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
AlertRuleAnyOfOrLeafConditionResponse, AlertRuleAnyOfOrLeafConditionResponseArgs                
- AnyOf List<Pulumi.Azure Native. Insights. Inputs. Alert Rule Leaf Condition Response> 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- ContainsAny List<string>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- AnyOf []AlertRule Leaf Condition Response 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- ContainsAny []string
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- anyOf List<AlertRule Leaf Condition Response> 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals_ String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- anyOf AlertRule Leaf Condition Response[] 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- containsAny string[]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- any_of Sequence[AlertRule Leaf Condition Response] 
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- contains_any Sequence[str]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals str
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field str
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- anyOf List<Property Map>
- An Activity Log Alert rule condition that is met when at least one of its member leaf conditions are met.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
AlertRuleLeafCondition, AlertRuleLeafConditionArgs        
- ContainsAny List<string>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- ContainsAny []string
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals_ String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- containsAny string[]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- contains_any Sequence[str]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals str
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field str
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
AlertRuleLeafConditionResponse, AlertRuleLeafConditionResponseArgs          
- ContainsAny List<string>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- ContainsAny []string
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- Equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- Field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals_ String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- containsAny string[]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals string
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field string
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- contains_any Sequence[str]
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals str
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field str
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
- containsAny List<String>
- The value of the event's field will be compared to the values in this array (case-insensitive) to determine if the condition is met.
- equals String
- The value of the event's field will be compared to this value (case-insensitive) to determine if the condition is met.
- field String
- The name of the Activity Log event's field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties'.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:insights:ActivityLogAlert SampleActivityLogAlertRuleWithContainsAny /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/activityLogAlerts/{activityLogAlertName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0