import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Secretbundle Versions in Oracle Cloud Infrastructure Secrets service. * * Lists all secret bundle versions for the specified secret. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecretbundleVersions = oci.secrets.getSecretbundleVersions({ * secretId: testSecret.id, * }); * ``` */ export declare function getSecretbundleVersions(args: GetSecretbundleVersionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecretbundleVersions. */ export interface GetSecretbundleVersionsArgs { filters?: inputs.Secrets.GetSecretbundleVersionsFilter[]; /** * The OCID of the secret. */ secretId: string; } /** * A collection of values returned by getSecretbundleVersions. */ export interface GetSecretbundleVersionsResult { readonly filters?: outputs.Secrets.GetSecretbundleVersionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of secret_bundle_versions. */ readonly secretBundleVersions: outputs.Secrets.GetSecretbundleVersionsSecretBundleVersion[]; /** * The OCID of the secret. */ readonly secretId: string; } /** * This data source provides the list of Secretbundle Versions in Oracle Cloud Infrastructure Secrets service. * * Lists all secret bundle versions for the specified secret. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecretbundleVersions = oci.secrets.getSecretbundleVersions({ * secretId: testSecret.id, * }); * ``` */ export declare function getSecretbundleVersionsOutput(args: GetSecretbundleVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecretbundleVersions. */ export interface GetSecretbundleVersionsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The OCID of the secret. */ secretId: pulumi.Input; } //# sourceMappingURL=getSecretbundleVersions.d.ts.map