import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Tools Database Api Gateway Config Pool resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a Database Tools database API gateway config pool resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigPool = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool({ * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * poolKey: databaseToolsDatabaseApiGatewayConfigPoolPoolKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: string; /** * The key of the pool config. */ poolKey: string; } /** * A collection of values returned by getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolResult { /** * Advanced pool properties. */ readonly advancedProperties: { [key: string]: string; }; /** * Specifies to enable the Database Actions feature. */ readonly databaseActionsStatus: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from. */ readonly databaseToolsConnectionId: string; readonly databaseToolsDatabaseApiGatewayConfigId: string; /** * A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information. */ readonly displayName: string; readonly id: string; /** * Specifies the initial size for the number of database connections that will be created for the pool. */ readonly initialPoolSize: number; /** * Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token. */ readonly jwtProfileAudience: string; /** * Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token. */ readonly jwtProfileIssuer: string; /** * Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token. */ readonly jwtProfileJwkUrl: string; /** * Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users. */ readonly jwtProfileRoleClaimName: string; /** * A system generated string that uniquely identifies a pool sub resource. */ readonly key: string; /** * Specifies the maximum number of database connections allowed for the pool. */ readonly maxPoolSize: number; /** * Specifies the minimum number of database connections allowed for the pool. */ readonly minPoolSize: number; readonly poolKey: string; /** * The pool route value provided in requests to target this pool. */ readonly poolRouteValue: string; /** * Specifies whether the REST-Enabled SQL service is active. */ readonly restEnabledSqlStatus: string; /** * The time the resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the resource was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * The type of the Database Tools database API gateway config pool sub resource. */ readonly type: string; } /** * This data source provides details about a specific Database Tools Database Api Gateway Config Pool resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a Database Tools database API gateway config pool resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigPool = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool({ * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * poolKey: databaseToolsDatabaseApiGatewayConfigPoolPoolKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolOutput(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: pulumi.Input; /** * The key of the pool config. */ poolKey: pulumi.Input; } //# sourceMappingURL=getRuntimeDatabaseToolsDatabaseApiGatewayConfigPool.d.ts.map