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 Identity Connectors in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB AWS Identity Connectors based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsIdentityConnectors = oci.oci.getDbmulticloudOracleDbAwsIdentityConnectors({ * compartmentId: compartmentId, * displayName: oracleDbAwsIdentityConnectorDisplayName, * resourceId: testResource.id, * state: oracleDbAwsIdentityConnectorState, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsIdentityConnectors(args: GetDbmulticloudOracleDbAwsIdentityConnectorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsIdentityConnectors. */ export interface GetDbmulticloudOracleDbAwsIdentityConnectorsArgs { /** * 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 Identity Connector Resource that match the given display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbAwsIdentityConnectorsFilter[]; /** * A filter to return Oracle DB Identity Connector resource that match the given resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ resourceId?: 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 getDbmulticloudOracleDbAwsIdentityConnectors. */ export interface GetDbmulticloudOracleDbAwsIdentityConnectorsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB AWS Identity Connector resource. */ readonly compartmentId: string; /** * Oracle DB AWS Identity Connector resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbAwsIdentityConnectorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of oracle_db_aws_identity_connector_summary_collection. */ readonly oracleDbAwsIdentityConnectorSummaryCollections: outputs.oci.GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AWS VM Cluster resource. */ readonly resourceId?: string; /** * The current lifecycle state of the AWS Identity Connector resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Aws Identity Connectors in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB AWS Identity Connectors based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsIdentityConnectors = oci.oci.getDbmulticloudOracleDbAwsIdentityConnectors({ * compartmentId: compartmentId, * displayName: oracleDbAwsIdentityConnectorDisplayName, * resourceId: testResource.id, * state: oracleDbAwsIdentityConnectorState, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsIdentityConnectorsOutput(args: GetDbmulticloudOracleDbAwsIdentityConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsIdentityConnectors. */ export interface GetDbmulticloudOracleDbAwsIdentityConnectorsOutputArgs { /** * 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 Identity Connector Resource that match the given display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB Identity Connector resource that match the given resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ resourceId?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAwsIdentityConnectors.d.ts.map