import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages an EventGrid Topic * * > **Note:** at this time EventGrid Topics are only available in a limited number of regions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleTopic = new azure.eventgrid.Topic("example", { * name: "my-eventgrid-topic", * location: example.location, * resourceGroupName: example.name, * tags: { * environment: "Production", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.EventGrid` - 2025-02-15 * * ## Import * * EventGrid Topic's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:eventgrid/topic:Topic topic1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.EventGrid/topics/topic1 * ``` */ export declare class Topic extends pulumi.CustomResource { /** * Get an existing Topic resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: TopicState, opts?: pulumi.CustomResourceOptions): Topic; /** * Returns true if the given object is an instance of Topic. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Topic; /** * The Endpoint associated with the EventGrid Topic. */ readonly endpoint: pulumi.Output; /** * An `identity` block as defined below. */ readonly identity: pulumi.Output; /** * One or more `inboundIpRule` blocks as defined below. */ readonly inboundIpRules: pulumi.Output; /** * A `inputMappingDefaultValues` block as defined below. Changing this forces a new resource to be created. */ readonly inputMappingDefaultValues: pulumi.Output; /** * A `inputMappingFields` block as defined below. Changing this forces a new resource to be created. */ readonly inputMappingFields: pulumi.Output; /** * Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created. */ readonly inputSchema: pulumi.Output; /** * Whether local authentication methods is enabled for the EventGrid Topic. Defaults to `true`. */ readonly localAuthEnabled: pulumi.Output; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * Specifies the name of the EventGrid Topic resource. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The Primary Shared Access Key associated with the EventGrid Topic. */ readonly primaryAccessKey: pulumi.Output; /** * Whether or not public network access is allowed for this server. Defaults to `true`. */ readonly publicNetworkAccessEnabled: pulumi.Output; /** * The name of the resource group in which the EventGrid Topic exists. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The Secondary Shared Access Key associated with the EventGrid Topic. */ readonly secondaryAccessKey: pulumi.Output; /** * A mapping of tags to assign to the resource. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Topic resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TopicArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Topic resources. */ export interface TopicState { /** * The Endpoint associated with the EventGrid Topic. */ endpoint?: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * One or more `inboundIpRule` blocks as defined below. */ inboundIpRules?: pulumi.Input[]>; /** * A `inputMappingDefaultValues` block as defined below. Changing this forces a new resource to be created. */ inputMappingDefaultValues?: pulumi.Input; /** * A `inputMappingFields` block as defined below. Changing this forces a new resource to be created. */ inputMappingFields?: pulumi.Input; /** * Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created. */ inputSchema?: pulumi.Input; /** * Whether local authentication methods is enabled for the EventGrid Topic. Defaults to `true`. */ localAuthEnabled?: pulumi.Input; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of the EventGrid Topic resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The Primary Shared Access Key associated with the EventGrid Topic. */ primaryAccessKey?: pulumi.Input; /** * Whether or not public network access is allowed for this server. Defaults to `true`. */ publicNetworkAccessEnabled?: pulumi.Input; /** * The name of the resource group in which the EventGrid Topic exists. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The Secondary Shared Access Key associated with the EventGrid Topic. */ secondaryAccessKey?: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Topic resource. */ export interface TopicArgs { /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * One or more `inboundIpRule` blocks as defined below. */ inboundIpRules?: pulumi.Input[]>; /** * A `inputMappingDefaultValues` block as defined below. Changing this forces a new resource to be created. */ inputMappingDefaultValues?: pulumi.Input; /** * A `inputMappingFields` block as defined below. Changing this forces a new resource to be created. */ inputMappingFields?: pulumi.Input; /** * Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created. */ inputSchema?: pulumi.Input; /** * Whether local authentication methods is enabled for the EventGrid Topic. Defaults to `true`. */ localAuthEnabled?: pulumi.Input; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of the EventGrid Topic resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Whether or not public network access is allowed for this server. Defaults to `true`. */ publicNetworkAccessEnabled?: pulumi.Input; /** * The name of the resource group in which the EventGrid Topic exists. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }