published on Friday, May 15, 2026 by Pulumi
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:
- Database
Tools stringConnection Id - The OCID of a Database Tools connection.
- Key string
- (Updatable) The name of the property set
- Property
Set stringKey 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 Dictionary<string, string> - (Updatable) APEX FA Integration key-value pairs.
- Autonomous
Database stringResource Principal Status - (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 RuntimeDatabase Tools Connection Property Set Identity Provider - (Updatable) External identity type provider
- Instance
Dbms stringCredential Enabled - (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 stringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- Object
Storage stringEndpoint - (Updatable) Object Storage Endpoint
- Object
Storage stringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- Print
Server stringType - (Updatable) The print server type
- Database
Tools stringConnection Id - The OCID of a Database Tools connection.
- Key string
- (Updatable) The name of the property set
- Property
Set stringKey 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]string - (Updatable) APEX FA Integration key-value pairs.
- Autonomous
Database stringResource Principal Status - (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 RuntimeDatabase Tools Connection Property Set Identity Provider Args - (Updatable) External identity type provider
- Instance
Dbms stringCredential Enabled - (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 stringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- Object
Storage stringEndpoint - (Updatable) Object Storage Endpoint
- Object
Storage stringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- Print
Server stringType - (Updatable) The print server type
- database_
tools_ stringconnection_ id - The OCID of a Database Tools connection.
- key string
- (Updatable) The name of the property set
- property_
set_ stringkey 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_ stringresource_ principal_ status - (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_ stringcredential_ enabled - (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_ stringbucket_ compartment_ id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object_
storage_ stringendpoint - (Updatable) Object Storage Endpoint
- object_
storage_ stringnamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- print_
server_ stringtype - (Updatable) The print server type
- database
Tools StringConnection Id - The OCID of a Database Tools connection.
- key String
- (Updatable) The name of the property set
- property
Set StringKey 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,String> - (Updatable) APEX FA Integration key-value pairs.
- autonomous
Database StringResource Principal Status - (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 RuntimeConnection Property Set Identity Provider - (Updatable) External identity type provider
- instance
Dbms StringCredential Enabled - (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 StringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object
Storage StringEndpoint - (Updatable) Object Storage Endpoint
- object
Storage StringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- print
Server StringType - (Updatable) The print server type
- database
Tools stringConnection Id - The OCID of a Database Tools connection.
- key string
- (Updatable) The name of the property set
- property
Set stringKey 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 {[key: string]: string} - (Updatable) APEX FA Integration key-value pairs.
- autonomous
Database stringResource Principal Status - (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 RuntimeDatabase Tools Connection Property Set Identity Provider - (Updatable) External identity type provider
- instance
Dbms stringCredential Enabled - (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 stringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object
Storage stringEndpoint - (Updatable) Object Storage Endpoint
- object
Storage stringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- print
Server stringType - (Updatable) The print server type
- database_
tools_ strconnection_ id - The OCID of a Database Tools connection.
- key str
- (Updatable) The name of the property set
- property_
set_ strkey 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_ strresource_ principal_ status - (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 RuntimeDatabase Tools Connection Property Set Identity Provider Args - (Updatable) External identity type provider
- instance_
dbms_ strcredential_ enabled - (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_ strbucket_ compartment_ id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object_
storage_ strendpoint - (Updatable) Object Storage Endpoint
- object_
storage_ strnamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- print_
server_ strtype - (Updatable) The print server type
- database
Tools StringConnection Id - The OCID of a Database Tools connection.
- key String
- (Updatable) The name of the property set
- property
Set StringKey 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 StringResource Principal Status - (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 Property Map - (Updatable) External identity type provider
- instance
Dbms StringCredential Enabled - (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 StringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object
Storage StringEndpoint - (Updatable) Object Storage Endpoint
- object
Storage StringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- print
Server StringType - (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.
- Is
Mutable bool - Indicates whether the property set is mutable or not
- Prerequisites
Checks List<RuntimeDatabase Tools Connection Property Set Prerequisites Check> - 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.
- Is
Mutable bool - Indicates whether the property set is mutable or not
- Prerequisites
Checks []RuntimeDatabase Tools Connection Property Set Prerequisites Check - 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.
- 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.
- is
Mutable Boolean - Indicates whether the property set is mutable or not
- prerequisites
Checks List<RuntimeConnection Property Set Prerequisites Check> - 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.
- is
Mutable boolean - Indicates whether the property set is mutable or not
- prerequisites
Checks RuntimeDatabase Tools Connection Property Set Prerequisites Check[] - 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 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[RuntimeDatabase Tools Connection Property Set Prerequisites Check] - 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.
- is
Mutable Boolean - Indicates whether the property set is mutable or not
- prerequisites
Checks List<Property Map> - The results of a prerequisites check for APEX FA integration
- user
Key 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) -> RuntimeDatabaseToolsConnectionPropertySetfunc 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.
- Authentication
Substitutions Dictionary<string, string> - (Updatable) APEX FA Integration key-value pairs.
- Autonomous
Database stringResource Principal Status - (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 stringConnection Id - The OCID of a Database Tools connection.
- Function
Id string - (Updatable) The OCID of the Document Generator function
- Identity
Provider RuntimeDatabase Tools Connection Property Set Identity Provider - (Updatable) External identity type provider
- Instance
Dbms stringCredential Enabled - (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 stringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- Object
Storage stringEndpoint - (Updatable) Object Storage Endpoint
- Object
Storage stringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- Prerequisites
Checks List<RuntimeDatabase Tools Connection Property Set Prerequisites Check> - The results of a prerequisites check for APEX FA integration
- Print
Server stringType - (Updatable) The print server type
- Property
Set stringKey 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
- Authentication
Substitutions map[string]string - (Updatable) APEX FA Integration key-value pairs.
- Autonomous
Database stringResource Principal Status - (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 stringConnection Id - The OCID of a Database Tools connection.
- Function
Id string - (Updatable) The OCID of the Document Generator function
- Identity
Provider RuntimeDatabase Tools Connection Property Set Identity Provider Args - (Updatable) External identity type provider
- Instance
Dbms stringCredential Enabled - (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 stringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- Object
Storage stringEndpoint - (Updatable) Object Storage Endpoint
- Object
Storage stringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- Prerequisites
Checks []RuntimeDatabase Tools Connection Property Set Prerequisites Check Args - The results of a prerequisites check for APEX FA integration
- Print
Server stringType - (Updatable) The print server type
- Property
Set stringKey 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
- authentication_
substitutions map(string) - (Updatable) APEX FA Integration key-value pairs.
- autonomous_
database_ stringresource_ principal_ status - (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_ stringconnection_ id - 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_ stringcredential_ enabled - (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_ stringbucket_ compartment_ id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object_
storage_ stringendpoint - (Updatable) Object Storage Endpoint
- object_
storage_ stringnamespace - (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_ stringtype - (Updatable) The print server type
- property_
set_ stringkey 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
- authentication
Substitutions Map<String,String> - (Updatable) APEX FA Integration key-value pairs.
- autonomous
Database StringResource Principal Status - (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 StringConnection Id - The OCID of a Database Tools connection.
- function
Id String - (Updatable) The OCID of the Document Generator function
- identity
Provider RuntimeConnection Property Set Identity Provider - (Updatable) External identity type provider
- instance
Dbms StringCredential Enabled - (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 Boolean - Indicates whether the property set is mutable or not
- key String
- (Updatable) The name of the property set
- object
Storage StringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object
Storage StringEndpoint - (Updatable) Object Storage Endpoint
- object
Storage StringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- prerequisites
Checks List<RuntimeConnection Property Set Prerequisites Check> - The results of a prerequisites check for APEX FA integration
- print
Server StringType - (Updatable) The print server type
- property
Set StringKey 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
- authentication
Substitutions {[key: string]: string} - (Updatable) APEX FA Integration key-value pairs.
- autonomous
Database stringResource Principal Status - (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 stringConnection Id - The OCID of a Database Tools connection.
- function
Id string - (Updatable) The OCID of the Document Generator function
- identity
Provider RuntimeDatabase Tools Connection Property Set Identity Provider - (Updatable) External identity type provider
- instance
Dbms stringCredential Enabled - (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 boolean - Indicates whether the property set is mutable or not
- key string
- (Updatable) The name of the property set
- object
Storage stringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object
Storage stringEndpoint - (Updatable) Object Storage Endpoint
- object
Storage stringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- prerequisites
Checks RuntimeDatabase Tools Connection Property Set Prerequisites Check[] - The results of a prerequisites check for APEX FA integration
- print
Server stringType - (Updatable) The print server type
- property
Set stringKey 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
- authentication_
substitutions Mapping[str, str] - (Updatable) APEX FA Integration key-value pairs.
- autonomous_
database_ strresource_ principal_ status - (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_ strconnection_ id - The OCID of a Database Tools connection.
- function_
id str - (Updatable) The OCID of the Document Generator function
- identity_
provider RuntimeDatabase Tools Connection Property Set Identity Provider Args - (Updatable) External identity type provider
- instance_
dbms_ strcredential_ enabled - (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_ strbucket_ compartment_ id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object_
storage_ strendpoint - (Updatable) Object Storage Endpoint
- object_
storage_ strnamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- prerequisites_
checks Sequence[RuntimeDatabase Tools Connection Property Set Prerequisites Check Args] - The results of a prerequisites check for APEX FA integration
- print_
server_ strtype - (Updatable) The print server type
- property_
set_ strkey 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
- authentication
Substitutions Map<String> - (Updatable) APEX FA Integration key-value pairs.
- autonomous
Database StringResource Principal Status - (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 StringConnection Id - The OCID of a Database Tools connection.
- function
Id String - (Updatable) The OCID of the Document Generator function
- identity
Provider Property Map - (Updatable) External identity type provider
- instance
Dbms StringCredential Enabled - (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 Boolean - Indicates whether the property set is mutable or not
- key String
- (Updatable) The name of the property set
- object
Storage StringBucket Compartment Id - (Updatable) The OCID of the compartment containing the Object Storage Buckets managed by APEX
- object
Storage StringEndpoint - (Updatable) Object Storage Endpoint
- object
Storage StringNamespace - (Updatable) The Object Storage Namespace containing the Object Storage Buckets managed by APEX
- prerequisites
Checks List<Property Map> - The results of a prerequisites check for APEX FA integration
- print
Server StringType - (Updatable) The print server type
- property
Set StringKey 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
Supporting Types
RuntimeDatabaseToolsConnectionPropertySetIdentityProvider, RuntimeDatabaseToolsConnectionPropertySetIdentityProviderArgs
RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheck, RuntimeDatabaseToolsConnectionPropertySetPrerequisitesCheckArgs
- 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.
- Status
Details []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.
- 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.
- status
Details 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.
- status
Details 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
ociTerraform Provider.
published on Friday, May 15, 2026 by Pulumi
