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 Database Tools Connections in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools connections. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsConnections = oci.databasetools.getDatabaseToolsConnections({ * compartmentId: compartmentId, * displayName: databaseToolsConnectionDisplayName, * relatedResourceIdentifier: databaseToolsConnectionRelatedResourceIdentifier, * runtimeIdentities: databaseToolsConnectionRuntimeIdentity, * runtimeSupports: databaseToolsConnectionRuntimeSupport, * state: databaseToolsConnectionState, * types: databaseToolsConnectionType, * }); * ``` */ export declare function getDatabaseToolsConnections(args: GetDatabaseToolsConnectionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsConnections. */ export interface GetDatabaseToolsConnectionsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire specified display name. */ displayName?: string; filters?: inputs.DatabaseTools.GetDatabaseToolsConnectionsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related resource. */ relatedResourceIdentifier?: string; /** * A filter to return only resources with one of the specified runtimeIdentity values. */ runtimeIdentities?: string[]; /** * A filter to return only resources with one of the specified type values. */ runtimeSupports?: string[]; /** * A filter to return only resources their `lifecycleState` matches the specified `lifecycleState`. */ state?: string; /** * A filter to return only resources their type matches the specified type. */ types?: string[]; } /** * A collection of values returned by getDatabaseToolsConnections. */ export interface GetDatabaseToolsConnectionsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools connection. */ readonly compartmentId: string; /** * The list of database_tools_connection_collection. */ readonly databaseToolsConnectionCollections: outputs.DatabaseTools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollection[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.DatabaseTools.GetDatabaseToolsConnectionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly relatedResourceIdentifier?: string; /** * Specifies the identity used when accessing Oracle Cloud Infrastructure resources at runtime. AUTHENTICATED_PRINCIPAL to use the caller’s identity (On-Behalf-Of token), or RESOURCE_PRINCIPAL to use the connection’s resource principal (RPST). */ readonly runtimeIdentities?: string[]; /** * Specifies whether this connection is supported by the Database Tools Runtime. */ readonly runtimeSupports?: string[]; /** * The current state of the Database Tools connection. */ readonly state?: string; /** * The Database Tools connection type. */ readonly types?: string[]; } /** * This data source provides the list of Database Tools Connections in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools connections. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsConnections = oci.databasetools.getDatabaseToolsConnections({ * compartmentId: compartmentId, * displayName: databaseToolsConnectionDisplayName, * relatedResourceIdentifier: databaseToolsConnectionRelatedResourceIdentifier, * runtimeIdentities: databaseToolsConnectionRuntimeIdentity, * runtimeSupports: databaseToolsConnectionRuntimeSupport, * state: databaseToolsConnectionState, * types: databaseToolsConnectionType, * }); * ``` */ export declare function getDatabaseToolsConnectionsOutput(args: GetDatabaseToolsConnectionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsConnections. */ export interface GetDatabaseToolsConnectionsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related resource. */ relatedResourceIdentifier?: pulumi.Input; /** * A filter to return only resources with one of the specified runtimeIdentity values. */ runtimeIdentities?: pulumi.Input[] | undefined>; /** * A filter to return only resources with one of the specified type values. */ runtimeSupports?: pulumi.Input[] | undefined>; /** * A filter to return only resources their `lifecycleState` matches the specified `lifecycleState`. */ state?: pulumi.Input; /** * A filter to return only resources their type matches the specified type. */ types?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDatabaseToolsConnections.d.ts.map