import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages an EventGrid Domain * * ## 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 exampleDomain = new azure.eventgrid.Domain("example", { * name: "my-eventgrid-domain", * 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 Domains can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:eventgrid/domain:Domain domain1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.EventGrid/domains/domain1 * ``` */ export declare class Domain extends pulumi.CustomResource { /** * Get an existing Domain 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?: DomainState, opts?: pulumi.CustomResourceOptions): Domain; /** * Returns true if the given object is an instance of Domain. 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 Domain; /** * Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`. */ readonly autoCreateTopicWithFirstSubscription: pulumi.Output; /** * Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`. */ readonly autoDeleteTopicWithLastSubscription: pulumi.Output; /** * The Endpoint associated with the EventGrid Domain. */ 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 Domain. 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 Domain resource. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The Primary Shared Access Key associated with the EventGrid Domain. */ 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 Domain exists. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The Secondary Shared Access Key associated with the EventGrid Domain. */ readonly secondaryAccessKey: pulumi.Output; /** * A mapping of tags to assign to the resource. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Domain 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: DomainArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Domain resources. */ export interface DomainState { /** * Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`. */ autoCreateTopicWithFirstSubscription?: pulumi.Input; /** * Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`. */ autoDeleteTopicWithLastSubscription?: pulumi.Input; /** * The Endpoint associated with the EventGrid Domain. */ 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 Domain. 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 Domain resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The Primary Shared Access Key associated with the EventGrid Domain. */ 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 Domain exists. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The Secondary Shared Access Key associated with the EventGrid Domain. */ 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 Domain resource. */ export interface DomainArgs { /** * Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`. */ autoCreateTopicWithFirstSubscription?: pulumi.Input; /** * Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`. */ autoDeleteTopicWithLastSubscription?: 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 Domain. 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 Domain 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 Domain 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; }>; }