import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Tools Endpoint Service resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details for the specified Database Tools endpoint service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsEndpointService = oci.databasetools.getDatabaseToolsEndpointService({ * databaseToolsEndpointServiceId: testDatabaseToolsEndpointServiceOciDatabaseToolsDatabaseToolsEndpointService.id, * }); * ``` */ export declare function getDatabaseToolsEndpointService(args: GetDatabaseToolsEndpointServiceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsEndpointService. */ export interface GetDatabaseToolsEndpointServiceArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools Endpoint Service. */ databaseToolsEndpointServiceId: string; } /** * A collection of values returned by getDatabaseToolsEndpointService. */ export interface GetDatabaseToolsEndpointServiceResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools Endpoint Service. */ readonly compartmentId: string; readonly databaseToolsEndpointServiceId: 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 description of the Database Tools Endpoint Service. */ readonly description: 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 provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * A unique, non-changeable resource name. */ readonly name: string; /** * The current state of the Database Tools Endpoint Service. */ 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 Endpoint Service was created. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time the Database Tools Endpoint Service was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Database Tools Endpoint Service resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details for the specified Database Tools endpoint service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsEndpointService = oci.databasetools.getDatabaseToolsEndpointService({ * databaseToolsEndpointServiceId: testDatabaseToolsEndpointServiceOciDatabaseToolsDatabaseToolsEndpointService.id, * }); * ``` */ export declare function getDatabaseToolsEndpointServiceOutput(args: GetDatabaseToolsEndpointServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsEndpointService. */ export interface GetDatabaseToolsEndpointServiceOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools Endpoint Service. */ databaseToolsEndpointServiceId: pulumi.Input; } //# sourceMappingURL=getDatabaseToolsEndpointService.d.ts.map