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 Oracle Db Gcp Key Rings in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists the all DB GCP Key Rings based on filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbGcpKeyRings = oci.oci.getDbmulticloudOracleDbGcpKeyRings({ * compartmentId: compartmentId, * displayName: oracleDbGcpKeyRingDisplayName, * oracleDbGcpConnectorId: testOracleDbGcpConnector.id, * oracleDbGcpKeyRingId: testOracleDbGcpKeyRing.id, * state: oracleDbGcpKeyRingState, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeyRings(args: GetDbmulticloudOracleDbGcpKeyRingsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKeyRings. */ export interface GetDbmulticloudOracleDbGcpKeyRingsArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return Oracle DB GCP Key Ring resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbGcpKeyRingsFilter[]; /** * A filter to return Oracle DB GCP Identity Connector resources that match the specified resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ oracleDbGcpConnectorId?: string; /** * A filter to return Oracle DB GCP Key Rings. */ oracleDbGcpKeyRingId?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getDbmulticloudOracleDbGcpKeyRings. */ export interface GetDbmulticloudOracleDbGcpKeyRingsResult { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) where the Oracle DB GCP Key Ring resource resides. */ readonly compartmentId: string; /** * Display name of DB GCP Key Ring resource. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbGcpKeyRingsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly oracleDbGcpConnectorId?: string; readonly oracleDbGcpKeyRingId?: string; /** * The list of oracle_db_gcp_key_ring_summary_collection. */ readonly oracleDbGcpKeyRingSummaryCollections: outputs.oci.GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection[]; /** * The lifecycle state of the Oracle DB GCP Key Ring resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Gcp Key Rings in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists the all DB GCP Key Rings based on filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbGcpKeyRings = oci.oci.getDbmulticloudOracleDbGcpKeyRings({ * compartmentId: compartmentId, * displayName: oracleDbGcpKeyRingDisplayName, * oracleDbGcpConnectorId: testOracleDbGcpConnector.id, * oracleDbGcpKeyRingId: testOracleDbGcpKeyRing.id, * state: oracleDbGcpKeyRingState, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeyRingsOutput(args: GetDbmulticloudOracleDbGcpKeyRingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKeyRings. */ export interface GetDbmulticloudOracleDbGcpKeyRingsOutputArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return Oracle DB GCP Key Ring resources that match the specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB GCP Identity Connector resources that match the specified resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ oracleDbGcpConnectorId?: pulumi.Input; /** * A filter to return Oracle DB GCP Key Rings. */ oracleDbGcpKeyRingId?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbGcpKeyRings.d.ts.map