import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Dev Center Catalog. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getCatalog({ * name: exampleAzurermDevCenterCatalog.name, * devCenterId: exampleAzurermDevCenterCatalog.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 getCatalog(args: GetCatalogArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCatalog. */ export interface GetCatalogArgs { /** * Specifies the Dev Center Id within which this Dev Center Catalog should exist. */ devCenterId: string; /** * The name of this Dev Center Catalog. */ name: string; } /** * A collection of values returned by getCatalog. */ export interface GetCatalogResult { /** * A `catalogAdogit` block as defined below. */ readonly catalogAdogits: outputs.devcenter.GetCatalogCatalogAdogit[]; /** * A `catalogGithub` block as defined below. */ readonly catalogGithubs: outputs.devcenter.GetCatalogCatalogGithub[]; readonly devCenterId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; } /** * Use this data source to access information about an existing Dev Center Catalog. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getCatalog({ * name: exampleAzurermDevCenterCatalog.name, * devCenterId: exampleAzurermDevCenterCatalog.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 getCatalogOutput(args: GetCatalogOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCatalog. */ export interface GetCatalogOutputArgs { /** * Specifies the Dev Center Id within which this Dev Center Catalog should exist. */ devCenterId: pulumi.Input; /** * The name of this Dev Center Catalog. */ name: pulumi.Input; }