import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Database Tools Database Api Gateway Config resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools database API gateway config. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfig = oci.databasetools.getDatabaseToolsDatabaseApiGatewayConfig({ * databaseToolsDatabaseApiGatewayConfigId: testDatabaseToolsDatabaseApiGatewayConfigOciDatabaseToolsDatabaseToolsDatabaseApiGatewayConfig.id, * }); * ``` */ export declare function getDatabaseToolsDatabaseApiGatewayConfig(args: GetDatabaseToolsDatabaseApiGatewayConfigArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsDatabaseApiGatewayConfig. */ export interface GetDatabaseToolsDatabaseApiGatewayConfigArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: string; } /** * A collection of values returned by getDatabaseToolsDatabaseApiGatewayConfig. */ export interface GetDatabaseToolsDatabaseApiGatewayConfigResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools database API gateway config. */ readonly compartmentId: string; readonly databaseToolsDatabaseApiGatewayConfigId: 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 database API gateway config. */ 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.GetDatabaseToolsDatabaseApiGatewayConfigLock[]; /** * The RESTful service definition location. */ readonly metadataSource: string; /** * The current state of the Database Tools database API gateway config. */ 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 database API gateway config was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * The Database Tools database API gateway config type. */ readonly type: string; } /** * This data source provides details about a specific Database Tools Database Api Gateway Config resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools database API gateway config. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfig = oci.databasetools.getDatabaseToolsDatabaseApiGatewayConfig({ * databaseToolsDatabaseApiGatewayConfigId: testDatabaseToolsDatabaseApiGatewayConfigOciDatabaseToolsDatabaseToolsDatabaseApiGatewayConfig.id, * }); * ``` */ export declare function getDatabaseToolsDatabaseApiGatewayConfigOutput(args: GetDatabaseToolsDatabaseApiGatewayConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsDatabaseApiGatewayConfig. */ export interface GetDatabaseToolsDatabaseApiGatewayConfigOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: pulumi.Input; } //# sourceMappingURL=getDatabaseToolsDatabaseApiGatewayConfig.d.ts.map