import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Dev Center Gallery. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getGallery({ * name: exampleAzurermDevCenterGallery.name, * devCenterId: exampleAzurermDevCenterGallery.devCenterId, * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevCenter` - 2025-02-01 */ export declare function getGallery(args: GetGalleryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGallery. */ export interface GetGalleryArgs { /** * The ID of the Dev Center which contains the Dev Center Gallery. */ devCenterId: string; /** * The name of this Dev Center Gallery. */ name: string; } /** * A collection of values returned by getGallery. */ export interface GetGalleryResult { readonly devCenterId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; /** * The ID of the Shared Gallery connected to the Dev Center Gallery. */ readonly sharedGalleryId: string; } /** * Use this data source to access information about an existing Dev Center Gallery. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getGallery({ * name: exampleAzurermDevCenterGallery.name, * devCenterId: exampleAzurermDevCenterGallery.devCenterId, * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevCenter` - 2025-02-01 */ export declare function getGalleryOutput(args: GetGalleryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGallery. */ export interface GetGalleryOutputArgs { /** * The ID of the Dev Center which contains the Dev Center Gallery. */ devCenterId: pulumi.Input; /** * The name of this Dev Center Gallery. */ name: pulumi.Input; }