import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for creating a Harness Override V2. * * ## Import * * The `pulumi import` command can be used, for example: * * Import account level override * * ```sh * $ pulumi import harness:platform/overrides:Overrides example * ``` * * Import org level override * * ```sh * $ pulumi import harness:platform/overrides:Overrides example / * ``` * * Import project level override * * ```sh * $ pulumi import harness:platform/overrides:Overrides example // * ``` */ export declare class Overrides extends pulumi.CustomResource { /** * Get an existing Overrides 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?: OverridesState, opts?: pulumi.CustomResourceOptions): Overrides; /** * Returns true if the given object is an instance of Overrides. 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 Overrides; /** * The cluster ID to which the overrides are associated. */ readonly clusterId: pulumi.Output; /** * The environment ID to which the overrides are associated. */ readonly envId: pulumi.Output; /** * Contains parameters related to creating an Entity for Git Experience. */ readonly gitDetails: pulumi.Output; /** * The identifier of the override entity. */ readonly identifier: pulumi.Output; /** * import override from git */ readonly importFromGit: pulumi.Output; /** * The infrastructure ID to which the overrides are associated. */ readonly infraId: pulumi.Output; /** * force import override from remote even if same file path already exist */ readonly isForceImport: pulumi.Output; /** * Unique identifier of the organization. */ readonly orgId: pulumi.Output; /** * Unique identifier of the project. */ readonly projectId: pulumi.Output; /** * The service ID to which the overrides applies. */ readonly serviceId: pulumi.Output; /** * The type of the overrides. */ readonly type: pulumi.Output; /** * The yaml of the override entity */ readonly yaml: pulumi.Output; /** * Create a Overrides 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: OverridesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Overrides resources. */ export interface OverridesState { /** * The cluster ID to which the overrides are associated. */ clusterId?: pulumi.Input; /** * The environment ID to which the overrides are associated. */ envId?: pulumi.Input; /** * Contains parameters related to creating an Entity for Git Experience. */ gitDetails?: pulumi.Input; /** * The identifier of the override entity. */ identifier?: pulumi.Input; /** * import override from git */ importFromGit?: pulumi.Input; /** * The infrastructure ID to which the overrides are associated. */ infraId?: pulumi.Input; /** * force import override from remote even if same file path already exist */ isForceImport?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; /** * The service ID to which the overrides applies. */ serviceId?: pulumi.Input; /** * The type of the overrides. */ type?: pulumi.Input; /** * The yaml of the override entity */ yaml?: pulumi.Input; } /** * The set of arguments for constructing a Overrides resource. */ export interface OverridesArgs { /** * The cluster ID to which the overrides are associated. */ clusterId?: pulumi.Input; /** * The environment ID to which the overrides are associated. */ envId: pulumi.Input; /** * Contains parameters related to creating an Entity for Git Experience. */ gitDetails?: pulumi.Input; /** * The identifier of the override entity. */ identifier?: pulumi.Input; /** * import override from git */ importFromGit?: pulumi.Input; /** * The infrastructure ID to which the overrides are associated. */ infraId?: pulumi.Input; /** * force import override from remote even if same file path already exist */ isForceImport?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; /** * The service ID to which the overrides applies. */ serviceId?: pulumi.Input; /** * The type of the overrides. */ type: pulumi.Input; /** * The yaml of the override entity */ yaml?: pulumi.Input; } //# sourceMappingURL=overrides.d.ts.map