1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseTools
  5. getDatabaseToolsIdentities
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.DatabaseTools.getDatabaseToolsIdentities

Start a Neo task
Explain and create an oci.DatabaseTools.getDatabaseToolsIdentities resource
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This data source provides the list of Database Tools Identities in Oracle Cloud Infrastructure Database Tools service.

    Returns a list of Database Tools identities.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsIdentities = oci.DatabaseTools.getDatabaseToolsIdentities({
        compartmentId: compartmentId,
        databaseToolsConnectionId: testDatabaseToolsConnection.id,
        displayName: databaseToolsIdentityDisplayName,
        state: databaseToolsIdentityState,
        types: databaseToolsIdentityType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_identities = oci.DatabaseTools.get_database_tools_identities(compartment_id=compartment_id,
        database_tools_connection_id=test_database_tools_connection["id"],
        display_name=database_tools_identity_display_name,
        state=database_tools_identity_state,
        types=database_tools_identity_type)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/databasetools"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasetools.GetDatabaseToolsIdentities(ctx, &databasetools.GetDatabaseToolsIdentitiesArgs{
    			CompartmentId:             compartmentId,
    			DatabaseToolsConnectionId: pulumi.StringRef(testDatabaseToolsConnection.Id),
    			DisplayName:               pulumi.StringRef(databaseToolsIdentityDisplayName),
    			State:                     pulumi.StringRef(databaseToolsIdentityState),
    			Types:                     databaseToolsIdentityType,
    		}, 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 testDatabaseToolsIdentities = Oci.DatabaseTools.GetDatabaseToolsIdentities.Invoke(new()
        {
            CompartmentId = compartmentId,
            DatabaseToolsConnectionId = testDatabaseToolsConnection.Id,
            DisplayName = databaseToolsIdentityDisplayName,
            State = databaseToolsIdentityState,
            Types = databaseToolsIdentityType,
        });
    
    });
    
    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.GetDatabaseToolsIdentitiesArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 testDatabaseToolsIdentities = DatabaseToolsFunctions.getDatabaseToolsIdentities(GetDatabaseToolsIdentitiesArgs.builder()
                .compartmentId(compartmentId)
                .databaseToolsConnectionId(testDatabaseToolsConnection.id())
                .displayName(databaseToolsIdentityDisplayName)
                .state(databaseToolsIdentityState)
                .types(databaseToolsIdentityType)
                .build());
    
        }
    }
    
    variables:
      testDatabaseToolsIdentities:
        fn::invoke:
          function: oci:DatabaseTools:getDatabaseToolsIdentities
          arguments:
            compartmentId: ${compartmentId}
            databaseToolsConnectionId: ${testDatabaseToolsConnection.id}
            displayName: ${databaseToolsIdentityDisplayName}
            state: ${databaseToolsIdentityState}
            types: ${databaseToolsIdentityType}
    

    Using getDatabaseToolsIdentities

    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 getDatabaseToolsIdentities(args: GetDatabaseToolsIdentitiesArgs, opts?: InvokeOptions): Promise<GetDatabaseToolsIdentitiesResult>
    function getDatabaseToolsIdentitiesOutput(args: GetDatabaseToolsIdentitiesOutputArgs, opts?: InvokeOptions): Output<GetDatabaseToolsIdentitiesResult>
    def get_database_tools_identities(compartment_id: Optional[str] = None,
                                      database_tools_connection_id: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      filters: Optional[Sequence[GetDatabaseToolsIdentitiesFilter]] = None,
                                      state: Optional[str] = None,
                                      types: Optional[Sequence[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetDatabaseToolsIdentitiesResult
    def get_database_tools_identities_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                      database_tools_connection_id: Optional[pulumi.Input[str]] = None,
                                      display_name: Optional[pulumi.Input[str]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDatabaseToolsIdentitiesFilterArgs]]]] = None,
                                      state: Optional[pulumi.Input[str]] = None,
                                      types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseToolsIdentitiesResult]
    func GetDatabaseToolsIdentities(ctx *Context, args *GetDatabaseToolsIdentitiesArgs, opts ...InvokeOption) (*GetDatabaseToolsIdentitiesResult, error)
    func GetDatabaseToolsIdentitiesOutput(ctx *Context, args *GetDatabaseToolsIdentitiesOutputArgs, opts ...InvokeOption) GetDatabaseToolsIdentitiesResultOutput

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

    public static class GetDatabaseToolsIdentities 
    {
        public static Task<GetDatabaseToolsIdentitiesResult> InvokeAsync(GetDatabaseToolsIdentitiesArgs args, InvokeOptions? opts = null)
        public static Output<GetDatabaseToolsIdentitiesResult> Invoke(GetDatabaseToolsIdentitiesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDatabaseToolsIdentitiesResult> getDatabaseToolsIdentities(GetDatabaseToolsIdentitiesArgs args, InvokeOptions options)
    public static Output<GetDatabaseToolsIdentitiesResult> getDatabaseToolsIdentities(GetDatabaseToolsIdentitiesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseTools/getDatabaseToolsIdentities:getDatabaseToolsIdentities
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters List<GetDatabaseToolsIdentitiesFilter>
    State string
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters []GetDatabaseToolsIdentitiesFilter
    State string
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    Types []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.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<GetIdentitiesFilter>
    state String
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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.
    databaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    displayName string
    A filter to return only resources that match the entire specified display name.
    filters GetDatabaseToolsIdentitiesFilter[]
    state string
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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.
    database_tools_connection_id str
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    display_name str
    A filter to return only resources that match the entire specified display name.
    filters Sequence[GetDatabaseToolsIdentitiesFilter]
    state str
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    types List<String>
    A filter to return only resources with one of the specified type values.

    getDatabaseToolsIdentities Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment containing the Database Tools identity.
    DatabaseToolsIdentityCollections List<GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollection>
    The list of database_tools_identity_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DatabaseToolsConnectionId string
    The OCID of the related Database Tools connection.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetDatabaseToolsIdentitiesFilter>
    State string
    The current state of the Database Tools identity.
    Types List<string>
    The Database Tools identity type.
    CompartmentId string
    The OCID of the compartment containing the Database Tools identity.
    DatabaseToolsIdentityCollections []GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollection
    The list of database_tools_identity_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DatabaseToolsConnectionId string
    The OCID of the related Database Tools connection.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetDatabaseToolsIdentitiesFilter
    State string
    The current state of the Database Tools identity.
    Types []string
    The Database Tools identity type.
    compartmentId String
    The OCID of the compartment containing the Database Tools identity.
    databaseToolsIdentityCollections List<GetIdentitiesIdentityCollection>
    The list of database_tools_identity_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    databaseToolsConnectionId String
    The OCID of the related Database Tools connection.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetIdentitiesFilter>
    state String
    The current state of the Database Tools identity.
    types List<String>
    The Database Tools identity type.
    compartmentId string
    The OCID of the compartment containing the Database Tools identity.
    databaseToolsIdentityCollections GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollection[]
    The list of database_tools_identity_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    databaseToolsConnectionId string
    The OCID of the related Database Tools connection.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetDatabaseToolsIdentitiesFilter[]
    state string
    The current state of the Database Tools identity.
    types string[]
    The Database Tools identity type.
    compartment_id str
    The OCID of the compartment containing the Database Tools identity.
    database_tools_identity_collections Sequence[GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollection]
    The list of database_tools_identity_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    database_tools_connection_id str
    The OCID of the related Database Tools connection.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[GetDatabaseToolsIdentitiesFilter]
    state str
    The current state of the Database Tools identity.
    types Sequence[str]
    The Database Tools identity type.
    compartmentId String
    The OCID of the compartment containing the Database Tools identity.
    databaseToolsIdentityCollections List<Property Map>
    The list of database_tools_identity_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    databaseToolsConnectionId String
    The OCID of the related Database Tools connection.
    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 identity.
    types List<String>
    The Database Tools identity type.

    Supporting Types

    GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollection

    GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    CredentialKey string
    The name of the credential object created in the Oracle Database.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 identity.
    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<GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollectionItemLock>
    Locks associated with this resource.
    State string
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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 identity was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the Database Tools identity 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.
    CredentialKey string
    The name of the credential object created in the Oracle Database.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 identity.
    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 []GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollectionItemLock
    Locks associated with this resource.
    State string
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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 identity was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the Database Tools identity 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.
    credentialKey String
    The name of the credential object created in the Oracle Database.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 identity.
    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<GetIdentitiesIdentityCollectionItemLock>
    Locks associated with this resource.
    state String
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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 identity was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the Database Tools identity 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.
    credentialKey string
    The name of the credential object created in the Oracle Database.
    databaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 identity.
    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 GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollectionItemLock[]
    Locks associated with this resource.
    state string
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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 identity was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the Database Tools identity 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.
    credential_key str
    The name of the credential object created in the Oracle Database.
    database_tools_connection_id str
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 identity.
    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[GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollectionItemLock]
    Locks associated with this resource.
    state str
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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 identity was created. An RFC3339 formatted datetime string.
    time_updated str
    The time the Database Tools identity 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.
    credentialKey String
    The name of the credential object created in the Oracle Database.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    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 identity.
    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.
    state String
    A filter to return resources only when their databaseToolsIdentityLifecycleState matches the specified databaseToolsIdentityLifecycleState.
    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 identity was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the Database Tools identity was updated. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsIdentitiesDatabaseToolsIdentityCollectionItemLock

    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 identity 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 identity 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 identity 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 identity 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 identity 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 identity was created. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsIdentitiesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []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
    Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate