1. Packages
  2. Azure Classic
  3. API Docs
  4. monitoring
  5. getActionGroup

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.monitoring.getActionGroup

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

    Use this data source to access the properties of an Action Group.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Azure.Monitoring.GetActionGroup.Invoke(new()
        {
            ResourceGroupName = "example-rg",
            Name = "tfex-actiongroup",
        });
    
        return new Dictionary<string, object?>
        {
            ["actionGroupId"] = example.Apply(getActionGroupResult => getActionGroupResult.Id),
        };
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/monitoring"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := monitoring.LookupActionGroup(ctx, &monitoring.LookupActionGroupArgs{
    			ResourceGroupName: "example-rg",
    			Name:              "tfex-actiongroup",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("actionGroupId", example.Id)
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.monitoring.MonitoringFunctions;
    import com.pulumi.azure.monitoring.inputs.GetActionGroupArgs;
    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) {
            final var example = MonitoringFunctions.getActionGroup(GetActionGroupArgs.builder()
                .resourceGroupName("example-rg")
                .name("tfex-actiongroup")
                .build());
    
            ctx.export("actionGroupId", example.applyValue(getActionGroupResult -> getActionGroupResult.id()));
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.monitoring.get_action_group(resource_group_name="example-rg",
        name="tfex-actiongroup")
    pulumi.export("actionGroupId", example.id)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = azure.monitoring.getActionGroup({
        resourceGroupName: "example-rg",
        name: "tfex-actiongroup",
    });
    export const actionGroupId = example.then(example => example.id);
    
    variables:
      example:
        fn::invoke:
          Function: azure:monitoring:getActionGroup
          Arguments:
            resourceGroupName: example-rg
            name: tfex-actiongroup
    outputs:
      actionGroupId: ${example.id}
    

    Using getActionGroup

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getActionGroup(args: GetActionGroupArgs, opts?: InvokeOptions): Promise<GetActionGroupResult>
    function getActionGroupOutput(args: GetActionGroupOutputArgs, opts?: InvokeOptions): Output<GetActionGroupResult>
    def get_action_group(name: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetActionGroupResult
    def get_action_group_output(name: Optional[pulumi.Input[str]] = None,
                         resource_group_name: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetActionGroupResult]
    func LookupActionGroup(ctx *Context, args *LookupActionGroupArgs, opts ...InvokeOption) (*LookupActionGroupResult, error)
    func LookupActionGroupOutput(ctx *Context, args *LookupActionGroupOutputArgs, opts ...InvokeOption) LookupActionGroupResultOutput

    > Note: This function is named LookupActionGroup in the Go SDK.

    public static class GetActionGroup 
    {
        public static Task<GetActionGroupResult> InvokeAsync(GetActionGroupArgs args, InvokeOptions? opts = null)
        public static Output<GetActionGroupResult> Invoke(GetActionGroupInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetActionGroupResult> getActionGroup(GetActionGroupArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: azure:monitoring/getActionGroup:getActionGroup
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string

    Specifies the name of the Action Group.

    ResourceGroupName string

    Specifies the name of the resource group the Action Group is located in.

    Name string

    Specifies the name of the Action Group.

    ResourceGroupName string

    Specifies the name of the resource group the Action Group is located in.

    name String

    Specifies the name of the Action Group.

    resourceGroupName String

    Specifies the name of the resource group the Action Group is located in.

    name string

    Specifies the name of the Action Group.

    resourceGroupName string

    Specifies the name of the resource group the Action Group is located in.

    name str

    Specifies the name of the Action Group.

    resource_group_name str

    Specifies the name of the resource group the Action Group is located in.

    name String

    Specifies the name of the Action Group.

    resourceGroupName String

    Specifies the name of the resource group the Action Group is located in.

    getActionGroup Result

    The following output properties are available:

    ArmRoleReceivers List<GetActionGroupArmRoleReceiver>

    One or more arm_role_receiver blocks as defined below.

    AutomationRunbookReceivers List<GetActionGroupAutomationRunbookReceiver>

    One or more automation_runbook_receiver blocks as defined below.

    AzureAppPushReceivers List<GetActionGroupAzureAppPushReceiver>

    One or more azure_app_push_receiver blocks as defined below.

    AzureFunctionReceivers List<GetActionGroupAzureFunctionReceiver>

    One or more azure_function_receiver blocks as defined below.

    EmailReceivers List<GetActionGroupEmailReceiver>

    One or more email_receiver blocks as defined below.

    Enabled bool

    Whether this action group is enabled.

    EventHubReceivers List<GetActionGroupEventHubReceiver>

    One or more event_hub_receiver blocks as defined below.

    Id string

    The provider-assigned unique ID for this managed resource.

    ItsmReceivers List<GetActionGroupItsmReceiver>

    One or more itsm_receiver blocks as defined below.

    LogicAppReceivers List<GetActionGroupLogicAppReceiver>

    One or more logic_app_receiver blocks as defined below.

    Name string

    The name of the webhook receiver.

    ResourceGroupName string
    ShortName string

    The short name of the action group.

    SmsReceivers List<GetActionGroupSmsReceiver>

    One or more sms_receiver blocks as defined below.

    VoiceReceivers List<GetActionGroupVoiceReceiver>

    One or more voice_receiver blocks as defined below.

    WebhookReceivers List<GetActionGroupWebhookReceiver>

    One or more webhook_receiver blocks as defined below.

    ArmRoleReceivers []GetActionGroupArmRoleReceiver

    One or more arm_role_receiver blocks as defined below.

    AutomationRunbookReceivers []GetActionGroupAutomationRunbookReceiver

    One or more automation_runbook_receiver blocks as defined below.

    AzureAppPushReceivers []GetActionGroupAzureAppPushReceiver

    One or more azure_app_push_receiver blocks as defined below.

    AzureFunctionReceivers []GetActionGroupAzureFunctionReceiver

    One or more azure_function_receiver blocks as defined below.

    EmailReceivers []GetActionGroupEmailReceiver

    One or more email_receiver blocks as defined below.

    Enabled bool

    Whether this action group is enabled.

    EventHubReceivers []GetActionGroupEventHubReceiver

    One or more event_hub_receiver blocks as defined below.

    Id string

    The provider-assigned unique ID for this managed resource.

    ItsmReceivers []GetActionGroupItsmReceiver

    One or more itsm_receiver blocks as defined below.

    LogicAppReceivers []GetActionGroupLogicAppReceiver

    One or more logic_app_receiver blocks as defined below.

    Name string

    The name of the webhook receiver.

    ResourceGroupName string
    ShortName string

    The short name of the action group.

    SmsReceivers []GetActionGroupSmsReceiver

    One or more sms_receiver blocks as defined below.

    VoiceReceivers []GetActionGroupVoiceReceiver

    One or more voice_receiver blocks as defined below.

    WebhookReceivers []GetActionGroupWebhookReceiver

    One or more webhook_receiver blocks as defined below.

    armRoleReceivers List<GetActionGroupArmRoleReceiver>

    One or more arm_role_receiver blocks as defined below.

    automationRunbookReceivers List<GetActionGroupAutomationRunbookReceiver>

    One or more automation_runbook_receiver blocks as defined below.

    azureAppPushReceivers List<GetActionGroupAzureAppPushReceiver>

    One or more azure_app_push_receiver blocks as defined below.

    azureFunctionReceivers List<GetActionGroupAzureFunctionReceiver>

    One or more azure_function_receiver blocks as defined below.

    emailReceivers List<GetActionGroupEmailReceiver>

    One or more email_receiver blocks as defined below.

    enabled Boolean

    Whether this action group is enabled.

    eventHubReceivers List<GetActionGroupEventHubReceiver>

    One or more event_hub_receiver blocks as defined below.

    id String

    The provider-assigned unique ID for this managed resource.

    itsmReceivers List<GetActionGroupItsmReceiver>

    One or more itsm_receiver blocks as defined below.

    logicAppReceivers List<GetActionGroupLogicAppReceiver>

    One or more logic_app_receiver blocks as defined below.

    name String

    The name of the webhook receiver.

    resourceGroupName String
    shortName String

    The short name of the action group.

    smsReceivers List<GetActionGroupSmsReceiver>

    One or more sms_receiver blocks as defined below.

    voiceReceivers List<GetActionGroupVoiceReceiver>

    One or more voice_receiver blocks as defined below.

    webhookReceivers List<GetActionGroupWebhookReceiver>

    One or more webhook_receiver blocks as defined below.

    armRoleReceivers GetActionGroupArmRoleReceiver[]

    One or more arm_role_receiver blocks as defined below.

    automationRunbookReceivers GetActionGroupAutomationRunbookReceiver[]

    One or more automation_runbook_receiver blocks as defined below.

    azureAppPushReceivers GetActionGroupAzureAppPushReceiver[]

    One or more azure_app_push_receiver blocks as defined below.

    azureFunctionReceivers GetActionGroupAzureFunctionReceiver[]

    One or more azure_function_receiver blocks as defined below.

    emailReceivers GetActionGroupEmailReceiver[]

    One or more email_receiver blocks as defined below.

    enabled boolean

    Whether this action group is enabled.

    eventHubReceivers GetActionGroupEventHubReceiver[]

    One or more event_hub_receiver blocks as defined below.

    id string

    The provider-assigned unique ID for this managed resource.

    itsmReceivers GetActionGroupItsmReceiver[]

    One or more itsm_receiver blocks as defined below.

    logicAppReceivers GetActionGroupLogicAppReceiver[]

    One or more logic_app_receiver blocks as defined below.

    name string

    The name of the webhook receiver.

    resourceGroupName string
    shortName string

    The short name of the action group.

    smsReceivers GetActionGroupSmsReceiver[]

    One or more sms_receiver blocks as defined below.

    voiceReceivers GetActionGroupVoiceReceiver[]

    One or more voice_receiver blocks as defined below.

    webhookReceivers GetActionGroupWebhookReceiver[]

    One or more webhook_receiver blocks as defined below.

    arm_role_receivers Sequence[GetActionGroupArmRoleReceiver]

    One or more arm_role_receiver blocks as defined below.

    automation_runbook_receivers Sequence[GetActionGroupAutomationRunbookReceiver]

    One or more automation_runbook_receiver blocks as defined below.

    azure_app_push_receivers Sequence[GetActionGroupAzureAppPushReceiver]

    One or more azure_app_push_receiver blocks as defined below.

    azure_function_receivers Sequence[GetActionGroupAzureFunctionReceiver]

    One or more azure_function_receiver blocks as defined below.

    email_receivers Sequence[GetActionGroupEmailReceiver]

    One or more email_receiver blocks as defined below.

    enabled bool

    Whether this action group is enabled.

    event_hub_receivers Sequence[GetActionGroupEventHubReceiver]

    One or more event_hub_receiver blocks as defined below.

    id str

    The provider-assigned unique ID for this managed resource.

    itsm_receivers Sequence[GetActionGroupItsmReceiver]

    One or more itsm_receiver blocks as defined below.

    logic_app_receivers Sequence[GetActionGroupLogicAppReceiver]

    One or more logic_app_receiver blocks as defined below.

    name str

    The name of the webhook receiver.

    resource_group_name str
    short_name str

    The short name of the action group.

    sms_receivers Sequence[GetActionGroupSmsReceiver]

    One or more sms_receiver blocks as defined below.

    voice_receivers Sequence[GetActionGroupVoiceReceiver]

    One or more voice_receiver blocks as defined below.

    webhook_receivers Sequence[GetActionGroupWebhookReceiver]

    One or more webhook_receiver blocks as defined below.

    armRoleReceivers List<Property Map>

    One or more arm_role_receiver blocks as defined below.

    automationRunbookReceivers List<Property Map>

    One or more automation_runbook_receiver blocks as defined below.

    azureAppPushReceivers List<Property Map>

    One or more azure_app_push_receiver blocks as defined below.

    azureFunctionReceivers List<Property Map>

    One or more azure_function_receiver blocks as defined below.

    emailReceivers List<Property Map>

    One or more email_receiver blocks as defined below.

    enabled Boolean

    Whether this action group is enabled.

    eventHubReceivers List<Property Map>

    One or more event_hub_receiver blocks as defined below.

    id String

    The provider-assigned unique ID for this managed resource.

    itsmReceivers List<Property Map>

    One or more itsm_receiver blocks as defined below.

    logicAppReceivers List<Property Map>

    One or more logic_app_receiver blocks as defined below.

    name String

    The name of the webhook receiver.

    resourceGroupName String
    shortName String

    The short name of the action group.

    smsReceivers List<Property Map>

    One or more sms_receiver blocks as defined below.

    voiceReceivers List<Property Map>

    One or more voice_receiver blocks as defined below.

    webhookReceivers List<Property Map>

    One or more webhook_receiver blocks as defined below.

    Supporting Types

    GetActionGroupArmRoleReceiver

    Name string

    Specifies the name of the Action Group.

    RoleId string

    The arm role id.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    Name string

    Specifies the name of the Action Group.

    RoleId string

    The arm role id.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    name String

    Specifies the name of the Action Group.

    roleId String

    The arm role id.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    name string

    Specifies the name of the Action Group.

    roleId string

    The arm role id.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    name str

    Specifies the name of the Action Group.

    role_id str

    The arm role id.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    name String

    Specifies the name of the Action Group.

    roleId String

    The arm role id.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    GetActionGroupAutomationRunbookReceiver

    AutomationAccountId string

    The automation account ID which holds this runbook and authenticates to Azure resources.

    IsGlobalRunbook bool

    Indicates whether this instance is global runbook.

    Name string

    Specifies the name of the Action Group.

    RunbookName string

    The name for this runbook.

    ServiceUri string

    The URI where webhooks should be sent.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    WebhookResourceId string

    The resource id for webhook linked to this runbook.

    AutomationAccountId string

    The automation account ID which holds this runbook and authenticates to Azure resources.

    IsGlobalRunbook bool

    Indicates whether this instance is global runbook.

    Name string

    Specifies the name of the Action Group.

    RunbookName string

    The name for this runbook.

    ServiceUri string

    The URI where webhooks should be sent.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    WebhookResourceId string

    The resource id for webhook linked to this runbook.

    automationAccountId String

    The automation account ID which holds this runbook and authenticates to Azure resources.

    isGlobalRunbook Boolean

    Indicates whether this instance is global runbook.

    name String

    Specifies the name of the Action Group.

    runbookName String

    The name for this runbook.

    serviceUri String

    The URI where webhooks should be sent.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    webhookResourceId String

    The resource id for webhook linked to this runbook.

    automationAccountId string

    The automation account ID which holds this runbook and authenticates to Azure resources.

    isGlobalRunbook boolean

    Indicates whether this instance is global runbook.

    name string

    Specifies the name of the Action Group.

    runbookName string

    The name for this runbook.

    serviceUri string

    The URI where webhooks should be sent.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    webhookResourceId string

    The resource id for webhook linked to this runbook.

    automation_account_id str

    The automation account ID which holds this runbook and authenticates to Azure resources.

    is_global_runbook bool

    Indicates whether this instance is global runbook.

    name str

    Specifies the name of the Action Group.

    runbook_name str

    The name for this runbook.

    service_uri str

    The URI where webhooks should be sent.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    webhook_resource_id str

    The resource id for webhook linked to this runbook.

    automationAccountId String

    The automation account ID which holds this runbook and authenticates to Azure resources.

    isGlobalRunbook Boolean

    Indicates whether this instance is global runbook.

    name String

    Specifies the name of the Action Group.

    runbookName String

    The name for this runbook.

    serviceUri String

    The URI where webhooks should be sent.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    webhookResourceId String

    The resource id for webhook linked to this runbook.

    GetActionGroupAzureAppPushReceiver

    EmailAddress string

    The email address of this receiver.

    Name string

    Specifies the name of the Action Group.

    EmailAddress string

    The email address of this receiver.

    Name string

    Specifies the name of the Action Group.

    emailAddress String

    The email address of this receiver.

    name String

    Specifies the name of the Action Group.

    emailAddress string

    The email address of this receiver.

    name string

    Specifies the name of the Action Group.

    email_address str

    The email address of this receiver.

    name str

    Specifies the name of the Action Group.

    emailAddress String

    The email address of this receiver.

    name String

    Specifies the name of the Action Group.

    GetActionGroupAzureFunctionReceiver

    FunctionAppResourceId string

    The Azure resource ID of the function app.

    FunctionName string

    The function name in the function app.

    HttpTriggerUrl string

    The HTTP trigger url where HTTP request sent to.

    Name string

    Specifies the name of the Action Group.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    FunctionAppResourceId string

    The Azure resource ID of the function app.

    FunctionName string

    The function name in the function app.

    HttpTriggerUrl string

    The HTTP trigger url where HTTP request sent to.

    Name string

    Specifies the name of the Action Group.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    functionAppResourceId String

    The Azure resource ID of the function app.

    functionName String

    The function name in the function app.

    httpTriggerUrl String

    The HTTP trigger url where HTTP request sent to.

    name String

    Specifies the name of the Action Group.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    functionAppResourceId string

    The Azure resource ID of the function app.

    functionName string

    The function name in the function app.

    httpTriggerUrl string

    The HTTP trigger url where HTTP request sent to.

    name string

    Specifies the name of the Action Group.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    function_app_resource_id str

    The Azure resource ID of the function app.

    function_name str

    The function name in the function app.

    http_trigger_url str

    The HTTP trigger url where HTTP request sent to.

    name str

    Specifies the name of the Action Group.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    functionAppResourceId String

    The Azure resource ID of the function app.

    functionName String

    The function name in the function app.

    httpTriggerUrl String

    The HTTP trigger url where HTTP request sent to.

    name String

    Specifies the name of the Action Group.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    GetActionGroupEmailReceiver

    EmailAddress string

    The email address of this receiver.

    Name string

    Specifies the name of the Action Group.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    EmailAddress string

    The email address of this receiver.

    Name string

    Specifies the name of the Action Group.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    emailAddress String

    The email address of this receiver.

    name String

    Specifies the name of the Action Group.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    emailAddress string

    The email address of this receiver.

    name string

    Specifies the name of the Action Group.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    email_address str

    The email address of this receiver.

    name str

    Specifies the name of the Action Group.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    emailAddress String

    The email address of this receiver.

    name String

    Specifies the name of the Action Group.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    GetActionGroupEventHubReceiver

    EventHubId string

    The resource ID of the respective Event Hub.

    Deprecated:

    This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.

    EventHubName string

    The name of the specific Event Hub queue.

    EventHubNamespace string

    The namespace name of the Event Hub.

    Name string

    Specifies the name of the Action Group.

    SubscriptionId string

    The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.

    TenantId string

    The Tenant ID for the subscription containing this Event Hub.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    EventHubId string

    The resource ID of the respective Event Hub.

    Deprecated:

    This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.

    EventHubName string

    The name of the specific Event Hub queue.

    EventHubNamespace string

    The namespace name of the Event Hub.

    Name string

    Specifies the name of the Action Group.

    SubscriptionId string

    The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.

    TenantId string

    The Tenant ID for the subscription containing this Event Hub.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    eventHubId String

    The resource ID of the respective Event Hub.

    Deprecated:

    This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.

    eventHubName String

    The name of the specific Event Hub queue.

    eventHubNamespace String

    The namespace name of the Event Hub.

    name String

    Specifies the name of the Action Group.

    subscriptionId String

    The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.

    tenantId String

    The Tenant ID for the subscription containing this Event Hub.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    eventHubId string

    The resource ID of the respective Event Hub.

    Deprecated:

    This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.

    eventHubName string

    The name of the specific Event Hub queue.

    eventHubNamespace string

    The namespace name of the Event Hub.

    name string

    Specifies the name of the Action Group.

    subscriptionId string

    The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.

    tenantId string

    The Tenant ID for the subscription containing this Event Hub.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    event_hub_id str

    The resource ID of the respective Event Hub.

    Deprecated:

    This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.

    event_hub_name str

    The name of the specific Event Hub queue.

    event_hub_namespace str

    The namespace name of the Event Hub.

    name str

    Specifies the name of the Action Group.

    subscription_id str

    The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.

    tenant_id str

    The Tenant ID for the subscription containing this Event Hub.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    eventHubId String

    The resource ID of the respective Event Hub.

    Deprecated:

    This property is deprecated and will be removed in version 4.0 of the provider, please use 'event_hub_name' and 'event_hub_namespace' instead.

    eventHubName String

    The name of the specific Event Hub queue.

    eventHubNamespace String

    The namespace name of the Event Hub.

    name String

    Specifies the name of the Action Group.

    subscriptionId String

    The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.

    tenantId String

    The Tenant ID for the subscription containing this Event Hub.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    GetActionGroupItsmReceiver

    ConnectionId string

    The unique connection identifier of the ITSM connection.

    Name string

    Specifies the name of the Action Group.

    Region string

    The region of the workspace.

    TicketConfiguration string

    A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

    WorkspaceId string

    The Azure Log Analytics workspace ID where this connection is defined.

    ConnectionId string

    The unique connection identifier of the ITSM connection.

    Name string

    Specifies the name of the Action Group.

    Region string

    The region of the workspace.

    TicketConfiguration string

    A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

    WorkspaceId string

    The Azure Log Analytics workspace ID where this connection is defined.

    connectionId String

    The unique connection identifier of the ITSM connection.

    name String

    Specifies the name of the Action Group.

    region String

    The region of the workspace.

    ticketConfiguration String

    A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

    workspaceId String

    The Azure Log Analytics workspace ID where this connection is defined.

    connectionId string

    The unique connection identifier of the ITSM connection.

    name string

    Specifies the name of the Action Group.

    region string

    The region of the workspace.

    ticketConfiguration string

    A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

    workspaceId string

    The Azure Log Analytics workspace ID where this connection is defined.

    connection_id str

    The unique connection identifier of the ITSM connection.

    name str

    Specifies the name of the Action Group.

    region str

    The region of the workspace.

    ticket_configuration str

    A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

    workspace_id str

    The Azure Log Analytics workspace ID where this connection is defined.

    connectionId String

    The unique connection identifier of the ITSM connection.

    name String

    Specifies the name of the Action Group.

    region String

    The region of the workspace.

    ticketConfiguration String

    A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.

    workspaceId String

    The Azure Log Analytics workspace ID where this connection is defined.

    GetActionGroupLogicAppReceiver

    CallbackUrl string

    The callback url where HTTP request sent to.

    Name string

    Specifies the name of the Action Group.

    ResourceId string

    The Azure resource ID of the logic app.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    CallbackUrl string

    The callback url where HTTP request sent to.

    Name string

    Specifies the name of the Action Group.

    ResourceId string

    The Azure resource ID of the logic app.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    callbackUrl String

    The callback url where HTTP request sent to.

    name String

    Specifies the name of the Action Group.

    resourceId String

    The Azure resource ID of the logic app.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    callbackUrl string

    The callback url where HTTP request sent to.

    name string

    Specifies the name of the Action Group.

    resourceId string

    The Azure resource ID of the logic app.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    callback_url str

    The callback url where HTTP request sent to.

    name str

    Specifies the name of the Action Group.

    resource_id str

    The Azure resource ID of the logic app.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    callbackUrl String

    The callback url where HTTP request sent to.

    name String

    Specifies the name of the Action Group.

    resourceId String

    The Azure resource ID of the logic app.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    GetActionGroupSmsReceiver

    CountryCode string

    The country code of the voice receiver.

    Name string

    Specifies the name of the Action Group.

    PhoneNumber string

    The phone number of the voice receiver.

    CountryCode string

    The country code of the voice receiver.

    Name string

    Specifies the name of the Action Group.

    PhoneNumber string

    The phone number of the voice receiver.

    countryCode String

    The country code of the voice receiver.

    name String

    Specifies the name of the Action Group.

    phoneNumber String

    The phone number of the voice receiver.

    countryCode string

    The country code of the voice receiver.

    name string

    Specifies the name of the Action Group.

    phoneNumber string

    The phone number of the voice receiver.

    country_code str

    The country code of the voice receiver.

    name str

    Specifies the name of the Action Group.

    phone_number str

    The phone number of the voice receiver.

    countryCode String

    The country code of the voice receiver.

    name String

    Specifies the name of the Action Group.

    phoneNumber String

    The phone number of the voice receiver.

    GetActionGroupVoiceReceiver

    CountryCode string

    The country code of the voice receiver.

    Name string

    Specifies the name of the Action Group.

    PhoneNumber string

    The phone number of the voice receiver.

    CountryCode string

    The country code of the voice receiver.

    Name string

    Specifies the name of the Action Group.

    PhoneNumber string

    The phone number of the voice receiver.

    countryCode String

    The country code of the voice receiver.

    name String

    Specifies the name of the Action Group.

    phoneNumber String

    The phone number of the voice receiver.

    countryCode string

    The country code of the voice receiver.

    name string

    Specifies the name of the Action Group.

    phoneNumber string

    The phone number of the voice receiver.

    country_code str

    The country code of the voice receiver.

    name str

    Specifies the name of the Action Group.

    phone_number str

    The phone number of the voice receiver.

    countryCode String

    The country code of the voice receiver.

    name String

    Specifies the name of the Action Group.

    phoneNumber String

    The phone number of the voice receiver.

    GetActionGroupWebhookReceiver

    AadAuths List<GetActionGroupWebhookReceiverAadAuth>
    Name string

    Specifies the name of the Action Group.

    ServiceUri string

    The URI where webhooks should be sent.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    AadAuths []GetActionGroupWebhookReceiverAadAuth
    Name string

    Specifies the name of the Action Group.

    ServiceUri string

    The URI where webhooks should be sent.

    UseCommonAlertSchema bool

    Indicates whether to use common alert schema.

    aadAuths List<GetActionGroupWebhookReceiverAadAuth>
    name String

    Specifies the name of the Action Group.

    serviceUri String

    The URI where webhooks should be sent.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    aadAuths GetActionGroupWebhookReceiverAadAuth[]
    name string

    Specifies the name of the Action Group.

    serviceUri string

    The URI where webhooks should be sent.

    useCommonAlertSchema boolean

    Indicates whether to use common alert schema.

    aad_auths Sequence[GetActionGroupWebhookReceiverAadAuth]
    name str

    Specifies the name of the Action Group.

    service_uri str

    The URI where webhooks should be sent.

    use_common_alert_schema bool

    Indicates whether to use common alert schema.

    aadAuths List<Property Map>
    name String

    Specifies the name of the Action Group.

    serviceUri String

    The URI where webhooks should be sent.

    useCommonAlertSchema Boolean

    Indicates whether to use common alert schema.

    GetActionGroupWebhookReceiverAadAuth

    IdentifierUri string
    ObjectId string
    TenantId string

    The Tenant ID for the subscription containing this Event Hub.

    IdentifierUri string
    ObjectId string
    TenantId string

    The Tenant ID for the subscription containing this Event Hub.

    identifierUri String
    objectId String
    tenantId String

    The Tenant ID for the subscription containing this Event Hub.

    identifierUri string
    objectId string
    tenantId string

    The Tenant ID for the subscription containing this Event Hub.

    identifier_uri str
    object_id str
    tenant_id str

    The Tenant ID for the subscription containing this Event Hub.

    identifierUri String
    objectId String
    tenantId String

    The Tenant ID for the subscription containing this Event Hub.

    Package Details

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

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi