import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for retrieving Harness catalog entities. */ export declare function getIdpCatalogEntity(args: GetIdpCatalogEntityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIdpCatalogEntity. */ export interface GetIdpCatalogEntityArgs { /** * Unique identifier of the resource. */ identifier: string; /** * Kind of the catalog entity */ kind: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; } /** * A collection of values returned by getIdpCatalogEntity. */ export interface GetIdpCatalogEntityResult { /** * Contains Git Information for importing entities from Git */ readonly gitDetails: outputs.platform.GetIdpCatalogEntityGitDetail[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Kind of the catalog entity */ readonly kind: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * YAML definition of the catalog entity */ readonly yaml: string; } /** * Data source for retrieving Harness catalog entities. */ export declare function getIdpCatalogEntityOutput(args: GetIdpCatalogEntityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIdpCatalogEntity. */ export interface GetIdpCatalogEntityOutputArgs { /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Kind of the catalog entity */ kind: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; } //# sourceMappingURL=getIdpCatalogEntity.d.ts.map