import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Oracle Db Aws Key resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves detailed information about a Oracle AWS Key resource by specifying its unique 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 testOracleDbAwsKey = oci.oci.getDbmulticloudOracleDbAwsKey({ * oracleDbAwsKeyId: testOracleDbAwsKeyOciDbmulticloudOracleDbAwsKey.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsKey(args: GetDbmulticloudOracleDbAwsKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsKey. */ export interface GetDbmulticloudOracleDbAwsKeyArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource. */ oracleDbAwsKeyId: string; } /** * A collection of values returned by getDbmulticloudOracleDbAwsKey. */ export interface GetDbmulticloudOracleDbAwsKeyResult { readonly action: string; /** * AWS Account ID. */ readonly awsAccountId: string; /** * Amazon resource name of AWS Key. */ readonly awsKeyArn: string; /** * The Compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that contains this Oracle DB AWS 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; }; /** * Oracle DB AWS Key Ring resource name. */ 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; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB AWS Key Ring resource. */ readonly id: string; /** * The Oracle AWS Key resource is enabled or disabled at AWS. */ readonly isAwsKeyEnabled: boolean; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: string; /** * AWS Key resource location. */ readonly location: string; readonly oracleDbAwsKeyId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector resource. */ readonly oracleDbConnectorId: string; /** * AWS Key resource's properties. */ readonly properties: { [key: string]: string; }; /** * Replication metadata, it has information about replication and target region. */ readonly replicationMetadatas: outputs.oci.GetDbmulticloudOracleDbAwsKeyReplicationMetadata[]; /** * The lifecycle state of the Oracle DB AWS 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; }; /** * The target region, where resource is replicated. */ readonly targetRegion: string; /** * Time when the DB AWS Key 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 AWS Key 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; /** * Key resource type. */ readonly type: string; } /** * This data source provides details about a specific Oracle Db Aws Key resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves detailed information about a Oracle AWS Key resource by specifying its unique 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 testOracleDbAwsKey = oci.oci.getDbmulticloudOracleDbAwsKey({ * oracleDbAwsKeyId: testOracleDbAwsKeyOciDbmulticloudOracleDbAwsKey.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsKeyOutput(args: GetDbmulticloudOracleDbAwsKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsKey. */ export interface GetDbmulticloudOracleDbAwsKeyOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource. */ oracleDbAwsKeyId: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAwsKey.d.ts.map