1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DatabaseTools
  6. getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools
Viewing docs for Oracle Cloud Infrastructure v4.11.0
published on Friday, May 15, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.11.0
published on Friday, May 15, 2026 by Pulumi

    This data source provides the list of Database Tools Database Api Gateway Config Pools in Oracle Cloud Infrastructure Database Tools Runtime service.

    Returns a list of Database Tools database API gateway config pool resources

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsDatabaseApiGatewayConfigPools = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools({
        databaseToolsDatabaseApiGatewayConfigId: testConfig.id,
        displayName: databaseToolsDatabaseApiGatewayConfigPoolDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_database_api_gateway_config_pools = oci.databasetools.get_runtime_database_tools_database_api_gateway_config_pools(database_tools_database_api_gateway_config_id=test_config["id"],
        display_name=database_tools_database_api_gateway_config_pool_display_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasetools"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasetools.GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPools(ctx, &databasetools.GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs{
    			DatabaseToolsDatabaseApiGatewayConfigId: testConfig.Id,
    			DisplayName:                             pulumi.StringRef(databaseToolsDatabaseApiGatewayConfigPoolDisplayName),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testDatabaseToolsDatabaseApiGatewayConfigPools = Oci.DatabaseTools.GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPools.Invoke(new()
        {
            DatabaseToolsDatabaseApiGatewayConfigId = testConfig.Id,
            DisplayName = databaseToolsDatabaseApiGatewayConfigPoolDisplayName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseTools.DatabaseToolsFunctions;
    import com.pulumi.oci.DatabaseTools.inputs.GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testDatabaseToolsDatabaseApiGatewayConfigPools = DatabaseToolsFunctions.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools(GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs.builder()
                .databaseToolsDatabaseApiGatewayConfigId(testConfig.id())
                .displayName(databaseToolsDatabaseApiGatewayConfigPoolDisplayName)
                .build());
    
        }
    }
    
    variables:
      testDatabaseToolsDatabaseApiGatewayConfigPools:
        fn::invoke:
          function: oci:DatabaseTools:getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools
          arguments:
            databaseToolsDatabaseApiGatewayConfigId: ${testConfig.id}
            displayName: ${databaseToolsDatabaseApiGatewayConfigPoolDisplayName}
    
    Example coming soon!
    

    Using getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs, opts?: InvokeOptions): Promise<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult>
    function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsOutput(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsOutputArgs, opts?: InvokeOptions): Output<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult>
    def get_runtime_database_tools_database_api_gateway_config_pools(database_tools_database_api_gateway_config_id: Optional[str] = None,
                                                                     display_name: Optional[str] = None,
                                                                     filters: Optional[Sequence[GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter]] = None,
                                                                     opts: Optional[InvokeOptions] = None) -> GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult
    def get_runtime_database_tools_database_api_gateway_config_pools_output(database_tools_database_api_gateway_config_id: pulumi.Input[Optional[str]] = None,
                                                                     display_name: pulumi.Input[Optional[str]] = None,
                                                                     filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilterArgs]]]] = None,
                                                                     opts: Optional[InvokeOptions] = None) -> Output[GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult]
    func GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPools(ctx *Context, args *GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs, opts ...InvokeOption) (*GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult, error)
    func GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsOutput(ctx *Context, args *GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsOutputArgs, opts ...InvokeOption) GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResultOutput

    > Note: This function is named GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPools in the Go SDK.

    public static class GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPools 
    {
        public static Task<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult> InvokeAsync(GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs args, InvokeOptions? opts = null)
        public static Output<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult> Invoke(GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult> getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools(GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs args, InvokeOptions options)
    public static Output<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsResult> getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools(GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseTools/getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools:getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools
      arguments:
        # arguments dictionary
    data "oci_databasetools_getruntimedatabasetoolsdatabaseapigatewayconfigpools" "name" {
        # arguments
    }

    The following arguments are supported:

    DatabaseToolsDatabaseApiGatewayConfigId string
    The OCID of a Database Tools database API gateway config.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters List<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter>
    DatabaseToolsDatabaseApiGatewayConfigId string
    The OCID of a Database Tools database API gateway config.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters []GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter
    database_tools_database_api_gateway_config_id string
    The OCID of a Database Tools database API gateway config.
    display_name string
    A filter to return only resources that match the entire specified display name.
    filters list(object)
    databaseToolsDatabaseApiGatewayConfigId String
    The OCID of a Database Tools database API gateway config.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<GetRuntimeDatabaseApiGatewayConfigPoolsFilter>
    databaseToolsDatabaseApiGatewayConfigId string
    The OCID of a Database Tools database API gateway config.
    displayName string
    A filter to return only resources that match the entire specified display name.
    filters GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter[]
    database_tools_database_api_gateway_config_id str
    The OCID of a Database Tools database API gateway config.
    display_name str
    A filter to return only resources that match the entire specified display name.
    filters Sequence[GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter]
    databaseToolsDatabaseApiGatewayConfigId String
    The OCID of a Database Tools database API gateway config.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<Property Map>

    getRuntimeDatabaseToolsDatabaseApiGatewayConfigPools Result

    The following output properties are available:

    DatabaseToolsDatabaseApiGatewayConfigId string
    DatabaseToolsDatabaseApiGatewayConfigPoolCollections List<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsDatabaseToolsDatabaseApiGatewayConfigPoolCollection>
    The list of database_tools_database_api_gateway_config_pool_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    Filters List<GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter>
    DatabaseToolsDatabaseApiGatewayConfigId string
    DatabaseToolsDatabaseApiGatewayConfigPoolCollections []GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsDatabaseToolsDatabaseApiGatewayConfigPoolCollection
    The list of database_tools_database_api_gateway_config_pool_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    Filters []GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter
    database_tools_database_api_gateway_config_id string
    database_tools_database_api_gateway_config_pool_collections list(object)
    The list of database_tools_database_api_gateway_config_pool_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    display_name string
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    filters list(object)
    databaseToolsDatabaseApiGatewayConfigId String
    databaseToolsDatabaseApiGatewayConfigPoolCollections List<GetRuntimeDatabaseApiGatewayConfigPoolsDatabaseApiGatewayConfigPoolCollection>
    The list of database_tools_database_api_gateway_config_pool_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    filters List<GetRuntimeDatabaseApiGatewayConfigPoolsFilter>
    databaseToolsDatabaseApiGatewayConfigId string
    databaseToolsDatabaseApiGatewayConfigPoolCollections GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsDatabaseToolsDatabaseApiGatewayConfigPoolCollection[]
    The list of database_tools_database_api_gateway_config_pool_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    filters GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter[]
    database_tools_database_api_gateway_config_id str
    database_tools_database_api_gateway_config_pool_collections Sequence[GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsDatabaseToolsDatabaseApiGatewayConfigPoolCollection]
    The list of database_tools_database_api_gateway_config_pool_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    display_name str
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    filters Sequence[GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter]
    databaseToolsDatabaseApiGatewayConfigId String
    databaseToolsDatabaseApiGatewayConfigPoolCollections List<Property Map>
    The list of database_tools_database_api_gateway_config_pool_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
    filters List<Property Map>

    Supporting Types

    GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsDatabaseToolsDatabaseApiGatewayConfigPoolCollection

    GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsDatabaseToolsDatabaseApiGatewayConfigPoolCollectionItem

    AdvancedProperties Dictionary<string, string>
    Advanced pool properties.
    DatabaseActionsStatus string
    Specifies to enable the Database Actions feature.
    DatabaseToolsConnectionId string
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    DatabaseToolsDatabaseApiGatewayConfigId string
    The OCID of a Database Tools database API gateway config.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    InitialPoolSize int
    Specifies the initial size for the number of database connections that will be created for the pool.
    JwtProfileAudience string
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    JwtProfileIssuer string
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    JwtProfileJwkUrl string
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    JwtProfileRoleClaimName string
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    Key string
    A system generated string that uniquely identifies a pool sub resource.
    MaxPoolSize int
    Specifies the maximum number of database connections allowed for the pool.
    MinPoolSize int
    Specifies the minimum number of database connections allowed for the pool.
    PoolRouteValue string
    The pool route value provided in requests to target this pool.
    RestEnabledSqlStatus string
    Specifies whether the REST-Enabled SQL service is active.
    TimeCreated string
    The time the resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the resource was updated. An RFC3339 formatted datetime string.
    Type string
    The type of the Database Tools database API gateway config pool sub resource.
    AdvancedProperties map[string]string
    Advanced pool properties.
    DatabaseActionsStatus string
    Specifies to enable the Database Actions feature.
    DatabaseToolsConnectionId string
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    DatabaseToolsDatabaseApiGatewayConfigId string
    The OCID of a Database Tools database API gateway config.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    InitialPoolSize int
    Specifies the initial size for the number of database connections that will be created for the pool.
    JwtProfileAudience string
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    JwtProfileIssuer string
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    JwtProfileJwkUrl string
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    JwtProfileRoleClaimName string
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    Key string
    A system generated string that uniquely identifies a pool sub resource.
    MaxPoolSize int
    Specifies the maximum number of database connections allowed for the pool.
    MinPoolSize int
    Specifies the minimum number of database connections allowed for the pool.
    PoolRouteValue string
    The pool route value provided in requests to target this pool.
    RestEnabledSqlStatus string
    Specifies whether the REST-Enabled SQL service is active.
    TimeCreated string
    The time the resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the resource was updated. An RFC3339 formatted datetime string.
    Type string
    The type of the Database Tools database API gateway config pool sub resource.
    advanced_properties map(string)
    Advanced pool properties.
    database_actions_status string
    Specifies to enable the Database Actions feature.
    database_tools_connection_id string
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    database_tools_database_api_gateway_config_id string
    The OCID of a Database Tools database API gateway config.
    display_name string
    A filter to return only resources that match the entire specified display name.
    initial_pool_size number
    Specifies the initial size for the number of database connections that will be created for the pool.
    jwt_profile_audience string
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    jwt_profile_issuer string
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    jwt_profile_jwk_url string
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    jwt_profile_role_claim_name string
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    key string
    A system generated string that uniquely identifies a pool sub resource.
    max_pool_size number
    Specifies the maximum number of database connections allowed for the pool.
    min_pool_size number
    Specifies the minimum number of database connections allowed for the pool.
    pool_route_value string
    The pool route value provided in requests to target this pool.
    rest_enabled_sql_status string
    Specifies whether the REST-Enabled SQL service is active.
    time_created string
    The time the resource was created. An RFC3339 formatted datetime string.
    time_updated string
    The time the resource was updated. An RFC3339 formatted datetime string.
    type string
    The type of the Database Tools database API gateway config pool sub resource.
    advancedProperties Map<String,String>
    Advanced pool properties.
    databaseActionsStatus String
    Specifies to enable the Database Actions feature.
    databaseToolsConnectionId String
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    databaseToolsDatabaseApiGatewayConfigId String
    The OCID of a Database Tools database API gateway config.
    displayName String
    A filter to return only resources that match the entire specified display name.
    initialPoolSize Integer
    Specifies the initial size for the number of database connections that will be created for the pool.
    jwtProfileAudience String
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    jwtProfileIssuer String
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    jwtProfileJwkUrl String
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    jwtProfileRoleClaimName String
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    key String
    A system generated string that uniquely identifies a pool sub resource.
    maxPoolSize Integer
    Specifies the maximum number of database connections allowed for the pool.
    minPoolSize Integer
    Specifies the minimum number of database connections allowed for the pool.
    poolRouteValue String
    The pool route value provided in requests to target this pool.
    restEnabledSqlStatus String
    Specifies whether the REST-Enabled SQL service is active.
    timeCreated String
    The time the resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the resource was updated. An RFC3339 formatted datetime string.
    type String
    The type of the Database Tools database API gateway config pool sub resource.
    advancedProperties {[key: string]: string}
    Advanced pool properties.
    databaseActionsStatus string
    Specifies to enable the Database Actions feature.
    databaseToolsConnectionId string
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    databaseToolsDatabaseApiGatewayConfigId string
    The OCID of a Database Tools database API gateway config.
    displayName string
    A filter to return only resources that match the entire specified display name.
    initialPoolSize number
    Specifies the initial size for the number of database connections that will be created for the pool.
    jwtProfileAudience string
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    jwtProfileIssuer string
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    jwtProfileJwkUrl string
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    jwtProfileRoleClaimName string
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    key string
    A system generated string that uniquely identifies a pool sub resource.
    maxPoolSize number
    Specifies the maximum number of database connections allowed for the pool.
    minPoolSize number
    Specifies the minimum number of database connections allowed for the pool.
    poolRouteValue string
    The pool route value provided in requests to target this pool.
    restEnabledSqlStatus string
    Specifies whether the REST-Enabled SQL service is active.
    timeCreated string
    The time the resource was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the resource was updated. An RFC3339 formatted datetime string.
    type string
    The type of the Database Tools database API gateway config pool sub resource.
    advanced_properties Mapping[str, str]
    Advanced pool properties.
    database_actions_status str
    Specifies to enable the Database Actions feature.
    database_tools_connection_id str
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    database_tools_database_api_gateway_config_id str
    The OCID of a Database Tools database API gateway config.
    display_name str
    A filter to return only resources that match the entire specified display name.
    initial_pool_size int
    Specifies the initial size for the number of database connections that will be created for the pool.
    jwt_profile_audience str
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    jwt_profile_issuer str
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    jwt_profile_jwk_url str
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    jwt_profile_role_claim_name str
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    key str
    A system generated string that uniquely identifies a pool sub resource.
    max_pool_size int
    Specifies the maximum number of database connections allowed for the pool.
    min_pool_size int
    Specifies the minimum number of database connections allowed for the pool.
    pool_route_value str
    The pool route value provided in requests to target this pool.
    rest_enabled_sql_status str
    Specifies whether the REST-Enabled SQL service is active.
    time_created str
    The time the resource was created. An RFC3339 formatted datetime string.
    time_updated str
    The time the resource was updated. An RFC3339 formatted datetime string.
    type str
    The type of the Database Tools database API gateway config pool sub resource.
    advancedProperties Map<String>
    Advanced pool properties.
    databaseActionsStatus String
    Specifies to enable the Database Actions feature.
    databaseToolsConnectionId String
    The OCID of the related Database Tools connection. Specifies the Oracle Cloud Infrastructure database tools connection ocid to build the connection pool from.
    databaseToolsDatabaseApiGatewayConfigId String
    The OCID of a Database Tools database API gateway config.
    displayName String
    A filter to return only resources that match the entire specified display name.
    initialPoolSize Number
    Specifies the initial size for the number of database connections that will be created for the pool.
    jwtProfileAudience String
    Specifies the expected audience for the JWT token. This value is used to validate the aud claim in the JWT token.
    jwtProfileIssuer String
    Specifies the issuer of the JWT token. This value is used to validate the iss claim in the JWT token.
    jwtProfileJwkUrl String
    Specifies the URL of the JSON Web Key (JWK) that is used to verify the signature of the JWT token.
    jwtProfileRoleClaimName String
    Specifies the JSON pointer to the claim in the JWT token that contains the roles of the users.
    key String
    A system generated string that uniquely identifies a pool sub resource.
    maxPoolSize Number
    Specifies the maximum number of database connections allowed for the pool.
    minPoolSize Number
    Specifies the minimum number of database connections allowed for the pool.
    poolRouteValue String
    The pool route value provided in requests to target this pool.
    restEnabledSqlStatus String
    Specifies whether the REST-Enabled SQL service is active.
    timeCreated String
    The time the resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the resource was updated. An RFC3339 formatted datetime string.
    type String
    The type of the Database Tools database API gateway config pool sub resource.

    GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(string)
    regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.11.0
    published on Friday, May 15, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.