import * as pulumi from "@pulumi/pulumi"; /** * This data source retrieves the SDDC password in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPassword = oci.ocvp.getRetrievePassword({ * sddcId: compartmentId, * type: passwordType, * }); * ``` */ export declare function getRetrievePassword(args: GetRetrievePasswordArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRetrievePassword. */ export interface GetRetrievePasswordArgs { /** * The [OCID](https://www.terraform.io/Content/General/Concepts/identifiers.htm) of the SDDC. */ sddcId: string; /** * The SDDC password type. */ type: string; } /** * A collection of values returned by getRetrievePassword. */ export interface GetRetrievePasswordResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly sddcId: string; /** * SDDC vCenter/NSX/HCX password. * * `passwordType` - SDDC password type. */ readonly sddcPassword: { [key: string]: string; }; readonly type: string; } /** * This data source retrieves the SDDC password in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPassword = oci.ocvp.getRetrievePassword({ * sddcId: compartmentId, * type: passwordType, * }); * ``` */ export declare function getRetrievePasswordOutput(args: GetRetrievePasswordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRetrievePassword. */ export interface GetRetrievePasswordOutputArgs { /** * The [OCID](https://www.terraform.io/Content/General/Concepts/identifiers.htm) of the SDDC. */ sddcId: pulumi.Input; /** * The SDDC password type. */ type: pulumi.Input; } //# sourceMappingURL=getRetrievePassword.d.ts.map