import * as pulumi from "@pulumi/pulumi"; /** * Resource for managing IAC default pipelines * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = new harness.platform.IacmDefaultPipeline("example", { * orgId: test.id, * projectId: testHarnessPlatformProject.id, * provisionerType: "terraform", * operation: "plan", * pipeline: "pipeline1", * }); * ``` */ export declare class IacmDefaultPipeline extends pulumi.CustomResource { /** * Get an existing IacmDefaultPipeline 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?: IacmDefaultPipelineState, opts?: pulumi.CustomResourceOptions): IacmDefaultPipeline; /** * Returns true if the given object is an instance of IacmDefaultPipeline. 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 IacmDefaultPipeline; /** * The operation associated with this default. */ readonly operation: pulumi.Output; /** * Organization identifier of the organization the default pipelines resides in. */ readonly orgId: pulumi.Output; /** * The pipeline associated with this default. */ readonly pipeline: pulumi.Output; /** * Project identifier of the project the default pipelines resides in. */ readonly projectId: pulumi.Output; /** * The provisioner associated with this default. */ readonly provisionerType: pulumi.Output; /** * Create a IacmDefaultPipeline 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: IacmDefaultPipelineArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IacmDefaultPipeline resources. */ export interface IacmDefaultPipelineState { /** * The operation associated with this default. */ operation?: pulumi.Input; /** * Organization identifier of the organization the default pipelines resides in. */ orgId?: pulumi.Input; /** * The pipeline associated with this default. */ pipeline?: pulumi.Input; /** * Project identifier of the project the default pipelines resides in. */ projectId?: pulumi.Input; /** * The provisioner associated with this default. */ provisionerType?: pulumi.Input; } /** * The set of arguments for constructing a IacmDefaultPipeline resource. */ export interface IacmDefaultPipelineArgs { /** * The operation associated with this default. */ operation: pulumi.Input; /** * Organization identifier of the organization the default pipelines resides in. */ orgId: pulumi.Input; /** * The pipeline associated with this default. */ pipeline: pulumi.Input; /** * Project identifier of the project the default pipelines resides in. */ projectId: pulumi.Input; /** * The provisioner associated with this default. */ provisionerType: pulumi.Input; } //# sourceMappingURL=iacmDefaultPipeline.d.ts.map