import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Event Grid System Topic * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.eventgrid.getSystemTopic({ * name: "eventgrid-system-topic", * resourceGroupName: "example-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.EventGrid` - 2025-02-15 */ export declare function getSystemTopic(args: GetSystemTopicArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSystemTopic. */ export interface GetSystemTopicArgs { /** * The name of the Event Grid System Topic resource. */ name: string; /** * The name of the resource group in which the Event Grid System Topic exists. */ resourceGroupName: string; } /** * A collection of values returned by getSystemTopic. */ export interface GetSystemTopicResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An `identity` block as defined below, which contains the Managed Service Identity information for this Event Grid System Topic. */ readonly identities: outputs.eventgrid.GetSystemTopicIdentity[]; readonly location: string; readonly metricArmResourceId: string; /** * The Metric Resource ID of the Event Grid System Topic. */ readonly metricResourceId: string; readonly name: string; readonly resourceGroupName: string; readonly sourceArmResourceId: string; /** * The ID of the Event Grid System Topic ARM Source. */ readonly sourceResourceId: string; /** * A mapping of tags which are assigned to the Event Grid System Topic. */ readonly tags: { [key: string]: string; }; /** * The Topic Type of the Event Grid System Topic. */ readonly topicType: string; } /** * Use this data source to access information about an existing Event Grid System Topic * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.eventgrid.getSystemTopic({ * name: "eventgrid-system-topic", * resourceGroupName: "example-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.EventGrid` - 2025-02-15 */ export declare function getSystemTopicOutput(args: GetSystemTopicOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSystemTopic. */ export interface GetSystemTopicOutputArgs { /** * The name of the Event Grid System Topic resource. */ name: pulumi.Input; /** * The name of the resource group in which the Event Grid System Topic exists. */ resourceGroupName: pulumi.Input; }