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 Connection Databaseconnectiontypes in Oracle Cloud Infrastructure Database Migration service. * * List supported Database Types, Sub-types and Versions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConnectionDatabaseconnectiontypes = oci.databasemigration.getConnectionDatabaseconnectiontypes({ * compartmentId: compartmentId, * connectionTypes: connectionDatabaseconnectiontypeConnectionType, * sourceConnectionId: testConnection.id, * technologyTypes: connectionDatabaseconnectiontypeTechnologyType, * }); * ``` */ export declare function getConnectionDatabaseconnectiontypes(args: GetConnectionDatabaseconnectiontypesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConnectionDatabaseconnectiontypes. */ export interface GetConnectionDatabaseconnectiontypesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * The array of connection types. */ connectionTypes?: string[]; filters?: inputs.DatabaseMigration.GetConnectionDatabaseconnectiontypesFilter[]; /** * The OCID of the source connection. */ sourceConnectionId?: string; /** * The array of technology types. */ technologyTypes?: string[]; } /** * A collection of values returned by getConnectionDatabaseconnectiontypes. */ export interface GetConnectionDatabaseconnectiontypesResult { readonly compartmentId: string; /** * Defines the type of connection. For example, ORACLE. */ readonly connectionTypes?: string[]; /** * The list of database_connection_type_collection. */ readonly databaseConnectionTypeCollections: outputs.DatabaseMigration.GetConnectionDatabaseconnectiontypesDatabaseConnectionTypeCollection[]; readonly filters?: outputs.DatabaseMigration.GetConnectionDatabaseconnectiontypesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly sourceConnectionId?: string; /** * The technology type. */ readonly technologyTypes?: string[]; } /** * This data source provides the list of Connection Databaseconnectiontypes in Oracle Cloud Infrastructure Database Migration service. * * List supported Database Types, Sub-types and Versions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConnectionDatabaseconnectiontypes = oci.databasemigration.getConnectionDatabaseconnectiontypes({ * compartmentId: compartmentId, * connectionTypes: connectionDatabaseconnectiontypeConnectionType, * sourceConnectionId: testConnection.id, * technologyTypes: connectionDatabaseconnectiontypeTechnologyType, * }); * ``` */ export declare function getConnectionDatabaseconnectiontypesOutput(args: GetConnectionDatabaseconnectiontypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConnectionDatabaseconnectiontypes. */ export interface GetConnectionDatabaseconnectiontypesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * The array of connection types. */ connectionTypes?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * The OCID of the source connection. */ sourceConnectionId?: pulumi.Input; /** * The array of technology types. */ technologyTypes?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getConnectionDatabaseconnectiontypes.d.ts.map