import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Datasource for looking up an AWS Secret Manager connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getAwsSecretManagerConnector({ * identifier: "identifier", * }); * ``` */ export declare function getAwsSecretManagerConnector(args: GetAwsSecretManagerConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAwsSecretManagerConnector. */ export interface GetAwsSecretManagerConnectorArgs { /** * Whether to force delete secret value or not. */ forceDeleteWithoutRecovery?: boolean; /** * 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; /** * Recovery duration in days in AWS Secrets Manager. */ recoveryWindowInDays?: number; } /** * A collection of values returned by getAwsSecretManagerConnector. */ export interface GetAwsSecretManagerConnectorResult { /** * Credentials to connect to AWS. */ readonly credentials: outputs.platform.GetAwsSecretManagerConnectorCredential[]; /** * Whether this is the default connector. */ readonly default: boolean; /** * Tags to filter delegates for connection. */ readonly delegateSelectors: string[]; /** * Description of the resource. */ readonly description: string; /** * The delegate to execute the action on. */ readonly executeOnDelegate: boolean; /** * Whether to force delete secret value or not. */ readonly forceDeleteWithoutRecovery?: boolean; /** * 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; /** * Recovery duration in days in AWS Secrets Manager. */ readonly recoveryWindowInDays?: number; /** * The AWS region where the AWS Secret Manager is. */ readonly region: string; /** * A prefix to be added to all secrets. */ readonly secretNamePrefix: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * Whether to update secret value using putSecretValue action. */ readonly usePutSecret: boolean; } /** * Datasource for looking up an AWS Secret Manager connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getAwsSecretManagerConnector({ * identifier: "identifier", * }); * ``` */ export declare function getAwsSecretManagerConnectorOutput(args: GetAwsSecretManagerConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAwsSecretManagerConnector. */ export interface GetAwsSecretManagerConnectorOutputArgs { /** * Whether to force delete secret value or not. */ forceDeleteWithoutRecovery?: pulumi.Input; /** * 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; /** * Recovery duration in days in AWS Secrets Manager. */ recoveryWindowInDays?: pulumi.Input; } //# sourceMappingURL=getAwsSecretManagerConnector.d.ts.map