import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Oracle Db Gcp Key Ring resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves the Oracle GCP Key Ring details using a specific Container resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbGcpKeyRing = oci.oci.getDbmulticloudOracleDbGcpKeyRing({ * oracleDbGcpKeyRingId: testOracleDbGcpKeyRingOciDbmulticloudOracleDbGcpKeyRing.id, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeyRing(args: GetDbmulticloudOracleDbGcpKeyRingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKeyRing. */ export interface GetDbmulticloudOracleDbGcpKeyRingArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB GCP Key-Ring resource. */ oracleDbGcpKeyRingId: string; } /** * A collection of values returned by getDbmulticloudOracleDbGcpKeyRing. */ export interface GetDbmulticloudOracleDbGcpKeyRingResult { readonly action: string; /** * 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; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Display name of DB GCP Key Ring resource. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * GCP Key Ring ID. */ readonly gcpKeyRingId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB GCP Key Ring resource. */ readonly id: string; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: string; /** * Location of the GCP Key Ring resource. */ readonly location: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the Oracle DB GCP Identity Connector resource resides. */ readonly oracleDbConnectorId: string; readonly oracleDbGcpKeyRingId: string; /** * Oracle DB GCP Key Ring resource's properties. */ readonly properties: { [key: string]: string; }; /** * Replication metadata, it has information about replication and target region. */ readonly replicationMetadatas: outputs.oci.GetDbmulticloudOracleDbGcpKeyRingReplicationMetadata[]; /** * The lifecycle state of the Oracle DB GCP Key Ring resource. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The target region, where resource is replicated. */ readonly targetRegion: string; /** * Time when the DB GCP Key Ring resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z' */ readonly timeCreated: string; /** * Time when the DB GCP Key Ring resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z' */ readonly timeUpdated: string; /** * Oracle DB GCP Key Ring resource Type. */ readonly type: string; } /** * This data source provides details about a specific Oracle Db Gcp Key Ring resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves the Oracle GCP Key Ring details using a specific Container resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbGcpKeyRing = oci.oci.getDbmulticloudOracleDbGcpKeyRing({ * oracleDbGcpKeyRingId: testOracleDbGcpKeyRingOciDbmulticloudOracleDbGcpKeyRing.id, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeyRingOutput(args: GetDbmulticloudOracleDbGcpKeyRingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKeyRing. */ export interface GetDbmulticloudOracleDbGcpKeyRingOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB GCP Key-Ring resource. */ oracleDbGcpKeyRingId: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbGcpKeyRing.d.ts.map