azure logo
Azure Classic v5.37.0, Mar 15 23

azure.monitoring.ActivityLogAlert

Manages an Activity Log Alert within Azure Monitor.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Location = "West Europe",
    });

    var mainActionGroup = new Azure.Monitoring.ActionGroup("mainActionGroup", new()
    {
        ResourceGroupName = example.Name,
        ShortName = "p0action",
        WebhookReceivers = new[]
        {
            new Azure.Monitoring.Inputs.ActionGroupWebhookReceiverArgs
            {
                Name = "callmyapi",
                ServiceUri = "http://example.com/alert",
            },
        },
    });

    var toMonitor = new Azure.Storage.Account("toMonitor", new()
    {
        ResourceGroupName = example.Name,
        Location = example.Location,
        AccountTier = "Standard",
        AccountReplicationType = "GRS",
    });

    var mainActivityLogAlert = new Azure.Monitoring.ActivityLogAlert("mainActivityLogAlert", new()
    {
        ResourceGroupName = example.Name,
        Scopes = new[]
        {
            example.Id,
        },
        Description = "This alert will monitor a specific storage account updates.",
        Criteria = new Azure.Monitoring.Inputs.ActivityLogAlertCriteriaArgs
        {
            ResourceId = toMonitor.Id,
            OperationName = "Microsoft.Storage/storageAccounts/write",
            Category = "Recommendation",
        },
        Actions = new[]
        {
            new Azure.Monitoring.Inputs.ActivityLogAlertActionArgs
            {
                ActionGroupId = mainActionGroup.Id,
                WebhookProperties = 
                {
                    { "from", "source" },
                },
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/monitoring"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
	"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{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		mainActionGroup, err := monitoring.NewActionGroup(ctx, "mainActionGroup", &monitoring.ActionGroupArgs{
			ResourceGroupName: example.Name,
			ShortName:         pulumi.String("p0action"),
			WebhookReceivers: monitoring.ActionGroupWebhookReceiverArray{
				&monitoring.ActionGroupWebhookReceiverArgs{
					Name:       pulumi.String("callmyapi"),
					ServiceUri: pulumi.String("http://example.com/alert"),
				},
			},
		})
		if err != nil {
			return err
		}
		toMonitor, err := storage.NewAccount(ctx, "toMonitor", &storage.AccountArgs{
			ResourceGroupName:      example.Name,
			Location:               example.Location,
			AccountTier:            pulumi.String("Standard"),
			AccountReplicationType: pulumi.String("GRS"),
		})
		if err != nil {
			return err
		}
		_, err = monitoring.NewActivityLogAlert(ctx, "mainActivityLogAlert", &monitoring.ActivityLogAlertArgs{
			ResourceGroupName: example.Name,
			Scopes: pulumi.StringArray{
				example.ID(),
			},
			Description: pulumi.String("This alert will monitor a specific storage account updates."),
			Criteria: &monitoring.ActivityLogAlertCriteriaArgs{
				ResourceId:    toMonitor.ID(),
				OperationName: pulumi.String("Microsoft.Storage/storageAccounts/write"),
				Category:      pulumi.String("Recommendation"),
			},
			Actions: monitoring.ActivityLogAlertActionArray{
				&monitoring.ActivityLogAlertActionArgs{
					ActionGroupId: mainActionGroup.ID(),
					WebhookProperties: pulumi.StringMap{
						"from": pulumi.String("source"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.monitoring.ActionGroup;
import com.pulumi.azure.monitoring.ActionGroupArgs;
import com.pulumi.azure.monitoring.inputs.ActionGroupWebhookReceiverArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.monitoring.ActivityLogAlert;
import com.pulumi.azure.monitoring.ActivityLogAlertArgs;
import com.pulumi.azure.monitoring.inputs.ActivityLogAlertCriteriaArgs;
import com.pulumi.azure.monitoring.inputs.ActivityLogAlertActionArgs;
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()        
            .location("West Europe")
            .build());

        var mainActionGroup = new ActionGroup("mainActionGroup", ActionGroupArgs.builder()        
            .resourceGroupName(example.name())
            .shortName("p0action")
            .webhookReceivers(ActionGroupWebhookReceiverArgs.builder()
                .name("callmyapi")
                .serviceUri("http://example.com/alert")
                .build())
            .build());

        var toMonitor = new Account("toMonitor", AccountArgs.builder()        
            .resourceGroupName(example.name())
            .location(example.location())
            .accountTier("Standard")
            .accountReplicationType("GRS")
            .build());

        var mainActivityLogAlert = new ActivityLogAlert("mainActivityLogAlert", ActivityLogAlertArgs.builder()        
            .resourceGroupName(example.name())
            .scopes(example.id())
            .description("This alert will monitor a specific storage account updates.")
            .criteria(ActivityLogAlertCriteriaArgs.builder()
                .resourceId(toMonitor.id())
                .operationName("Microsoft.Storage/storageAccounts/write")
                .category("Recommendation")
                .build())
            .actions(ActivityLogAlertActionArgs.builder()
                .actionGroupId(mainActionGroup.id())
                .webhookProperties(Map.of("from", "source"))
                .build())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example", location="West Europe")
main_action_group = azure.monitoring.ActionGroup("mainActionGroup",
    resource_group_name=example.name,
    short_name="p0action",
    webhook_receivers=[azure.monitoring.ActionGroupWebhookReceiverArgs(
        name="callmyapi",
        service_uri="http://example.com/alert",
    )])
to_monitor = azure.storage.Account("toMonitor",
    resource_group_name=example.name,
    location=example.location,
    account_tier="Standard",
    account_replication_type="GRS")
main_activity_log_alert = azure.monitoring.ActivityLogAlert("mainActivityLogAlert",
    resource_group_name=example.name,
    scopes=[example.id],
    description="This alert will monitor a specific storage account updates.",
    criteria=azure.monitoring.ActivityLogAlertCriteriaArgs(
        resource_id=to_monitor.id,
        operation_name="Microsoft.Storage/storageAccounts/write",
        category="Recommendation",
    ),
    actions=[azure.monitoring.ActivityLogAlertActionArgs(
        action_group_id=main_action_group.id,
        webhook_properties={
            "from": "source",
        },
    )])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {location: "West Europe"});
const mainActionGroup = new azure.monitoring.ActionGroup("mainActionGroup", {
    resourceGroupName: example.name,
    shortName: "p0action",
    webhookReceivers: [{
        name: "callmyapi",
        serviceUri: "http://example.com/alert",
    }],
});
const toMonitor = new azure.storage.Account("toMonitor", {
    resourceGroupName: example.name,
    location: example.location,
    accountTier: "Standard",
    accountReplicationType: "GRS",
});
const mainActivityLogAlert = new azure.monitoring.ActivityLogAlert("mainActivityLogAlert", {
    resourceGroupName: example.name,
    scopes: [example.id],
    description: "This alert will monitor a specific storage account updates.",
    criteria: {
        resourceId: toMonitor.id,
        operationName: "Microsoft.Storage/storageAccounts/write",
        category: "Recommendation",
    },
    actions: [{
        actionGroupId: mainActionGroup.id,
        webhookProperties: {
            from: "source",
        },
    }],
});
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  mainActionGroup:
    type: azure:monitoring:ActionGroup
    properties:
      resourceGroupName: ${example.name}
      shortName: p0action
      webhookReceivers:
        - name: callmyapi
          serviceUri: http://example.com/alert
  toMonitor:
    type: azure:storage:Account
    properties:
      resourceGroupName: ${example.name}
      location: ${example.location}
      accountTier: Standard
      accountReplicationType: GRS
  mainActivityLogAlert:
    type: azure:monitoring:ActivityLogAlert
    properties:
      resourceGroupName: ${example.name}
      scopes:
        - ${example.id}
      description: This alert will monitor a specific storage account updates.
      criteria:
        resourceId: ${toMonitor.id}
        operationName: Microsoft.Storage/storageAccounts/write
        category: Recommendation
      actions:
        - actionGroupId: ${mainActionGroup.id}
          webhookProperties:
            from: source

Create ActivityLogAlert Resource

new ActivityLogAlert(name: string, args: ActivityLogAlertArgs, opts?: CustomResourceOptions);
@overload
def ActivityLogAlert(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     actions: Optional[Sequence[ActivityLogAlertActionArgs]] = None,
                     criteria: Optional[ActivityLogAlertCriteriaArgs] = None,
                     description: Optional[str] = None,
                     enabled: Optional[bool] = None,
                     name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     scopes: Optional[Sequence[str]] = None,
                     tags: Optional[Mapping[str, str]] = None)
@overload
def ActivityLogAlert(resource_name: str,
                     args: ActivityLogAlertArgs,
                     opts: Optional[ResourceOptions] = 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:monitoring:ActivityLogAlert
properties: # The arguments to resource properties.
options: # 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.
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.

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

The ActivityLogAlert resource accepts the following input properties:

Criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

ResourceGroupName string

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

Scopes List<string>

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

Actions List<ActivityLogAlertActionArgs>

One or more action blocks as defined below.

Description string

The description of this activity log alert.

Enabled bool

Should this Activity Log Alert be enabled? Defaults to true.

Name string

The name of the activity log alert. Changing this forces a new resource to be created.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

Criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

ResourceGroupName string

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

Scopes []string

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

Actions []ActivityLogAlertActionArgs

One or more action blocks as defined below.

Description string

The description of this activity log alert.

Enabled bool

Should this Activity Log Alert be enabled? Defaults to true.

Name string

The name of the activity log alert. Changing this forces a new resource to be created.

Tags map[string]string

A mapping of tags to assign to the resource.

criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

resourceGroupName String

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes List<String>

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

actions List<ActivityLogAlertActionArgs>

One or more action blocks as defined below.

description String

The description of this activity log alert.

enabled Boolean

Should this Activity Log Alert be enabled? Defaults to true.

name String

The name of the activity log alert. Changing this forces a new resource to be created.

tags Map<String,String>

A mapping of tags to assign to the resource.

criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

resourceGroupName string

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes string[]

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

actions ActivityLogAlertActionArgs[]

One or more action blocks as defined below.

description string

The description of this activity log alert.

enabled boolean

Should this Activity Log Alert be enabled? Defaults to true.

name string

The name of the activity log alert. Changing this forces a new resource to be created.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

resource_group_name str

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes Sequence[str]

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

actions Sequence[ActivityLogAlertActionArgs]

One or more action blocks as defined below.

description str

The description of this activity log alert.

enabled bool

Should this Activity Log Alert be enabled? Defaults to true.

name str

The name of the activity log alert. Changing this forces a new resource to be created.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

criteria Property Map

A criteria block as defined below.

resourceGroupName String

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes List<String>

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

actions List<Property Map>

One or more action blocks as defined below.

description String

The description of this activity log alert.

enabled Boolean

Should this Activity Log Alert be enabled? Defaults to true.

name String

The name of the activity log alert. Changing this forces a new resource to be created.

tags Map<String>

A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the ActivityLogAlert 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 ActivityLogAlert Resource

Get an existing ActivityLogAlert 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?: ActivityLogAlertState, opts?: CustomResourceOptions): ActivityLogAlert
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        actions: Optional[Sequence[ActivityLogAlertActionArgs]] = None,
        criteria: Optional[ActivityLogAlertCriteriaArgs] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        scopes: Optional[Sequence[str]] = None,
        tags: Optional[Mapping[str, str]] = None) -> ActivityLogAlert
func GetActivityLogAlert(ctx *Context, name string, id IDInput, state *ActivityLogAlertState, opts ...ResourceOption) (*ActivityLogAlert, error)
public static ActivityLogAlert Get(string name, Input<string> id, ActivityLogAlertState? state, CustomResourceOptions? opts = null)
public static ActivityLogAlert get(String name, Output<String> id, ActivityLogAlertState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Actions List<ActivityLogAlertActionArgs>

One or more action blocks as defined below.

Criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

Description string

The description of this activity log alert.

Enabled bool

Should this Activity Log Alert be enabled? Defaults to true.

Name string

The name of the activity log alert. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

Scopes List<string>

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

Actions []ActivityLogAlertActionArgs

One or more action blocks as defined below.

Criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

Description string

The description of this activity log alert.

Enabled bool

Should this Activity Log Alert be enabled? Defaults to true.

Name string

The name of the activity log alert. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

Scopes []string

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

Tags map[string]string

A mapping of tags to assign to the resource.

actions List<ActivityLogAlertActionArgs>

One or more action blocks as defined below.

criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

description String

The description of this activity log alert.

enabled Boolean

Should this Activity Log Alert be enabled? Defaults to true.

name String

The name of the activity log alert. Changing this forces a new resource to be created.

resourceGroupName String

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes List<String>

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

tags Map<String,String>

A mapping of tags to assign to the resource.

actions ActivityLogAlertActionArgs[]

One or more action blocks as defined below.

criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

description string

The description of this activity log alert.

enabled boolean

Should this Activity Log Alert be enabled? Defaults to true.

name string

The name of the activity log alert. Changing this forces a new resource to be created.

resourceGroupName string

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes string[]

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

tags {[key: string]: string}

A mapping of tags to assign to the resource.

actions Sequence[ActivityLogAlertActionArgs]

One or more action blocks as defined below.

criteria ActivityLogAlertCriteriaArgs

A criteria block as defined below.

description str

The description of this activity log alert.

enabled bool

Should this Activity Log Alert be enabled? Defaults to true.

name str

The name of the activity log alert. Changing this forces a new resource to be created.

resource_group_name str

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes Sequence[str]

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

tags Mapping[str, str]

A mapping of tags to assign to the resource.

actions List<Property Map>

One or more action blocks as defined below.

criteria Property Map

A criteria block as defined below.

description String

The description of this activity log alert.

enabled Boolean

Should this Activity Log Alert be enabled? Defaults to true.

name String

The name of the activity log alert. Changing this forces a new resource to be created.

resourceGroupName String

The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.

scopes List<String>

The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).

tags Map<String>

A mapping of tags to assign to the resource.

Supporting Types

ActivityLogAlertAction

ActionGroupId string

The ID of the Action Group can be sourced from the azure.monitoring.ActionGroup resource.

WebhookProperties Dictionary<string, string>

The map of custom string properties to include with the post operation. These data are appended to the webhook payload.

ActionGroupId string

The ID of the Action Group can be sourced from the azure.monitoring.ActionGroup resource.

WebhookProperties map[string]string

The map of custom string properties to include with the post operation. These data are appended to the webhook payload.

actionGroupId String

The ID of the Action Group can be sourced from the azure.monitoring.ActionGroup resource.

webhookProperties Map<String,String>

The map of custom string properties to include with the post operation. These data are appended to the webhook payload.

actionGroupId string

The ID of the Action Group can be sourced from the azure.monitoring.ActionGroup resource.

webhookProperties {[key: string]: string}

The map of custom string properties to include with the post operation. These data are appended to the webhook payload.

action_group_id str

The ID of the Action Group can be sourced from the azure.monitoring.ActionGroup resource.

webhook_properties Mapping[str, str]

The map of custom string properties to include with the post operation. These data are appended to the webhook payload.

actionGroupId String

The ID of the Action Group can be sourced from the azure.monitoring.ActionGroup resource.

webhookProperties Map<String>

The map of custom string properties to include with the post operation. These data are appended to the webhook payload.

ActivityLogAlertCriteria

Category string

The category of the operation. Possible values are Administrative, Autoscale, Policy, Recommendation, ResourceHealth, Security and ServiceHealth.

Caller string

The email address or Azure Active Directory identifier of the user who performed the operation.

Level string

The severity level of the event. Possible values are Verbose, Informational, Warning, Error, and Critical.

OperationName string

The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: <resourceProvider>/<resourceType>/<operation>.

RecommendationCategory string

The recommendation category of the event. Possible values are Cost, Reliability, OperationalExcellence and Performance. It is only allowed when category is Recommendation.

RecommendationImpact string

The recommendation impact of the event. Possible values are High, Medium and Low. It is only allowed when category is Recommendation.

RecommendationType string

The recommendation type of the event. It is only allowed when category is Recommendation.

ResourceGroup string

The name of resource group monitored by the activity log alert.

ResourceHealths List<ActivityLogAlertCriteriaResourceHealth>

A block to define fine grain resource health settings.

ResourceId string

The specific resource monitored by the activity log alert. It should be within one of the scopes.

ResourceProvider string

The name of the resource provider monitored by the activity log alert.

ResourceType string

The resource type monitored by the activity log alert.

ServiceHealths List<ActivityLogAlertCriteriaServiceHealth>

A block to define fine grain service health settings.

Status string

The status of the event. For example, Started, Failed, or Succeeded.

SubStatus string

The sub status of the event.

Category string

The category of the operation. Possible values are Administrative, Autoscale, Policy, Recommendation, ResourceHealth, Security and ServiceHealth.

Caller string

The email address or Azure Active Directory identifier of the user who performed the operation.

Level string

The severity level of the event. Possible values are Verbose, Informational, Warning, Error, and Critical.

OperationName string

The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: <resourceProvider>/<resourceType>/<operation>.

RecommendationCategory string

The recommendation category of the event. Possible values are Cost, Reliability, OperationalExcellence and Performance. It is only allowed when category is Recommendation.

RecommendationImpact string

The recommendation impact of the event. Possible values are High, Medium and Low. It is only allowed when category is Recommendation.

RecommendationType string

The recommendation type of the event. It is only allowed when category is Recommendation.

ResourceGroup string

The name of resource group monitored by the activity log alert.

ResourceHealths []ActivityLogAlertCriteriaResourceHealth

A block to define fine grain resource health settings.

ResourceId string

The specific resource monitored by the activity log alert. It should be within one of the scopes.

ResourceProvider string

The name of the resource provider monitored by the activity log alert.

ResourceType string

The resource type monitored by the activity log alert.

ServiceHealths []ActivityLogAlertCriteriaServiceHealth

A block to define fine grain service health settings.

Status string

The status of the event. For example, Started, Failed, or Succeeded.

SubStatus string

The sub status of the event.

category String

The category of the operation. Possible values are Administrative, Autoscale, Policy, Recommendation, ResourceHealth, Security and ServiceHealth.

caller String

The email address or Azure Active Directory identifier of the user who performed the operation.

level String

The severity level of the event. Possible values are Verbose, Informational, Warning, Error, and Critical.

operationName String

The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: <resourceProvider>/<resourceType>/<operation>.

recommendationCategory String

The recommendation category of the event. Possible values are Cost, Reliability, OperationalExcellence and Performance. It is only allowed when category is Recommendation.

recommendationImpact String

The recommendation impact of the event. Possible values are High, Medium and Low. It is only allowed when category is Recommendation.

recommendationType String

The recommendation type of the event. It is only allowed when category is Recommendation.

resourceGroup String

The name of resource group monitored by the activity log alert.

resourceHealths List<ActivityLogAlertCriteriaResourceHealth>

A block to define fine grain resource health settings.

resourceId String

The specific resource monitored by the activity log alert. It should be within one of the scopes.

resourceProvider String

The name of the resource provider monitored by the activity log alert.

resourceType String

The resource type monitored by the activity log alert.

serviceHealths List<ActivityLogAlertCriteriaServiceHealth>

A block to define fine grain service health settings.

status String

The status of the event. For example, Started, Failed, or Succeeded.

subStatus String

The sub status of the event.

category string

The category of the operation. Possible values are Administrative, Autoscale, Policy, Recommendation, ResourceHealth, Security and ServiceHealth.

caller string

The email address or Azure Active Directory identifier of the user who performed the operation.

level string

The severity level of the event. Possible values are Verbose, Informational, Warning, Error, and Critical.

operationName string

The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: <resourceProvider>/<resourceType>/<operation>.

recommendationCategory string

The recommendation category of the event. Possible values are Cost, Reliability, OperationalExcellence and Performance. It is only allowed when category is Recommendation.

recommendationImpact string

The recommendation impact of the event. Possible values are High, Medium and Low. It is only allowed when category is Recommendation.

recommendationType string

The recommendation type of the event. It is only allowed when category is Recommendation.

resourceGroup string

The name of resource group monitored by the activity log alert.

resourceHealths ActivityLogAlertCriteriaResourceHealth[]

A block to define fine grain resource health settings.

resourceId string

The specific resource monitored by the activity log alert. It should be within one of the scopes.

resourceProvider string

The name of the resource provider monitored by the activity log alert.

resourceType string

The resource type monitored by the activity log alert.

serviceHealths ActivityLogAlertCriteriaServiceHealth[]

A block to define fine grain service health settings.

status string

The status of the event. For example, Started, Failed, or Succeeded.

subStatus string

The sub status of the event.

category str

The category of the operation. Possible values are Administrative, Autoscale, Policy, Recommendation, ResourceHealth, Security and ServiceHealth.

caller str

The email address or Azure Active Directory identifier of the user who performed the operation.

level str

The severity level of the event. Possible values are Verbose, Informational, Warning, Error, and Critical.

operation_name str

The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: <resourceProvider>/<resourceType>/<operation>.

recommendation_category str

The recommendation category of the event. Possible values are Cost, Reliability, OperationalExcellence and Performance. It is only allowed when category is Recommendation.

recommendation_impact str

The recommendation impact of the event. Possible values are High, Medium and Low. It is only allowed when category is Recommendation.

recommendation_type str

The recommendation type of the event. It is only allowed when category is Recommendation.

resource_group str

The name of resource group monitored by the activity log alert.

resource_healths Sequence[ActivityLogAlertCriteriaResourceHealth]

A block to define fine grain resource health settings.

resource_id str

The specific resource monitored by the activity log alert. It should be within one of the scopes.

resource_provider str

The name of the resource provider monitored by the activity log alert.

resource_type str

The resource type monitored by the activity log alert.

service_healths Sequence[ActivityLogAlertCriteriaServiceHealth]

A block to define fine grain service health settings.

status str

The status of the event. For example, Started, Failed, or Succeeded.

sub_status str

The sub status of the event.

category String

The category of the operation. Possible values are Administrative, Autoscale, Policy, Recommendation, ResourceHealth, Security and ServiceHealth.

caller String

The email address or Azure Active Directory identifier of the user who performed the operation.

level String

The severity level of the event. Possible values are Verbose, Informational, Warning, Error, and Critical.

operationName String

The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: <resourceProvider>/<resourceType>/<operation>.

recommendationCategory String

The recommendation category of the event. Possible values are Cost, Reliability, OperationalExcellence and Performance. It is only allowed when category is Recommendation.

recommendationImpact String

The recommendation impact of the event. Possible values are High, Medium and Low. It is only allowed when category is Recommendation.

recommendationType String

The recommendation type of the event. It is only allowed when category is Recommendation.

resourceGroup String

The name of resource group monitored by the activity log alert.

resourceHealths List<Property Map>

A block to define fine grain resource health settings.

resourceId String

The specific resource monitored by the activity log alert. It should be within one of the scopes.

resourceProvider String

The name of the resource provider monitored by the activity log alert.

resourceType String

The resource type monitored by the activity log alert.

serviceHealths List<Property Map>

A block to define fine grain service health settings.

status String

The status of the event. For example, Started, Failed, or Succeeded.

subStatus String

The sub status of the event.

ActivityLogAlertCriteriaResourceHealth

Currents List<string>

The current resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

Previouses List<string>

The previous resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

Reasons List<string>

The reason that will log an alert. Possible values are PlatformInitiated (such as a problem with the resource in an affected region of an Azure incident), UserInitiated (such as a shutdown request of a VM) and Unknown.

Currents []string

The current resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

Previouses []string

The previous resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

Reasons []string

The reason that will log an alert. Possible values are PlatformInitiated (such as a problem with the resource in an affected region of an Azure incident), UserInitiated (such as a shutdown request of a VM) and Unknown.

currents List<String>

The current resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

previouses List<String>

The previous resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

reasons List<String>

The reason that will log an alert. Possible values are PlatformInitiated (such as a problem with the resource in an affected region of an Azure incident), UserInitiated (such as a shutdown request of a VM) and Unknown.

currents string[]

The current resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

previouses string[]

The previous resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

reasons string[]

The reason that will log an alert. Possible values are PlatformInitiated (such as a problem with the resource in an affected region of an Azure incident), UserInitiated (such as a shutdown request of a VM) and Unknown.

currents Sequence[str]

The current resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

previouses Sequence[str]

The previous resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

reasons Sequence[str]

The reason that will log an alert. Possible values are PlatformInitiated (such as a problem with the resource in an affected region of an Azure incident), UserInitiated (such as a shutdown request of a VM) and Unknown.

currents List<String>

The current resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

previouses List<String>

The previous resource health statuses that will log an alert. Possible values are Available, Degraded, Unavailable and Unknown.

reasons List<String>

The reason that will log an alert. Possible values are PlatformInitiated (such as a problem with the resource in an affected region of an Azure incident), UserInitiated (such as a shutdown request of a VM) and Unknown.

ActivityLogAlertCriteriaServiceHealth

Events List<string>

Events this alert will monitor Possible values are Incident, Maintenance, Informational, ActionRequired and Security.

Locations List<string>

Locations this alert will monitor. For example, West Europe.

Services List<string>

Services this alert will monitor. For example, Activity Logs & Alerts, Action Groups. Defaults to all Services.

Events []string

Events this alert will monitor Possible values are Incident, Maintenance, Informational, ActionRequired and Security.

Locations []string

Locations this alert will monitor. For example, West Europe.

Services []string

Services this alert will monitor. For example, Activity Logs & Alerts, Action Groups. Defaults to all Services.

events List<String>

Events this alert will monitor Possible values are Incident, Maintenance, Informational, ActionRequired and Security.

locations List<String>

Locations this alert will monitor. For example, West Europe.

services List<String>

Services this alert will monitor. For example, Activity Logs & Alerts, Action Groups. Defaults to all Services.

events string[]

Events this alert will monitor Possible values are Incident, Maintenance, Informational, ActionRequired and Security.

locations string[]

Locations this alert will monitor. For example, West Europe.

services string[]

Services this alert will monitor. For example, Activity Logs & Alerts, Action Groups. Defaults to all Services.

events Sequence[str]

Events this alert will monitor Possible values are Incident, Maintenance, Informational, ActionRequired and Security.

locations Sequence[str]

Locations this alert will monitor. For example, West Europe.

services Sequence[str]

Services this alert will monitor. For example, Activity Logs & Alerts, Action Groups. Defaults to all Services.

events List<String>

Events this alert will monitor Possible values are Incident, Maintenance, Informational, ActionRequired and Security.

locations List<String>

Locations this alert will monitor. For example, West Europe.

services List<String>

Services this alert will monitor. For example, Activity Logs & Alerts, Action Groups. Defaults to all Services.

Import

Activity log alerts can be imported using the resource id, e.g.

 $ pulumi import azure:monitoring/activityLogAlert:ActivityLogAlert example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Insights/activityLogAlerts/myalertname

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.