1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DatabaseTools
  6. getDatabaseToolsDatabaseApiGatewayConfigs
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi

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

    Returns a list of Database Tools database API gateway configs.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsDatabaseApiGatewayConfigs = oci.databasetools.getDatabaseToolsDatabaseApiGatewayConfigs({
        compartmentId: compartmentId,
        displayName: databaseToolsDatabaseApiGatewayConfigDisplayName,
        state: databaseToolsDatabaseApiGatewayConfigState,
        types: databaseToolsDatabaseApiGatewayConfigType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_database_api_gateway_configs = oci.databasetools.get_database_tools_database_api_gateway_configs(compartment_id=compartment_id,
        display_name=database_tools_database_api_gateway_config_display_name,
        state=database_tools_database_api_gateway_config_state,
        types=database_tools_database_api_gateway_config_type)
    
    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.GetDatabaseToolsDatabaseApiGatewayConfigs(ctx, &databasetools.GetDatabaseToolsDatabaseApiGatewayConfigsArgs{
    			CompartmentId: compartmentId,
    			DisplayName:   pulumi.StringRef(databaseToolsDatabaseApiGatewayConfigDisplayName),
    			State:         pulumi.StringRef(databaseToolsDatabaseApiGatewayConfigState),
    			Types:         pulumi.ToArray(databaseToolsDatabaseApiGatewayConfigType),
    		}, 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 testDatabaseToolsDatabaseApiGatewayConfigs = Oci.DatabaseTools.GetDatabaseToolsDatabaseApiGatewayConfigs.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = databaseToolsDatabaseApiGatewayConfigDisplayName,
            State = databaseToolsDatabaseApiGatewayConfigState,
            Types = databaseToolsDatabaseApiGatewayConfigType,
        });
    
    });
    
    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.GetDatabaseToolsDatabaseApiGatewayConfigsArgs;
    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 testDatabaseToolsDatabaseApiGatewayConfigs = DatabaseToolsFunctions.getDatabaseToolsDatabaseApiGatewayConfigs(GetDatabaseToolsDatabaseApiGatewayConfigsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(databaseToolsDatabaseApiGatewayConfigDisplayName)
                .state(databaseToolsDatabaseApiGatewayConfigState)
                .types(databaseToolsDatabaseApiGatewayConfigType)
                .build());
    
        }
    }
    
    variables:
      testDatabaseToolsDatabaseApiGatewayConfigs:
        fn::invoke:
          function: oci:DatabaseTools:getDatabaseToolsDatabaseApiGatewayConfigs
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${databaseToolsDatabaseApiGatewayConfigDisplayName}
            state: ${databaseToolsDatabaseApiGatewayConfigState}
            types: ${databaseToolsDatabaseApiGatewayConfigType}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_databasetools_getdatabasetoolsdatabaseapigatewayconfigs" "testDatabaseToolsDatabaseApiGatewayConfigs" {
      compartment_id = compartmentId
      display_name   = databaseToolsDatabaseApiGatewayConfigDisplayName
      state          = databaseToolsDatabaseApiGatewayConfigState
      types          = databaseToolsDatabaseApiGatewayConfigType
    }
    

    Using getDatabaseToolsDatabaseApiGatewayConfigs

    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 getDatabaseToolsDatabaseApiGatewayConfigs(args: GetDatabaseToolsDatabaseApiGatewayConfigsArgs, opts?: InvokeOptions): Promise<GetDatabaseToolsDatabaseApiGatewayConfigsResult>
    function getDatabaseToolsDatabaseApiGatewayConfigsOutput(args: GetDatabaseToolsDatabaseApiGatewayConfigsOutputArgs, opts?: InvokeOptions): Output<GetDatabaseToolsDatabaseApiGatewayConfigsResult>
    def get_database_tools_database_api_gateway_configs(compartment_id: Optional[str] = None,
                                                        display_name: Optional[str] = None,
                                                        filters: Optional[Sequence[GetDatabaseToolsDatabaseApiGatewayConfigsFilter]] = None,
                                                        state: Optional[str] = None,
                                                        types: Optional[Sequence[str]] = None,
                                                        opts: Optional[InvokeOptions] = None) -> GetDatabaseToolsDatabaseApiGatewayConfigsResult
    def get_database_tools_database_api_gateway_configs_output(compartment_id: pulumi.Input[Optional[str]] = None,
                                                        display_name: pulumi.Input[Optional[str]] = None,
                                                        filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetDatabaseToolsDatabaseApiGatewayConfigsFilterArgs]]]] = None,
                                                        state: pulumi.Input[Optional[str]] = None,
                                                        types: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                                        opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseToolsDatabaseApiGatewayConfigsResult]
    func GetDatabaseToolsDatabaseApiGatewayConfigs(ctx *Context, args *GetDatabaseToolsDatabaseApiGatewayConfigsArgs, opts ...InvokeOption) (*GetDatabaseToolsDatabaseApiGatewayConfigsResult, error)
    func GetDatabaseToolsDatabaseApiGatewayConfigsOutput(ctx *Context, args *GetDatabaseToolsDatabaseApiGatewayConfigsOutputArgs, opts ...InvokeOption) GetDatabaseToolsDatabaseApiGatewayConfigsResultOutput

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

    public static class GetDatabaseToolsDatabaseApiGatewayConfigs 
    {
        public static Task<GetDatabaseToolsDatabaseApiGatewayConfigsResult> InvokeAsync(GetDatabaseToolsDatabaseApiGatewayConfigsArgs args, InvokeOptions? opts = null)
        public static Output<GetDatabaseToolsDatabaseApiGatewayConfigsResult> Invoke(GetDatabaseToolsDatabaseApiGatewayConfigsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDatabaseToolsDatabaseApiGatewayConfigsResult> getDatabaseToolsDatabaseApiGatewayConfigs(GetDatabaseToolsDatabaseApiGatewayConfigsArgs args, InvokeOptions options)
    public static Output<GetDatabaseToolsDatabaseApiGatewayConfigsResult> getDatabaseToolsDatabaseApiGatewayConfigs(GetDatabaseToolsDatabaseApiGatewayConfigsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseTools/getDatabaseToolsDatabaseApiGatewayConfigs:getDatabaseToolsDatabaseApiGatewayConfigs
      arguments:
        # arguments dictionary
    data "oci_databasetools_getdatabasetoolsdatabaseapigatewayconfigs" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters List<GetDatabaseToolsDatabaseApiGatewayConfigsFilter>
    State string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    Types List<string>
    A filter to return only resources with one of the specified type values.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters []GetDatabaseToolsDatabaseApiGatewayConfigsFilter
    State string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    Types []string
    A filter to return only resources with one of the specified type values.
    compartment_id string
    The OCID of the compartment in which to list resources.
    display_name string
    A filter to return only resources that match the entire specified display name.
    filters list(object)
    state string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    types list(string)
    A filter to return only resources with one of the specified type values.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<GetDatabaseApiGatewayConfigsFilter>
    state String
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    types List<String>
    A filter to return only resources with one of the specified type values.
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire specified display name.
    filters GetDatabaseToolsDatabaseApiGatewayConfigsFilter[]
    state string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    types string[]
    A filter to return only resources with one of the specified type values.
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire specified display name.
    filters Sequence[GetDatabaseToolsDatabaseApiGatewayConfigsFilter]
    state str
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    types Sequence[str]
    A filter to return only resources with one of the specified type values.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<Property Map>
    state String
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    types List<String>
    A filter to return only resources with one of the specified type values.

    getDatabaseToolsDatabaseApiGatewayConfigs Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment containing the Database Tools database API gateway config.
    DatabaseToolsDatabaseApiGatewayConfigCollections List<GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollection>
    The list of database_tools_database_api_gateway_config_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<GetDatabaseToolsDatabaseApiGatewayConfigsFilter>
    State string
    The current state of the Database Tools database API gateway config.
    Types List<string>
    The Database Tools database API gateway config type.
    CompartmentId string
    The OCID of the compartment containing the Database Tools database API gateway config.
    DatabaseToolsDatabaseApiGatewayConfigCollections []GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollection
    The list of database_tools_database_api_gateway_config_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 []GetDatabaseToolsDatabaseApiGatewayConfigsFilter
    State string
    The current state of the Database Tools database API gateway config.
    Types []string
    The Database Tools database API gateway config type.
    compartment_id string
    The OCID of the compartment containing the Database Tools database API gateway config.
    database_tools_database_api_gateway_config_collections list(object)
    The list of database_tools_database_api_gateway_config_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)
    state string
    The current state of the Database Tools database API gateway config.
    types list(string)
    The Database Tools database API gateway config type.
    compartmentId String
    The OCID of the compartment containing the Database Tools database API gateway config.
    databaseToolsDatabaseApiGatewayConfigCollections List<GetDatabaseApiGatewayConfigsDatabaseApiGatewayConfigCollection>
    The list of database_tools_database_api_gateway_config_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<GetDatabaseApiGatewayConfigsFilter>
    state String
    The current state of the Database Tools database API gateway config.
    types List<String>
    The Database Tools database API gateway config type.
    compartmentId string
    The OCID of the compartment containing the Database Tools database API gateway config.
    databaseToolsDatabaseApiGatewayConfigCollections GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollection[]
    The list of database_tools_database_api_gateway_config_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 GetDatabaseToolsDatabaseApiGatewayConfigsFilter[]
    state string
    The current state of the Database Tools database API gateway config.
    types string[]
    The Database Tools database API gateway config type.
    compartment_id str
    The OCID of the compartment containing the Database Tools database API gateway config.
    database_tools_database_api_gateway_config_collections Sequence[GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollection]
    The list of database_tools_database_api_gateway_config_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[GetDatabaseToolsDatabaseApiGatewayConfigsFilter]
    state str
    The current state of the Database Tools database API gateway config.
    types Sequence[str]
    The Database Tools database API gateway config type.
    compartmentId String
    The OCID of the compartment containing the Database Tools database API gateway config.
    databaseToolsDatabaseApiGatewayConfigCollections List<Property Map>
    The list of database_tools_database_api_gateway_config_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>
    state String
    The current state of the Database Tools database API gateway config.
    types List<String>
    The Database Tools database API gateway config type.

    Supporting Types

    GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollection

    GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    FreeformTags Dictionary<string, string>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    The OCID of the Database Tools database API gateway config.
    LifecycleDetails 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.
    Locks List<GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollectionItemLock>
    Locks associated with this resource.
    MetadataSource string
    The RESTful service definition location.
    State string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    FreeformTags map[string]string
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    The OCID of the Database Tools database API gateway config.
    LifecycleDetails 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.
    Locks []GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollectionItemLock
    Locks associated with this resource.
    MetadataSource string
    The RESTful service definition location.
    State string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    compartment_id string
    The OCID of the compartment in which to list resources.
    defined_tags map(string)
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    display_name string
    A filter to return only resources that match the entire specified display name.
    freeform_tags map(string)
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    The OCID of the Database Tools database API gateway config.
    lifecycle_details 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.
    locks list(object)
    Locks associated with this resource.
    metadata_source string
    The RESTful service definition location.
    state string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    system_tags map(string)
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    time_updated string
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only resources that match the entire specified display name.
    freeformTags Map<String,String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    The OCID of the Database Tools database API gateway config.
    lifecycleDetails 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.
    locks List<GetDatabaseApiGatewayConfigsDatabaseApiGatewayConfigCollectionItemLock>
    Locks associated with this resource.
    metadataSource String
    The RESTful service definition location.
    state String
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    A filter to return only resources that match the entire specified display name.
    freeformTags {[key: string]: string}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    The OCID of the Database Tools database API gateway config.
    lifecycleDetails 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.
    locks GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollectionItemLock[]
    Locks associated with this resource.
    metadataSource string
    The RESTful service definition location.
    state string
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    display_name str
    A filter to return only resources that match the entire specified display name.
    freeform_tags Mapping[str, str]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    The OCID of the Database Tools database API gateway config.
    lifecycle_details str
    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.
    locks Sequence[GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollectionItemLock]
    Locks associated with this resource.
    metadata_source str
    The RESTful service definition location.
    state str
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    time_updated str
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    type str
    A filter to return only resources with one of the specified type values.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only resources that match the entire specified display name.
    freeformTags Map<String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    The OCID of the Database Tools database API gateway config.
    lifecycleDetails 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.
    locks List<Property Map>
    Locks associated with this resource.
    metadataSource String
    The RESTful service definition location.
    state String
    A filter to return resources only when their lifecycleState matches the specified lifecycleState.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the Database Tools database API gateway config was updated. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollectionItemLock

    Message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    RelatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    Message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    RelatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    related_resource_id string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    time_created string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    message String
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId String
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.
    message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated string
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    message str
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    related_resource_id str
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    time_created str
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    type str
    A filter to return only resources with one of the specified type values.
    message String
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId String
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    The time the Database Tools database API gateway config was created. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsDatabaseApiGatewayConfigsFilter

    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.13.0
    published on Thursday, May 28, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial