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 Ca Bundles in Oracle Cloud Infrastructure Certificates Management service. * * Lists all CA bundles that match the query parameters. * Optionally, you can use the parameter `FilterByCaBundleIdQueryParam` to limit the result set to a single item that matches the specified CA bundle. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCaBundles = oci.certificatesmanagement.getCaBundles({ * caBundleId: testCaBundle.id, * compartmentId: compartmentId, * name: caBundleName, * state: caBundleState, * }); * ``` */ export declare function getCaBundles(args?: GetCaBundlesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCaBundles. */ export interface GetCaBundlesArgs { /** * The OCID of the CA bundle. */ caBundleId?: string; /** * A filter that returns only resources that match the given compartment OCID. */ compartmentId?: string; filters?: inputs.CertificatesManagement.GetCaBundlesFilter[]; /** * A filter that returns only resources that match the specified name. */ name?: string; /** * A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getCaBundles. */ export interface GetCaBundlesResult { /** * The list of ca_bundle_collection. */ readonly caBundleCollections: outputs.CertificatesManagement.GetCaBundlesCaBundleCollection[]; readonly caBundleId?: string; /** * The OCID of the compartment for the CA bundle. */ readonly compartmentId?: string; readonly filters?: outputs.CertificatesManagement.GetCaBundlesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods. */ readonly name?: string; /** * The current lifecycle state of the CA bundle. */ readonly state?: string; } /** * This data source provides the list of Ca Bundles in Oracle Cloud Infrastructure Certificates Management service. * * Lists all CA bundles that match the query parameters. * Optionally, you can use the parameter `FilterByCaBundleIdQueryParam` to limit the result set to a single item that matches the specified CA bundle. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCaBundles = oci.certificatesmanagement.getCaBundles({ * caBundleId: testCaBundle.id, * compartmentId: compartmentId, * name: caBundleName, * state: caBundleState, * }); * ``` */ export declare function getCaBundlesOutput(args?: GetCaBundlesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCaBundles. */ export interface GetCaBundlesOutputArgs { /** * The OCID of the CA bundle. */ caBundleId?: pulumi.Input; /** * A filter that returns only resources that match the given compartment OCID. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter that returns only resources that match the specified name. */ name?: pulumi.Input; /** * A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getCaBundles.d.ts.map