1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DatabaseTools
  6. RuntimeDatabaseToolsConnectionCredential
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 resource provides the Database Tools Connection Credential resource in Oracle Cloud Infrastructure Database Tools Runtime service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/

    Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database_tools_runtime

    Creates a credential for the user specified by the key.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsConnectionCredential = new oci.databasetools.RuntimeDatabaseToolsConnectionCredential("test_database_tools_connection_credential", {
        databaseToolsConnectionId: testDatabaseToolsConnection.id,
        key: databaseToolsConnectionCredentialKey,
        password: databaseToolsConnectionCredentialPassword,
        type: databaseToolsConnectionCredentialType,
        userName: testUser.name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_connection_credential = oci.databasetools.RuntimeDatabaseToolsConnectionCredential("test_database_tools_connection_credential",
        database_tools_connection_id=test_database_tools_connection["id"],
        key=database_tools_connection_credential_key,
        password=database_tools_connection_credential_password,
        type=database_tools_connection_credential_type,
        user_name=test_user["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.NewRuntimeDatabaseToolsConnectionCredential(ctx, "test_database_tools_connection_credential", &databasetools.RuntimeDatabaseToolsConnectionCredentialArgs{
    			DatabaseToolsConnectionId: pulumi.Any(testDatabaseToolsConnection.Id),
    			Key:                       pulumi.Any(databaseToolsConnectionCredentialKey),
    			Password:                  pulumi.Any(databaseToolsConnectionCredentialPassword),
    			Type:                      pulumi.Any(databaseToolsConnectionCredentialType),
    			UserName:                  pulumi.Any(testUser.Name),
    		})
    		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 testDatabaseToolsConnectionCredential = new Oci.DatabaseTools.RuntimeDatabaseToolsConnectionCredential("test_database_tools_connection_credential", new()
        {
            DatabaseToolsConnectionId = testDatabaseToolsConnection.Id,
            Key = databaseToolsConnectionCredentialKey,
            Password = databaseToolsConnectionCredentialPassword,
            Type = databaseToolsConnectionCredentialType,
            UserName = testUser.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseTools.RuntimeDatabaseToolsConnectionCredential;
    import com.pulumi.oci.DatabaseTools.RuntimeDatabaseToolsConnectionCredentialArgs;
    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) {
            var testDatabaseToolsConnectionCredential = new RuntimeDatabaseToolsConnectionCredential("testDatabaseToolsConnectionCredential", RuntimeDatabaseToolsConnectionCredentialArgs.builder()
                .databaseToolsConnectionId(testDatabaseToolsConnection.id())
                .key(databaseToolsConnectionCredentialKey)
                .password(databaseToolsConnectionCredentialPassword)
                .type(databaseToolsConnectionCredentialType)
                .userName(testUser.name())
                .build());
    
        }
    }
    
    resources:
      testDatabaseToolsConnectionCredential:
        type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionCredential
        name: test_database_tools_connection_credential
        properties:
          databaseToolsConnectionId: ${testDatabaseToolsConnection.id}
          key: ${databaseToolsConnectionCredentialKey}
          password: ${databaseToolsConnectionCredentialPassword}
          type: ${databaseToolsConnectionCredentialType}
          userName: ${testUser.name}
    
    Example coming soon!
    

    Create RuntimeDatabaseToolsConnectionCredential Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RuntimeDatabaseToolsConnectionCredential(name: string, args: RuntimeDatabaseToolsConnectionCredentialArgs, opts?: CustomResourceOptions);
    @overload
    def RuntimeDatabaseToolsConnectionCredential(resource_name: str,
                                                 args: RuntimeDatabaseToolsConnectionCredentialArgs,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def RuntimeDatabaseToolsConnectionCredential(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 database_tools_connection_id: Optional[str] = None,
                                                 key: Optional[str] = None,
                                                 password: Optional[str] = None,
                                                 type: Optional[str] = None,
                                                 user_name: Optional[str] = None)
    func NewRuntimeDatabaseToolsConnectionCredential(ctx *Context, name string, args RuntimeDatabaseToolsConnectionCredentialArgs, opts ...ResourceOption) (*RuntimeDatabaseToolsConnectionCredential, error)
    public RuntimeDatabaseToolsConnectionCredential(string name, RuntimeDatabaseToolsConnectionCredentialArgs args, CustomResourceOptions? opts = null)
    public RuntimeDatabaseToolsConnectionCredential(String name, RuntimeDatabaseToolsConnectionCredentialArgs args)
    public RuntimeDatabaseToolsConnectionCredential(String name, RuntimeDatabaseToolsConnectionCredentialArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionCredential
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "oci_databasetools_runtimedatabasetoolsconnectioncredential" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionCredentialArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionCredentialArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionCredentialArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionCredentialArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionCredentialArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var runtimeDatabaseToolsConnectionCredentialResource = new Oci.DatabaseTools.RuntimeDatabaseToolsConnectionCredential("runtimeDatabaseToolsConnectionCredentialResource", new()
    {
        DatabaseToolsConnectionId = "string",
        Key = "string",
        Password = "string",
        Type = "string",
        UserName = "string",
    });
    
    example, err := databasetools.NewRuntimeDatabaseToolsConnectionCredential(ctx, "runtimeDatabaseToolsConnectionCredentialResource", &databasetools.RuntimeDatabaseToolsConnectionCredentialArgs{
    	DatabaseToolsConnectionId: pulumi.String("string"),
    	Key:                       pulumi.String("string"),
    	Password:                  pulumi.String("string"),
    	Type:                      pulumi.String("string"),
    	UserName:                  pulumi.String("string"),
    })
    
    resource "oci_databasetools_runtimedatabasetoolsconnectioncredential" "runtimeDatabaseToolsConnectionCredentialResource" {
      database_tools_connection_id = "string"
      key                          = "string"
      password                     = "string"
      type                         = "string"
      user_name                    = "string"
    }
    
    var runtimeDatabaseToolsConnectionCredentialResource = new RuntimeDatabaseToolsConnectionCredential("runtimeDatabaseToolsConnectionCredentialResource", RuntimeDatabaseToolsConnectionCredentialArgs.builder()
        .databaseToolsConnectionId("string")
        .key("string")
        .password("string")
        .type("string")
        .userName("string")
        .build());
    
    runtime_database_tools_connection_credential_resource = oci.databasetools.RuntimeDatabaseToolsConnectionCredential("runtimeDatabaseToolsConnectionCredentialResource",
        database_tools_connection_id="string",
        key="string",
        password="string",
        type="string",
        user_name="string")
    
    const runtimeDatabaseToolsConnectionCredentialResource = new oci.databasetools.RuntimeDatabaseToolsConnectionCredential("runtimeDatabaseToolsConnectionCredentialResource", {
        databaseToolsConnectionId: "string",
        key: "string",
        password: "string",
        type: "string",
        userName: "string",
    });
    
    type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionCredential
    properties:
        databaseToolsConnectionId: string
        key: string
        password: string
        type: string
        userName: string
    

    RuntimeDatabaseToolsConnectionCredential Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RuntimeDatabaseToolsConnectionCredential resource accepts the following input properties:

    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    Key string
    The credentialName to be created
    Password string
    (Updatable) The password for the new credential.
    Type string
    (Updatable) The type of credential.
    UserName string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    Key string
    The credentialName to be created
    Password string
    (Updatable) The password for the new credential.
    Type string
    (Updatable) The type of credential.
    UserName string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    database_tools_connection_id string
    The OCID of a Database Tools connection.
    key string
    The credentialName to be created
    password string
    (Updatable) The password for the new credential.
    type string
    (Updatable) The type of credential.
    user_name string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    key String
    The credentialName to be created
    password String
    (Updatable) The password for the new credential.
    type String
    (Updatable) The type of credential.
    userName String

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    databaseToolsConnectionId string
    The OCID of a Database Tools connection.
    key string
    The credentialName to be created
    password string
    (Updatable) The password for the new credential.
    type string
    (Updatable) The type of credential.
    userName string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    database_tools_connection_id str
    The OCID of a Database Tools connection.
    key str
    The credentialName to be created
    password str
    (Updatable) The password for the new credential.
    type str
    (Updatable) The type of credential.
    user_name str

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    key String
    The credentialName to be created
    password String
    (Updatable) The password for the new credential.
    type String
    (Updatable) The type of credential.
    userName String

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RuntimeDatabaseToolsConnectionCredential resource produces the following output properties:

    Enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    Id string
    The provider-assigned unique ID for this managed resource.
    KeyType string
    Indicates whether this refers to a public synonym or not.
    Owner string
    Owner of the credential
    RelatedResources List<RuntimeDatabaseToolsConnectionCredentialRelatedResource>
    A related resource for a credential.
    WindowsDomain string
    For a Windows target, the Windows domain to use when logging in
    Enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    Id string
    The provider-assigned unique ID for this managed resource.
    KeyType string
    Indicates whether this refers to a public synonym or not.
    Owner string
    Owner of the credential
    RelatedResources []RuntimeDatabaseToolsConnectionCredentialRelatedResource
    A related resource for a credential.
    WindowsDomain string
    For a Windows target, the Windows domain to use when logging in
    enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    id string
    The provider-assigned unique ID for this managed resource.
    key_type string
    Indicates whether this refers to a public synonym or not.
    owner string
    Owner of the credential
    related_resources list(object)
    A related resource for a credential.
    windows_domain string
    For a Windows target, the Windows domain to use when logging in
    enabled String
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    id String
    The provider-assigned unique ID for this managed resource.
    keyType String
    Indicates whether this refers to a public synonym or not.
    owner String
    Owner of the credential
    relatedResources List<RuntimeConnectionCredentialRelatedResource>
    A related resource for a credential.
    windowsDomain String
    For a Windows target, the Windows domain to use when logging in
    enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    id string
    The provider-assigned unique ID for this managed resource.
    keyType string
    Indicates whether this refers to a public synonym or not.
    owner string
    Owner of the credential
    relatedResources RuntimeDatabaseToolsConnectionCredentialRelatedResource[]
    A related resource for a credential.
    windowsDomain string
    For a Windows target, the Windows domain to use when logging in
    enabled str
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    id str
    The provider-assigned unique ID for this managed resource.
    key_type str
    Indicates whether this refers to a public synonym or not.
    owner str
    Owner of the credential
    related_resources Sequence[RuntimeDatabaseToolsConnectionCredentialRelatedResource]
    A related resource for a credential.
    windows_domain str
    For a Windows target, the Windows domain to use when logging in
    enabled String
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    id String
    The provider-assigned unique ID for this managed resource.
    keyType String
    Indicates whether this refers to a public synonym or not.
    owner String
    Owner of the credential
    relatedResources List<Property Map>
    A related resource for a credential.
    windowsDomain String
    For a Windows target, the Windows domain to use when logging in

    Look up Existing RuntimeDatabaseToolsConnectionCredential Resource

    Get an existing RuntimeDatabaseToolsConnectionCredential resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RuntimeDatabaseToolsConnectionCredentialState, opts?: CustomResourceOptions): RuntimeDatabaseToolsConnectionCredential
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            database_tools_connection_id: Optional[str] = None,
            enabled: Optional[str] = None,
            key: Optional[str] = None,
            key_type: Optional[str] = None,
            owner: Optional[str] = None,
            password: Optional[str] = None,
            related_resources: Optional[Sequence[RuntimeDatabaseToolsConnectionCredentialRelatedResourceArgs]] = None,
            type: Optional[str] = None,
            user_name: Optional[str] = None,
            windows_domain: Optional[str] = None) -> RuntimeDatabaseToolsConnectionCredential
    func GetRuntimeDatabaseToolsConnectionCredential(ctx *Context, name string, id IDInput, state *RuntimeDatabaseToolsConnectionCredentialState, opts ...ResourceOption) (*RuntimeDatabaseToolsConnectionCredential, error)
    public static RuntimeDatabaseToolsConnectionCredential Get(string name, Input<string> id, RuntimeDatabaseToolsConnectionCredentialState? state, CustomResourceOptions? opts = null)
    public static RuntimeDatabaseToolsConnectionCredential get(String name, Output<String> id, RuntimeDatabaseToolsConnectionCredentialState state, CustomResourceOptions options)
    resources:  _:    type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionCredential    get:      id: ${id}
    import {
      to = oci_databasetools_runtimedatabasetoolsconnectioncredential.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    Enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    Key string
    The credentialName to be created
    KeyType string
    Indicates whether this refers to a public synonym or not.
    Owner string
    Owner of the credential
    Password string
    (Updatable) The password for the new credential.
    RelatedResources List<RuntimeDatabaseToolsConnectionCredentialRelatedResource>
    A related resource for a credential.
    Type string
    (Updatable) The type of credential.
    UserName string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    WindowsDomain string
    For a Windows target, the Windows domain to use when logging in
    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    Enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    Key string
    The credentialName to be created
    KeyType string
    Indicates whether this refers to a public synonym or not.
    Owner string
    Owner of the credential
    Password string
    (Updatable) The password for the new credential.
    RelatedResources []RuntimeDatabaseToolsConnectionCredentialRelatedResourceArgs
    A related resource for a credential.
    Type string
    (Updatable) The type of credential.
    UserName string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    WindowsDomain string
    For a Windows target, the Windows domain to use when logging in
    database_tools_connection_id string
    The OCID of a Database Tools connection.
    enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    key string
    The credentialName to be created
    key_type string
    Indicates whether this refers to a public synonym or not.
    owner string
    Owner of the credential
    password string
    (Updatable) The password for the new credential.
    related_resources list(object)
    A related resource for a credential.
    type string
    (Updatable) The type of credential.
    user_name string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    windows_domain string
    For a Windows target, the Windows domain to use when logging in
    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    enabled String
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    key String
    The credentialName to be created
    keyType String
    Indicates whether this refers to a public synonym or not.
    owner String
    Owner of the credential
    password String
    (Updatable) The password for the new credential.
    relatedResources List<RuntimeConnectionCredentialRelatedResource>
    A related resource for a credential.
    type String
    (Updatable) The type of credential.
    userName String

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    windowsDomain String
    For a Windows target, the Windows domain to use when logging in
    databaseToolsConnectionId string
    The OCID of a Database Tools connection.
    enabled string
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    key string
    The credentialName to be created
    keyType string
    Indicates whether this refers to a public synonym or not.
    owner string
    Owner of the credential
    password string
    (Updatable) The password for the new credential.
    relatedResources RuntimeDatabaseToolsConnectionCredentialRelatedResource[]
    A related resource for a credential.
    type string
    (Updatable) The type of credential.
    userName string

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    windowsDomain string
    For a Windows target, the Windows domain to use when logging in
    database_tools_connection_id str
    The OCID of a Database Tools connection.
    enabled str
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    key str
    The credentialName to be created
    key_type str
    Indicates whether this refers to a public synonym or not.
    owner str
    Owner of the credential
    password str
    (Updatable) The password for the new credential.
    related_resources Sequence[RuntimeDatabaseToolsConnectionCredentialRelatedResourceArgs]
    A related resource for a credential.
    type str
    (Updatable) The type of credential.
    user_name str

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    windows_domain str
    For a Windows target, the Windows domain to use when logging in
    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    enabled String
    Indicates whether this credential is enabled (TRUE) or not (FALSE)
    key String
    The credentialName to be created
    keyType String
    Indicates whether this refers to a public synonym or not.
    owner String
    Owner of the credential
    password String
    (Updatable) The password for the new credential.
    relatedResources List<Property Map>
    A related resource for a credential.
    type String
    (Updatable) The type of credential.
    userName String

    (Updatable) The username for the new credential.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    windowsDomain String
    For a Windows target, the Windows domain to use when logging in

    Supporting Types

    RuntimeDatabaseToolsConnectionCredentialRelatedResource, RuntimeDatabaseToolsConnectionCredentialRelatedResourceArgs

    Identifier string
    The OCID of the related resource.
    Type string
    (Updatable) The type of credential.
    Identifier string
    The OCID of the related resource.
    Type string
    (Updatable) The type of credential.
    identifier string
    The OCID of the related resource.
    type string
    (Updatable) The type of credential.
    identifier String
    The OCID of the related resource.
    type String
    (Updatable) The type of credential.
    identifier string
    The OCID of the related resource.
    type string
    (Updatable) The type of credential.
    identifier str
    The OCID of the related resource.
    type str
    (Updatable) The type of credential.
    identifier String
    The OCID of the related resource.
    type String
    (Updatable) The type of credential.

    Import

    DatabaseToolsConnectionCredentials can be imported using the id, e.g.

    $ pulumi import oci:DatabaseTools/runtimeDatabaseToolsConnectionCredential:RuntimeDatabaseToolsConnectionCredential test_database_tools_connection_credential "databaseToolsConnections/{databaseToolsConnectionId}/credentials/{credentialKey}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.