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 Keys in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Google Cloud Keys based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbGcpKeys = oci.oci.getDbmulticloudOracleDbGcpKeys({ * compartmentId: compartmentId, * displayName: oracleDbGcpKeyDisplayName, * oracleDbGcpKeyId: testOracleDbGcpKey.id, * oracleDbGcpKeyRingId: testOracleDbGcpKeyRing.id, * state: oracleDbGcpKeyState, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeys(args: GetDbmulticloudOracleDbGcpKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKeys. */ export interface GetDbmulticloudOracleDbGcpKeysArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return Oracle DB Google Cloud Key resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbGcpKeysFilter[]; /** * A filter to return Oracle DB Google Cloud Key resources. */ oracleDbGcpKeyId?: string; /** * A filter to return Oracle DB GCP Key Rings. */ oracleDbGcpKeyRingId?: string; /** * A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getDbmulticloudOracleDbGcpKeys. */ export interface GetDbmulticloudOracleDbGcpKeysResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Google Key resource. */ readonly compartmentId: string; /** * Display name of Oracle DB Google Key resource. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbGcpKeysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly oracleDbGcpKeyId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Google Cloud Key-Ring resource. */ readonly oracleDbGcpKeyRingId?: string; /** * The list of oracle_db_gcp_key_summary_collection. */ readonly oracleDbGcpKeySummaryCollections: outputs.oci.GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollection[]; /** * The current lifecycle state of the Oracle DB Google Key resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Gcp Keys in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Google Cloud Keys based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbGcpKeys = oci.oci.getDbmulticloudOracleDbGcpKeys({ * compartmentId: compartmentId, * displayName: oracleDbGcpKeyDisplayName, * oracleDbGcpKeyId: testOracleDbGcpKey.id, * oracleDbGcpKeyRingId: testOracleDbGcpKeyRing.id, * state: oracleDbGcpKeyState, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeysOutput(args: GetDbmulticloudOracleDbGcpKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKeys. */ export interface GetDbmulticloudOracleDbGcpKeysOutputArgs { /** * 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 Google Cloud Key resources that match the specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB Google Cloud Key resources. */ oracleDbGcpKeyId?: pulumi.Input; /** * A filter to return Oracle DB GCP Key Rings. */ oracleDbGcpKeyRingId?: pulumi.Input; /** * A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbGcpKeys.d.ts.map