import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for listing Terraform/OpenTofu Providers from the IaCM Provider Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const all = harness.platform.getInfraProviders({}); * export const providerCount = all.then(all => all.providers).length; * export const providerTypes = all.then(all => .map(p => (p.type))); * ``` */ export declare function getInfraProviders(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getInfraProviders. */ export interface GetInfraProvidersResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of providers. */ readonly providers: outputs.platform.GetInfraProvidersProvider[]; } /** * Data source for listing Terraform/OpenTofu Providers from the IaCM Provider Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const all = harness.platform.getInfraProviders({}); * export const providerCount = all.then(all => all.providers).length; * export const providerTypes = all.then(all => .map(p => (p.type))); * ``` */ export declare function getInfraProvidersOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getInfraProviders.d.ts.map