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 Aws Keys in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all DB AWS Keys based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsKeys = oci.oci.getDbmulticloudOracleDbAwsKeys({ * compartmentId: compartmentId, * displayName: oracleDbAwsKeyDisplayName, * oracleDbAwsConnectorId: testOracleDbAwsConnector.id, * oracleDbAwsKeyId: testOracleDbAwsKey.id, * state: oracleDbAwsKeyState, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsKeys(args: GetDbmulticloudOracleDbAwsKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsKeys. */ export interface GetDbmulticloudOracleDbAwsKeysArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return Oracle DB AWS Key Resource that match the given display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbAwsKeysFilter[]; /** * A filter to return Oracle DB AWS Identity Connector resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Identity Connector resource. */ oracleDbAwsConnectorId?: string; /** * A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource. */ oracleDbAwsKeyId?: 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 getDbmulticloudOracleDbAwsKeys. */ export interface GetDbmulticloudOracleDbAwsKeysResult { /** * 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; /** * Oracle DB AWS Key Ring resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbAwsKeysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly oracleDbAwsConnectorId?: string; readonly oracleDbAwsKeyId?: string; /** * The list of oracle_db_aws_key_summary_collection. */ readonly oracleDbAwsKeySummaryCollections: outputs.oci.GetDbmulticloudOracleDbAwsKeysOracleDbAwsKeySummaryCollection[]; /** * The lifecycle state of the Oracle DB AWS Key resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Aws Keys in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all DB AWS Keys based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsKeys = oci.oci.getDbmulticloudOracleDbAwsKeys({ * compartmentId: compartmentId, * displayName: oracleDbAwsKeyDisplayName, * oracleDbAwsConnectorId: testOracleDbAwsConnector.id, * oracleDbAwsKeyId: testOracleDbAwsKey.id, * state: oracleDbAwsKeyState, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsKeysOutput(args: GetDbmulticloudOracleDbAwsKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsKeys. */ export interface GetDbmulticloudOracleDbAwsKeysOutputArgs { /** * 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 AWS Key Resource that match the given display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB AWS Identity Connector resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Identity Connector resource. */ oracleDbAwsConnectorId?: pulumi.Input; /** * A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource. */ oracleDbAwsKeyId?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAwsKeys.d.ts.map