1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DatabaseTools
  6. RuntimeDatabaseToolsConnectionPropertySet
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 Property Set 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

    Update a property set

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsConnectionPropertySet = new oci.databasetools.RuntimeDatabaseToolsConnectionPropertySet("test_database_tools_connection_property_set", {
        databaseToolsConnectionId: testDatabaseToolsConnection.id,
        key: databaseToolsConnectionPropertySetKey,
        propertySetKey: databaseToolsConnectionPropertySetPropertySetKey,
        authenticationSubstitutions: databaseToolsConnectionPropertySetAuthenticationSubstitutions,
        autonomousDatabaseResourcePrincipalStatus: databaseToolsConnectionPropertySetAutonomousDatabaseResourcePrincipalStatus,
        credentialKey: databaseToolsConnectionPropertySetCredentialKey,
        functionId: testFunction.id,
        identityProvider: {
            type: databaseToolsConnectionPropertySetIdentityProviderType,
            configs: databaseToolsConnectionPropertySetIdentityProviderConfigs,
        },
        instanceDbmsCredentialEnabled: databaseToolsConnectionPropertySetInstanceDbmsCredentialEnabled,
        invokeEndpoint: databaseToolsConnectionPropertySetInvokeEndpoint,
        objectStorageBucketCompartmentId: testCompartment.id,
        objectStorageEndpoint: databaseToolsConnectionPropertySetObjectStorageEndpoint,
        objectStorageNamespace: databaseToolsConnectionPropertySetObjectStorageNamespace,
        printServerType: databaseToolsConnectionPropertySetPrintServerType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_connection_property_set = oci.databasetools.RuntimeDatabaseToolsConnectionPropertySet("test_database_tools_connection_property_set",
        database_tools_connection_id=test_database_tools_connection["id"],
        key=database_tools_connection_property_set_key,
        property_set_key=database_tools_connection_property_set_property_set_key,
        authentication_substitutions=database_tools_connection_property_set_authentication_substitutions,
        autonomous_database_resource_principal_status=database_tools_connection_property_set_autonomous_database_resource_principal_status,
        credential_key=database_tools_connection_property_set_credential_key,
        function_id=test_function["id"],
        identity_provider={
            "type": database_tools_connection_property_set_identity_provider_type,
            "configs": database_tools_connection_property_set_identity_provider_configs,
        },
        instance_dbms_credential_enabled=database_tools_connection_property_set_instance_dbms_credential_enabled,
        invoke_endpoint=database_tools_connection_property_set_invoke_endpoint,
        object_storage_bucket_compartment_id=test_compartment["id"],
        object_storage_endpoint=database_tools_connection_property_set_object_storage_endpoint,
        object_storage_namespace=database_tools_connection_property_set_object_storage_namespace,
        print_server_type=database_tools_connection_property_set_print_server_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.NewRuntimeDatabaseToolsConnectionPropertySet(ctx, "test_database_tools_connection_property_set", &databasetools.RuntimeDatabaseToolsConnectionPropertySetArgs{
    			DatabaseToolsConnectionId:   pulumi.Any(testDatabaseToolsConnection.Id),
    			Key:                         pulumi.Any(databaseToolsConnectionPropertySetKey),
    			PropertySetKey:              pulumi.Any(databaseToolsConnectionPropertySetPropertySetKey),
    			AuthenticationSubstitutions: pulumi.Any(databaseToolsConnectionPropertySetAuthenticationSubstitutions),
    			AutonomousDatabaseResourcePrincipalStatus: pulumi.Any(databaseToolsConnectionPropertySetAutonomousDatabaseResourcePrincipalStatus),
    			CredentialKey: pulumi.Any(databaseToolsConnectionPropertySetCredentialKey),
    			FunctionId:    pulumi.Any(testFunction.Id),
    			IdentityProvider: &databasetools.RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs{
    				Type:    pulumi.Any(databaseToolsConnectionPropertySetIdentityProviderType),
    				Configs: pulumi.Any(databaseToolsConnectionPropertySetIdentityProviderConfigs),
    			},
    			InstanceDbmsCredentialEnabled:    pulumi.Any(databaseToolsConnectionPropertySetInstanceDbmsCredentialEnabled),
    			InvokeEndpoint:                   pulumi.Any(databaseToolsConnectionPropertySetInvokeEndpoint),
    			ObjectStorageBucketCompartmentId: pulumi.Any(testCompartment.Id),
    			ObjectStorageEndpoint:            pulumi.Any(databaseToolsConnectionPropertySetObjectStorageEndpoint),
    			ObjectStorageNamespace:           pulumi.Any(databaseToolsConnectionPropertySetObjectStorageNamespace),
    			PrintServerType:                  pulumi.Any(databaseToolsConnectionPropertySetPrintServerType),
    		})
    		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 testDatabaseToolsConnectionPropertySet = new Oci.DatabaseTools.RuntimeDatabaseToolsConnectionPropertySet("test_database_tools_connection_property_set", new()
        {
            DatabaseToolsConnectionId = testDatabaseToolsConnection.Id,
            Key = databaseToolsConnectionPropertySetKey,
            PropertySetKey = databaseToolsConnectionPropertySetPropertySetKey,
            AuthenticationSubstitutions = databaseToolsConnectionPropertySetAuthenticationSubstitutions,
            AutonomousDatabaseResourcePrincipalStatus = databaseToolsConnectionPropertySetAutonomousDatabaseResourcePrincipalStatus,
            CredentialKey = databaseToolsConnectionPropertySetCredentialKey,
            FunctionId = testFunction.Id,
            IdentityProvider = new Oci.DatabaseTools.Inputs.RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
            {
                Type = databaseToolsConnectionPropertySetIdentityProviderType,
                Configs = databaseToolsConnectionPropertySetIdentityProviderConfigs,
            },
            InstanceDbmsCredentialEnabled = databaseToolsConnectionPropertySetInstanceDbmsCredentialEnabled,
            InvokeEndpoint = databaseToolsConnectionPropertySetInvokeEndpoint,
            ObjectStorageBucketCompartmentId = testCompartment.Id,
            ObjectStorageEndpoint = databaseToolsConnectionPropertySetObjectStorageEndpoint,
            ObjectStorageNamespace = databaseToolsConnectionPropertySetObjectStorageNamespace,
            PrintServerType = databaseToolsConnectionPropertySetPrintServerType,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseTools.RuntimeDatabaseToolsConnectionPropertySet;
    import com.pulumi.oci.DatabaseTools.RuntimeDatabaseToolsConnectionPropertySetArgs;
    import com.pulumi.oci.DatabaseTools.inputs.RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs;
    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 testDatabaseToolsConnectionPropertySet = new RuntimeDatabaseToolsConnectionPropertySet("testDatabaseToolsConnectionPropertySet", RuntimeDatabaseToolsConnectionPropertySetArgs.builder()
                .databaseToolsConnectionId(testDatabaseToolsConnection.id())
                .key(databaseToolsConnectionPropertySetKey)
                .propertySetKey(databaseToolsConnectionPropertySetPropertySetKey)
                .authenticationSubstitutions(databaseToolsConnectionPropertySetAuthenticationSubstitutions)
                .autonomousDatabaseResourcePrincipalStatus(databaseToolsConnectionPropertySetAutonomousDatabaseResourcePrincipalStatus)
                .credentialKey(databaseToolsConnectionPropertySetCredentialKey)
                .functionId(testFunction.id())
                .identityProvider(RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs.builder()
                    .type(databaseToolsConnectionPropertySetIdentityProviderType)
                    .configs(databaseToolsConnectionPropertySetIdentityProviderConfigs)
                    .build())
                .instanceDbmsCredentialEnabled(databaseToolsConnectionPropertySetInstanceDbmsCredentialEnabled)
                .invokeEndpoint(databaseToolsConnectionPropertySetInvokeEndpoint)
                .objectStorageBucketCompartmentId(testCompartment.id())
                .objectStorageEndpoint(databaseToolsConnectionPropertySetObjectStorageEndpoint)
                .objectStorageNamespace(databaseToolsConnectionPropertySetObjectStorageNamespace)
                .printServerType(databaseToolsConnectionPropertySetPrintServerType)
                .build());
    
        }
    }
    
    resources:
      testDatabaseToolsConnectionPropertySet:
        type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionPropertySet
        name: test_database_tools_connection_property_set
        properties:
          databaseToolsConnectionId: ${testDatabaseToolsConnection.id}
          key: ${databaseToolsConnectionPropertySetKey}
          propertySetKey: ${databaseToolsConnectionPropertySetPropertySetKey}
          authenticationSubstitutions: ${databaseToolsConnectionPropertySetAuthenticationSubstitutions}
          autonomousDatabaseResourcePrincipalStatus: ${databaseToolsConnectionPropertySetAutonomousDatabaseResourcePrincipalStatus}
          credentialKey: ${databaseToolsConnectionPropertySetCredentialKey}
          functionId: ${testFunction.id}
          identityProvider:
            type: ${databaseToolsConnectionPropertySetIdentityProviderType}
            configs: ${databaseToolsConnectionPropertySetIdentityProviderConfigs}
          instanceDbmsCredentialEnabled: ${databaseToolsConnectionPropertySetInstanceDbmsCredentialEnabled}
          invokeEndpoint: ${databaseToolsConnectionPropertySetInvokeEndpoint}
          objectStorageBucketCompartmentId: ${testCompartment.id}
          objectStorageEndpoint: ${databaseToolsConnectionPropertySetObjectStorageEndpoint}
          objectStorageNamespace: ${databaseToolsConnectionPropertySetObjectStorageNamespace}
          printServerType: ${databaseToolsConnectionPropertySetPrintServerType}
    
    Example coming soon!
    

    Create RuntimeDatabaseToolsConnectionPropertySet Resource

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

    Constructor syntax

    new RuntimeDatabaseToolsConnectionPropertySet(name: string, args: RuntimeDatabaseToolsConnectionPropertySetArgs, opts?: CustomResourceOptions);
    @overload
    def RuntimeDatabaseToolsConnectionPropertySet(resource_name: str,
                                                  args: RuntimeDatabaseToolsConnectionPropertySetArgs,
                                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def RuntimeDatabaseToolsConnectionPropertySet(resource_name: str,
                                                  opts: Optional[ResourceOptions] = None,
                                                  database_tools_connection_id: Optional[str] = None,
                                                  property_set_key: Optional[str] = None,
                                                  key: Optional[str] = None,
                                                  instance_dbms_credential_enabled: Optional[str] = None,
                                                  function_id: Optional[str] = None,
                                                  identity_provider: Optional[RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs] = None,
                                                  authentication_substitutions: Optional[Mapping[str, str]] = None,
                                                  invoke_endpoint: Optional[str] = None,
                                                  credential_key: Optional[str] = None,
                                                  object_storage_bucket_compartment_id: Optional[str] = None,
                                                  object_storage_endpoint: Optional[str] = None,
                                                  object_storage_namespace: Optional[str] = None,
                                                  print_server_type: Optional[str] = None,
                                                  autonomous_database_resource_principal_status: Optional[str] = None)
    func NewRuntimeDatabaseToolsConnectionPropertySet(ctx *Context, name string, args RuntimeDatabaseToolsConnectionPropertySetArgs, opts ...ResourceOption) (*RuntimeDatabaseToolsConnectionPropertySet, error)
    public RuntimeDatabaseToolsConnectionPropertySet(string name, RuntimeDatabaseToolsConnectionPropertySetArgs args, CustomResourceOptions? opts = null)
    public RuntimeDatabaseToolsConnectionPropertySet(String name, RuntimeDatabaseToolsConnectionPropertySetArgs args)
    public RuntimeDatabaseToolsConnectionPropertySet(String name, RuntimeDatabaseToolsConnectionPropertySetArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionPropertySet
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "oci_databasetools_runtimedatabasetoolsconnectionpropertyset" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionPropertySetArgs
    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 RuntimeDatabaseToolsConnectionPropertySetArgs
    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 RuntimeDatabaseToolsConnectionPropertySetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionPropertySetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RuntimeDatabaseToolsConnectionPropertySetArgs
    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 runtimeDatabaseToolsConnectionPropertySetResource = new Oci.DatabaseTools.RuntimeDatabaseToolsConnectionPropertySet("runtimeDatabaseToolsConnectionPropertySetResource", new()
    {
        DatabaseToolsConnectionId = "string",
        PropertySetKey = "string",
        Key = "string",
        InstanceDbmsCredentialEnabled = "string",
        FunctionId = "string",
        IdentityProvider = new Oci.DatabaseTools.Inputs.RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
        {
            Type = "string",
            Configs = 
            {
                { "string", "string" },
            },
        },
        AuthenticationSubstitutions = 
        {
            { "string", "string" },
        },
        InvokeEndpoint = "string",
        CredentialKey = "string",
        ObjectStorageBucketCompartmentId = "string",
        ObjectStorageEndpoint = "string",
        ObjectStorageNamespace = "string",
        PrintServerType = "string",
        AutonomousDatabaseResourcePrincipalStatus = "string",
    });
    
    example, err := databasetools.NewRuntimeDatabaseToolsConnectionPropertySet(ctx, "runtimeDatabaseToolsConnectionPropertySetResource", &databasetools.RuntimeDatabaseToolsConnectionPropertySetArgs{
    	DatabaseToolsConnectionId:     pulumi.String("string"),
    	PropertySetKey:                pulumi.String("string"),
    	Key:                           pulumi.String("string"),
    	InstanceDbmsCredentialEnabled: pulumi.String("string"),
    	FunctionId:                    pulumi.String("string"),
    	IdentityProvider: &databasetools.RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs{
    		Type: pulumi.String("string"),
    		Configs: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	AuthenticationSubstitutions: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	InvokeEndpoint:                            pulumi.String("string"),
    	CredentialKey:                             pulumi.String("string"),
    	ObjectStorageBucketCompartmentId:          pulumi.String("string"),
    	ObjectStorageEndpoint:                     pulumi.String("string"),
    	ObjectStorageNamespace:                    pulumi.String("string"),
    	PrintServerType:                           pulumi.String("string"),
    	AutonomousDatabaseResourcePrincipalStatus: pulumi.String("string"),
    })
    
    resource "oci_databasetools_runtimedatabasetoolsconnectionpropertyset" "runtimeDatabaseToolsConnectionPropertySetResource" {
      database_tools_connection_id     = "string"
      property_set_key                 = "string"
      key                              = "string"
      instance_dbms_credential_enabled = "string"
      function_id                      = "string"
      identity_provider = {
        type = "string"
        configs = {
          "string" = "string"
        }
      }
      authentication_substitutions = {
        "string" = "string"
      }
      invoke_endpoint                               = "string"
      credential_key                                = "string"
      object_storage_bucket_compartment_id          = "string"
      object_storage_endpoint                       = "string"
      object_storage_namespace                      = "string"
      print_server_type                             = "string"
      autonomous_database_resource_principal_status = "string"
    }
    
    var runtimeDatabaseToolsConnectionPropertySetResource = new RuntimeDatabaseToolsConnectionPropertySet("runtimeDatabaseToolsConnectionPropertySetResource", RuntimeDatabaseToolsConnectionPropertySetArgs.builder()
        .databaseToolsConnectionId("string")
        .propertySetKey("string")
        .key("string")
        .instanceDbmsCredentialEnabled("string")
        .functionId("string")
        .identityProvider(RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs.builder()
            .type("string")
            .configs(Map.of("string", "string"))
            .build())
        .authenticationSubstitutions(Map.of("string", "string"))
        .invokeEndpoint("string")
        .credentialKey("string")
        .objectStorageBucketCompartmentId("string")
        .objectStorageEndpoint("string")
        .objectStorageNamespace("string")
        .printServerType("string")
        .autonomousDatabaseResourcePrincipalStatus("string")
        .build());
    
    runtime_database_tools_connection_property_set_resource = oci.databasetools.RuntimeDatabaseToolsConnectionPropertySet("runtimeDatabaseToolsConnectionPropertySetResource",
        database_tools_connection_id="string",
        property_set_key="string",
        key="string",
        instance_dbms_credential_enabled="string",
        function_id="string",
        identity_provider={
            "type": "string",
            "configs": {
                "string": "string",
            },
        },
        authentication_substitutions={
            "string": "string",
        },
        invoke_endpoint="string",
        credential_key="string",
        object_storage_bucket_compartment_id="string",
        object_storage_endpoint="string",
        object_storage_namespace="string",
        print_server_type="string",
        autonomous_database_resource_principal_status="string")
    
    const runtimeDatabaseToolsConnectionPropertySetResource = new oci.databasetools.RuntimeDatabaseToolsConnectionPropertySet("runtimeDatabaseToolsConnectionPropertySetResource", {
        databaseToolsConnectionId: "string",
        propertySetKey: "string",
        key: "string",
        instanceDbmsCredentialEnabled: "string",
        functionId: "string",
        identityProvider: {
            type: "string",
            configs: {
                string: "string",
            },
        },
        authenticationSubstitutions: {
            string: "string",
        },
        invokeEndpoint: "string",
        credentialKey: "string",
        objectStorageBucketCompartmentId: "string",
        objectStorageEndpoint: "string",
        objectStorageNamespace: "string",
        printServerType: "string",
        autonomousDatabaseResourcePrincipalStatus: "string",
    });
    
    type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionPropertySet
    properties:
        authenticationSubstitutions:
            string: string
        autonomousDatabaseResourcePrincipalStatus: string
        credentialKey: string
        databaseToolsConnectionId: string
        functionId: string
        identityProvider:
            configs:
                string: string
            type: string
        instanceDbmsCredentialEnabled: string
        invokeEndpoint: string
        key: string
        objectStorageBucketCompartmentId: string
        objectStorageEndpoint: string
        objectStorageNamespace: string
        printServerType: string
        propertySetKey: string
    

    RuntimeDatabaseToolsConnectionPropertySet 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 RuntimeDatabaseToolsConnectionPropertySet resource accepts the following input properties:

    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    Key string
    (Updatable) The name of the property set
    PropertySetKey string

    The name of the property set

    ** 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

    AuthenticationSubstitutions Dictionary<string, string>
    (Updatable) APEX FA Integration key-value pairs.
    AutonomousDatabaseResourcePrincipalStatus string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    CredentialKey string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    FunctionId string
    (Updatable) The OCID of the Document Generator function
    IdentityProvider RuntimeDatabaseToolsConnectionPropertySetIdentityProvider
    (Updatable) External identity type provider
    InstanceDbmsCredentialEnabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    InvokeEndpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    ObjectStorageBucketCompartmentId string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    ObjectStorageEndpoint string
    (Updatable) Object Storage Endpoint
    ObjectStorageNamespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    PrintServerType string
    (Updatable) The print server type
    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    Key string
    (Updatable) The name of the property set
    PropertySetKey string

    The name of the property set

    ** 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

    AuthenticationSubstitutions map[string]string
    (Updatable) APEX FA Integration key-value pairs.
    AutonomousDatabaseResourcePrincipalStatus string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    CredentialKey string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    FunctionId string
    (Updatable) The OCID of the Document Generator function
    IdentityProvider RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
    (Updatable) External identity type provider
    InstanceDbmsCredentialEnabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    InvokeEndpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    ObjectStorageBucketCompartmentId string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    ObjectStorageEndpoint string
    (Updatable) Object Storage Endpoint
    ObjectStorageNamespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    PrintServerType string
    (Updatable) The print server type
    database_tools_connection_id string
    The OCID of a Database Tools connection.
    key string
    (Updatable) The name of the property set
    property_set_key string

    The name of the property set

    ** 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

    authentication_substitutions map(string)
    (Updatable) APEX FA Integration key-value pairs.
    autonomous_database_resource_principal_status string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credential_key string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    function_id string
    (Updatable) The OCID of the Document Generator function
    identity_provider object
    (Updatable) External identity type provider
    instance_dbms_credential_enabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invoke_endpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    object_storage_bucket_compartment_id string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    object_storage_endpoint string
    (Updatable) Object Storage Endpoint
    object_storage_namespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    print_server_type string
    (Updatable) The print server type
    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    key String
    (Updatable) The name of the property set
    propertySetKey String

    The name of the property set

    ** 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

    authenticationSubstitutions Map<String,String>
    (Updatable) APEX FA Integration key-value pairs.
    autonomousDatabaseResourcePrincipalStatus String
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credentialKey String
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    functionId String
    (Updatable) The OCID of the Document Generator function
    identityProvider RuntimeConnectionPropertySetIdentityProvider
    (Updatable) External identity type provider
    instanceDbmsCredentialEnabled String
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invokeEndpoint String
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    objectStorageBucketCompartmentId String
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    objectStorageEndpoint String
    (Updatable) Object Storage Endpoint
    objectStorageNamespace String
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    printServerType String
    (Updatable) The print server type
    databaseToolsConnectionId string
    The OCID of a Database Tools connection.
    key string
    (Updatable) The name of the property set
    propertySetKey string

    The name of the property set

    ** 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

    authenticationSubstitutions {[key: string]: string}
    (Updatable) APEX FA Integration key-value pairs.
    autonomousDatabaseResourcePrincipalStatus string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credentialKey string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    functionId string
    (Updatable) The OCID of the Document Generator function
    identityProvider RuntimeDatabaseToolsConnectionPropertySetIdentityProvider
    (Updatable) External identity type provider
    instanceDbmsCredentialEnabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invokeEndpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    objectStorageBucketCompartmentId string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    objectStorageEndpoint string
    (Updatable) Object Storage Endpoint
    objectStorageNamespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    printServerType string
    (Updatable) The print server type
    database_tools_connection_id str
    The OCID of a Database Tools connection.
    key str
    (Updatable) The name of the property set
    property_set_key str

    The name of the property set

    ** 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

    authentication_substitutions Mapping[str, str]
    (Updatable) APEX FA Integration key-value pairs.
    autonomous_database_resource_principal_status str
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credential_key str
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    function_id str
    (Updatable) The OCID of the Document Generator function
    identity_provider RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
    (Updatable) External identity type provider
    instance_dbms_credential_enabled str
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invoke_endpoint str
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    object_storage_bucket_compartment_id str
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    object_storage_endpoint str
    (Updatable) Object Storage Endpoint
    object_storage_namespace str
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    print_server_type str
    (Updatable) The print server type
    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    key String
    (Updatable) The name of the property set
    propertySetKey String

    The name of the property set

    ** 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

    authenticationSubstitutions Map<String>
    (Updatable) APEX FA Integration key-value pairs.
    autonomousDatabaseResourcePrincipalStatus String
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credentialKey String
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    functionId String
    (Updatable) The OCID of the Document Generator function
    identityProvider Property Map
    (Updatable) External identity type provider
    instanceDbmsCredentialEnabled String
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invokeEndpoint String
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    objectStorageBucketCompartmentId String
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    objectStorageEndpoint String
    (Updatable) Object Storage Endpoint
    objectStorageNamespace String
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    printServerType String
    (Updatable) The print server type

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    IsMutable bool
    Indicates whether the property set is mutable or not
    PrerequisitesChecks List<RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck>
    The results of a prerequisites check for APEX FA integration
    UserKey string
    The APEX engine schema name
    Version string
    The version of APEX
    Id string
    The provider-assigned unique ID for this managed resource.
    IsMutable bool
    Indicates whether the property set is mutable or not
    PrerequisitesChecks []RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck
    The results of a prerequisites check for APEX FA integration
    UserKey string
    The APEX engine schema name
    Version string
    The version of APEX
    id string
    The provider-assigned unique ID for this managed resource.
    is_mutable bool
    Indicates whether the property set is mutable or not
    prerequisites_checks list(object)
    The results of a prerequisites check for APEX FA integration
    user_key string
    The APEX engine schema name
    version string
    The version of APEX
    id String
    The provider-assigned unique ID for this managed resource.
    isMutable Boolean
    Indicates whether the property set is mutable or not
    prerequisitesChecks List<RuntimeConnectionPropertySetPrerequisitesCheck>
    The results of a prerequisites check for APEX FA integration
    userKey String
    The APEX engine schema name
    version String
    The version of APEX
    id string
    The provider-assigned unique ID for this managed resource.
    isMutable boolean
    Indicates whether the property set is mutable or not
    prerequisitesChecks RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck[]
    The results of a prerequisites check for APEX FA integration
    userKey string
    The APEX engine schema name
    version string
    The version of APEX
    id str
    The provider-assigned unique ID for this managed resource.
    is_mutable bool
    Indicates whether the property set is mutable or not
    prerequisites_checks Sequence[RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck]
    The results of a prerequisites check for APEX FA integration
    user_key str
    The APEX engine schema name
    version str
    The version of APEX
    id String
    The provider-assigned unique ID for this managed resource.
    isMutable Boolean
    Indicates whether the property set is mutable or not
    prerequisitesChecks List<Property Map>
    The results of a prerequisites check for APEX FA integration
    userKey String
    The APEX engine schema name
    version String
    The version of APEX

    Look up Existing RuntimeDatabaseToolsConnectionPropertySet Resource

    Get an existing RuntimeDatabaseToolsConnectionPropertySet 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?: RuntimeDatabaseToolsConnectionPropertySetState, opts?: CustomResourceOptions): RuntimeDatabaseToolsConnectionPropertySet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_substitutions: Optional[Mapping[str, str]] = None,
            autonomous_database_resource_principal_status: Optional[str] = None,
            credential_key: Optional[str] = None,
            database_tools_connection_id: Optional[str] = None,
            function_id: Optional[str] = None,
            identity_provider: Optional[RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs] = None,
            instance_dbms_credential_enabled: Optional[str] = None,
            invoke_endpoint: Optional[str] = None,
            is_mutable: Optional[bool] = None,
            key: Optional[str] = None,
            object_storage_bucket_compartment_id: Optional[str] = None,
            object_storage_endpoint: Optional[str] = None,
            object_storage_namespace: Optional[str] = None,
            prerequisites_checks: Optional[Sequence[RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheckArgs]] = None,
            print_server_type: Optional[str] = None,
            property_set_key: Optional[str] = None,
            user_key: Optional[str] = None,
            version: Optional[str] = None) -> RuntimeDatabaseToolsConnectionPropertySet
    func GetRuntimeDatabaseToolsConnectionPropertySet(ctx *Context, name string, id IDInput, state *RuntimeDatabaseToolsConnectionPropertySetState, opts ...ResourceOption) (*RuntimeDatabaseToolsConnectionPropertySet, error)
    public static RuntimeDatabaseToolsConnectionPropertySet Get(string name, Input<string> id, RuntimeDatabaseToolsConnectionPropertySetState? state, CustomResourceOptions? opts = null)
    public static RuntimeDatabaseToolsConnectionPropertySet get(String name, Output<String> id, RuntimeDatabaseToolsConnectionPropertySetState state, CustomResourceOptions options)
    resources:  _:    type: oci:DatabaseTools:RuntimeDatabaseToolsConnectionPropertySet    get:      id: ${id}
    import {
      to = oci_databasetools_runtimedatabasetoolsconnectionpropertyset.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:
    AuthenticationSubstitutions Dictionary<string, string>
    (Updatable) APEX FA Integration key-value pairs.
    AutonomousDatabaseResourcePrincipalStatus string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    CredentialKey string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    FunctionId string
    (Updatable) The OCID of the Document Generator function
    IdentityProvider RuntimeDatabaseToolsConnectionPropertySetIdentityProvider
    (Updatable) External identity type provider
    InstanceDbmsCredentialEnabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    InvokeEndpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    IsMutable bool
    Indicates whether the property set is mutable or not
    Key string
    (Updatable) The name of the property set
    ObjectStorageBucketCompartmentId string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    ObjectStorageEndpoint string
    (Updatable) Object Storage Endpoint
    ObjectStorageNamespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    PrerequisitesChecks List<RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck>
    The results of a prerequisites check for APEX FA integration
    PrintServerType string
    (Updatable) The print server type
    PropertySetKey string

    The name of the property set

    ** 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

    UserKey string
    The APEX engine schema name
    Version string
    The version of APEX
    AuthenticationSubstitutions map[string]string
    (Updatable) APEX FA Integration key-value pairs.
    AutonomousDatabaseResourcePrincipalStatus string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    CredentialKey string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    DatabaseToolsConnectionId string
    The OCID of a Database Tools connection.
    FunctionId string
    (Updatable) The OCID of the Document Generator function
    IdentityProvider RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
    (Updatable) External identity type provider
    InstanceDbmsCredentialEnabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    InvokeEndpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    IsMutable bool
    Indicates whether the property set is mutable or not
    Key string
    (Updatable) The name of the property set
    ObjectStorageBucketCompartmentId string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    ObjectStorageEndpoint string
    (Updatable) Object Storage Endpoint
    ObjectStorageNamespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    PrerequisitesChecks []RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheckArgs
    The results of a prerequisites check for APEX FA integration
    PrintServerType string
    (Updatable) The print server type
    PropertySetKey string

    The name of the property set

    ** 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

    UserKey string
    The APEX engine schema name
    Version string
    The version of APEX
    authentication_substitutions map(string)
    (Updatable) APEX FA Integration key-value pairs.
    autonomous_database_resource_principal_status string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credential_key string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    database_tools_connection_id string
    The OCID of a Database Tools connection.
    function_id string
    (Updatable) The OCID of the Document Generator function
    identity_provider object
    (Updatable) External identity type provider
    instance_dbms_credential_enabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invoke_endpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    is_mutable bool
    Indicates whether the property set is mutable or not
    key string
    (Updatable) The name of the property set
    object_storage_bucket_compartment_id string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    object_storage_endpoint string
    (Updatable) Object Storage Endpoint
    object_storage_namespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    prerequisites_checks list(object)
    The results of a prerequisites check for APEX FA integration
    print_server_type string
    (Updatable) The print server type
    property_set_key string

    The name of the property set

    ** 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

    user_key string
    The APEX engine schema name
    version string
    The version of APEX
    authenticationSubstitutions Map<String,String>
    (Updatable) APEX FA Integration key-value pairs.
    autonomousDatabaseResourcePrincipalStatus String
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credentialKey String
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    functionId String
    (Updatable) The OCID of the Document Generator function
    identityProvider RuntimeConnectionPropertySetIdentityProvider
    (Updatable) External identity type provider
    instanceDbmsCredentialEnabled String
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invokeEndpoint String
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    isMutable Boolean
    Indicates whether the property set is mutable or not
    key String
    (Updatable) The name of the property set
    objectStorageBucketCompartmentId String
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    objectStorageEndpoint String
    (Updatable) Object Storage Endpoint
    objectStorageNamespace String
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    prerequisitesChecks List<RuntimeConnectionPropertySetPrerequisitesCheck>
    The results of a prerequisites check for APEX FA integration
    printServerType String
    (Updatable) The print server type
    propertySetKey String

    The name of the property set

    ** 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

    userKey String
    The APEX engine schema name
    version String
    The version of APEX
    authenticationSubstitutions {[key: string]: string}
    (Updatable) APEX FA Integration key-value pairs.
    autonomousDatabaseResourcePrincipalStatus string
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credentialKey string
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    databaseToolsConnectionId string
    The OCID of a Database Tools connection.
    functionId string
    (Updatable) The OCID of the Document Generator function
    identityProvider RuntimeDatabaseToolsConnectionPropertySetIdentityProvider
    (Updatable) External identity type provider
    instanceDbmsCredentialEnabled string
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invokeEndpoint string
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    isMutable boolean
    Indicates whether the property set is mutable or not
    key string
    (Updatable) The name of the property set
    objectStorageBucketCompartmentId string
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    objectStorageEndpoint string
    (Updatable) Object Storage Endpoint
    objectStorageNamespace string
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    prerequisitesChecks RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck[]
    The results of a prerequisites check for APEX FA integration
    printServerType string
    (Updatable) The print server type
    propertySetKey string

    The name of the property set

    ** 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

    userKey string
    The APEX engine schema name
    version string
    The version of APEX
    authentication_substitutions Mapping[str, str]
    (Updatable) APEX FA Integration key-value pairs.
    autonomous_database_resource_principal_status str
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credential_key str
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    database_tools_connection_id str
    The OCID of a Database Tools connection.
    function_id str
    (Updatable) The OCID of the Document Generator function
    identity_provider RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
    (Updatable) External identity type provider
    instance_dbms_credential_enabled str
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invoke_endpoint str
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    is_mutable bool
    Indicates whether the property set is mutable or not
    key str
    (Updatable) The name of the property set
    object_storage_bucket_compartment_id str
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    object_storage_endpoint str
    (Updatable) Object Storage Endpoint
    object_storage_namespace str
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    prerequisites_checks Sequence[RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheckArgs]
    The results of a prerequisites check for APEX FA integration
    print_server_type str
    (Updatable) The print server type
    property_set_key str

    The name of the property set

    ** 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

    user_key str
    The APEX engine schema name
    version str
    The version of APEX
    authenticationSubstitutions Map<String>
    (Updatable) APEX FA Integration key-value pairs.
    autonomousDatabaseResourcePrincipalStatus String
    (Updatable) The status of the Autonomous Database Serverless Resource Principal (OCI$RESOURCE_PRINCIPAL)
    credentialKey String
    (Updatable) The name of the credential used by APEX to manage Object Storage Buckets and Objects as well as invoke the Document Generator function.
    databaseToolsConnectionId String
    The OCID of a Database Tools connection.
    functionId String
    (Updatable) The OCID of the Document Generator function
    identityProvider Property Map
    (Updatable) External identity type provider
    instanceDbmsCredentialEnabled String
    (Updatable) Specifies whether database credentials can be used in all workspaces on the APEX instance. Supported values include: "Y", "N" and empty string.
    invokeEndpoint String
    (Updatable) The base endpoint URL to use to invoke the Document Generator function
    isMutable Boolean
    Indicates whether the property set is mutable or not
    key String
    (Updatable) The name of the property set
    objectStorageBucketCompartmentId String
    (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
    objectStorageEndpoint String
    (Updatable) Object Storage Endpoint
    objectStorageNamespace String
    (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
    prerequisitesChecks List<Property Map>
    The results of a prerequisites check for APEX FA integration
    printServerType String
    (Updatable) The print server type
    propertySetKey String

    The name of the property set

    ** 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

    userKey String
    The APEX engine schema name
    version String
    The version of APEX

    Supporting Types

    RuntimeDatabaseToolsConnectionPropertySetIdentityProvider, RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs

    Type string
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    Configs Dictionary<string, string>
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }
    Type string
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    Configs map[string]string
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }
    type string
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    configs map(string)
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }
    type String
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    configs Map<String,String>
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }
    type string
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    configs {[key: string]: string}
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }
    type str
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    configs Mapping[str, str]
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }
    type String
    (Updatable) External identity type provider. Supported values - OCI_IAM, AZURE_AD, NONE.
    configs Map<String>
    (Updatable) External identity provider configuration parameters. Simple key-value pair Example: { "tenantId": "...", "applicationIdUri": "...", ... }

    RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck, RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheckArgs

    Status string
    Status indicating the outcome of the prerequisites check.
    StatusDetails List<string>
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.
    Status string
    Status indicating the outcome of the prerequisites check.
    StatusDetails []string
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.
    status string
    Status indicating the outcome of the prerequisites check.
    status_details list(string)
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.
    status String
    Status indicating the outcome of the prerequisites check.
    statusDetails List<String>
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.
    status string
    Status indicating the outcome of the prerequisites check.
    statusDetails string[]
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.
    status str
    Status indicating the outcome of the prerequisites check.
    status_details Sequence[str]
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.
    status String
    Status indicating the outcome of the prerequisites check.
    statusDetails List<String>
    Messages describing the prerequisites check outcome. Messages can provide actionable information when the status indicates a failure.

    Import

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

    $ pulumi import oci:DatabaseTools/runtimeDatabaseToolsConnectionPropertySet:RuntimeDatabaseToolsConnectionPropertySet test_database_tools_connection_property_set "databaseToolsConnections/{databaseToolsConnectionId}/propertySets/{propertySetKey}"
    

    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.