import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for managing Terraform/OpenTofu Providers in the IaCM Provider Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const aws = new harness.platform.InfraProvider("aws", { * type: "aws", * description: "AWS provider for IaCM", * }); * const azurerm = new harness.platform.InfraProvider("azurerm", { * type: "azurerm", * description: "Azure provider for IaCM", * }); * const google = new harness.platform.InfraProvider("google", { * type: "google", * description: "Google Cloud provider for IaCM", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import harness:platform/infraProvider:InfraProvider example * ``` */ export declare class InfraProvider extends pulumi.CustomResource { /** * Get an existing InfraProvider resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InfraProviderState, opts?: pulumi.CustomResourceOptions): InfraProvider; /** * Returns true if the given object is an instance of InfraProvider. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is InfraProvider; /** * Account that owns the provider. */ readonly account: pulumi.Output; /** * Timestamp when the provider was created. */ readonly created: pulumi.Output; /** * Description of the provider. */ readonly description: pulumi.Output; /** * Provider type (e.g., aws, azurerm, google). */ readonly type: pulumi.Output; /** * Timestamp when the provider was last updated. */ readonly updated: pulumi.Output; /** * List of provider versions. */ readonly versions: pulumi.Output; /** * Create a InfraProvider resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: InfraProviderArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering InfraProvider resources. */ export interface InfraProviderState { /** * Account that owns the provider. */ account?: pulumi.Input; /** * Timestamp when the provider was created. */ created?: pulumi.Input; /** * Description of the provider. */ description?: pulumi.Input; /** * Provider type (e.g., aws, azurerm, google). */ type?: pulumi.Input; /** * Timestamp when the provider was last updated. */ updated?: pulumi.Input; /** * List of provider versions. */ versions?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a InfraProvider resource. */ export interface InfraProviderArgs { /** * Description of the provider. */ description?: pulumi.Input; /** * Provider type (e.g., aws, azurerm, google). */ type: pulumi.Input; } //# sourceMappingURL=infraProvider.d.ts.map