1. Packages
  2. Azure Classic
  3. API Docs
  4. eventgrid
  5. SystemTopicEventSubscription

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.eventgrid.SystemTopicEventSubscription

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages an EventGrid System Topic Event Subscription.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-rg",
        location: "West Europe",
    });
    const exampleAccount = new azure.storage.Account("example", {
        name: "examplestorageaccount",
        resourceGroupName: example.name,
        location: example.location,
        accountTier: "Standard",
        accountReplicationType: "LRS",
        tags: {
            environment: "staging",
        },
    });
    const exampleQueue = new azure.storage.Queue("example", {
        name: "examplestoragequeue",
        storageAccountName: exampleAccount.name,
    });
    const exampleSystemTopic = new azure.eventgrid.SystemTopic("example", {
        name: "example-system-topic",
        location: "Global",
        resourceGroupName: example.name,
        sourceArmResourceId: example.id,
        topicType: "Microsoft.Resources.ResourceGroups",
    });
    const exampleSystemTopicEventSubscription = new azure.eventgrid.SystemTopicEventSubscription("example", {
        name: "example-event-subscription",
        systemTopic: exampleSystemTopic.name,
        resourceGroupName: example.name,
        storageQueueEndpoint: {
            storageAccountId: exampleAccount.id,
            queueName: exampleQueue.name,
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-rg",
        location="West Europe")
    example_account = azure.storage.Account("example",
        name="examplestorageaccount",
        resource_group_name=example.name,
        location=example.location,
        account_tier="Standard",
        account_replication_type="LRS",
        tags={
            "environment": "staging",
        })
    example_queue = azure.storage.Queue("example",
        name="examplestoragequeue",
        storage_account_name=example_account.name)
    example_system_topic = azure.eventgrid.SystemTopic("example",
        name="example-system-topic",
        location="Global",
        resource_group_name=example.name,
        source_arm_resource_id=example.id,
        topic_type="Microsoft.Resources.ResourceGroups")
    example_system_topic_event_subscription = azure.eventgrid.SystemTopicEventSubscription("example",
        name="example-event-subscription",
        system_topic=example_system_topic.name,
        resource_group_name=example.name,
        storage_queue_endpoint=azure.eventgrid.SystemTopicEventSubscriptionStorageQueueEndpointArgs(
            storage_account_id=example_account.id,
            queue_name=example_queue.name,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/eventgrid"
    	"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{
    			Name:     pulumi.String("example-rg"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
    			Name:                   pulumi.String("examplestorageaccount"),
    			ResourceGroupName:      example.Name,
    			Location:               example.Location,
    			AccountTier:            pulumi.String("Standard"),
    			AccountReplicationType: pulumi.String("LRS"),
    			Tags: pulumi.StringMap{
    				"environment": pulumi.String("staging"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleQueue, err := storage.NewQueue(ctx, "example", &storage.QueueArgs{
    			Name:               pulumi.String("examplestoragequeue"),
    			StorageAccountName: exampleAccount.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleSystemTopic, err := eventgrid.NewSystemTopic(ctx, "example", &eventgrid.SystemTopicArgs{
    			Name:                pulumi.String("example-system-topic"),
    			Location:            pulumi.String("Global"),
    			ResourceGroupName:   example.Name,
    			SourceArmResourceId: example.ID(),
    			TopicType:           pulumi.String("Microsoft.Resources.ResourceGroups"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = eventgrid.NewSystemTopicEventSubscription(ctx, "example", &eventgrid.SystemTopicEventSubscriptionArgs{
    			Name:              pulumi.String("example-event-subscription"),
    			SystemTopic:       exampleSystemTopic.Name,
    			ResourceGroupName: example.Name,
    			StorageQueueEndpoint: &eventgrid.SystemTopicEventSubscriptionStorageQueueEndpointArgs{
    				StorageAccountId: exampleAccount.ID(),
    				QueueName:        exampleQueue.Name,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-rg",
            Location = "West Europe",
        });
    
        var exampleAccount = new Azure.Storage.Account("example", new()
        {
            Name = "examplestorageaccount",
            ResourceGroupName = example.Name,
            Location = example.Location,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
            Tags = 
            {
                { "environment", "staging" },
            },
        });
    
        var exampleQueue = new Azure.Storage.Queue("example", new()
        {
            Name = "examplestoragequeue",
            StorageAccountName = exampleAccount.Name,
        });
    
        var exampleSystemTopic = new Azure.EventGrid.SystemTopic("example", new()
        {
            Name = "example-system-topic",
            Location = "Global",
            ResourceGroupName = example.Name,
            SourceArmResourceId = example.Id,
            TopicType = "Microsoft.Resources.ResourceGroups",
        });
    
        var exampleSystemTopicEventSubscription = new Azure.EventGrid.SystemTopicEventSubscription("example", new()
        {
            Name = "example-event-subscription",
            SystemTopic = exampleSystemTopic.Name,
            ResourceGroupName = example.Name,
            StorageQueueEndpoint = new Azure.EventGrid.Inputs.SystemTopicEventSubscriptionStorageQueueEndpointArgs
            {
                StorageAccountId = exampleAccount.Id,
                QueueName = exampleQueue.Name,
            },
        });
    
    });
    
    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.storage.Account;
    import com.pulumi.azure.storage.AccountArgs;
    import com.pulumi.azure.storage.Queue;
    import com.pulumi.azure.storage.QueueArgs;
    import com.pulumi.azure.eventgrid.SystemTopic;
    import com.pulumi.azure.eventgrid.SystemTopicArgs;
    import com.pulumi.azure.eventgrid.SystemTopicEventSubscription;
    import com.pulumi.azure.eventgrid.SystemTopicEventSubscriptionArgs;
    import com.pulumi.azure.eventgrid.inputs.SystemTopicEventSubscriptionStorageQueueEndpointArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-rg")
                .location("West Europe")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
                .name("examplestorageaccount")
                .resourceGroupName(example.name())
                .location(example.location())
                .accountTier("Standard")
                .accountReplicationType("LRS")
                .tags(Map.of("environment", "staging"))
                .build());
    
            var exampleQueue = new Queue("exampleQueue", QueueArgs.builder()        
                .name("examplestoragequeue")
                .storageAccountName(exampleAccount.name())
                .build());
    
            var exampleSystemTopic = new SystemTopic("exampleSystemTopic", SystemTopicArgs.builder()        
                .name("example-system-topic")
                .location("Global")
                .resourceGroupName(example.name())
                .sourceArmResourceId(example.id())
                .topicType("Microsoft.Resources.ResourceGroups")
                .build());
    
            var exampleSystemTopicEventSubscription = new SystemTopicEventSubscription("exampleSystemTopicEventSubscription", SystemTopicEventSubscriptionArgs.builder()        
                .name("example-event-subscription")
                .systemTopic(exampleSystemTopic.name())
                .resourceGroupName(example.name())
                .storageQueueEndpoint(SystemTopicEventSubscriptionStorageQueueEndpointArgs.builder()
                    .storageAccountId(exampleAccount.id())
                    .queueName(exampleQueue.name())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-rg
          location: West Europe
      exampleAccount:
        type: azure:storage:Account
        name: example
        properties:
          name: examplestorageaccount
          resourceGroupName: ${example.name}
          location: ${example.location}
          accountTier: Standard
          accountReplicationType: LRS
          tags:
            environment: staging
      exampleQueue:
        type: azure:storage:Queue
        name: example
        properties:
          name: examplestoragequeue
          storageAccountName: ${exampleAccount.name}
      exampleSystemTopic:
        type: azure:eventgrid:SystemTopic
        name: example
        properties:
          name: example-system-topic
          location: Global
          resourceGroupName: ${example.name}
          sourceArmResourceId: ${example.id}
          topicType: Microsoft.Resources.ResourceGroups
      exampleSystemTopicEventSubscription:
        type: azure:eventgrid:SystemTopicEventSubscription
        name: example
        properties:
          name: example-event-subscription
          systemTopic: ${exampleSystemTopic.name}
          resourceGroupName: ${example.name}
          storageQueueEndpoint:
            storageAccountId: ${exampleAccount.id}
            queueName: ${exampleQueue.name}
    

    Create SystemTopicEventSubscription Resource

    new SystemTopicEventSubscription(name: string, args: SystemTopicEventSubscriptionArgs, opts?: CustomResourceOptions);
    @overload
    def SystemTopicEventSubscription(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     advanced_filter: Optional[SystemTopicEventSubscriptionAdvancedFilterArgs] = None,
                                     advanced_filtering_on_arrays_enabled: Optional[bool] = None,
                                     azure_function_endpoint: Optional[SystemTopicEventSubscriptionAzureFunctionEndpointArgs] = None,
                                     dead_letter_identity: Optional[SystemTopicEventSubscriptionDeadLetterIdentityArgs] = None,
                                     delivery_identity: Optional[SystemTopicEventSubscriptionDeliveryIdentityArgs] = None,
                                     delivery_properties: Optional[Sequence[SystemTopicEventSubscriptionDeliveryPropertyArgs]] = None,
                                     event_delivery_schema: Optional[str] = None,
                                     eventhub_endpoint_id: Optional[str] = None,
                                     expiration_time_utc: Optional[str] = None,
                                     hybrid_connection_endpoint_id: Optional[str] = None,
                                     included_event_types: Optional[Sequence[str]] = None,
                                     labels: Optional[Sequence[str]] = None,
                                     name: Optional[str] = None,
                                     resource_group_name: Optional[str] = None,
                                     retry_policy: Optional[SystemTopicEventSubscriptionRetryPolicyArgs] = None,
                                     service_bus_queue_endpoint_id: Optional[str] = None,
                                     service_bus_topic_endpoint_id: Optional[str] = None,
                                     storage_blob_dead_letter_destination: Optional[SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs] = None,
                                     storage_queue_endpoint: Optional[SystemTopicEventSubscriptionStorageQueueEndpointArgs] = None,
                                     subject_filter: Optional[SystemTopicEventSubscriptionSubjectFilterArgs] = None,
                                     system_topic: Optional[str] = None,
                                     webhook_endpoint: Optional[SystemTopicEventSubscriptionWebhookEndpointArgs] = None)
    @overload
    def SystemTopicEventSubscription(resource_name: str,
                                     args: SystemTopicEventSubscriptionArgs,
                                     opts: Optional[ResourceOptions] = None)
    func NewSystemTopicEventSubscription(ctx *Context, name string, args SystemTopicEventSubscriptionArgs, opts ...ResourceOption) (*SystemTopicEventSubscription, error)
    public SystemTopicEventSubscription(string name, SystemTopicEventSubscriptionArgs args, CustomResourceOptions? opts = null)
    public SystemTopicEventSubscription(String name, SystemTopicEventSubscriptionArgs args)
    public SystemTopicEventSubscription(String name, SystemTopicEventSubscriptionArgs args, CustomResourceOptions options)
    
    type: azure:eventgrid:SystemTopicEventSubscription
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SystemTopicEventSubscriptionArgs
    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 SystemTopicEventSubscriptionArgs
    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 SystemTopicEventSubscriptionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemTopicEventSubscriptionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemTopicEventSubscriptionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    SystemTopicEventSubscription 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 SystemTopicEventSubscription resource accepts the following input properties:

    ResourceGroupName string
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    SystemTopic string
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    AdvancedFilter SystemTopicEventSubscriptionAdvancedFilter
    A advanced_filter block as defined below.
    AdvancedFilteringOnArraysEnabled bool
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    AzureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpoint
    An azure_function_endpoint block as defined below.
    DeadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentity

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    DeliveryIdentity SystemTopicEventSubscriptionDeliveryIdentity
    A delivery_identity block as defined below.
    DeliveryProperties List<SystemTopicEventSubscriptionDeliveryProperty>
    One or more delivery_property blocks as defined below.
    EventDeliverySchema string
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    EventhubEndpointId string
    Specifies the id where the Event Hub is located.
    ExpirationTimeUtc string
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    HybridConnectionEndpointId string
    Specifies the id where the Hybrid Connection is located.
    IncludedEventTypes List<string>
    A list of applicable event types that need to be part of the event subscription.
    Labels List<string>
    A list of labels to assign to the event subscription.
    Name string
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    RetryPolicy SystemTopicEventSubscriptionRetryPolicy
    A retry_policy block as defined below.
    ServiceBusQueueEndpointId string
    Specifies the id where the Service Bus Queue is located.
    ServiceBusTopicEndpointId string
    Specifies the id where the Service Bus Topic is located.
    StorageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestination
    A storage_blob_dead_letter_destination block as defined below.
    StorageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpoint
    A storage_queue_endpoint block as defined below.
    SubjectFilter SystemTopicEventSubscriptionSubjectFilter
    A subject_filter block as defined below.
    WebhookEndpoint SystemTopicEventSubscriptionWebhookEndpoint

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    ResourceGroupName string
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    SystemTopic string
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    AdvancedFilter SystemTopicEventSubscriptionAdvancedFilterArgs
    A advanced_filter block as defined below.
    AdvancedFilteringOnArraysEnabled bool
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    AzureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpointArgs
    An azure_function_endpoint block as defined below.
    DeadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentityArgs

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    DeliveryIdentity SystemTopicEventSubscriptionDeliveryIdentityArgs
    A delivery_identity block as defined below.
    DeliveryProperties []SystemTopicEventSubscriptionDeliveryPropertyArgs
    One or more delivery_property blocks as defined below.
    EventDeliverySchema string
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    EventhubEndpointId string
    Specifies the id where the Event Hub is located.
    ExpirationTimeUtc string
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    HybridConnectionEndpointId string
    Specifies the id where the Hybrid Connection is located.
    IncludedEventTypes []string
    A list of applicable event types that need to be part of the event subscription.
    Labels []string
    A list of labels to assign to the event subscription.
    Name string
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    RetryPolicy SystemTopicEventSubscriptionRetryPolicyArgs
    A retry_policy block as defined below.
    ServiceBusQueueEndpointId string
    Specifies the id where the Service Bus Queue is located.
    ServiceBusTopicEndpointId string
    Specifies the id where the Service Bus Topic is located.
    StorageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs
    A storage_blob_dead_letter_destination block as defined below.
    StorageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpointArgs
    A storage_queue_endpoint block as defined below.
    SubjectFilter SystemTopicEventSubscriptionSubjectFilterArgs
    A subject_filter block as defined below.
    WebhookEndpoint SystemTopicEventSubscriptionWebhookEndpointArgs

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    resourceGroupName String
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    systemTopic String
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    advancedFilter SystemTopicEventSubscriptionAdvancedFilter
    A advanced_filter block as defined below.
    advancedFilteringOnArraysEnabled Boolean
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpoint
    An azure_function_endpoint block as defined below.
    deadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentity

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    deliveryIdentity SystemTopicEventSubscriptionDeliveryIdentity
    A delivery_identity block as defined below.
    deliveryProperties List<SystemTopicEventSubscriptionDeliveryProperty>
    One or more delivery_property blocks as defined below.
    eventDeliverySchema String
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhubEndpointId String
    Specifies the id where the Event Hub is located.
    expirationTimeUtc String
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybridConnectionEndpointId String
    Specifies the id where the Hybrid Connection is located.
    includedEventTypes List<String>
    A list of applicable event types that need to be part of the event subscription.
    labels List<String>
    A list of labels to assign to the event subscription.
    name String
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    retryPolicy SystemTopicEventSubscriptionRetryPolicy
    A retry_policy block as defined below.
    serviceBusQueueEndpointId String
    Specifies the id where the Service Bus Queue is located.
    serviceBusTopicEndpointId String
    Specifies the id where the Service Bus Topic is located.
    storageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestination
    A storage_blob_dead_letter_destination block as defined below.
    storageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpoint
    A storage_queue_endpoint block as defined below.
    subjectFilter SystemTopicEventSubscriptionSubjectFilter
    A subject_filter block as defined below.
    webhookEndpoint SystemTopicEventSubscriptionWebhookEndpoint

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    resourceGroupName string
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    systemTopic string
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    advancedFilter SystemTopicEventSubscriptionAdvancedFilter
    A advanced_filter block as defined below.
    advancedFilteringOnArraysEnabled boolean
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpoint
    An azure_function_endpoint block as defined below.
    deadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentity

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    deliveryIdentity SystemTopicEventSubscriptionDeliveryIdentity
    A delivery_identity block as defined below.
    deliveryProperties SystemTopicEventSubscriptionDeliveryProperty[]
    One or more delivery_property blocks as defined below.
    eventDeliverySchema string
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhubEndpointId string
    Specifies the id where the Event Hub is located.
    expirationTimeUtc string
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybridConnectionEndpointId string
    Specifies the id where the Hybrid Connection is located.
    includedEventTypes string[]
    A list of applicable event types that need to be part of the event subscription.
    labels string[]
    A list of labels to assign to the event subscription.
    name string
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    retryPolicy SystemTopicEventSubscriptionRetryPolicy
    A retry_policy block as defined below.
    serviceBusQueueEndpointId string
    Specifies the id where the Service Bus Queue is located.
    serviceBusTopicEndpointId string
    Specifies the id where the Service Bus Topic is located.
    storageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestination
    A storage_blob_dead_letter_destination block as defined below.
    storageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpoint
    A storage_queue_endpoint block as defined below.
    subjectFilter SystemTopicEventSubscriptionSubjectFilter
    A subject_filter block as defined below.
    webhookEndpoint SystemTopicEventSubscriptionWebhookEndpoint

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    resource_group_name str
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    system_topic str
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    advanced_filter SystemTopicEventSubscriptionAdvancedFilterArgs
    A advanced_filter block as defined below.
    advanced_filtering_on_arrays_enabled bool
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azure_function_endpoint SystemTopicEventSubscriptionAzureFunctionEndpointArgs
    An azure_function_endpoint block as defined below.
    dead_letter_identity SystemTopicEventSubscriptionDeadLetterIdentityArgs

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    delivery_identity SystemTopicEventSubscriptionDeliveryIdentityArgs
    A delivery_identity block as defined below.
    delivery_properties Sequence[SystemTopicEventSubscriptionDeliveryPropertyArgs]
    One or more delivery_property blocks as defined below.
    event_delivery_schema str
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhub_endpoint_id str
    Specifies the id where the Event Hub is located.
    expiration_time_utc str
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybrid_connection_endpoint_id str
    Specifies the id where the Hybrid Connection is located.
    included_event_types Sequence[str]
    A list of applicable event types that need to be part of the event subscription.
    labels Sequence[str]
    A list of labels to assign to the event subscription.
    name str
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    retry_policy SystemTopicEventSubscriptionRetryPolicyArgs
    A retry_policy block as defined below.
    service_bus_queue_endpoint_id str
    Specifies the id where the Service Bus Queue is located.
    service_bus_topic_endpoint_id str
    Specifies the id where the Service Bus Topic is located.
    storage_blob_dead_letter_destination SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs
    A storage_blob_dead_letter_destination block as defined below.
    storage_queue_endpoint SystemTopicEventSubscriptionStorageQueueEndpointArgs
    A storage_queue_endpoint block as defined below.
    subject_filter SystemTopicEventSubscriptionSubjectFilterArgs
    A subject_filter block as defined below.
    webhook_endpoint SystemTopicEventSubscriptionWebhookEndpointArgs

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    resourceGroupName String
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    systemTopic String
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    advancedFilter Property Map
    A advanced_filter block as defined below.
    advancedFilteringOnArraysEnabled Boolean
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azureFunctionEndpoint Property Map
    An azure_function_endpoint block as defined below.
    deadLetterIdentity Property Map

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    deliveryIdentity Property Map
    A delivery_identity block as defined below.
    deliveryProperties List<Property Map>
    One or more delivery_property blocks as defined below.
    eventDeliverySchema String
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhubEndpointId String
    Specifies the id where the Event Hub is located.
    expirationTimeUtc String
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybridConnectionEndpointId String
    Specifies the id where the Hybrid Connection is located.
    includedEventTypes List<String>
    A list of applicable event types that need to be part of the event subscription.
    labels List<String>
    A list of labels to assign to the event subscription.
    name String
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    retryPolicy Property Map
    A retry_policy block as defined below.
    serviceBusQueueEndpointId String
    Specifies the id where the Service Bus Queue is located.
    serviceBusTopicEndpointId String
    Specifies the id where the Service Bus Topic is located.
    storageBlobDeadLetterDestination Property Map
    A storage_blob_dead_letter_destination block as defined below.
    storageQueueEndpoint Property Map
    A storage_queue_endpoint block as defined below.
    subjectFilter Property Map
    A subject_filter block as defined below.
    webhookEndpoint Property Map

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    Outputs

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

    Get an existing SystemTopicEventSubscription 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?: SystemTopicEventSubscriptionState, opts?: CustomResourceOptions): SystemTopicEventSubscription
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            advanced_filter: Optional[SystemTopicEventSubscriptionAdvancedFilterArgs] = None,
            advanced_filtering_on_arrays_enabled: Optional[bool] = None,
            azure_function_endpoint: Optional[SystemTopicEventSubscriptionAzureFunctionEndpointArgs] = None,
            dead_letter_identity: Optional[SystemTopicEventSubscriptionDeadLetterIdentityArgs] = None,
            delivery_identity: Optional[SystemTopicEventSubscriptionDeliveryIdentityArgs] = None,
            delivery_properties: Optional[Sequence[SystemTopicEventSubscriptionDeliveryPropertyArgs]] = None,
            event_delivery_schema: Optional[str] = None,
            eventhub_endpoint_id: Optional[str] = None,
            expiration_time_utc: Optional[str] = None,
            hybrid_connection_endpoint_id: Optional[str] = None,
            included_event_types: Optional[Sequence[str]] = None,
            labels: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            retry_policy: Optional[SystemTopicEventSubscriptionRetryPolicyArgs] = None,
            service_bus_queue_endpoint_id: Optional[str] = None,
            service_bus_topic_endpoint_id: Optional[str] = None,
            storage_blob_dead_letter_destination: Optional[SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs] = None,
            storage_queue_endpoint: Optional[SystemTopicEventSubscriptionStorageQueueEndpointArgs] = None,
            subject_filter: Optional[SystemTopicEventSubscriptionSubjectFilterArgs] = None,
            system_topic: Optional[str] = None,
            webhook_endpoint: Optional[SystemTopicEventSubscriptionWebhookEndpointArgs] = None) -> SystemTopicEventSubscription
    func GetSystemTopicEventSubscription(ctx *Context, name string, id IDInput, state *SystemTopicEventSubscriptionState, opts ...ResourceOption) (*SystemTopicEventSubscription, error)
    public static SystemTopicEventSubscription Get(string name, Input<string> id, SystemTopicEventSubscriptionState? state, CustomResourceOptions? opts = null)
    public static SystemTopicEventSubscription get(String name, Output<String> id, SystemTopicEventSubscriptionState 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:
    AdvancedFilter SystemTopicEventSubscriptionAdvancedFilter
    A advanced_filter block as defined below.
    AdvancedFilteringOnArraysEnabled bool
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    AzureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpoint
    An azure_function_endpoint block as defined below.
    DeadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentity

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    DeliveryIdentity SystemTopicEventSubscriptionDeliveryIdentity
    A delivery_identity block as defined below.
    DeliveryProperties List<SystemTopicEventSubscriptionDeliveryProperty>
    One or more delivery_property blocks as defined below.
    EventDeliverySchema string
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    EventhubEndpointId string
    Specifies the id where the Event Hub is located.
    ExpirationTimeUtc string
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    HybridConnectionEndpointId string
    Specifies the id where the Hybrid Connection is located.
    IncludedEventTypes List<string>
    A list of applicable event types that need to be part of the event subscription.
    Labels List<string>
    A list of labels to assign to the event subscription.
    Name string
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    ResourceGroupName string
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    RetryPolicy SystemTopicEventSubscriptionRetryPolicy
    A retry_policy block as defined below.
    ServiceBusQueueEndpointId string
    Specifies the id where the Service Bus Queue is located.
    ServiceBusTopicEndpointId string
    Specifies the id where the Service Bus Topic is located.
    StorageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestination
    A storage_blob_dead_letter_destination block as defined below.
    StorageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpoint
    A storage_queue_endpoint block as defined below.
    SubjectFilter SystemTopicEventSubscriptionSubjectFilter
    A subject_filter block as defined below.
    SystemTopic string
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    WebhookEndpoint SystemTopicEventSubscriptionWebhookEndpoint

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    AdvancedFilter SystemTopicEventSubscriptionAdvancedFilterArgs
    A advanced_filter block as defined below.
    AdvancedFilteringOnArraysEnabled bool
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    AzureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpointArgs
    An azure_function_endpoint block as defined below.
    DeadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentityArgs

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    DeliveryIdentity SystemTopicEventSubscriptionDeliveryIdentityArgs
    A delivery_identity block as defined below.
    DeliveryProperties []SystemTopicEventSubscriptionDeliveryPropertyArgs
    One or more delivery_property blocks as defined below.
    EventDeliverySchema string
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    EventhubEndpointId string
    Specifies the id where the Event Hub is located.
    ExpirationTimeUtc string
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    HybridConnectionEndpointId string
    Specifies the id where the Hybrid Connection is located.
    IncludedEventTypes []string
    A list of applicable event types that need to be part of the event subscription.
    Labels []string
    A list of labels to assign to the event subscription.
    Name string
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    ResourceGroupName string
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    RetryPolicy SystemTopicEventSubscriptionRetryPolicyArgs
    A retry_policy block as defined below.
    ServiceBusQueueEndpointId string
    Specifies the id where the Service Bus Queue is located.
    ServiceBusTopicEndpointId string
    Specifies the id where the Service Bus Topic is located.
    StorageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs
    A storage_blob_dead_letter_destination block as defined below.
    StorageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpointArgs
    A storage_queue_endpoint block as defined below.
    SubjectFilter SystemTopicEventSubscriptionSubjectFilterArgs
    A subject_filter block as defined below.
    SystemTopic string
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    WebhookEndpoint SystemTopicEventSubscriptionWebhookEndpointArgs

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    advancedFilter SystemTopicEventSubscriptionAdvancedFilter
    A advanced_filter block as defined below.
    advancedFilteringOnArraysEnabled Boolean
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpoint
    An azure_function_endpoint block as defined below.
    deadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentity

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    deliveryIdentity SystemTopicEventSubscriptionDeliveryIdentity
    A delivery_identity block as defined below.
    deliveryProperties List<SystemTopicEventSubscriptionDeliveryProperty>
    One or more delivery_property blocks as defined below.
    eventDeliverySchema String
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhubEndpointId String
    Specifies the id where the Event Hub is located.
    expirationTimeUtc String
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybridConnectionEndpointId String
    Specifies the id where the Hybrid Connection is located.
    includedEventTypes List<String>
    A list of applicable event types that need to be part of the event subscription.
    labels List<String>
    A list of labels to assign to the event subscription.
    name String
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    resourceGroupName String
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    retryPolicy SystemTopicEventSubscriptionRetryPolicy
    A retry_policy block as defined below.
    serviceBusQueueEndpointId String
    Specifies the id where the Service Bus Queue is located.
    serviceBusTopicEndpointId String
    Specifies the id where the Service Bus Topic is located.
    storageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestination
    A storage_blob_dead_letter_destination block as defined below.
    storageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpoint
    A storage_queue_endpoint block as defined below.
    subjectFilter SystemTopicEventSubscriptionSubjectFilter
    A subject_filter block as defined below.
    systemTopic String
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    webhookEndpoint SystemTopicEventSubscriptionWebhookEndpoint

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    advancedFilter SystemTopicEventSubscriptionAdvancedFilter
    A advanced_filter block as defined below.
    advancedFilteringOnArraysEnabled boolean
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azureFunctionEndpoint SystemTopicEventSubscriptionAzureFunctionEndpoint
    An azure_function_endpoint block as defined below.
    deadLetterIdentity SystemTopicEventSubscriptionDeadLetterIdentity

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    deliveryIdentity SystemTopicEventSubscriptionDeliveryIdentity
    A delivery_identity block as defined below.
    deliveryProperties SystemTopicEventSubscriptionDeliveryProperty[]
    One or more delivery_property blocks as defined below.
    eventDeliverySchema string
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhubEndpointId string
    Specifies the id where the Event Hub is located.
    expirationTimeUtc string
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybridConnectionEndpointId string
    Specifies the id where the Hybrid Connection is located.
    includedEventTypes string[]
    A list of applicable event types that need to be part of the event subscription.
    labels string[]
    A list of labels to assign to the event subscription.
    name string
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    resourceGroupName string
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    retryPolicy SystemTopicEventSubscriptionRetryPolicy
    A retry_policy block as defined below.
    serviceBusQueueEndpointId string
    Specifies the id where the Service Bus Queue is located.
    serviceBusTopicEndpointId string
    Specifies the id where the Service Bus Topic is located.
    storageBlobDeadLetterDestination SystemTopicEventSubscriptionStorageBlobDeadLetterDestination
    A storage_blob_dead_letter_destination block as defined below.
    storageQueueEndpoint SystemTopicEventSubscriptionStorageQueueEndpoint
    A storage_queue_endpoint block as defined below.
    subjectFilter SystemTopicEventSubscriptionSubjectFilter
    A subject_filter block as defined below.
    systemTopic string
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    webhookEndpoint SystemTopicEventSubscriptionWebhookEndpoint

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    advanced_filter SystemTopicEventSubscriptionAdvancedFilterArgs
    A advanced_filter block as defined below.
    advanced_filtering_on_arrays_enabled bool
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azure_function_endpoint SystemTopicEventSubscriptionAzureFunctionEndpointArgs
    An azure_function_endpoint block as defined below.
    dead_letter_identity SystemTopicEventSubscriptionDeadLetterIdentityArgs

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    delivery_identity SystemTopicEventSubscriptionDeliveryIdentityArgs
    A delivery_identity block as defined below.
    delivery_properties Sequence[SystemTopicEventSubscriptionDeliveryPropertyArgs]
    One or more delivery_property blocks as defined below.
    event_delivery_schema str
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhub_endpoint_id str
    Specifies the id where the Event Hub is located.
    expiration_time_utc str
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybrid_connection_endpoint_id str
    Specifies the id where the Hybrid Connection is located.
    included_event_types Sequence[str]
    A list of applicable event types that need to be part of the event subscription.
    labels Sequence[str]
    A list of labels to assign to the event subscription.
    name str
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    resource_group_name str
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    retry_policy SystemTopicEventSubscriptionRetryPolicyArgs
    A retry_policy block as defined below.
    service_bus_queue_endpoint_id str
    Specifies the id where the Service Bus Queue is located.
    service_bus_topic_endpoint_id str
    Specifies the id where the Service Bus Topic is located.
    storage_blob_dead_letter_destination SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs
    A storage_blob_dead_letter_destination block as defined below.
    storage_queue_endpoint SystemTopicEventSubscriptionStorageQueueEndpointArgs
    A storage_queue_endpoint block as defined below.
    subject_filter SystemTopicEventSubscriptionSubjectFilterArgs
    A subject_filter block as defined below.
    system_topic str
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    webhook_endpoint SystemTopicEventSubscriptionWebhookEndpointArgs

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    advancedFilter Property Map
    A advanced_filter block as defined below.
    advancedFilteringOnArraysEnabled Boolean
    Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to false.
    azureFunctionEndpoint Property Map
    An azure_function_endpoint block as defined below.
    deadLetterIdentity Property Map

    A dead_letter_identity block as defined below.

    Note: storage_blob_dead_letter_destination must be specified when a dead_letter_identity is specified

    deliveryIdentity Property Map
    A delivery_identity block as defined below.
    deliveryProperties List<Property Map>
    One or more delivery_property blocks as defined below.
    eventDeliverySchema String
    Specifies the event delivery schema for the event subscription. Possible values include: EventGridSchema, CloudEventSchemaV1_0, CustomInputSchema. Defaults to EventGridSchema. Changing this forces a new resource to be created.
    eventhubEndpointId String
    Specifies the id where the Event Hub is located.
    expirationTimeUtc String
    Specifies the expiration time of the event subscription (Datetime Format RFC 3339).
    hybridConnectionEndpointId String
    Specifies the id where the Hybrid Connection is located.
    includedEventTypes List<String>
    A list of applicable event types that need to be part of the event subscription.
    labels List<String>
    A list of labels to assign to the event subscription.
    name String
    The name which should be used for this Event Subscription. Changing this forces a new Event Subscription to be created.
    resourceGroupName String
    The name of the Resource Group where the System Topic exists. Changing this forces a new Event Subscription to be created.
    retryPolicy Property Map
    A retry_policy block as defined below.
    serviceBusQueueEndpointId String
    Specifies the id where the Service Bus Queue is located.
    serviceBusTopicEndpointId String
    Specifies the id where the Service Bus Topic is located.
    storageBlobDeadLetterDestination Property Map
    A storage_blob_dead_letter_destination block as defined below.
    storageQueueEndpoint Property Map
    A storage_queue_endpoint block as defined below.
    subjectFilter Property Map
    A subject_filter block as defined below.
    systemTopic String
    The System Topic where the Event Subscription should be created in. Changing this forces a new Event Subscription to be created.
    webhookEndpoint Property Map

    A webhook_endpoint block as defined below.

    NOTE: One of azure_function_endpoint, eventhub_endpoint_id, hybrid_connection_endpoint, hybrid_connection_endpoint_id, service_bus_queue_endpoint_id, service_bus_topic_endpoint_id, storage_queue_endpoint or webhook_endpoint must be specified.

    Supporting Types

    SystemTopicEventSubscriptionAdvancedFilter, SystemTopicEventSubscriptionAdvancedFilterArgs

    BoolEquals List<SystemTopicEventSubscriptionAdvancedFilterBoolEqual>
    Compares a value of an event using a single boolean value.
    IsNotNulls List<SystemTopicEventSubscriptionAdvancedFilterIsNotNull>
    Evaluates if a value of an event isn't NULL or undefined.
    IsNullOrUndefineds List<SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined>

    Evaluates if a value of an event is NULL or undefined.

    Each nested block consists of a key and a value(s) element.

    NumberGreaterThanOrEquals List<SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual>
    Compares a value of an event using a single floating point number.
    NumberGreaterThans List<SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan>
    Compares a value of an event using a single floating point number.
    NumberInRanges List<SystemTopicEventSubscriptionAdvancedFilterNumberInRange>
    Compares a value of an event using multiple floating point number ranges.
    NumberIns List<SystemTopicEventSubscriptionAdvancedFilterNumberIn>
    Compares a value of an event using multiple floating point numbers.
    NumberLessThanOrEquals List<SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual>
    Compares a value of an event using a single floating point number.
    NumberLessThans List<SystemTopicEventSubscriptionAdvancedFilterNumberLessThan>
    Compares a value of an event using a single floating point number.
    NumberNotInRanges List<SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange>
    Compares a value of an event using multiple floating point number ranges.
    NumberNotIns List<SystemTopicEventSubscriptionAdvancedFilterNumberNotIn>
    Compares a value of an event using multiple floating point numbers.
    StringBeginsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith>
    Compares a value of an event using multiple string values.
    StringContains List<SystemTopicEventSubscriptionAdvancedFilterStringContain>
    Compares a value of an event using multiple string values.
    StringEndsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringEndsWith>
    Compares a value of an event using multiple string values.
    StringIns List<SystemTopicEventSubscriptionAdvancedFilterStringIn>
    Compares a value of an event using multiple string values.
    StringNotBeginsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith>
    Compares a value of an event using multiple string values.
    StringNotContains List<SystemTopicEventSubscriptionAdvancedFilterStringNotContain>
    Compares a value of an event using multiple string values.
    StringNotEndsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith>
    Compares a value of an event using multiple string values.
    StringNotIns List<SystemTopicEventSubscriptionAdvancedFilterStringNotIn>
    Compares a value of an event using multiple string values.
    BoolEquals []SystemTopicEventSubscriptionAdvancedFilterBoolEqual
    Compares a value of an event using a single boolean value.
    IsNotNulls []SystemTopicEventSubscriptionAdvancedFilterIsNotNull
    Evaluates if a value of an event isn't NULL or undefined.
    IsNullOrUndefineds []SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined

    Evaluates if a value of an event is NULL or undefined.

    Each nested block consists of a key and a value(s) element.

    NumberGreaterThanOrEquals []SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual
    Compares a value of an event using a single floating point number.
    NumberGreaterThans []SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan
    Compares a value of an event using a single floating point number.
    NumberInRanges []SystemTopicEventSubscriptionAdvancedFilterNumberInRange
    Compares a value of an event using multiple floating point number ranges.
    NumberIns []SystemTopicEventSubscriptionAdvancedFilterNumberIn
    Compares a value of an event using multiple floating point numbers.
    NumberLessThanOrEquals []SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual
    Compares a value of an event using a single floating point number.
    NumberLessThans []SystemTopicEventSubscriptionAdvancedFilterNumberLessThan
    Compares a value of an event using a single floating point number.
    NumberNotInRanges []SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange
    Compares a value of an event using multiple floating point number ranges.
    NumberNotIns []SystemTopicEventSubscriptionAdvancedFilterNumberNotIn
    Compares a value of an event using multiple floating point numbers.
    StringBeginsWiths []SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith
    Compares a value of an event using multiple string values.
    StringContains []SystemTopicEventSubscriptionAdvancedFilterStringContain
    Compares a value of an event using multiple string values.
    StringEndsWiths []SystemTopicEventSubscriptionAdvancedFilterStringEndsWith
    Compares a value of an event using multiple string values.
    StringIns []SystemTopicEventSubscriptionAdvancedFilterStringIn
    Compares a value of an event using multiple string values.
    StringNotBeginsWiths []SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith
    Compares a value of an event using multiple string values.
    StringNotContains []SystemTopicEventSubscriptionAdvancedFilterStringNotContain
    Compares a value of an event using multiple string values.
    StringNotEndsWiths []SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith
    Compares a value of an event using multiple string values.
    StringNotIns []SystemTopicEventSubscriptionAdvancedFilterStringNotIn
    Compares a value of an event using multiple string values.
    boolEquals List<SystemTopicEventSubscriptionAdvancedFilterBoolEqual>
    Compares a value of an event using a single boolean value.
    isNotNulls List<SystemTopicEventSubscriptionAdvancedFilterIsNotNull>
    Evaluates if a value of an event isn't NULL or undefined.
    isNullOrUndefineds List<SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined>

    Evaluates if a value of an event is NULL or undefined.

    Each nested block consists of a key and a value(s) element.

    numberGreaterThanOrEquals List<SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual>
    Compares a value of an event using a single floating point number.
    numberGreaterThans List<SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan>
    Compares a value of an event using a single floating point number.
    numberInRanges List<SystemTopicEventSubscriptionAdvancedFilterNumberInRange>
    Compares a value of an event using multiple floating point number ranges.
    numberIns List<SystemTopicEventSubscriptionAdvancedFilterNumberIn>
    Compares a value of an event using multiple floating point numbers.
    numberLessThanOrEquals List<SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual>
    Compares a value of an event using a single floating point number.
    numberLessThans List<SystemTopicEventSubscriptionAdvancedFilterNumberLessThan>
    Compares a value of an event using a single floating point number.
    numberNotInRanges List<SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange>
    Compares a value of an event using multiple floating point number ranges.
    numberNotIns List<SystemTopicEventSubscriptionAdvancedFilterNumberNotIn>
    Compares a value of an event using multiple floating point numbers.
    stringBeginsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith>
    Compares a value of an event using multiple string values.
    stringContains List<SystemTopicEventSubscriptionAdvancedFilterStringContain>
    Compares a value of an event using multiple string values.
    stringEndsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringEndsWith>
    Compares a value of an event using multiple string values.
    stringIns List<SystemTopicEventSubscriptionAdvancedFilterStringIn>
    Compares a value of an event using multiple string values.
    stringNotBeginsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith>
    Compares a value of an event using multiple string values.
    stringNotContains List<SystemTopicEventSubscriptionAdvancedFilterStringNotContain>
    Compares a value of an event using multiple string values.
    stringNotEndsWiths List<SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith>
    Compares a value of an event using multiple string values.
    stringNotIns List<SystemTopicEventSubscriptionAdvancedFilterStringNotIn>
    Compares a value of an event using multiple string values.
    boolEquals SystemTopicEventSubscriptionAdvancedFilterBoolEqual[]
    Compares a value of an event using a single boolean value.
    isNotNulls SystemTopicEventSubscriptionAdvancedFilterIsNotNull[]
    Evaluates if a value of an event isn't NULL or undefined.
    isNullOrUndefineds SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined[]

    Evaluates if a value of an event is NULL or undefined.

    Each nested block consists of a key and a value(s) element.

    numberGreaterThanOrEquals SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual[]
    Compares a value of an event using a single floating point number.
    numberGreaterThans SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan[]
    Compares a value of an event using a single floating point number.
    numberInRanges SystemTopicEventSubscriptionAdvancedFilterNumberInRange[]
    Compares a value of an event using multiple floating point number ranges.
    numberIns SystemTopicEventSubscriptionAdvancedFilterNumberIn[]
    Compares a value of an event using multiple floating point numbers.
    numberLessThanOrEquals SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual[]
    Compares a value of an event using a single floating point number.
    numberLessThans SystemTopicEventSubscriptionAdvancedFilterNumberLessThan[]
    Compares a value of an event using a single floating point number.
    numberNotInRanges SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange[]
    Compares a value of an event using multiple floating point number ranges.
    numberNotIns SystemTopicEventSubscriptionAdvancedFilterNumberNotIn[]
    Compares a value of an event using multiple floating point numbers.
    stringBeginsWiths SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith[]
    Compares a value of an event using multiple string values.
    stringContains SystemTopicEventSubscriptionAdvancedFilterStringContain[]
    Compares a value of an event using multiple string values.
    stringEndsWiths SystemTopicEventSubscriptionAdvancedFilterStringEndsWith[]
    Compares a value of an event using multiple string values.
    stringIns SystemTopicEventSubscriptionAdvancedFilterStringIn[]
    Compares a value of an event using multiple string values.
    stringNotBeginsWiths SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith[]
    Compares a value of an event using multiple string values.
    stringNotContains SystemTopicEventSubscriptionAdvancedFilterStringNotContain[]
    Compares a value of an event using multiple string values.
    stringNotEndsWiths SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith[]
    Compares a value of an event using multiple string values.
    stringNotIns SystemTopicEventSubscriptionAdvancedFilterStringNotIn[]
    Compares a value of an event using multiple string values.
    bool_equals Sequence[SystemTopicEventSubscriptionAdvancedFilterBoolEqual]
    Compares a value of an event using a single boolean value.
    is_not_nulls Sequence[SystemTopicEventSubscriptionAdvancedFilterIsNotNull]
    Evaluates if a value of an event isn't NULL or undefined.
    is_null_or_undefineds Sequence[SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined]

    Evaluates if a value of an event is NULL or undefined.

    Each nested block consists of a key and a value(s) element.

    number_greater_than_or_equals Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual]
    Compares a value of an event using a single floating point number.
    number_greater_thans Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan]
    Compares a value of an event using a single floating point number.
    number_in_ranges Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberInRange]
    Compares a value of an event using multiple floating point number ranges.
    number_ins Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberIn]
    Compares a value of an event using multiple floating point numbers.
    number_less_than_or_equals Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual]
    Compares a value of an event using a single floating point number.
    number_less_thans Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberLessThan]
    Compares a value of an event using a single floating point number.
    number_not_in_ranges Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange]
    Compares a value of an event using multiple floating point number ranges.
    number_not_ins Sequence[SystemTopicEventSubscriptionAdvancedFilterNumberNotIn]
    Compares a value of an event using multiple floating point numbers.
    string_begins_withs Sequence[SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith]
    Compares a value of an event using multiple string values.
    string_contains Sequence[SystemTopicEventSubscriptionAdvancedFilterStringContain]
    Compares a value of an event using multiple string values.
    string_ends_withs Sequence[SystemTopicEventSubscriptionAdvancedFilterStringEndsWith]
    Compares a value of an event using multiple string values.
    string_ins Sequence[SystemTopicEventSubscriptionAdvancedFilterStringIn]
    Compares a value of an event using multiple string values.
    string_not_begins_withs Sequence[SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith]
    Compares a value of an event using multiple string values.
    string_not_contains Sequence[SystemTopicEventSubscriptionAdvancedFilterStringNotContain]
    Compares a value of an event using multiple string values.
    string_not_ends_withs Sequence[SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith]
    Compares a value of an event using multiple string values.
    string_not_ins Sequence[SystemTopicEventSubscriptionAdvancedFilterStringNotIn]
    Compares a value of an event using multiple string values.
    boolEquals List<Property Map>
    Compares a value of an event using a single boolean value.
    isNotNulls List<Property Map>
    Evaluates if a value of an event isn't NULL or undefined.
    isNullOrUndefineds List<Property Map>

    Evaluates if a value of an event is NULL or undefined.

    Each nested block consists of a key and a value(s) element.

    numberGreaterThanOrEquals List<Property Map>
    Compares a value of an event using a single floating point number.
    numberGreaterThans List<Property Map>
    Compares a value of an event using a single floating point number.
    numberInRanges List<Property Map>
    Compares a value of an event using multiple floating point number ranges.
    numberIns List<Property Map>
    Compares a value of an event using multiple floating point numbers.
    numberLessThanOrEquals List<Property Map>
    Compares a value of an event using a single floating point number.
    numberLessThans List<Property Map>
    Compares a value of an event using a single floating point number.
    numberNotInRanges List<Property Map>
    Compares a value of an event using multiple floating point number ranges.
    numberNotIns List<Property Map>
    Compares a value of an event using multiple floating point numbers.
    stringBeginsWiths List<Property Map>
    Compares a value of an event using multiple string values.
    stringContains List<Property Map>
    Compares a value of an event using multiple string values.
    stringEndsWiths List<Property Map>
    Compares a value of an event using multiple string values.
    stringIns List<Property Map>
    Compares a value of an event using multiple string values.
    stringNotBeginsWiths List<Property Map>
    Compares a value of an event using multiple string values.
    stringNotContains List<Property Map>
    Compares a value of an event using multiple string values.
    stringNotEndsWiths List<Property Map>
    Compares a value of an event using multiple string values.
    stringNotIns List<Property Map>
    Compares a value of an event using multiple string values.

    SystemTopicEventSubscriptionAdvancedFilterBoolEqual, SystemTopicEventSubscriptionAdvancedFilterBoolEqualArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value bool

    Specifies a single value to compare to when using a single value operator.

    OR

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value bool

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Boolean

    Specifies a single value to compare to when using a single value operator.

    OR

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value boolean

    Specifies a single value to compare to when using a single value operator.

    OR

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value bool

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Boolean

    Specifies a single value to compare to when using a single value operator.

    OR

    SystemTopicEventSubscriptionAdvancedFilterIsNotNull, SystemTopicEventSubscriptionAdvancedFilterIsNotNullArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.

    SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined, SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefinedArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.

    SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan, SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value double

    Specifies a single value to compare to when using a single value operator.

    OR

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value float64

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Double

    Specifies a single value to compare to when using a single value operator.

    OR

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value number

    Specifies a single value to compare to when using a single value operator.

    OR

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value float

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Number

    Specifies a single value to compare to when using a single value operator.

    OR

    SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual, SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqualArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value double

    Specifies a single value to compare to when using a single value operator.

    OR

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value float64

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Double

    Specifies a single value to compare to when using a single value operator.

    OR

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value number

    Specifies a single value to compare to when using a single value operator.

    OR

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value float

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Number

    Specifies a single value to compare to when using a single value operator.

    OR

    SystemTopicEventSubscriptionAdvancedFilterNumberIn, SystemTopicEventSubscriptionAdvancedFilterNumberInArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<double>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []float64

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<Double>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values number[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[float]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<Number>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterNumberInRange, SystemTopicEventSubscriptionAdvancedFilterNumberInRangeArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<ImmutableArray<double>>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values [][]float64

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<List<Double>>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values number[][]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[Sequence[float]]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<List<Number>>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterNumberLessThan, SystemTopicEventSubscriptionAdvancedFilterNumberLessThanArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value double

    Specifies a single value to compare to when using a single value operator.

    OR

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value float64

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Double

    Specifies a single value to compare to when using a single value operator.

    OR

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value number

    Specifies a single value to compare to when using a single value operator.

    OR

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value float

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Number

    Specifies a single value to compare to when using a single value operator.

    OR

    SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual, SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqualArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value double

    Specifies a single value to compare to when using a single value operator.

    OR

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Value float64

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Double

    Specifies a single value to compare to when using a single value operator.

    OR

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value number

    Specifies a single value to compare to when using a single value operator.

    OR

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value float

    Specifies a single value to compare to when using a single value operator.

    OR

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    value Number

    Specifies a single value to compare to when using a single value operator.

    OR

    SystemTopicEventSubscriptionAdvancedFilterNumberNotIn, SystemTopicEventSubscriptionAdvancedFilterNumberNotInArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<double>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []float64

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<Double>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values number[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[float]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<Number>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange, SystemTopicEventSubscriptionAdvancedFilterNumberNotInRangeArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<ImmutableArray<double>>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values [][]float64

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<List<Double>>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values number[][]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[Sequence[float]]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<List<Number>>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith, SystemTopicEventSubscriptionAdvancedFilterStringBeginsWithArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringContain, SystemTopicEventSubscriptionAdvancedFilterStringContainArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringEndsWith, SystemTopicEventSubscriptionAdvancedFilterStringEndsWithArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringIn, SystemTopicEventSubscriptionAdvancedFilterStringInArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith, SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWithArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringNotContain, SystemTopicEventSubscriptionAdvancedFilterStringNotContainArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith, SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWithArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAdvancedFilterStringNotIn, SystemTopicEventSubscriptionAdvancedFilterStringNotInArgs

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values List<string>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    Key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    Values []string

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key string
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values string[]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key str
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values Sequence[str]

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    key String
    Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
    values List<String>

    Specifies an array of values to compare to when using a multiple values operator.

    NOTE: A maximum of total number of advanced filter values allowed on event subscription is 25.

    SystemTopicEventSubscriptionAzureFunctionEndpoint, SystemTopicEventSubscriptionAzureFunctionEndpointArgs

    FunctionId string
    Specifies the ID of the Function where the Event Subscription will receive events. This must be the functions ID in format {function_app.id}/functions/{name}.
    MaxEventsPerBatch int
    Maximum number of events per batch.
    PreferredBatchSizeInKilobytes int
    Preferred batch size in Kilobytes.
    FunctionId string
    Specifies the ID of the Function where the Event Subscription will receive events. This must be the functions ID in format {function_app.id}/functions/{name}.
    MaxEventsPerBatch int
    Maximum number of events per batch.
    PreferredBatchSizeInKilobytes int
    Preferred batch size in Kilobytes.
    functionId String
    Specifies the ID of the Function where the Event Subscription will receive events. This must be the functions ID in format {function_app.id}/functions/{name}.
    maxEventsPerBatch Integer
    Maximum number of events per batch.
    preferredBatchSizeInKilobytes Integer
    Preferred batch size in Kilobytes.
    functionId string
    Specifies the ID of the Function where the Event Subscription will receive events. This must be the functions ID in format {function_app.id}/functions/{name}.
    maxEventsPerBatch number
    Maximum number of events per batch.
    preferredBatchSizeInKilobytes number
    Preferred batch size in Kilobytes.
    function_id str
    Specifies the ID of the Function where the Event Subscription will receive events. This must be the functions ID in format {function_app.id}/functions/{name}.
    max_events_per_batch int
    Maximum number of events per batch.
    preferred_batch_size_in_kilobytes int
    Preferred batch size in Kilobytes.
    functionId String
    Specifies the ID of the Function where the Event Subscription will receive events. This must be the functions ID in format {function_app.id}/functions/{name}.
    maxEventsPerBatch Number
    Maximum number of events per batch.
    preferredBatchSizeInKilobytes Number
    Preferred batch size in Kilobytes.

    SystemTopicEventSubscriptionDeadLetterIdentity, SystemTopicEventSubscriptionDeadLetterIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that is used for dead lettering. Allowed value is SystemAssigned, UserAssigned.
    UserAssignedIdentity string
    The user identity associated with the resource.
    Type string
    Specifies the type of Managed Service Identity that is used for dead lettering. Allowed value is SystemAssigned, UserAssigned.
    UserAssignedIdentity string
    The user identity associated with the resource.
    type String
    Specifies the type of Managed Service Identity that is used for dead lettering. Allowed value is SystemAssigned, UserAssigned.
    userAssignedIdentity String
    The user identity associated with the resource.
    type string
    Specifies the type of Managed Service Identity that is used for dead lettering. Allowed value is SystemAssigned, UserAssigned.
    userAssignedIdentity string
    The user identity associated with the resource.
    type str
    Specifies the type of Managed Service Identity that is used for dead lettering. Allowed value is SystemAssigned, UserAssigned.
    user_assigned_identity str
    The user identity associated with the resource.
    type String
    Specifies the type of Managed Service Identity that is used for dead lettering. Allowed value is SystemAssigned, UserAssigned.
    userAssignedIdentity String
    The user identity associated with the resource.

    SystemTopicEventSubscriptionDeliveryIdentity, SystemTopicEventSubscriptionDeliveryIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is SystemAssigned, UserAssigned.
    UserAssignedIdentity string
    The user identity associated with the resource.
    Type string
    Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is SystemAssigned, UserAssigned.
    UserAssignedIdentity string
    The user identity associated with the resource.
    type String
    Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is SystemAssigned, UserAssigned.
    userAssignedIdentity String
    The user identity associated with the resource.
    type string
    Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is SystemAssigned, UserAssigned.
    userAssignedIdentity string
    The user identity associated with the resource.
    type str
    Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is SystemAssigned, UserAssigned.
    user_assigned_identity str
    The user identity associated with the resource.
    type String
    Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is SystemAssigned, UserAssigned.
    userAssignedIdentity String
    The user identity associated with the resource.

    SystemTopicEventSubscriptionDeliveryProperty, SystemTopicEventSubscriptionDeliveryPropertyArgs

    HeaderName string
    The name of the header to send on to the destination.
    Type string
    Either Static or Dynamic.
    Secret bool
    Set to true if the value is a secret and should be protected, otherwise false. If true then this value won't be returned from Azure API calls.
    SourceField string
    If the type is Dynamic, then provide the payload field to be used as the value. Valid source fields differ by subscription type.
    Value string
    If the type is Static, then provide the value to use.
    HeaderName string
    The name of the header to send on to the destination.
    Type string
    Either Static or Dynamic.
    Secret bool
    Set to true if the value is a secret and should be protected, otherwise false. If true then this value won't be returned from Azure API calls.
    SourceField string
    If the type is Dynamic, then provide the payload field to be used as the value. Valid source fields differ by subscription type.
    Value string
    If the type is Static, then provide the value to use.
    headerName String
    The name of the header to send on to the destination.
    type String
    Either Static or Dynamic.
    secret Boolean
    Set to true if the value is a secret and should be protected, otherwise false. If true then this value won't be returned from Azure API calls.
    sourceField String
    If the type is Dynamic, then provide the payload field to be used as the value. Valid source fields differ by subscription type.
    value String
    If the type is Static, then provide the value to use.
    headerName string
    The name of the header to send on to the destination.
    type string
    Either Static or Dynamic.
    secret boolean
    Set to true if the value is a secret and should be protected, otherwise false. If true then this value won't be returned from Azure API calls.
    sourceField string
    If the type is Dynamic, then provide the payload field to be used as the value. Valid source fields differ by subscription type.
    value string
    If the type is Static, then provide the value to use.
    header_name str
    The name of the header to send on to the destination.
    type str
    Either Static or Dynamic.
    secret bool
    Set to true if the value is a secret and should be protected, otherwise false. If true then this value won't be returned from Azure API calls.
    source_field str
    If the type is Dynamic, then provide the payload field to be used as the value. Valid source fields differ by subscription type.
    value str
    If the type is Static, then provide the value to use.
    headerName String
    The name of the header to send on to the destination.
    type String
    Either Static or Dynamic.
    secret Boolean
    Set to true if the value is a secret and should be protected, otherwise false. If true then this value won't be returned from Azure API calls.
    sourceField String
    If the type is Dynamic, then provide the payload field to be used as the value. Valid source fields differ by subscription type.
    value String
    If the type is Static, then provide the value to use.

    SystemTopicEventSubscriptionRetryPolicy, SystemTopicEventSubscriptionRetryPolicyArgs

    EventTimeToLive int
    Specifies the time to live (in minutes) for events. Supported range is 1 to 1440. See official documentation for more details.
    MaxDeliveryAttempts int
    Specifies the maximum number of delivery retry attempts for events.
    EventTimeToLive int
    Specifies the time to live (in minutes) for events. Supported range is 1 to 1440. See official documentation for more details.
    MaxDeliveryAttempts int
    Specifies the maximum number of delivery retry attempts for events.
    eventTimeToLive Integer
    Specifies the time to live (in minutes) for events. Supported range is 1 to 1440. See official documentation for more details.
    maxDeliveryAttempts Integer
    Specifies the maximum number of delivery retry attempts for events.
    eventTimeToLive number
    Specifies the time to live (in minutes) for events. Supported range is 1 to 1440. See official documentation for more details.
    maxDeliveryAttempts number
    Specifies the maximum number of delivery retry attempts for events.
    event_time_to_live int
    Specifies the time to live (in minutes) for events. Supported range is 1 to 1440. See official documentation for more details.
    max_delivery_attempts int
    Specifies the maximum number of delivery retry attempts for events.
    eventTimeToLive Number
    Specifies the time to live (in minutes) for events. Supported range is 1 to 1440. See official documentation for more details.
    maxDeliveryAttempts Number
    Specifies the maximum number of delivery retry attempts for events.

    SystemTopicEventSubscriptionStorageBlobDeadLetterDestination, SystemTopicEventSubscriptionStorageBlobDeadLetterDestinationArgs

    StorageAccountId string
    Specifies the id of the storage account id where the storage blob is located.
    StorageBlobContainerName string
    Specifies the name of the Storage blob container that is the destination of the deadletter events.
    StorageAccountId string
    Specifies the id of the storage account id where the storage blob is located.
    StorageBlobContainerName string
    Specifies the name of the Storage blob container that is the destination of the deadletter events.
    storageAccountId String
    Specifies the id of the storage account id where the storage blob is located.
    storageBlobContainerName String
    Specifies the name of the Storage blob container that is the destination of the deadletter events.
    storageAccountId string
    Specifies the id of the storage account id where the storage blob is located.
    storageBlobContainerName string
    Specifies the name of the Storage blob container that is the destination of the deadletter events.
    storage_account_id str
    Specifies the id of the storage account id where the storage blob is located.
    storage_blob_container_name str
    Specifies the name of the Storage blob container that is the destination of the deadletter events.
    storageAccountId String
    Specifies the id of the storage account id where the storage blob is located.
    storageBlobContainerName String
    Specifies the name of the Storage blob container that is the destination of the deadletter events.

    SystemTopicEventSubscriptionStorageQueueEndpoint, SystemTopicEventSubscriptionStorageQueueEndpointArgs

    QueueName string
    Specifies the name of the storage queue where the Event Subscription will receive events.
    StorageAccountId string
    Specifies the id of the storage account id where the storage queue is located.
    QueueMessageTimeToLiveInSeconds int
    Storage queue message time to live in seconds.
    QueueName string
    Specifies the name of the storage queue where the Event Subscription will receive events.
    StorageAccountId string
    Specifies the id of the storage account id where the storage queue is located.
    QueueMessageTimeToLiveInSeconds int
    Storage queue message time to live in seconds.
    queueName String
    Specifies the name of the storage queue where the Event Subscription will receive events.
    storageAccountId String
    Specifies the id of the storage account id where the storage queue is located.
    queueMessageTimeToLiveInSeconds Integer
    Storage queue message time to live in seconds.
    queueName string
    Specifies the name of the storage queue where the Event Subscription will receive events.
    storageAccountId string
    Specifies the id of the storage account id where the storage queue is located.
    queueMessageTimeToLiveInSeconds number
    Storage queue message time to live in seconds.
    queue_name str
    Specifies the name of the storage queue where the Event Subscription will receive events.
    storage_account_id str
    Specifies the id of the storage account id where the storage queue is located.
    queue_message_time_to_live_in_seconds int
    Storage queue message time to live in seconds.
    queueName String
    Specifies the name of the storage queue where the Event Subscription will receive events.
    storageAccountId String
    Specifies the id of the storage account id where the storage queue is located.
    queueMessageTimeToLiveInSeconds Number
    Storage queue message time to live in seconds.

    SystemTopicEventSubscriptionSubjectFilter, SystemTopicEventSubscriptionSubjectFilterArgs

    CaseSensitive bool
    Specifies if subject_begins_with and subject_ends_with case sensitive. This value
    SubjectBeginsWith string
    A string to filter events for an event subscription based on a resource path prefix.
    SubjectEndsWith string
    A string to filter events for an event subscription based on a resource path suffix.
    CaseSensitive bool
    Specifies if subject_begins_with and subject_ends_with case sensitive. This value
    SubjectBeginsWith string
    A string to filter events for an event subscription based on a resource path prefix.
    SubjectEndsWith string
    A string to filter events for an event subscription based on a resource path suffix.
    caseSensitive Boolean
    Specifies if subject_begins_with and subject_ends_with case sensitive. This value
    subjectBeginsWith String
    A string to filter events for an event subscription based on a resource path prefix.
    subjectEndsWith String
    A string to filter events for an event subscription based on a resource path suffix.
    caseSensitive boolean
    Specifies if subject_begins_with and subject_ends_with case sensitive. This value
    subjectBeginsWith string
    A string to filter events for an event subscription based on a resource path prefix.
    subjectEndsWith string
    A string to filter events for an event subscription based on a resource path suffix.
    case_sensitive bool
    Specifies if subject_begins_with and subject_ends_with case sensitive. This value
    subject_begins_with str
    A string to filter events for an event subscription based on a resource path prefix.
    subject_ends_with str
    A string to filter events for an event subscription based on a resource path suffix.
    caseSensitive Boolean
    Specifies if subject_begins_with and subject_ends_with case sensitive. This value
    subjectBeginsWith String
    A string to filter events for an event subscription based on a resource path prefix.
    subjectEndsWith String
    A string to filter events for an event subscription based on a resource path suffix.

    SystemTopicEventSubscriptionWebhookEndpoint, SystemTopicEventSubscriptionWebhookEndpointArgs

    Url string
    Specifies the url of the webhook where the Event Subscription will receive events.
    ActiveDirectoryAppIdOrUri string
    The Azure Active Directory Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
    ActiveDirectoryTenantId string
    The Azure Active Directory Tenant ID to get the access token that will be included as the bearer token in delivery requests.
    BaseUrl string
    The base url of the webhook where the Event Subscription will receive events.
    MaxEventsPerBatch int
    Maximum number of events per batch.
    PreferredBatchSizeInKilobytes int
    Preferred batch size in Kilobytes.
    Url string
    Specifies the url of the webhook where the Event Subscription will receive events.
    ActiveDirectoryAppIdOrUri string
    The Azure Active Directory Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
    ActiveDirectoryTenantId string
    The Azure Active Directory Tenant ID to get the access token that will be included as the bearer token in delivery requests.
    BaseUrl string
    The base url of the webhook where the Event Subscription will receive events.
    MaxEventsPerBatch int
    Maximum number of events per batch.
    PreferredBatchSizeInKilobytes int
    Preferred batch size in Kilobytes.
    url String
    Specifies the url of the webhook where the Event Subscription will receive events.
    activeDirectoryAppIdOrUri String
    The Azure Active Directory Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
    activeDirectoryTenantId String
    The Azure Active Directory Tenant ID to get the access token that will be included as the bearer token in delivery requests.
    baseUrl String
    The base url of the webhook where the Event Subscription will receive events.
    maxEventsPerBatch Integer
    Maximum number of events per batch.
    preferredBatchSizeInKilobytes Integer
    Preferred batch size in Kilobytes.
    url string
    Specifies the url of the webhook where the Event Subscription will receive events.
    activeDirectoryAppIdOrUri string
    The Azure Active Directory Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
    activeDirectoryTenantId string
    The Azure Active Directory Tenant ID to get the access token that will be included as the bearer token in delivery requests.
    baseUrl string
    The base url of the webhook where the Event Subscription will receive events.
    maxEventsPerBatch number
    Maximum number of events per batch.
    preferredBatchSizeInKilobytes number
    Preferred batch size in Kilobytes.
    url str
    Specifies the url of the webhook where the Event Subscription will receive events.
    active_directory_app_id_or_uri str
    The Azure Active Directory Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
    active_directory_tenant_id str
    The Azure Active Directory Tenant ID to get the access token that will be included as the bearer token in delivery requests.
    base_url str
    The base url of the webhook where the Event Subscription will receive events.
    max_events_per_batch int
    Maximum number of events per batch.
    preferred_batch_size_in_kilobytes int
    Preferred batch size in Kilobytes.
    url String
    Specifies the url of the webhook where the Event Subscription will receive events.
    activeDirectoryAppIdOrUri String
    The Azure Active Directory Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
    activeDirectoryTenantId String
    The Azure Active Directory Tenant ID to get the access token that will be included as the bearer token in delivery requests.
    baseUrl String
    The base url of the webhook where the Event Subscription will receive events.
    maxEventsPerBatch Number
    Maximum number of events per batch.
    preferredBatchSizeInKilobytes Number
    Preferred batch size in Kilobytes.

    Import

    EventGrid System Topic Event Subscriptions can be imported using the resource id, e.g.

    $ pulumi import azure:eventgrid/systemTopicEventSubscription:SystemTopicEventSubscription example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.EventGrid/systemTopics/topic1/eventSubscriptions/subscription1
    

    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.70.0 published on Wednesday, Mar 27, 2024 by Pulumi