import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Datasource for looking up secert file type secret. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getSecretFile({ * identifier: "identifier", * }); * ``` */ export declare function getSecretFile(args: GetSecretFileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecretFile. */ export interface GetSecretFileArgs { /** * Additional Metadata for the Secret */ additionalMetadatas?: inputs.platform.GetSecretFileAdditionalMetadata[]; /** * Unique identifier of the resource. */ identifier: string; /** * Name of the resource. */ name?: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; } /** * A collection of values returned by getSecretFile. */ export interface GetSecretFileResult { /** * Additional Metadata for the Secret */ readonly additionalMetadatas?: outputs.platform.GetSecretFileAdditionalMetadata[]; /** * Description of the resource. */ readonly description: string; /** * Path of the file containing secret value */ readonly filePath: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Name of the resource. */ readonly name?: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * Identifier of the Secret Manager used to manage the secret. */ readonly secretManagerIdentifier: string; /** * Tags to associate with the resource. */ readonly tags: string[]; } /** * Datasource for looking up secert file type secret. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getSecretFile({ * identifier: "identifier", * }); * ``` */ export declare function getSecretFileOutput(args: GetSecretFileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecretFile. */ export interface GetSecretFileOutputArgs { /** * Additional Metadata for the Secret */ additionalMetadatas?: pulumi.Input[] | undefined>; /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Name of the resource. */ name?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; } //# sourceMappingURL=getSecretFile.d.ts.map