Database Tools Common Types

DBMS_CLOUD_OCI_DATABASE_TOOLS_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_ADD_RESOURCE_LOCK_DETAILS_T Type

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_add_resource_lock_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  related_resource_id varchar2(32767),
  message varchar2(32767),
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_add_resource_lock_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_add_resource_lock_details_t (
    l_type varchar2,
    related_resource_id varchar2,
    message varchar2,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(required) Type of the lock.

Allowed values are: 'FULL', 'DELETE'

related_resource_id

(optional) The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.

message

(optional) A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.

time_created

(optional) When the lock was created.

DBMS_CLOUD_OCI_DATABASE_TOOLS_CHANGE_DATABASE_TOOLS_CONNECTION_COMPARTMENT_DETAILS_T Type

Contains the details for the compartment to move the `DatabaseToolsConnection` to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_change_database_tools_connection_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_change_database_tools_connection_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_change_database_tools_connection_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the `DatabaseToolsConnection` to.

DBMS_CLOUD_OCI_DATABASE_TOOLS_CHANGE_DATABASE_TOOLS_PRIVATE_ENDPOINT_COMPARTMENT_DETAILS_T Type

Contains the details for the compartment to move the Database Tools private endpoint to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_change_database_tools_private_endpoint_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_change_database_tools_private_endpoint_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_change_database_tools_private_endpoint_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the `DatabaseConnectionProfile` to.

DBMS_CLOUD_OCI_DATABASE_TOOLS_RESOURCE_LOCK_T Type

Resource locks are used to prevent certain APIs from being called for the resource. A full lock prevents both updating the resource and deleting the resource. A delete lock prevents deleting the resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_resource_lock_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  related_resource_id varchar2(32767),
  message varchar2(32767),
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_resource_lock_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_resource_lock_t (
    l_type varchar2,
    related_resource_id varchar2,
    message varchar2,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(required) Type of the lock.

Allowed values are: 'FULL', 'DELETE'

related_resource_id

(optional) The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.

message

(optional) A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.

time_created

(optional) When the lock was created.

DBMS_CLOUD_OCI_DATABASE_TOOLS_RESOURCE_LOCK_TBL Type

Nested table type of dbms_cloud_oci_database_tools_resource_lock_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_resource_lock_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_resource_lock_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_CONNECTION_DETAILS_T Type

Details for the new Database Tools connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  locks dbms_cloud_oci_database_tools_resource_lock_tbl,
  l_type varchar2(32767),
  runtime_support varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_details_t (
    display_name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(required) The OCID of the compartment containing the Database Tools connection.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

locks

(optional) Locks associated with this resource.

l_type

(required) The DatabaseToolsConnection type.

Allowed values are: 'ORACLE_DATABASE', 'MYSQL', 'POSTGRESQL', 'GENERIC_JDBC'

runtime_support

(optional) Specifies whether this connection is supported by the Database Tools Runtime.

Allowed values are: 'SUPPORTED', 'UNSUPPORTED'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_USER_PASSWORD_DETAILS_T Type

The user password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_user_password_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the user password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_GENERIC_JDBC_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_GENERIC_JDBC_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_GENERIC_JDBC_DETAILS_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'JAVA_KEY_STORE', 'JAVA_TRUST_STORE', 'PKCS12', 'SSO', 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_GENERIC_JDBC_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_CONNECTION_GENERIC_JDBC_DETAILS_T Type

Details of the new Database Tools connection for a Generic JDBC database system.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_connection_generic_jdbc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_create_database_tools_connection_details_t (
  url varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_generic_jdbc_details_t (
    display_name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    url varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_create_database_tools_connection_generic_jdbc_details_t is a subtype of the dbms_cloud_oci_database_tools_create_database_tools_connection_details_t type.

Fields

Field Description

url

(required) The JDBC URL used to connect to the Generic JDBC database system.

user_name

(required) The user name.

user_password

(required)

advanced_properties

(optional) The advanced connection properties key-value pair.

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_RELATED_RESOURCE_MY_SQL_DETAILS_T Type

The related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_related_resource_my_sql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_related_resource_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_related_resource_my_sql_details_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource entity type.

Allowed values are: 'MYSQLDBSYSTEM'

identifier

(required) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_MY_SQL_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_MY_SQL_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_MY_SQL_DETAILS_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_MY_SQL_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_CONNECTION_MY_SQL_DETAILS_T Type

Details of the new Database Tools connection for a MySQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_connection_my_sql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_create_database_tools_connection_details_t (
  related_resource dbms_cloud_oci_database_tools_create_database_tools_related_resource_my_sql_details_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_my_sql_details_t (
    display_name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_create_database_tools_related_resource_my_sql_details_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_create_database_tools_connection_my_sql_details_t is a subtype of the dbms_cloud_oci_database_tools_create_database_tools_connection_details_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connection string used to connect to the MySQL Server.

user_name

(required) The user name.

user_password

(required)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the Database Tools private endpoint used to access the database in the customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_RELATED_RESOURCE_DETAILS_T Type

The related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_related_resource_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_related_resource_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_related_resource_details_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource entity type.

Allowed values are: 'AUTONOMOUSDATABASE', 'DATABASE', 'PLUGGABLEDATABASE'

identifier

(required) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_DETAILS_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_details_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'JAVA_KEY_STORE', 'JAVA_TRUST_STORE', 'PKCS12', 'SSO'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_DETAILS_T Type

The proxy client information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  proxy_authentication_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t (
    proxy_authentication_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

proxy_authentication_type

(required) The proxy authentication type.

Allowed values are: 'USER_NAME', 'NO_PROXY'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_DETAILS_T Type

Details of the new Database Tools connection for an Oracle Database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_connection_oracle_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_create_database_tools_connection_details_t (
  related_resource dbms_cloud_oci_database_tools_create_database_tools_related_resource_details_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_details_tbl,
  private_endpoint_id varchar2(32767),
  proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_oracle_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_oracle_database_details_t (
    display_name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_create_database_tools_related_resource_details_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_details_tbl,
    private_endpoint_id varchar2,
    proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_create_database_tools_connection_oracle_database_details_t is a subtype of the dbms_cloud_oci_database_tools_create_database_tools_connection_details_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connect descriptor or Easy Connect Naming method use to connect to the database.

user_name

(required) The database user name.

user_password

(required)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `oracle.net.ssl_server_dn_match`).

key_stores

(optional) Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.

private_endpoint_id

(optional) The OCID of the Database Tools private endpoint used to access the database in the customer VCN.

proxy_client

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_RELATED_RESOURCE_POSTGRESQL_DETAILS_T Type

The related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_related_resource_postgresql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_related_resource_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_related_resource_postgresql_details_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource entity type.

Allowed values are: 'POSTGRESQLDBSYSTEM'

identifier

(required) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_POSTGRESQL_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_POSTGRESQL_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_POSTGRESQL_DETAILS_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_POSTGRESQL_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_CONNECTION_POSTGRESQL_DETAILS_T Type

Details of the new Database Tools connection for a PostgreSQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_connection_postgresql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_create_database_tools_connection_details_t (
  related_resource dbms_cloud_oci_database_tools_create_database_tools_related_resource_postgresql_details_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_connection_postgresql_details_t (
    display_name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_create_database_tools_related_resource_postgresql_details_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_create_database_tools_connection_postgresql_details_t is a subtype of the dbms_cloud_oci_database_tools_create_database_tools_connection_details_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connection string used to connect to the PostgreSQL Server.

user_name

(required) The user name.

user_password

(required)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the Database Tools private endpoint used to access the database in the customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_CREATE_DATABASE_TOOLS_PRIVATE_ENDPOINT_DETAILS_T Type

The details for the new Database Tools private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_create_database_tools_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  locks dbms_cloud_oci_database_tools_resource_lock_tbl,
  display_name varchar2(32767),
  description varchar2(32767),
  endpoint_service_id varchar2(32767),
  subnet_id varchar2(32767),
  private_endpoint_ip varchar2(32767),
  nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_private_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_create_database_tools_private_endpoint_details_t (
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    display_name varchar2,
    description varchar2,
    endpoint_service_id varchar2,
    subnet_id varchar2,
    private_endpoint_ip varchar2,
    nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing the Database Tools private endpoint.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

locks

(optional) Locks associated with this resource.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

description

(optional) A description of the Database Tools private endpoint.

endpoint_service_id

(required) The OCID of the `DatabaseToolsEndpointService`.

subnet_id

(required) The OCID of the subnet that the private endpoint belongs to.

private_endpoint_ip

(optional) The private IP address that represents the access point for the associated endpoint service.

nsg_ids

(optional) The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_T Type

Description of the Database Tools connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  locks dbms_cloud_oci_database_tools_resource_lock_tbl,
  l_type varchar2(32767),
  runtime_support varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the Database Tools connection.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(required) The OCID of the compartment containing the Database Tools connection.

lifecycle_state

(required) The current state of the Database Tools connection.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED', 'INACTIVE'

lifecycle_details

(optional) A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.

time_created

(required) The time the Database Tools connection was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the DatabaseToolsConnection was updated. An RFC3339 formatted datetime string.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

locks

(optional) Locks associated with this resource.

l_type

(required) The Database Tools connection type.

Allowed values are: 'ORACLE_DATABASE', 'MYSQL', 'POSTGRESQL', 'GENERIC_JDBC'

runtime_support

(required) Specifies whether this connection is supported by the Database Tools Runtime.

Allowed values are: 'SUPPORTED', 'UNSUPPORTED'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_SUMMARY_T Type

Summary of the Database Tools connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  locks dbms_cloud_oci_database_tools_resource_lock_tbl,
  l_type varchar2(32767),
  runtime_support varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the `DatabaseToolsConnection`.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(required) The OCID of the compartment containing the Database Tools connection.

lifecycle_state

(required) The current state of the Database Tools connection.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED', 'INACTIVE'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

time_created

(required) The time the Database Tools connection was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the Database Tools connection was updated. An RFC3339 formatted datetime string.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

locks

(optional) Locks associated with this resource.

l_type

(required) The Database Tools connection type.

Allowed values are: 'ORACLE_DATABASE', 'MYSQL', 'POSTGRESQL', 'GENERIC_JDBC'

runtime_support

(required) Specifies whether this connection is supported by the Database Tools Runtime.

Allowed values are: 'SUPPORTED', 'UNSUPPORTED'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_connection_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_connection_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_COLLECTION_T Type

List of `DatabaseToolsConnectionSummary` items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_database_tools_database_tools_connection_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_collection_t (
    items dbms_cloud_oci_database_tools_database_tools_connection_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of `DatabaseToolsConnectionSummary` items.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_USER_PASSWORD_T Type

The user password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_user_password_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the user password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_GENERIC_JDBC_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_GENERIC_JDBC_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_GENERIC_JDBC_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'JAVA_KEY_STORE', 'JAVA_TRUST_STORE', 'PKCS12', 'SSO', 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_GENERIC_JDBC_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_GENERIC_JDBC_T Type

Database Tools connection of a Generic JDBC database system.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_t (
  url varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    url varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_t type.

Fields

Field Description

url

(required) The JDBC URL used to connect to the Generic JDBC database system.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair.

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_USER_PASSWORD_SUMMARY_T Type

The user password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_user_password_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the user password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_GENERIC_JDBC_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_GENERIC_JDBC_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_GENERIC_JDBC_SUMMARY_T Type

The summary of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'JAVA_KEY_STORE', 'JAVA_TRUST_STORE', 'PKCS12', 'SSO', 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_GENERIC_JDBC_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_GENERIC_JDBC_SUMMARY_T Type

DatabaseToolsConnectionSummary of a Generic JDBC database system.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_summary_t (
  url varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    url varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_summary_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_generic_jdbc_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_summary_t type.

Fields

Field Description

url

(required) The JDBC URL used to connect to the Generic JDBC database system.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair.

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_RELATED_RESOURCE_MY_SQL_T Type

A related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource entity type.

Allowed values are: 'MYSQLDBSYSTEM'

identifier

(required) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_MY_SQL_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_MY_SQL_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_MY_SQL_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_MY_SQL_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_MY_SQL_T Type

Database Tools connection of a MySQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_t (
  related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_my_sql_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_my_sql_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connection string used to connect to the MySQL Server.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (for example, `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the Database Tools private endpoint used to access the database in the customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_MY_SQL_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_MY_SQL_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_MY_SQL_SUMMARY_T Type

The key store secrets.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_MY_SQL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_MY_SQL_SUMMARY_T Type

DatabaseToolsConnectionSummary of a MySQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_my_sql_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_summary_t (
  related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_my_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_my_sql_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_my_sql_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_summary_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_my_sql_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_summary_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connection string used to connect to the MySQL Server.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the `DatabaseToolsPrivateEndpoint` used to access the database in the customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_RELATED_RESOURCE_T Type

A related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_related_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_related_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_related_resource_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource entity type.

Allowed values are: 'AUTONOMOUSDATABASE', 'DATABASE', 'PLUGGABLEDATABASE'

identifier

(required) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'JAVA_KEY_STORE', 'JAVA_TRUST_STORE', 'PKCS12', 'SSO'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_T Type

The proxy client information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t FORCE AUTHID CURRENT_USER IS OBJECT (
  proxy_authentication_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t (
    proxy_authentication_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

proxy_authentication_type

(required) The proxy authentication type.

Allowed values are: 'USER_NAME', 'NO_PROXY'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_T Type

Database Tools connection of an Oracle Database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_t (
  related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_tbl,
  private_endpoint_id varchar2(32767),
  proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_tbl,
    private_endpoint_id varchar2,
    proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connect descriptor or Easy Connect Naming method used to connect to the database.

user_name

(optional) The database user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (for example, `oracle.net.ssl_server_dn_match`).

key_stores

(optional) The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.

private_endpoint_id

(optional) The OCID of the Database Tools private endpoint used to access the database in the customer VCN.

proxy_client

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_NO_PROXY_T Type

Represents blank proxy client information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_t (
    proxy_authentication_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_NO_PROXY_DETAILS_T Type

Represents blank proxy client information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_details_t (
    proxy_authentication_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_SUMMARY_T Type

The proxy client information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  proxy_authentication_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t (
    proxy_authentication_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

proxy_authentication_type

(required) The proxy authentication type.

Allowed values are: 'USER_NAME', 'NO_PROXY'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_NO_PROXY_SUMMARY_T Type

Represents blank proxy client information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_summary_t (
    proxy_authentication_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_no_proxy_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_USER_NAME_T Type

Proxy client information for user name based proxy authentication.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t (
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
  roles dbms_cloud_oci_database_tools_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_t (
    proxy_authentication_type varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
    roles dbms_cloud_oci_database_tools_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_t type.

Fields

Field Description

user_name

(required) The user name.

user_password

(optional)

roles

(optional) A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_USER_NAME_DETAILS_T Type

Proxy client information for user name based proxy authentication.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t (
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  roles dbms_cloud_oci_database_tools_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_details_t (
    proxy_authentication_type varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    roles dbms_cloud_oci_database_tools_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t type.

Fields

Field Description

user_name

(required) The user name.

user_password

(optional)

roles

(optional) A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_PROXY_CLIENT_USER_NAME_SUMMARY_T Type

Proxy client information for user name based proxy authentication.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t (
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
  roles dbms_cloud_oci_database_tools_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_summary_t (
    proxy_authentication_type varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
    roles dbms_cloud_oci_database_tools_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_user_name_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t type.

Fields

Field Description

user_name

(required) The user name.

user_password

(optional)

roles

(optional) A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_SUMMARY_T Type

The key store secrets.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_summary_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'JAVA_KEY_STORE', 'JAVA_TRUST_STORE', 'PKCS12', 'SSO'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_SUMMARY_T Type

DatabaseToolsConnectionSummary of an Oracle Database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_summary_t (
  related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_summary_tbl,
  private_endpoint_id varchar2(32767),
  proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_summary_tbl,
    private_endpoint_id varchar2,
    proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_summary_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_summary_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connect descriptor or Easy Connect Naming method used to connect to the database.

user_name

(optional) The database user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `oracle.net.ssl_server_dn_match`).

key_stores

(optional) Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.

private_endpoint_id

(optional) The OCID of the `DatabaseToolsPrivateEndpoint` used to access the database in the customer VCN.

proxy_client

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_RELATED_RESOURCE_POSTGRESQL_T Type

A related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource entity type.

Allowed values are: 'POSTGRESQLDBSYSTEM'

identifier

(required) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_POSTGRESQL_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_POSTGRESQL_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_POSTGRESQL_T Type

The details of the key store.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_POSTGRESQL_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_POSTGRESQL_T Type

Database Tools connection of a PostgreSQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_postgresql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_t (
  related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_postgresql_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_postgresql_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connection string used to connect to the PostgreSQL Server.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (for example, `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the Database Tools private endpoint used to access the database in the customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_POSTGRESQL_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store content.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_POSTGRESQL_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t (
    value_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

value_type

(required) The value type of the key store password.

Allowed values are: 'SECRETID'

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_POSTGRESQL_SUMMARY_T Type

The key store secrets.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key_store_type varchar2(32767),
  key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t,
  key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_t (
    key_store_type varchar2,
    key_store_content dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t,
    key_store_password dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key_store_type

(optional) The key store type.

Allowed values are: 'CLIENT_CERTIFICATE_PEM', 'CLIENT_PRIVATE_KEY_PEM', 'CA_CERTIFICATE_PEM'

key_store_content

(optional)

key_store_password

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_POSTGRESQL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_CONNECTION_POSTGRESQL_SUMMARY_T Type

DatabaseToolsConnectionSummary of a PostgreSQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_connection_postgresql_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_connection_summary_t (
  related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_postgresql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_connection_postgresql_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    l_type varchar2,
    runtime_support varchar2,
    related_resource dbms_cloud_oci_database_tools_database_tools_related_resource_postgresql_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_summary_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_summary_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_connection_postgresql_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_connection_summary_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(required) The connection string used to connect to the PostgreSQL Server.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the `DatabaseToolsPrivateEndpoint` used to access the database in the customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_ENDPOINT_SERVICE_T Type

Description of Database Tools Endpoint Service.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_endpoint_service_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  name varchar2(32767),
  compartment_id varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_endpoint_service_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_endpoint_service_t (
    id varchar2,
    display_name varchar2,
    name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the Database Tools Endpoint Service.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

name

(optional) A unique, non-changeable resource name.

compartment_id

(optional) The OCID of the compartment containing the Database Tools Endpoint Service.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

time_created

(required) The time the Database Tools Endpoint Service was created. An RFC3339 formatted datetime string

time_updated

(optional) The time the Database Tools Endpoint Service was updated. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the Database Tools Endpoint Service.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED', 'INACTIVE'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

description

(optional) A description of the Database Tools Endpoint Service.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_ENDPOINT_SERVICE_SUMMARY_T Type

Summary of the Database Tools Endpoint Service.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  name varchar2(32767),
  compartment_id varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_t (
    id varchar2,
    display_name varchar2,
    name varchar2,
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the Database Tools Endpoint Service.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

name

(optional) A unique, non-changeable resource name.

compartment_id

(optional) The OCID of the compartment containing the Database Tools Endpoint Service.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

time_created

(optional) The time the Database Tools Endpoint Service was created. An RFC3339 formatted datetime string

time_updated

(optional) The time the Database Tools Endpoint Service was updated. An RFC3339 formatted datetime string

lifecycle_state

(optional) The current state of the Database Tools Endpoint Service.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED', 'INACTIVE'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

description

(optional) A description of the Database Tools Endpoint Service.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_ENDPOINT_SERVICE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_ENDPOINT_SERVICE_COLLECTION_T Type

List of `DatabaseToolsEndpointServiceSummary` items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_endpoint_service_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_endpoint_service_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_endpoint_service_collection_t (
    items dbms_cloud_oci_database_tools_database_tools_endpoint_service_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of `DatabaseToolsEndpointServiceSummary` items.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_GENERIC_JDBC_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_GENERIC_JDBC_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_GENERIC_JDBC_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_generic_jdbc_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_generic_jdbc_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_MY_SQL_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_MY_SQL_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_MY_SQL_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_my_sql_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_my_sql_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_POSTGRESQL_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_POSTGRESQL_DETAILS_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_POSTGRESQL_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_postgresql_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_postgresql_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_CONTENT_SECRET_ID_SUMMARY_T Type

The key store content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_content_secret_id_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_content_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_GENERIC_JDBC_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_GENERIC_JDBC_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_GENERIC_JDBC_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_generic_jdbc_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_generic_jdbc_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_MY_SQL_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_MY_SQL_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_MY_SQL_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_my_sql_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_my_sql_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_POSTGRESQL_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_POSTGRESQL_DETAILS_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_details_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_POSTGRESQL_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_postgresql_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_postgresql_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_KEY_STORE_PASSWORD_SECRET_ID_SUMMARY_T Type

The key store password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_key_store_password_secret_id_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_key_store_password_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the key store password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_REVERSE_CONNECTIONS_SOURCE_IP_T Type

Source IP information for reverse connection configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_t (
    source_ip varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_ip

(optional) The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_REVERSE_CONNECTIONS_SOURCE_IP_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_REVERSE_CONNECTION_CONFIGURATION_T Type

Reverse connection configuration details of the private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  reverse_connections_source_ips dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t (
    reverse_connections_source_ips dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connections_source_ip_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

reverse_connections_source_ips

(optional) A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_T Type

Description of Database Tools private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  locks dbms_cloud_oci_database_tools_resource_lock_tbl,
  display_name varchar2(32767),
  description varchar2(32767),
  id varchar2(32767),
  endpoint_service_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  private_endpoint_vnic_id varchar2(32767),
  private_endpoint_ip varchar2(32767),
  endpoint_fqdn varchar2(32767),
  additional_fqdns dbms_cloud_oci_database_tools_varchar2_tbl,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl,
  reverse_connection_configuration dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_t (
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    display_name varchar2,
    description varchar2,
    id varchar2,
    endpoint_service_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vcn_id varchar2,
    subnet_id varchar2,
    private_endpoint_vnic_id varchar2,
    private_endpoint_ip varchar2,
    endpoint_fqdn varchar2,
    additional_fqdns dbms_cloud_oci_database_tools_varchar2_tbl,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl,
    reverse_connection_configuration dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing the Database Tools private endpoint.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

locks

(optional) Locks associated with this resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

description

(optional) A description of the Database Tools private endpoint.

id

(required) The OCID of the Database Tools private endpoint.

endpoint_service_id

(required) The OCID of the Database Tools Endpoint Service.

time_created

(required) The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

time_updated

(required) The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

vcn_id

(optional) The OCID of the VCN that the private endpoint belongs to.

subnet_id

(required) The OCID of the subnet that the private endpoint belongs to.

private_endpoint_vnic_id

(optional) The OCID of the private endpoint's VNIC.

private_endpoint_ip

(optional) The private IP address that represents the access point for the associated endpoint service.

endpoint_fqdn

(optional) Then FQDN to use for the private endpoint.

additional_fqdns

(optional) A list of additional FQDNs that can be also be used for the private endpoint.

lifecycle_state

(required) The current state of the Database Tools private endpoint.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED', 'INACTIVE'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

nsg_ids

(optional) The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.

reverse_connection_configuration

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_SUMMARY_T Type

Summary of the Database Tools private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  locks dbms_cloud_oci_database_tools_resource_lock_tbl,
  display_name varchar2(32767),
  description varchar2(32767),
  id varchar2(32767),
  endpoint_service_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  private_endpoint_vnic_id varchar2(32767),
  private_endpoint_ip varchar2(32767),
  endpoint_fqdn varchar2(32767),
  additional_fqdns dbms_cloud_oci_database_tools_varchar2_tbl,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl,
  reverse_connection_configuration dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_t (
    compartment_id varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t,
    locks dbms_cloud_oci_database_tools_resource_lock_tbl,
    display_name varchar2,
    description varchar2,
    id varchar2,
    endpoint_service_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vcn_id varchar2,
    subnet_id varchar2,
    private_endpoint_vnic_id varchar2,
    private_endpoint_ip varchar2,
    endpoint_fqdn varchar2,
    additional_fqdns dbms_cloud_oci_database_tools_varchar2_tbl,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl,
    reverse_connection_configuration dbms_cloud_oci_database_tools_database_tools_private_endpoint_reverse_connection_configuration_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing the private endpoint.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

locks

(optional) Locks associated with this resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

description

(optional) A description of the Database Tools private endpoint.

id

(required) The OCID of the Database Tools private endpoint.

endpoint_service_id

(required) The OCID of the Database Tools Endpoint Service.

time_created

(required) The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string.

vcn_id

(optional) The OCID of the VCN that the private endpoint belongs to.

subnet_id

(required) The OCID of the subnet that the private endpoint belongs to.

private_endpoint_vnic_id

(optional) The OCID of the private endpoint's VNIC.

private_endpoint_ip

(optional) The private IP address that represents the access point for the associated endpoint service.

endpoint_fqdn

(optional) Then FQDN to use for the private endpoint.

additional_fqdns

(optional) A list of additional FQDNs that can be also be used for the private endpoint.

lifecycle_state

(required) The current state of the Database Tools private endpoint.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED', 'INACTIVE'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

nsg_ids

(optional) The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.

reverse_connection_configuration

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_PRIVATE_ENDPOINT_COLLECTION_T Type

List of `DatabaseToolsPrivateEndpointSummary` items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_private_endpoint_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_private_endpoint_collection_t (
    items dbms_cloud_oci_database_tools_database_tools_private_endpoint_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of `DatabaseToolsPrivateEndpointSummary` items.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_USER_PASSWORD_SECRET_ID_T Type

The user password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_user_password_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_user_password_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the user password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_USER_PASSWORD_SECRET_ID_DETAILS_T Type

The user password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_user_password_details_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_details_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_details_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_user_password_details_t type.

Fields

Field Description

secret_id

(required) The OCID of the secret containing the user password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_DATABASE_TOOLS_USER_PASSWORD_SECRET_ID_SUMMARY_T Type

The user password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_database_tools_user_password_summary_t (
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_summary_t (
    value_type varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_database_tools_user_password_secret_id_summary_t is a subtype of the dbms_cloud_oci_database_tools_database_tools_user_password_summary_t type.

Fields

Field Description

secret_id

(optional) The OCID of the secret containing the user password.

DBMS_CLOUD_OCI_DATABASE_TOOLS_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_DATABASE_TOOLS_REMOVE_RESOURCE_LOCK_DETAILS_T Type

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_remove_resource_lock_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  related_resource_id varchar2(32767),
  message varchar2(32767),
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_remove_resource_lock_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_remove_resource_lock_details_t (
    l_type varchar2,
    related_resource_id varchar2,
    message varchar2,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(required) Type of the lock.

Allowed values are: 'FULL', 'DELETE'

related_resource_id

(optional) The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.

message

(optional) A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.

time_created

(optional) When the lock was created.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_CONNECTION_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_details_t (
    display_name varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

l_type

(required) The `DatabaseToolsConnection` type.

Allowed values are: 'ORACLE_DATABASE', 'MYSQL', 'POSTGRESQL', 'GENERIC_JDBC'

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_CONNECTION_GENERIC_JDBC_DETAILS_T Type

The update details for a Database Tools Generic JDBC database system connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_connection_generic_jdbc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_update_database_tools_connection_details_t (
  url varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_generic_jdbc_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_generic_jdbc_details_t (
    display_name varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    l_type varchar2,
    url varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_generic_jdbc_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_update_database_tools_connection_generic_jdbc_details_t is a subtype of the dbms_cloud_oci_database_tools_update_database_tools_connection_details_t type.

Fields

Field Description

url

(optional) The JDBC URL used to connect to the Generic JDBC database system.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair.

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_RELATED_RESOURCE_MY_SQL_DETAILS_T Type

The related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_related_resource_my_sql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_related_resource_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_related_resource_my_sql_details_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(optional) The resource entity type.

Allowed values are: 'MYSQLDBSYSTEM'

identifier

(optional) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_CONNECTION_MY_SQL_DETAILS_T Type

The update details for a Database Tools MySQL Server connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_connection_my_sql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_update_database_tools_connection_details_t (
  related_resource dbms_cloud_oci_database_tools_update_database_tools_related_resource_my_sql_details_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_my_sql_details_t (
    display_name varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    l_type varchar2,
    related_resource dbms_cloud_oci_database_tools_update_database_tools_related_resource_my_sql_details_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_my_sql_details_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_update_database_tools_connection_my_sql_details_t is a subtype of the dbms_cloud_oci_database_tools_update_database_tools_connection_details_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(optional) The connection string used to connect to the MySQL Server.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the DatabaseToolsPrivateEndpoint used to access the database in the Customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_RELATED_RESOURCE_DETAILS_T Type

The related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_related_resource_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_related_resource_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_related_resource_details_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(optional) The resource entity type.

Allowed values are: 'AUTONOMOUSDATABASE', 'DATABASE', 'PLUGGABLEDATABASE'

identifier

(optional) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_DETAILS_T Type

The update details for a Database Tools Oracle Database connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_connection_oracle_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_update_database_tools_connection_details_t (
  related_resource dbms_cloud_oci_database_tools_update_database_tools_related_resource_details_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_details_tbl,
  private_endpoint_id varchar2(32767),
  proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_oracle_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_oracle_database_details_t (
    display_name varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    l_type varchar2,
    related_resource dbms_cloud_oci_database_tools_update_database_tools_related_resource_details_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_details_tbl,
    private_endpoint_id varchar2,
    proxy_client dbms_cloud_oci_database_tools_database_tools_connection_oracle_database_proxy_client_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_update_database_tools_connection_oracle_database_details_t is a subtype of the dbms_cloud_oci_database_tools_update_database_tools_connection_details_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(optional) The connect descriptor or Easy Connect Naming method used to connect to the database.

user_name

(optional) The database user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `oracle.net.ssl_server_dn_match`).

key_stores

(optional) Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.

private_endpoint_id

(optional) The OCID of the DatabaseToolsPrivateEndpoint used to access the database in the Customer VCN.

proxy_client

(optional)

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_RELATED_RESOURCE_POSTGRESQL_DETAILS_T Type

The related resource

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_related_resource_postgresql_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  identifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_related_resource_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_related_resource_postgresql_details_t (
    entity_type varchar2,
    identifier varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(optional) The resource entity type.

Allowed values are: 'POSTGRESQLDBSYSTEM'

identifier

(optional) The OCID of the related resource.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_CONNECTION_POSTGRESQL_DETAILS_T Type

The update details for a Database Tools PostgreSQL Server connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_connection_postgresql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_update_database_tools_connection_details_t (
  related_resource dbms_cloud_oci_database_tools_update_database_tools_related_resource_postgresql_details_t,
  connection_string varchar2(32767),
  user_name varchar2(32767),
  user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
  advanced_properties json_element_t,
  key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_tbl,
  private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_connection_postgresql_details_t (
    display_name varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    l_type varchar2,
    related_resource dbms_cloud_oci_database_tools_update_database_tools_related_resource_postgresql_details_t,
    connection_string varchar2,
    user_name varchar2,
    user_password dbms_cloud_oci_database_tools_database_tools_user_password_details_t,
    advanced_properties json_element_t,
    key_stores dbms_cloud_oci_database_tools_database_tools_key_store_postgresql_details_tbl,
    private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_update_database_tools_connection_postgresql_details_t is a subtype of the dbms_cloud_oci_database_tools_update_database_tools_connection_details_t type.

Fields

Field Description

related_resource

(optional)

connection_string

(optional) The connection string used to connect to the PostgreSQL Server.

user_name

(optional) The user name.

user_password

(optional)

advanced_properties

(optional) The advanced connection properties key-value pair (e.g., `sslMode`).

key_stores

(optional) The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

private_endpoint_id

(optional) The OCID of the DatabaseToolsPrivateEndpoint used to access the database in the Customer VCN.

DBMS_CLOUD_OCI_DATABASE_TOOLS_UPDATE_DATABASE_TOOLS_PRIVATE_ENDPOINT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_update_database_tools_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  defined_tags json_element_t,
  freeform_tags json_element_t,
  display_name varchar2(32767),
  description varchar2(32767),
  nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_private_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_update_database_tools_private_endpoint_details_t (
    defined_tags json_element_t,
    freeform_tags json_element_t,
    display_name varchar2,
    description varchar2,
    nsg_ids dbms_cloud_oci_database_tools_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

description

(optional) A description of the Database Tools private endpoint.

nsg_ids

(optional) The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_DETAILS_T Type

Connection validation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) The `DatabaseToolsConnection` type.

Allowed values are: 'ORACLE_DATABASE', 'MYSQL', 'POSTGRESQL', 'GENERIC_JDBC'

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_MY_SQL_DETAILS_T Type

Connection validation details for the MySQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_details_t is a subtype of the dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_RESULT_T Type

Connection validation result.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  code varchar2(32767),
  message varchar2(32767),
  cause varchar2(32767),
  action varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t (
    l_type varchar2,
    code varchar2,
    message varchar2,
    cause varchar2,
    action varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) The Database Tools connection type.

Allowed values are: 'ORACLE_DATABASE', 'MYSQL', 'POSTGRESQL', 'GENERIC_JDBC'

code

(required) A short code that defines the result of the validation, meant for programmatic parsing. The value OK indicates that the validation was successful.

message

(required) A human-readable message that describes the result of the validation.

cause

(optional) A human-readable message that describes possible causes for the validation error.

action

(optional) A human-readable message that suggests a remedial action to resolve the validation error.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_MY_SQL_RESULT_T Type

Connection validaton result for the MySQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_result_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t (
  database_name varchar2(32767),
  database_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_result_t (
    l_type varchar2,
    code varchar2,
    message varchar2,
    cause varchar2,
    action varchar2,
    database_name varchar2,
    database_version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_validate_database_tools_connection_my_sql_result_t is a subtype of the dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t type.

Fields

Field Description

database_name

(optional) The database name.

database_version

(required) The database version.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_DETAILS_T Type

Connection validation details for the Oracle Database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_details_t is a subtype of the dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_ORACLE_DATABASE_RESULT_T Type

Connection validaton result for the Oracle Database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_result_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t (
  database_name varchar2(32767),
  database_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_result_t (
    l_type varchar2,
    code varchar2,
    message varchar2,
    cause varchar2,
    action varchar2,
    database_name varchar2,
    database_version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_validate_database_tools_connection_oracle_database_result_t is a subtype of the dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t type.

Fields

Field Description

database_name

(optional) The database name.

database_version

(required) The database version.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_POSTGRESQL_DETAILS_T Type

Connection validation details for the PostgreSQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_details_t is a subtype of the dbms_cloud_oci_database_tools_validate_database_tools_connection_details_t type.

DBMS_CLOUD_OCI_DATABASE_TOOLS_VALIDATE_DATABASE_TOOLS_CONNECTION_POSTGRESQL_RESULT_T Type

Connection validaton result for the PostgreSQL Server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_result_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t (
  database_name varchar2(32767),
  database_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_result_t (
    l_type varchar2,
    code varchar2,
    message varchar2,
    cause varchar2,
    action varchar2,
    database_name varchar2,
    database_version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_database_tools_validate_database_tools_connection_postgresql_result_t is a subtype of the dbms_cloud_oci_database_tools_validate_database_tools_connection_result_t type.

Fields

Field Description

database_name

(optional) The database name.

database_version

(required) The database version.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  action_type varchar2(32767),
  identifier varchar2(32767),
  entity_uri varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type the work request affects.

action_type

(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED'

identifier

(required) The identifier of the resource the work request affects.

entity_uri

(optional) The URI path that the user can use for a GET operation to access the resource metadata.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_database_tools_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_T Type

An asynchronous work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_database_tools_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_database_tools_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

Allowed values are: 'CREATE_DATABASE_TOOLS_CONNECTION', 'UPDATE_DATABASE_TOOLS_CONNECTION', 'DELETE_DATABASE_TOOLS_CONNECTION', 'CREATE_DATABASE_TOOLS_SERVICE_INSTANCE', 'UPDATE_DATABASE_TOOLS_SERVICE_INSTANCE', 'DELETE_DATABASE_TOOLS_SERVICE_INSTANCE', 'CREATE_DATABASE_TOOLS_PRIVATE_ENDPOINT', 'UPDATE_DATABASE_TOOLS_PRIVATE_ENDPOINT', 'DELETE_DATABASE_TOOLS_PRIVATE_ENDPOINT'

status

(required) The status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED', 'WAITING'

id

(required) The OCID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request.

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the work request was created, in the format defined by RFC3339.

time_started

(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the format defined by RFC3339.

time_finished

(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`. Format is defined by RFC3339.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_database_tools_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_database_tools_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

Allowed values are: 'CREATE_DATABASE_TOOLS_CONNECTION', 'UPDATE_DATABASE_TOOLS_CONNECTION', 'DELETE_DATABASE_TOOLS_CONNECTION', 'CREATE_DATABASE_TOOLS_SERVICE_INSTANCE', 'UPDATE_DATABASE_TOOLS_SERVICE_INSTANCE', 'DELETE_DATABASE_TOOLS_SERVICE_INSTANCE', 'CREATE_DATABASE_TOOLS_PRIVATE_ENDPOINT', 'UPDATE_DATABASE_TOOLS_PRIVATE_ENDPOINT', 'DELETE_DATABASE_TOOLS_PRIVATE_ENDPOINT'

status

(required) The status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED', 'WAITING'

id

(required) The OCID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request.

resources

(optional) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the work request was created, in the format defined by RFC3339.

time_started

(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the format defined by RFC3339.

time_finished

(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`. Format is defined by RFC3339.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_COLLECTION_T Type

List of `WorkRequestSummary` items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_database_tools_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_collection_t (
    items dbms_cloud_oci_database_tools_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of `WorkRequestSummary` items.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_error_t (
    code varchar2,
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A machine-usable code for the error that occured. Error codes are listed on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)

message

(required) A human readable description of the issue encountered.

l_timestamp

(required) The time the error occured. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_database_tools_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_ERROR_COLLECTION_T Type

List of WorkRequestError items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_database_tools_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_error_collection_t (
    items dbms_cloud_oci_database_tools_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of Work Request Error items.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the execution of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

(required) The time the log message was written. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_database_tools_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_tools_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATABASE_TOOLS_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

List of work request log items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_tools_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_database_tools_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_database_tools_work_request_log_entry_collection_t (
    items dbms_cloud_oci_database_tools_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of work request log items.

Was this article helpful?