import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Database Tools Identity resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools identity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsIdentity = oci.databasetools.getDatabaseToolsIdentity({ * databaseToolsIdentityId: testDatabaseToolsIdentityOciDatabaseToolsDatabaseToolsIdentity.id, * }); * ``` */ export declare function getDatabaseToolsIdentity(args: GetDatabaseToolsIdentityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsIdentity. */ export interface GetDatabaseToolsIdentityArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools identity. */ databaseToolsIdentityId: string; } /** * A collection of values returned by getDatabaseToolsIdentity. */ export interface GetDatabaseToolsIdentityResult { /** * 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 name of the credential object created in the Oracle Database. */ readonly credentialKey: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Database Tools connection. */ readonly databaseToolsConnectionId: string; readonly databaseToolsIdentityId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Tools identity. */ readonly id: string; /** * A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.DatabaseTools.GetDatabaseToolsIdentityLock[]; /** * The current state of the Database Tools identity. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the Database Tools identity was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the Database Tools identity was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * The Database Tools identity type. */ readonly type: string; } /** * This data source provides details about a specific Database Tools Identity resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools identity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsIdentity = oci.databasetools.getDatabaseToolsIdentity({ * databaseToolsIdentityId: testDatabaseToolsIdentityOciDatabaseToolsDatabaseToolsIdentity.id, * }); * ``` */ export declare function getDatabaseToolsIdentityOutput(args: GetDatabaseToolsIdentityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsIdentity. */ export interface GetDatabaseToolsIdentityOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools identity. */ databaseToolsIdentityId: pulumi.Input; } //# sourceMappingURL=getDatabaseToolsIdentity.d.ts.map