import * as pulumi from "@pulumi/pulumi"; export declare class SecretFolder extends pulumi.CustomResource { /** * Get an existing SecretFolder 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?: SecretFolderState, opts?: pulumi.CustomResourceOptions): SecretFolder; /** * Returns true if the given object is an instance of SecretFolder. 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 SecretFolder; /** * The description of the folder. Defaults to an empty string. */ readonly description: pulumi.Output; /** * The ID of the environment */ readonly environmentId: pulumi.Output; /** * The environment slug of the folder to modify/create */ readonly environmentSlug: pulumi.Output; /** * The path where the folder should be created/updated */ readonly folderPath: pulumi.Output; /** * Whether to force delete the folder even if it contains resources. */ readonly forceDelete: pulumi.Output; /** * The name for the folder */ readonly name: pulumi.Output; /** * The full path of the folder, including its name. */ readonly path: pulumi.Output; /** * The Infisical project ID (Required for Machine Identity auth, and service tokens with multiple scopes) */ readonly projectId: pulumi.Output; /** * Create a SecretFolder 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: SecretFolderArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SecretFolder resources. */ export interface SecretFolderState { /** * The description of the folder. Defaults to an empty string. */ description?: pulumi.Input; /** * The ID of the environment */ environmentId?: pulumi.Input; /** * The environment slug of the folder to modify/create */ environmentSlug?: pulumi.Input; /** * The path where the folder should be created/updated */ folderPath?: pulumi.Input; /** * Whether to force delete the folder even if it contains resources. */ forceDelete?: pulumi.Input; /** * The name for the folder */ name?: pulumi.Input; /** * The full path of the folder, including its name. */ path?: pulumi.Input; /** * The Infisical project ID (Required for Machine Identity auth, and service tokens with multiple scopes) */ projectId?: pulumi.Input; } /** * The set of arguments for constructing a SecretFolder resource. */ export interface SecretFolderArgs { /** * The description of the folder. Defaults to an empty string. */ description?: pulumi.Input; /** * The environment slug of the folder to modify/create */ environmentSlug: pulumi.Input; /** * The path where the folder should be created/updated */ folderPath: pulumi.Input; /** * Whether to force delete the folder even if it contains resources. */ forceDelete?: pulumi.Input; /** * The name for the folder */ name?: pulumi.Input; /** * The Infisical project ID (Required for Machine Identity auth, and service tokens with multiple scopes) */ projectId: pulumi.Input; } //# sourceMappingURL=secretFolder.d.ts.map