import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Oracle Db Gcp Key resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves Oracle DB Google Cloud Key details using a specific 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 testOracleDbGcpKey = oci.oci.getDbmulticloudOracleDbGcpKey({ * oracleDbGcpKeyId: testOracleDbGcpKeyOciDbmulticloudOracleDbGcpKey.id, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKey(args: GetDbmulticloudOracleDbGcpKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKey. */ export interface GetDbmulticloudOracleDbGcpKeyArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Google Cloud Key resource. */ oracleDbGcpKeyId: string; } /** * A collection of values returned by getDbmulticloudOracleDbGcpKey. */ export interface GetDbmulticloudOracleDbGcpKeyResult { /** * 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; /** * 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 Oracle DB Google Key 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; }; /** * TThe Google Cloud Key ID and Key URL associated with the Google Key under the specified Key Ring resource. */ readonly gcpKeyId: string; /** * Gcp Key properties */ readonly gcpKeyProperties: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: 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; /** * Key resource type. */ readonly resourceType: string; /** * The current lifecycle state of the Oracle DB Google Key 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; }; /** * Time when the Oracle DB Google Key resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z' */ readonly timeCreated: string; /** * Time when the Oracle DB Google Key resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z' */ readonly timeUpdated: string; } /** * This data source provides details about a specific Oracle Db Gcp Key resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves Oracle DB Google Cloud Key details using a specific 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 testOracleDbGcpKey = oci.oci.getDbmulticloudOracleDbGcpKey({ * oracleDbGcpKeyId: testOracleDbGcpKeyOciDbmulticloudOracleDbGcpKey.id, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpKeyOutput(args: GetDbmulticloudOracleDbGcpKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpKey. */ export interface GetDbmulticloudOracleDbGcpKeyOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Google Cloud Key resource. */ oracleDbGcpKeyId: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbGcpKey.d.ts.map