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 Db Connection Bundles in Oracle Cloud Infrastructure Database service. * * Lists all database connection bundles that match the query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbConnectionBundles = oci.database.getDbConnectionBundles({ * compartmentId: compartmentId, * associatedResourceId: testResource.id, * dbConnectionBundleType: dbConnectionBundleDbConnectionBundleType, * displayName: dbConnectionBundleDisplayName, * state: dbConnectionBundleState, * }); * ``` */ export declare function getDbConnectionBundles(args: GetDbConnectionBundlesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbConnectionBundles. */ export interface GetDbConnectionBundlesArgs { /** * The OCID of the VM cluster associated with the connection bundle. If the parameter is set to null, all bundles are returned. */ associatedResourceId?: string; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; /** * A filter that returns only resources that match the specified database connection bundle type. */ dbConnectionBundleType?: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.Database.GetDbConnectionBundlesFilter[]; /** * 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 getDbConnectionBundles. */ export interface GetDbConnectionBundlesResult { readonly associatedResourceId?: string; /** * The OCID of the compartment containing the database connection bundle. */ readonly compartmentId: string; /** * The type of the database connection bundle. */ readonly dbConnectionBundleType?: string; /** * The list of db_connection_bundles. */ readonly dbConnectionBundles: outputs.Database.GetDbConnectionBundlesDbConnectionBundle[]; /** * Display name for the connection bundle. */ readonly displayName?: string; readonly filters?: outputs.Database.GetDbConnectionBundlesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current lifecycle state of the database connection bundle. */ readonly state?: string; } /** * This data source provides the list of Db Connection Bundles in Oracle Cloud Infrastructure Database service. * * Lists all database connection bundles that match the query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbConnectionBundles = oci.database.getDbConnectionBundles({ * compartmentId: compartmentId, * associatedResourceId: testResource.id, * dbConnectionBundleType: dbConnectionBundleDbConnectionBundleType, * displayName: dbConnectionBundleDisplayName, * state: dbConnectionBundleState, * }); * ``` */ export declare function getDbConnectionBundlesOutput(args: GetDbConnectionBundlesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbConnectionBundles. */ export interface GetDbConnectionBundlesOutputArgs { /** * The OCID of the VM cluster associated with the connection bundle. If the parameter is set to null, all bundles are returned. */ associatedResourceId?: pulumi.Input; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; /** * A filter that returns only resources that match the specified database connection bundle type. */ dbConnectionBundleType?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbConnectionBundles.d.ts.map