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 Identities in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools identities. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsIdentities = oci.databasetools.getDatabaseToolsIdentities({ * compartmentId: compartmentId, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * displayName: databaseToolsIdentityDisplayName, * state: databaseToolsIdentityState, * types: databaseToolsIdentityType, * }); * ``` */ export declare function getDatabaseToolsIdentities(args: GetDatabaseToolsIdentitiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsIdentities. */ export interface GetDatabaseToolsIdentitiesArgs { /** * 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 when their `databaseToolsConnectionId` matches the specified `databaseToolsConnectionId`. */ databaseToolsConnectionId?: string; /** * A filter to return only resources that match the entire specified display name. */ displayName?: string; filters?: inputs.DatabaseTools.GetDatabaseToolsIdentitiesFilter[]; /** * A filter to return resources only when their `databaseToolsIdentityLifecycleState` matches the specified `databaseToolsIdentityLifecycleState`. */ state?: string; /** * A filter to return only resources with one of the specified type values. */ types?: string[]; } /** * A collection of values returned by getDatabaseToolsIdentities. */ export interface GetDatabaseToolsIdentitiesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools identity. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Database Tools connection. */ readonly databaseToolsConnectionId?: string; /** * The list of database_tools_identity_collection. */ readonly databaseToolsIdentityCollections: outputs.DatabaseTools.GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollection[]; /** * 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.GetDatabaseToolsIdentitiesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Database Tools identity. */ readonly state?: string; /** * The Database Tools identity type. */ readonly types?: string[]; } /** * This data source provides the list of Database Tools Identities in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools identities. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsIdentities = oci.databasetools.getDatabaseToolsIdentities({ * compartmentId: compartmentId, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * displayName: databaseToolsIdentityDisplayName, * state: databaseToolsIdentityState, * types: databaseToolsIdentityType, * }); * ``` */ export declare function getDatabaseToolsIdentitiesOutput(args: GetDatabaseToolsIdentitiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsIdentities. */ export interface GetDatabaseToolsIdentitiesOutputArgs { /** * 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 when their `databaseToolsConnectionId` matches the specified `databaseToolsConnectionId`. */ databaseToolsConnectionId?: pulumi.Input; /** * A filter to return only resources that match the entire specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return resources only when their `databaseToolsIdentityLifecycleState` matches the specified `databaseToolsIdentityLifecycleState`. */ state?: pulumi.Input; /** * A filter to return only resources with one of the specified type values. */ types?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDatabaseToolsIdentities.d.ts.map