import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ## Import * * The `pulumi import` command can be used, for example: * * Import gitOps project with account level agent * * ```sh * $ pulumi import harness:platform/gitopsAppProject:GitopsAppProject example / * ``` * * Import gitOps project with org level agent * * ```sh * $ pulumi import harness:platform/gitopsAppProject:GitopsAppProject example // * ``` * * Import gitOps project with project level agent * * ```sh * $ pulumi import harness:platform/gitopsAppProject:GitopsAppProject example /// * ``` */ export declare class GitopsAppProject extends pulumi.CustomResource { /** * Get an existing GitopsAppProject 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?: GitopsAppProjectState, opts?: pulumi.CustomResourceOptions): GitopsAppProject; /** * Returns true if the given object is an instance of GitopsAppProject. 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 GitopsAppProject; /** * Account identifier of the GitOps Agent where argo project will exist. * * @deprecated This field is deprecated and will be removed in a future release. */ readonly accountId: pulumi.Output; /** * Agent identifier of the agent where argo project will exist (include scope prefix) */ readonly agentId: pulumi.Output; /** * Org identifier of the GitOps Agent where argo project is to be created. */ readonly orgId: pulumi.Output; /** * Project identifier of the Gitops Agent where argo project is to be created. */ readonly projectId: pulumi.Output; /** * GitOps project configuration. */ readonly projects: pulumi.Output; /** * Identifier for the GitOps Argo project. */ readonly queryName: pulumi.Output; /** * Indicates if the argo project should be updated if existing and inserted if not. */ readonly upsert: pulumi.Output; /** * Create a GitopsAppProject 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: GitopsAppProjectArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering GitopsAppProject resources. */ export interface GitopsAppProjectState { /** * Account identifier of the GitOps Agent where argo project will exist. * * @deprecated This field is deprecated and will be removed in a future release. */ accountId?: pulumi.Input; /** * Agent identifier of the agent where argo project will exist (include scope prefix) */ agentId?: pulumi.Input; /** * Org identifier of the GitOps Agent where argo project is to be created. */ orgId?: pulumi.Input; /** * Project identifier of the Gitops Agent where argo project is to be created. */ projectId?: pulumi.Input; /** * GitOps project configuration. */ projects?: pulumi.Input[] | undefined>; /** * Identifier for the GitOps Argo project. */ queryName?: pulumi.Input; /** * Indicates if the argo project should be updated if existing and inserted if not. */ upsert?: pulumi.Input; } /** * The set of arguments for constructing a GitopsAppProject resource. */ export interface GitopsAppProjectArgs { /** * Account identifier of the GitOps Agent where argo project will exist. * * @deprecated This field is deprecated and will be removed in a future release. */ accountId?: pulumi.Input; /** * Agent identifier of the agent where argo project will exist (include scope prefix) */ agentId: pulumi.Input; /** * Org identifier of the GitOps Agent where argo project is to be created. */ orgId?: pulumi.Input; /** * Project identifier of the Gitops Agent where argo project is to be created. */ projectId?: pulumi.Input; /** * GitOps project configuration. */ projects: pulumi.Input[]>; /** * Identifier for the GitOps Argo project. */ queryName?: pulumi.Input; /** * Indicates if the argo project should be updated if existing and inserted if not. */ upsert?: pulumi.Input; } //# sourceMappingURL=gitopsAppProject.d.ts.map