import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets the OCI CMK accessor for an Aiven project. The accessor is used to authenticate Aiven to your Oracle Cloud Infrastructure (OCI) Vault. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getCmkAccessorOci({ * project: "my-project", * }); * ``` */ export declare function getCmkAccessorOci(args: GetCmkAccessorOciArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCmkAccessorOci. */ export interface GetCmkAccessorOciArgs { /** * Project name. */ project: string; timeouts?: inputs.GetCmkAccessorOciTimeouts; } /** * A collection of values returned by getCmkAccessorOci. */ export interface GetCmkAccessorOciResult { /** * The OCI access group that Aiven uses to access your OCI Vault key. */ readonly accessGroup: string; /** * The OCI access tenant that Aiven uses to access your OCI Vault key. */ readonly accessTenant: string; /** * Resource ID, equal to `project`. */ readonly id: string; /** * Project name. */ readonly project: string; readonly timeouts?: outputs.GetCmkAccessorOciTimeouts; } /** * Gets the OCI CMK accessor for an Aiven project. The accessor is used to authenticate Aiven to your Oracle Cloud Infrastructure (OCI) Vault. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getCmkAccessorOci({ * project: "my-project", * }); * ``` */ export declare function getCmkAccessorOciOutput(args: GetCmkAccessorOciOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCmkAccessorOci. */ export interface GetCmkAccessorOciOutputArgs { /** * Project name. */ project: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getCmkAccessorOci.d.ts.map