Golden Gate Common Types

DBMS_CLOUD_OCI_GOLDEN_GATE_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_GOLDEN_GATE_INGRESS_IP_DETAILS_T Type

Private Endpoint IP Addresses created in the customer's subnet. GoldenGate service will use these ingress IP addresses to send all specific requests initiated from the service. These are typically used for accessing customer resources.

Syntax

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

Fields

Field Description

ingress_ip

(required) A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.

DBMS_CLOUD_OCI_GOLDEN_GATE_INGRESS_IP_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_ingress_ip_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_ingress_ip_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_ingress_ip_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_T Type

Represents the metadata description of a connection used by deployments in the same compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  connection_type varchar2(32767),
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  vault_id varchar2(32767),
  key_id varchar2(32767),
  ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  subnet_id varchar2(32767),
  routing_method varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

connection_type

(required) The connection type.

Allowed values are: 'GOLDENGATE', 'KAFKA', 'KAFKA_SCHEMA_REGISTRY', 'MYSQL', 'JAVA_MESSAGE_SERVICE', 'MICROSOFT_SQLSERVER', 'OCI_OBJECT_STORAGE', 'ORACLE', 'AZURE_DATA_LAKE_STORAGE', 'POSTGRESQL', 'AZURE_SYNAPSE_ANALYTICS', 'SNOWFLAKE', 'AMAZON_S3', 'HDFS', 'ORACLE_NOSQL', 'MONGODB', 'AMAZON_KINESIS', 'AMAZON_REDSHIFT', 'REDIS', 'ELASTICSEARCH', 'GENERIC', 'GOOGLE_CLOUD_STORAGE', 'GOOGLE_BIGQUERY'

id

(required) The OCID of the connection being referenced.

display_name

(required) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

freeform_tags

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

defined_tags

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

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

lifecycle_state

(required) Possible lifecycle states for connection.

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

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

time_created

(required) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(required) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

vault_id

(optional) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

ingress_ips

(optional) List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

routing_method

(optional) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.

Allowed values are: 'SHARED_SERVICE_ENDPOINT', 'SHARED_DEPLOYMENT_ENDPOINT', 'DEDICATED_ENDPOINT'

DBMS_CLOUD_OCI_GOLDEN_GATE_AMAZON_KINESIS_CONNECTION_T Type

Represents the metadata of a Amazon Kinesis Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_amazon_kinesis_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  access_key_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_kinesis_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_kinesis_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    access_key_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_amazon_kinesis_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Amazon Kinesis technology type.

Allowed values are: 'AMAZON_KINESIS'

access_key_id

(required) Access key ID to access the Amazon Kinesis.

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_SUMMARY_T Type

Summary of the Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_connection_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  connection_type varchar2(32767),
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  vault_id varchar2(32767),
  key_id varchar2(32767),
  ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  subnet_id varchar2(32767),
  routing_method varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

connection_type

(required) The connection type.

Allowed values are: 'GOLDENGATE', 'KAFKA', 'KAFKA_SCHEMA_REGISTRY', 'MYSQL', 'JAVA_MESSAGE_SERVICE', 'MICROSOFT_SQLSERVER', 'OCI_OBJECT_STORAGE', 'ORACLE', 'AZURE_DATA_LAKE_STORAGE', 'POSTGRESQL', 'AZURE_SYNAPSE_ANALYTICS', 'SNOWFLAKE', 'AMAZON_S3', 'HDFS', 'ORACLE_NOSQL', 'MONGODB', 'AMAZON_KINESIS', 'AMAZON_REDSHIFT', 'REDIS', 'ELASTICSEARCH', 'GENERIC', 'GOOGLE_CLOUD_STORAGE', 'GOOGLE_BIGQUERY'

id

(required) The OCID of the connection being referenced.

display_name

(required) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

freeform_tags

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

defined_tags

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

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

lifecycle_state

(required) Possible lifecycle states for connection.

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

time_created

(required) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(required) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

vault_id

(optional) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

ingress_ips

(optional) List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

routing_method

(optional) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.

Allowed values are: 'SHARED_SERVICE_ENDPOINT', 'SHARED_DEPLOYMENT_ENDPOINT', 'DEDICATED_ENDPOINT'

DBMS_CLOUD_OCI_GOLDEN_GATE_AMAZON_KINESIS_CONNECTION_SUMMARY_T Type

Summary of the Amazon Kinesis Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_amazon_kinesis_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  access_key_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_kinesis_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_kinesis_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    access_key_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_amazon_kinesis_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Amazon Kinesis technology type.

access_key_id

(required) Access key ID to access the Amazon Kinesis.

DBMS_CLOUD_OCI_GOLDEN_GATE_AMAZON_REDSHIFT_CONNECTION_T Type

Represents the metadata of a Amazon Redshift Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_amazon_redshift_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  connection_url varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_redshift_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_redshift_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_url varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_amazon_redshift_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Amazon Redshift technology type.

Allowed values are: 'AMAZON_REDSHIFT'

connection_url

(required) Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_AMAZON_REDSHIFT_CONNECTION_SUMMARY_T Type

Summary of the Amazon Redshift Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_amazon_redshift_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  connection_url varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_redshift_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_redshift_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_url varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_amazon_redshift_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Amazon Redshift technology type.

connection_url

(required) Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_AMAZON_S3_CONNECTION_T Type

Represents the metadata of a Amazon S3 Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_amazon_s3_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  access_key_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_s3_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_s3_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    access_key_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_amazon_s3_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Amazon S3 technology type.

Allowed values are: 'AMAZON_S3'

access_key_id

(required) Access key ID to access the Amazon S3 bucket. e.g.: \"this-is-not-the-secret\"

DBMS_CLOUD_OCI_GOLDEN_GATE_AMAZON_S3_CONNECTION_SUMMARY_T Type

Summary of the Amazon S3 Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_amazon_s3_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  access_key_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_s3_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_amazon_s3_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    access_key_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_amazon_s3_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Amazon S3 technology type.

access_key_id

(required) Access key ID to access the Amazon S3 bucket. e.g.: \"this-is-not-the-secret\"

DBMS_CLOUD_OCI_GOLDEN_GATE_AZURE_DATA_LAKE_STORAGE_CONNECTION_T Type

Represents the metadata of a Azure Data Lake Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  authentication_type varchar2(32767),
  account_name varchar2(32767),
  azure_tenant_id varchar2(32767),
  client_id varchar2(32767),
  endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    authentication_type varchar2,
    account_name varchar2,
    azure_tenant_id varchar2,
    client_id varchar2,
    endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Azure Data Lake Storage technology type.

Allowed values are: 'AZURE_DATA_LAKE_STORAGE'

authentication_type

(required) Used authentication mechanism to access Azure Data Lake Storage.

Allowed values are: 'SHARED_KEY', 'SHARED_ACCESS_SIGNATURE', 'AZURE_ACTIVE_DIRECTORY'

account_name

(required) Sets the Azure storage account name.

azure_tenant_id

(optional) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f

client_id

(optional) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d

endpoint

(optional) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net

DBMS_CLOUD_OCI_GOLDEN_GATE_AZURE_DATA_LAKE_STORAGE_CONNECTION_SUMMARY_T Type

Summary of the Azure Data Lake Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  authentication_type varchar2(32767),
  account_name varchar2(32767),
  azure_tenant_id varchar2(32767),
  client_id varchar2(32767),
  endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    authentication_type varchar2,
    account_name varchar2,
    azure_tenant_id varchar2,
    client_id varchar2,
    endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_azure_data_lake_storage_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Azure Data Lake Storage technology type.

authentication_type

(required) Used authentication mechanism to access Azure Data Lake Storage.

account_name

(required) Sets the Azure storage account name.

azure_tenant_id

(optional) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f

client_id

(optional) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d

endpoint

(optional) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net

DBMS_CLOUD_OCI_GOLDEN_GATE_AZURE_SYNAPSE_CONNECTION_T Type

Represents the metadata of a Azure Synapse Analytics Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_azure_synapse_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  connection_string varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_synapse_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_synapse_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_string varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_azure_synapse_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Azure Synapse Analytics technology type.

Allowed values are: 'AZURE_SYNAPSE_ANALYTICS'

connection_string

(required) JDBC connection string. e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_AZURE_SYNAPSE_CONNECTION_SUMMARY_T Type

Summary of the Azure Synapse Analytics Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_azure_synapse_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  connection_string varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_synapse_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_azure_synapse_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_string varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_azure_synapse_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Azure Synapse Analytics technology type.

connection_string

(required) JDBC connection string. e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_CANCEL_DEPLOYMENT_BACKUP_DETAILS_T Type

The information about the Cancel for a DeploymentBackup.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment backup cancel

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_CANCEL_DEPLOYMENT_UPGRADE_DETAILS_T Type

The information about canceling.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deploymentUpgrade cancel.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_CANCEL_SNOOZE_DEPLOYMENT_UPGRADE_DETAILS_T Type

The information about snooze canceling.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deploymentUpgrade cancel snooze.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_CERTIFICATE_T Type

Certificate data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_certificate_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  deployment_id varchar2(32767),
  certificate_content varchar2(32767),
  issuer varchar2(32767),
  is_self_signed number,
  md5_hash varchar2(32767),
  public_key varchar2(32767),
  public_key_algorithm varchar2(32767),
  public_key_size number,
  serial varchar2(32767),
  subject varchar2(32767),
  time_valid_from timestamp with time zone,
  time_valid_to timestamp with time zone,
  version varchar2(32767),
  sha1_hash varchar2(32767),
  authority_key_id varchar2(32767),
  is_ca number,
  subject_key_id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_certificate_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_certificate_t (
    key varchar2,
    deployment_id varchar2,
    certificate_content varchar2,
    issuer varchar2,
    is_self_signed number,
    md5_hash varchar2,
    public_key varchar2,
    public_key_algorithm varchar2,
    public_key_size number,
    serial varchar2,
    subject varchar2,
    time_valid_from timestamp with time zone,
    time_valid_to timestamp with time zone,
    version varchar2,
    sha1_hash varchar2,
    authority_key_id varchar2,
    is_ca number,
    subject_key_id varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

deployment_id

(required) The OCID of the deployment being referenced.

certificate_content

(required) A PEM-encoded SSL certificate.

issuer

(required) The Certificate issuer.

is_self_signed

(required) Indicates if the certificate is self signed.

md5_hash

(required) The Certificate md5Hash.

public_key

(required) The Certificate public key.

public_key_algorithm

(required) The Certificate public key algorithm.

public_key_size

(required) The Certificate public key size.

serial

(required) The Certificate serial.

subject

(required) The Certificate subject.

time_valid_from

(required) The time the certificate is valid from. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_valid_to

(required) The time the certificate is valid to. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

version

(required) The Certificate version.

sha1_hash

(required) The Certificate sha1 hash.

authority_key_id

(required) The Certificate authority key id.

is_ca

(required) Indicates if the certificate is ca.

subject_key_id

(required) The Certificate subject key id.

lifecycle_state

(required) Possible certificate lifecycle states.

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

time_created

(required) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_CERTIFICATE_SUMMARY_T Type

Summary of the Certificates.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_certificate_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  lifecycle_state varchar2(32767),
  subject varchar2(32767),
  is_self_signed number,
  time_valid_to timestamp with time zone,
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_certificate_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_certificate_summary_t (
    key varchar2,
    lifecycle_state varchar2,
    subject varchar2,
    is_self_signed number,
    time_valid_to timestamp with time zone,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

lifecycle_state

(required) Possible certificate lifecycle states.

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

subject

(required) The Certificate subject.

is_self_signed

(required) Indicates if the certificate is self signed.

time_valid_to

(required) The time the certificate is valid to. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_created

(required) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_CERTIFICATE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_certificate_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_certificate_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_certificate_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_CERTIFICATE_COLLECTION_T Type

A list of Certificates.

Syntax

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

Fields

Field Description

items

(required) An array of Certificates.

DBMS_CLOUD_OCI_GOLDEN_GATE_CHANGE_CONNECTION_COMPARTMENT_DETAILS_T Type

The new compartment for a Connection.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_CHANGE_DATABASE_REGISTRATION_COMPARTMENT_DETAILS_T Type

The new compartment for a DatabaseRegistration.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_CHANGE_DEPLOYMENT_BACKUP_COMPARTMENT_DETAILS_T Type

The new compartment for a DeploymentBackup.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_CHANGE_DEPLOYMENT_COMPARTMENT_DETAILS_T Type

The new compartment for a Deployment.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_COLLECT_DEPLOYMENT_DIAGNOSTIC_DETAILS_T Type

Details for collecting deployment diagnostic

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_collect_deployment_diagnostic_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  diagnostic_name_prefix varchar2(32767),
  time_diagnostic_start timestamp with time zone,
  time_diagnostic_end timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_collect_deployment_diagnostic_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_collect_deployment_diagnostic_details_t (
    namespace_name varchar2,
    bucket_name varchar2,
    diagnostic_name_prefix varchar2,
    time_diagnostic_start timestamp with time zone,
    time_diagnostic_end timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

namespace_name

(required) Name of namespace that serves as a container for all of your buckets

bucket_name

(required) Name of the bucket where the object is to be uploaded in the object storage

diagnostic_name_prefix

(required) Prefix of the diagnostic collected and uploaded to object storage

time_diagnostic_start

(optional) The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_diagnostic_end

(optional) The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_ASSIGNMENT_T Type

Represents the metadata description of a connection assignment. Before you can use a connection as a GoldenGate source or target, you must assign it to a deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_connection_assignment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  connection_id varchar2(32767),
  deployment_id varchar2(32767),
  alias_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_assignment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_assignment_t (
    id varchar2,
    connection_id varchar2,
    deployment_id varchar2,
    alias_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the connection assignment being referenced.

connection_id

(required) The OCID of the connection being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

alias_name

(optional) Credential store alias.

compartment_id

(required) The OCID of the compartment being referenced.

lifecycle_state

(required) Possible lifecycle states for connection assignments.

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

time_created

(required) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(required) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_ASSIGNMENT_SUMMARY_T Type

Summary of the Connection Assignment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_connection_assignment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  connection_id varchar2(32767),
  deployment_id varchar2(32767),
  alias_name varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_assignment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_connection_assignment_summary_t (
    id varchar2,
    compartment_id varchar2,
    connection_id varchar2,
    deployment_id varchar2,
    alias_name varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the connection assignment being referenced.

compartment_id

(required) The OCID of the compartment being referenced.

connection_id

(required) The OCID of the connection being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

alias_name

(required) Credential store alias.

lifecycle_state

(required) Possible lifecycle states for connection assignments.

time_created

(required) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(required) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_ASSIGNMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_connection_assignment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_connection_assignment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_connection_assignment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_ASSIGNMENT_COLLECTION_T Type

List of connection summary objects.

Syntax

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

Fields

Field Description

items

(required) An array of Connection Assignment summaries.

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_connection_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_connection_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_connection_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_CONNECTION_COLLECTION_T Type

List of connection summary objects.

Syntax

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

Fields

Field Description

items

(required) An array of Connection summaries.

DBMS_CLOUD_OCI_GOLDEN_GATE_COPY_DEPLOYMENT_BACKUP_DETAILS_T Type

The information about the copy for a Deployment Backup.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_copy_deployment_backup_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_copy_deployment_backup_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_copy_deployment_backup_details_t (
    namespace_name varchar2,
    bucket_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

namespace_name

(required) Name of namespace that serves as a container for all of your buckets

bucket_name

(required) Name of the bucket where the object is to be uploaded in the object storage

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_CONNECTION_DETAILS_T Type

The information about a new Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  connection_type varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  vault_id varchar2(32767),
  key_id varchar2(32767),
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  subnet_id varchar2(32767),
  routing_method varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

connection_type

(required) The connection type.

Allowed values are: 'GOLDENGATE', 'KAFKA', 'KAFKA_SCHEMA_REGISTRY', 'MYSQL', 'JAVA_MESSAGE_SERVICE', 'MICROSOFT_SQLSERVER', 'OCI_OBJECT_STORAGE', 'ORACLE', 'AZURE_DATA_LAKE_STORAGE', 'POSTGRESQL', 'AZURE_SYNAPSE_ANALYTICS', 'SNOWFLAKE', 'AMAZON_S3', 'HDFS', 'ORACLE_NOSQL', 'MONGODB', 'AMAZON_KINESIS', 'AMAZON_REDSHIFT', 'REDIS', 'ELASTICSEARCH', 'GENERIC', 'GOOGLE_CLOUD_STORAGE', 'GOOGLE_BIGQUERY'

display_name

(required) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

freeform_tags

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

defined_tags

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

vault_id

(optional) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

routing_method

(optional) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.

Allowed values are: 'SHARED_SERVICE_ENDPOINT', 'SHARED_DEPLOYMENT_ENDPOINT', 'DEDICATED_ENDPOINT'

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_AMAZON_KINESIS_CONNECTION_DETAILS_T Type

The information about a new Amazon Kinesis Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_amazon_kinesis_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  access_key_id varchar2(32767),
  secret_access_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_amazon_kinesis_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_amazon_kinesis_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    access_key_id varchar2,
    secret_access_key varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_amazon_kinesis_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Amazon Kinesis technology type.

access_key_id

(required) Access key ID to access the Amazon Kinesis.

secret_access_key

(required) Secret access key to access the Amazon Kinesis.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_AMAZON_REDSHIFT_CONNECTION_DETAILS_T Type

The information about a new Amazon Redshift Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_amazon_redshift_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  connection_url varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_amazon_redshift_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_amazon_redshift_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_url varchar2,
    username varchar2,
    password varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_amazon_redshift_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Amazon Redshift technology type.

connection_url

(required) Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(required) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_AMAZON_S3_CONNECTION_DETAILS_T Type

The information about a new Amazon S3 Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_amazon_s3_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  access_key_id varchar2(32767),
  secret_access_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_amazon_s3_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_amazon_s3_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    access_key_id varchar2,
    secret_access_key varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_amazon_s3_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Amazon S3 technology type.

access_key_id

(required) Access key ID to access the Amazon S3 bucket. e.g.: \"this-is-not-the-secret\"

secret_access_key

(required) Secret access key to access the Amazon S3 bucket. e.g.: \"this-is-not-the-secret\"

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_AZURE_DATA_LAKE_STORAGE_CONNECTION_DETAILS_T Type

The information about a new Azure Data Lake Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_azure_data_lake_storage_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  authentication_type varchar2(32767),
  account_name varchar2(32767),
  account_key varchar2(32767),
  sas_token varchar2(32767),
  azure_tenant_id varchar2(32767),
  client_id varchar2(32767),
  client_secret varchar2(32767),
  endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_azure_data_lake_storage_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_azure_data_lake_storage_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    authentication_type varchar2,
    account_name varchar2,
    account_key varchar2,
    sas_token varchar2,
    azure_tenant_id varchar2,
    client_id varchar2,
    client_secret varchar2,
    endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_azure_data_lake_storage_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Azure Data Lake Storage technology type.

authentication_type

(required) Used authentication mechanism to access Azure Data Lake Storage.

account_name

(required) Sets the Azure storage account name.

account_key

(optional) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==

sas_token

(optional) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D

azure_tenant_id

(optional) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f

client_id

(optional) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d

client_secret

(optional) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1

endpoint

(optional) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_AZURE_SYNAPSE_CONNECTION_DETAILS_T Type

The information about a new Azure Synapse Analytics Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_azure_synapse_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  connection_string varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_azure_synapse_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_azure_synapse_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_string varchar2,
    username varchar2,
    password varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_azure_synapse_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Azure Synapse Analytics technology type.

connection_string

(required) JDBC connection string. e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(required) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_CERTIFICATE_DETAILS_T Type

The information about a new Certificates.

Syntax

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

Fields

Field Description

key

(required) The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

certificate_content

(required) A PEM-encoded SSL certificate.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_CONNECTION_ASSIGNMENT_DETAILS_T Type

The information about a new Connection Assignment.

Syntax

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

Fields

Field Description

connection_id

(required) The OCID of the connection being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_DATABASE_REGISTRATION_DETAILS_T Type

The information about a new DatabaseRegistration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_database_registration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  fqdn varchar2(32767),
  ip_address varchar2(32767),
  subnet_id varchar2(32767),
  database_id varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  connection_string varchar2(32767),
  session_mode varchar2(32767),
  wallet varchar2(32767),
  alias_name varchar2(32767),
  vault_id varchar2(32767),
  key_id varchar2(32767),
  secret_compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_database_registration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_database_registration_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fqdn varchar2,
    ip_address varchar2,
    subnet_id varchar2,
    database_id varchar2,
    username varchar2,
    password varchar2,
    connection_string varchar2,
    session_mode varchar2,
    wallet varchar2,
    alias_name varchar2,
    vault_id varchar2,
    key_id varchar2,
    secret_compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

freeform_tags

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

defined_tags

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

fqdn

(required) A three-label Fully Qualified Domain Name (FQDN) for a resource.

ip_address

(optional) The private IP address in the customer's VCN of the customer's endpoint, typically a database.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

database_id

(optional) The OCID of the database being referenced.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(required) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

connection_string

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

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

Allowed values are: 'DIRECT', 'REDIRECT'

wallet

(optional) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.

alias_name

(required) Credential store alias.

vault_id

(optional) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

secret_compartment_id

(optional) The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_DEPLOYMENT_BACKUP_DETAILS_T Type

The information about a new DeploymentBackup.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_deployment_backup_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  deployment_id varchar2(32767),
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_deployment_backup_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_deployment_backup_details_t (
    display_name varchar2,
    compartment_id varchar2,
    deployment_id varchar2,
    namespace_name varchar2,
    bucket_name varchar2,
    object_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) An object's Display Name.

compartment_id

(required) The OCID of the compartment being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

namespace_name

(required) Name of namespace that serves as a container for all of your buckets

bucket_name

(required) Name of the bucket where the object is to be uploaded in the object storage

object_name

(required) Name of the object to be uploaded to object storage

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_OGG_DEPLOYMENT_DETAILS_T Type

Deployment Data for creating an OggDeployment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_ogg_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  deployment_name varchar2(32767),
  credential_store varchar2(32767),
  identity_domain_id varchar2(32767),
  password_secret_id varchar2(32767),
  admin_username varchar2(32767),
  admin_password varchar2(32767),
  certificate varchar2(32767),
  key varchar2(32767),
  ogg_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_ogg_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_ogg_deployment_details_t (
    deployment_name varchar2,
    credential_store varchar2,
    identity_domain_id varchar2,
    password_secret_id varchar2,
    admin_username varchar2,
    admin_password varchar2,
    certificate varchar2,
    key varchar2,
    ogg_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

deployment_name

(required) The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

credential_store

(optional) The type of credential store for OGG.

Allowed values are: 'GOLDENGATE', 'IAM'

identity_domain_id

(optional) The OCID of the Identity Domain when IAM credential store is used.

password_secret_id

(optional) The OCID of the Secret where the deployment password is stored.

admin_username

(optional) The GoldenGate deployment console username.

admin_password

(optional) The password associated with the GoldenGate deployment console username. The password must be 8 to 30 characters long and must contain at least 1 uppercase, 1 lowercase, 1 numeric, and 1 special character. Special characters such as '$', '^', or '?' are not allowed. This field will be deprecated and replaced by \"passwordSecretId\".

certificate

(optional) A PEM-encoded SSL certificate.

key

(optional) A PEM-encoded private key.

ogg_version

(optional) Version of OGG

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_MAINTENANCE_WINDOW_DETAILS_T Type

Defines the maintenance window for create operation, when automatic actions can be performed.

Syntax

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

Fields

Field Description

day

(required) Days of the week.

Allowed values are: 'MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY', 'SUNDAY'

start_hour

(required) Start hour for maintenance period. Hour is in UTC.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_MAINTENANCE_CONFIGURATION_DETAILS_T Type

Defines the maintenance configuration for create operation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_maintenance_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_interim_release_auto_upgrade_enabled number,
  interim_release_upgrade_period_in_days number,
  bundle_release_upgrade_period_in_days number,
  major_release_upgrade_period_in_days number,
  security_patch_upgrade_period_in_days number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_maintenance_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_maintenance_configuration_details_t (
    is_interim_release_auto_upgrade_enabled number,
    interim_release_upgrade_period_in_days number,
    bundle_release_upgrade_period_in_days number,
    major_release_upgrade_period_in_days number,
    security_patch_upgrade_period_in_days number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_interim_release_auto_upgrade_enabled

(optional) By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.

interim_release_upgrade_period_in_days

(optional) Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.

bundle_release_upgrade_period_in_days

(optional) Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.

major_release_upgrade_period_in_days

(optional) Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.

security_patch_upgrade_period_in_days

(optional) Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_DEPLOYMENT_DETAILS_T Type

The information about a new Deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  license_model varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  deployment_backup_id varchar2(32767),
  subnet_id varchar2(32767),
  load_balancer_subnet_id varchar2(32767),
  fqdn varchar2(32767),
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  is_public number,
  cpu_core_count number,
  is_auto_scaling_enabled number,
  deployment_type varchar2(32767),
  ogg_data dbms_cloud_oci_golden_gate_create_ogg_deployment_details_t,
  maintenance_window dbms_cloud_oci_golden_gate_create_maintenance_window_details_t,
  maintenance_configuration dbms_cloud_oci_golden_gate_create_maintenance_configuration_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_deployment_details_t (
    display_name varchar2,
    license_model varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    deployment_backup_id varchar2,
    subnet_id varchar2,
    load_balancer_subnet_id varchar2,
    fqdn varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    is_public number,
    cpu_core_count number,
    is_auto_scaling_enabled number,
    deployment_type varchar2,
    ogg_data dbms_cloud_oci_golden_gate_create_ogg_deployment_details_t,
    maintenance_window dbms_cloud_oci_golden_gate_create_maintenance_window_details_t,
    maintenance_configuration dbms_cloud_oci_golden_gate_create_maintenance_configuration_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) An object's Display Name.

license_model

(required) The Oracle license model that applies to a Deployment.

Allowed values are: 'LICENSE_INCLUDED', 'BRING_YOUR_OWN_LICENSE'

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

freeform_tags

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

defined_tags

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

deployment_backup_id

(optional) The OCID of the backup being referenced.

subnet_id

(required) The OCID of the subnet of the deployment's private endpoint.

load_balancer_subnet_id

(optional) The OCID of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.

fqdn

(optional) A three-label Fully Qualified Domain Name (FQDN) for a resource.

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

is_public

(optional) True if this object is publicly available.

cpu_core_count

(required) The Minimum number of OCPUs to be made available for this Deployment.

is_auto_scaling_enabled

(required) Indicates if auto scaling is enabled for the Deployment's CPU core count.

deployment_type

(required) The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.

Allowed values are: 'OGG', 'DATABASE_ORACLE', 'BIGDATA', 'DATABASE_MICROSOFT_SQLSERVER', 'DATABASE_MYSQL', 'DATABASE_POSTGRESQL', 'DATABASE_DB2ZOS', 'GGSA', 'DATA_TRANSFORMS'

ogg_data

(optional)

maintenance_window

(optional)

maintenance_configuration

(optional)

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_ELASTICSEARCH_CONNECTION_DETAILS_T Type

The information about a new Elasticsearch Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_elasticsearch_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  fingerprint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_elasticsearch_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_elasticsearch_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    fingerprint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_elasticsearch_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Elasticsearch technology type.

servers

(required) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `\"server1.example.com:4000,server2.example.com:4000\"`

security_protocol

(required) Security protocol for Elasticsearch.

authentication_type

(required) Authentication type for Elasticsearch.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

fingerprint

(optional) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_GENERIC_CONNECTION_DETAILS_T Type

The information about a new Generic Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_generic_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  host varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_generic_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_generic_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    host varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_generic_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Generic technology type.

host

(required) Host and port separated by colon. Example: `\"server.example.com:1234\"` For multiple hosts, provide a comma separated list. Example: `\"server1.example.com:1000,server1.example.com:2000\"`

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_GOLDEN_GATE_CONNECTION_DETAILS_T Type

The information about a new GoldenGate Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_golden_gate_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  deployment_id varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  password varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_golden_gate_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_golden_gate_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    deployment_id varchar2,
    host varchar2,
    port number,
    username varchar2,
    password varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_golden_gate_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The GoldenGate technology type.

deployment_id

(optional) The OCID of the deployment being referenced.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

username

(optional) The username credential existing in the Oracle GoldenGate used to be connected to.

password

(optional) The password used to connect to the Oracle GoldenGate accessed trough this connection.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_GOOGLE_BIG_QUERY_CONNECTION_DETAILS_T Type

The information about a new Google BigQuery Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_google_big_query_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  service_account_key_file varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_google_big_query_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_google_big_query_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    service_account_key_file varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_google_big_query_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Google BigQuery technology type.

service_account_key_file

(required) The base64 encoded content of the service account key file containing the credentials required to use Google BigQuery.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_GOOGLE_CLOUD_STORAGE_CONNECTION_DETAILS_T Type

The information about a new Google Cloud Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_google_cloud_storage_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  service_account_key_file varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_google_cloud_storage_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_google_cloud_storage_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    service_account_key_file varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_google_cloud_storage_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Google Cloud Storage technology type.

service_account_key_file

(required) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_HDFS_CONNECTION_DETAILS_T Type

The information about a new Hadoop Distributed File System Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_hdfs_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  core_site_xml varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_hdfs_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_hdfs_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    core_site_xml varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_hdfs_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Hadoop Distributed File System technology type.

core_site_xml

(required) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_JAVA_MESSAGE_SERVICE_CONNECTION_DETAILS_T Type

The information about a new Java Message Service Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_java_message_service_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  should_use_jndi number,
  jndi_connection_factory varchar2(32767),
  jndi_provider_url varchar2(32767),
  jndi_initial_context_factory varchar2(32767),
  jndi_security_principal varchar2(32767),
  jndi_security_credentials varchar2(32767),
  connection_url varchar2(32767),
  connection_factory varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  ssl_key_password varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_java_message_service_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_java_message_service_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    should_use_jndi number,
    jndi_connection_factory varchar2,
    jndi_provider_url varchar2,
    jndi_initial_context_factory varchar2,
    jndi_security_principal varchar2,
    jndi_security_credentials varchar2,
    connection_url varchar2,
    connection_factory varchar2,
    username varchar2,
    password varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2,
    ssl_key_password varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_java_message_service_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Java Message Service technology type.

should_use_jndi

(required) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.

jndi_connection_factory

(optional) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'

jndi_provider_url

(optional) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'

jndi_initial_context_factory

(optional) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'

jndi_security_principal

(optional) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'

jndi_security_credentials

(optional) The password associated to the principal.

connection_url

(optional) Connectin URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'

connection_factory

(optional) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'

username

(optional) The username Oracle GoldenGate uses to connect to the Java Message Service. This username must already exist and be available by the Java Message Service to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect the associated Java Message Service.

security_protocol

(optional) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.

authentication_type

(optional) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

ssl_key_password

(optional) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_KAFKA_BOOTSTRAP_SERVER_T Type

Represents a Kafka bootstrap server with host name, optional port defaults to 9092, and an optional private ip.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_kafka_bootstrap_server_t FORCE AUTHID CURRENT_USER IS OBJECT (
  host varchar2(32767),
  port number,
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_bootstrap_server_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_bootstrap_server_t (
    host varchar2,
    port number,
    private_ip varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

host

(required) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_KAFKA_BOOTSTRAP_SERVER_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_kafka_bootstrap_server_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_kafka_bootstrap_server_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_KAFKA_CONNECTION_DETAILS_T Type

The information about a new Kafka Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_kafka_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  stream_pool_id varchar2(32767),
  bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
  security_protocol varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  ssl_key_password varchar2(32767),
  consumer_properties varchar2(32767),
  producer_properties varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_kafka_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_kafka_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    stream_pool_id varchar2,
    bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
    security_protocol varchar2,
    username varchar2,
    password varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2,
    ssl_key_password varchar2,
    consumer_properties varchar2,
    producer_properties varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_kafka_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Kafka technology type.

stream_pool_id

(optional) The OCID of the stream pool being referenced.

bootstrap_servers

(optional) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `\"server1.example.com:9092,server2.example.com:9092\"`

security_protocol

(optional) Security Type for Kafka.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

ssl_key_password

(optional) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.

consumer_properties

(optional) The base64 encoded content of the consumer.properties file.

producer_properties

(optional) The base64 encoded content of the producer.properties file.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_KAFKA_SCHEMA_REGISTRY_CONNECTION_DETAILS_T Type

The information about a new Kafka (e.g. Confluent) Schema Registry Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_kafka_schema_registry_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  ssl_key_password varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_kafka_schema_registry_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_kafka_schema_registry_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    url varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2,
    ssl_key_password varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_kafka_schema_registry_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Kafka (e.g. Confluent) Schema Registry technology type.

url

(required) Kafka Schema Registry URL.

authentication_type

(required) Used authentication mechanism to access Schema Registry.

username

(optional) The username to access Schema Registry using basic authentation. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.

password

(optional) The password to access Schema Registry using basic authentation. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

ssl_key_password

(optional) The password for the cert inside the KeyStore. In case it differs from the KeyStore password, it should be provided.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_NAME_VALUE_PAIR_T Type

A name-value pair representing an attribute entry usable in a list of attributes.

Syntax

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

Fields

Field Description

name

(required) The name of the property entry.

value

(required) The value of the property entry.

DBMS_CLOUD_OCI_GOLDEN_GATE_NAME_VALUE_PAIR_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_name_value_pair_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_name_value_pair_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_name_value_pair_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_MICROSOFT_SQLSERVER_CONNECTION_DETAILS_T Type

The information about a new Microsoft SQL Server Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_microsoft_sqlserver_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  password varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_ca varchar2(32767),
  should_validate_server_certificate number,
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_microsoft_sqlserver_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_microsoft_sqlserver_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    password varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_ca varchar2,
    should_validate_server_certificate number,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_microsoft_sqlserver_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Microsoft SQL Server technology type.

database_name

(required) The name of the database.

host

(required) The name or address of a host.

port

(required) The port of an endpoint usually specified for a connection.

username

(required) The username Oracle GoldenGate uses to connect to the Microsoft SQL Server. This username must already exist and be available by the Microsoft SQL Server to be connected to.

password

(required) The password Oracle GoldenGate uses to connect the associated Microsoft SQL Server.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(required) Security Type for Microsoft SQL Server.

ssl_ca

(optional) Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).

should_validate_server_certificate

(optional) If set to true, the driver validates the certificate that is sent by the database server.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_MONGO_DB_CONNECTION_DETAILS_T Type

The information about a new MongoDB Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_mongo_db_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  connection_string varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_mongo_db_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_mongo_db_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_string varchar2,
    username varchar2,
    password varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_mongo_db_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The MongoDB technology type.

connection_string

(optional) MongoDB connection string. e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'

username

(optional) The username Oracle GoldenGate uses to connect to the database. This username must already exist and be available by the database to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect the associated database.

database_id

(optional) The OCID of the Oracle Autonomous Json Database.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_MYSQL_CONNECTION_DETAILS_T Type

The information about a new MySQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_mysql_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  host varchar2(32767),
  port number,
  database_name varchar2(32767),
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  ssl_ca varchar2(32767),
  ssl_crl varchar2(32767),
  ssl_cert varchar2(32767),
  ssl_key varchar2(32767),
  private_ip varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  db_system_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_mysql_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_mysql_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    password varchar2,
    host varchar2,
    port number,
    database_name varchar2,
    security_protocol varchar2,
    ssl_mode varchar2,
    ssl_ca varchar2,
    ssl_crl varchar2,
    ssl_cert varchar2,
    ssl_key varchar2,
    private_ip varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    db_system_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_mysql_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The MySQL technology type.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(required) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

database_name

(required) The name of the database.

security_protocol

(required) Security Type for MySQL.

ssl_mode

(optional) SSL modes for MySQL.

ssl_ca

(optional) Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1 and 2-way SSL).

ssl_crl

(optional) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.

ssl_cert

(optional) Client Certificate - The base64 encoded content of a .pem or .crt file. containing the client public key (for 2-way SSL).

ssl_key

(optional) Client Key – The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

db_system_id

(optional) The OCID of the database system being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_OCI_OBJECT_STORAGE_CONNECTION_DETAILS_T Type

The information about a new OCI Object Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_oci_object_storage_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  private_key_file varchar2(32767),
  private_key_passphrase varchar2(32767),
  public_key_fingerprint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_oci_object_storage_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_oci_object_storage_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2,
    private_key_file varchar2,
    private_key_passphrase varchar2,
    public_key_fingerprint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_oci_object_storage_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The OCI Object Storage technology type.

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(optional) The OCID of the OCI user who will access the Object Storage. The user must have write access to the bucket they want to connect to.

private_key_file

(required) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint.

private_key_passphrase

(optional) The passphrase of the private key.

public_key_fingerprint

(required) The fingerprint of the API Key of the user specified by the userId.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_ORACLE_CONNECTION_DETAILS_T Type

The information about a new Oracle Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_oracle_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  connection_string varchar2(32767),
  wallet varchar2(32767),
  session_mode varchar2(32767),
  private_ip varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_oracle_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_oracle_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    password varchar2,
    connection_string varchar2,
    wallet varchar2,
    session_mode varchar2,
    private_ip varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_oracle_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Oracle technology type.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(required) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

connection_string

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

wallet

(optional) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

database_id

(optional) The OCID of the database being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_ORACLE_NOSQL_CONNECTION_DETAILS_T Type

The information about a new Oracle NoSQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_oracle_nosql_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  private_key_file varchar2(32767),
  private_key_passphrase varchar2(32767),
  public_key_fingerprint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_oracle_nosql_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_oracle_nosql_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2,
    private_key_file varchar2,
    private_key_passphrase varchar2,
    public_key_fingerprint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_oracle_nosql_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Oracle NoSQL technology type.

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(optional) The OCID of the OCI user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to.

private_key_file

(required) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint.

private_key_passphrase

(optional) The passphrase of the private key.

public_key_fingerprint

(required) The fingerprint of the API Key of the user specified by the userId.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_POSTGRESQL_CONNECTION_DETAILS_T Type

The information about a new PostgreSQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_postgresql_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  password varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  ssl_ca varchar2(32767),
  ssl_crl varchar2(32767),
  ssl_cert varchar2(32767),
  ssl_key varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_postgresql_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_postgresql_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    password varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_mode varchar2,
    ssl_ca varchar2,
    ssl_crl varchar2,
    ssl_cert varchar2,
    ssl_key varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_postgresql_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The PostgreSQL technology type.

database_name

(required) The name of the database.

host

(required) The name or address of a host.

port

(required) The port of an endpoint usually specified for a connection.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(required) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(required) Security protocol for PostgreSQL.

ssl_mode

(optional) SSL modes for PostgreSQL.

ssl_ca

(optional) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.

ssl_crl

(optional) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA).

ssl_cert

(optional) The base64 encoded certificate of the PostgreSQL server. The supported file formats are .pem and .crt.

ssl_key

(optional) The base64 encoded private key of the PostgreSQL server. The supported file formats are .pem and .crt.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_REDIS_CONNECTION_DETAILS_T Type

The information about a new Redis Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_redis_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_redis_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_redis_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_redis_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Redis technology type.

servers

(required) Comma separated list of Redis server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 6379. Used for establishing the initial connection to the Redis cluster. Example: `\"server1.example.com:6379,server2.example.com:6379\"`

security_protocol

(required) Security protocol for Redis.

authentication_type

(required) Authenticationentication type for the Redis database.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

DBMS_CLOUD_OCI_GOLDEN_GATE_CREATE_SNOWFLAKE_CONNECTION_DETAILS_T Type

The information about a new Snowflake Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_create_snowflake_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_create_connection_details_t (
  technology_type varchar2(32767),
  connection_url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  private_key_file varchar2(32767),
  private_key_passphrase varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_snowflake_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_create_snowflake_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_url varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    private_key_file varchar2,
    private_key_passphrase varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_create_snowflake_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_create_connection_details_t type.

Fields

Field Description

technology_type

(required) The Snowflake technology type.

connection_url

(required) JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'

authentication_type

(required) Used authentication mechanism to access Snowflake.

username

(optional) The username Oracle GoldenGate uses to connect to Snowflake. This username must already exist and be available by Snowflake platform to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect to Snowflake platform.

private_key_file

(optional) The base64 encoded content of private key file in PEM format.

private_key_passphrase

(optional) Password if the private key file is encrypted.

DBMS_CLOUD_OCI_GOLDEN_GATE_DATABASE_REGISTRATION_T Type

Represents the metadata description of a database used by deployments in the same compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_database_registration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  fqdn varchar2(32767),
  ip_address varchar2(32767),
  subnet_id varchar2(32767),
  database_id varchar2(32767),
  rce_private_ip varchar2(32767),
  system_tags json_element_t,
  username varchar2(32767),
  connection_string varchar2(32767),
  session_mode varchar2(32767),
  alias_name varchar2(32767),
  vault_id varchar2(32767),
  key_id varchar2(32767),
  secret_compartment_id varchar2(32767),
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_database_registration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_database_registration_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fqdn varchar2,
    ip_address varchar2,
    subnet_id varchar2,
    database_id varchar2,
    rce_private_ip varchar2,
    system_tags json_element_t,
    username varchar2,
    connection_string varchar2,
    session_mode varchar2,
    alias_name varchar2,
    vault_id varchar2,
    key_id varchar2,
    secret_compartment_id varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the databaseRegistration being referenced.

display_name

(required) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

lifecycle_state

(optional) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

freeform_tags

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

defined_tags

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

fqdn

(required) A three-label Fully Qualified Domain Name (FQDN) for a resource.

ip_address

(required) The private IP address in the customer's VCN of the customer's endpoint, typically a database.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

database_id

(optional) The OCID of the database being referenced.

rce_private_ip

(optional) A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

connection_string

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

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

Allowed values are: 'DIRECT', 'REDIRECT'

alias_name

(required) Credential store alias.

vault_id

(optional) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

secret_compartment_id

(optional) The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

secret_id

(optional) The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.

DBMS_CLOUD_OCI_GOLDEN_GATE_DATABASE_REGISTRATION_SUMMARY_T Type

Summary of the DatabaseRegistration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_database_registration_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  fqdn varchar2(32767),
  subnet_id varchar2(32767),
  system_tags json_element_t,
  database_id varchar2(32767),
  username varchar2(32767),
  connection_string varchar2(32767),
  session_mode varchar2(32767),
  alias_name varchar2(32767),
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_database_registration_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_database_registration_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fqdn varchar2,
    subnet_id varchar2,
    system_tags json_element_t,
    database_id varchar2,
    username varchar2,
    connection_string varchar2,
    session_mode varchar2,
    alias_name varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the databaseRegistration being referenced.

display_name

(required) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

lifecycle_state

(optional) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

freeform_tags

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

defined_tags

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

fqdn

(required) A three-label Fully Qualified Domain Name (FQDN) for a resource.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

database_id

(optional) The OCID of the database being referenced.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

connection_string

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

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

Allowed values are: 'DIRECT', 'REDIRECT'

alias_name

(optional) Credential store alias.

secret_id

(optional) The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.

DBMS_CLOUD_OCI_GOLDEN_GATE_DATABASE_REGISTRATION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_database_registration_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_database_registration_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_database_registration_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DATABASE_REGISTRATION_COLLECTION_T Type

A list of DatabaseRegistrations.

Syntax

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

Fields

Field Description

items

(required) An array of DatabaseRegistration summaries.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_CANCEL_DEPLOYMENT_BACKUP_DETAILS_T Type

Definition of the additional attributes for default deployment backup cancel.

Syntax

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

dbms_cloud_oci_golden_gate_default_cancel_deployment_backup_details_t is a subtype of the dbms_cloud_oci_golden_gate_cancel_deployment_backup_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_CANCEL_DEPLOYMENT_UPGRADE_DETAILS_T Type

Definition of the additional attributes for default deployment upgrade cancel.

Syntax

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

dbms_cloud_oci_golden_gate_default_cancel_deployment_upgrade_details_t is a subtype of the dbms_cloud_oci_golden_gate_cancel_deployment_upgrade_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_CANCEL_SNOOZE_DEPLOYMENT_UPGRADE_DETAILS_T Type

Definition of the additional attributes for default deployment upgrade cancel snooze.

Syntax

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

dbms_cloud_oci_golden_gate_default_cancel_snooze_deployment_upgrade_details_t is a subtype of the dbms_cloud_oci_golden_gate_cancel_snooze_deployment_upgrade_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_WALLET_EXISTS_DETAILS_T Type

The information to check if a wallet is present in the Deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment for wallet

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_DEPLOYMENT_WALLET_EXISTS_DETAILS_T Type

Definition of the additional attributes for default check of a wallet in deployment .

Syntax

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

dbms_cloud_oci_golden_gate_default_deployment_wallet_exists_details_t is a subtype of the dbms_cloud_oci_golden_gate_deployment_wallet_exists_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_RESTORE_DEPLOYMENT_DETAILS_T Type

The information about the Restore for a Deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment restore.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_RESTORE_DEPLOYMENT_DETAILS_T Type

Definition of the additional attributes for default deployment restore.

Syntax

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

dbms_cloud_oci_golden_gate_default_restore_deployment_details_t is a subtype of the dbms_cloud_oci_golden_gate_restore_deployment_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_ROLLBACK_DEPLOYMENT_UPGRADE_DETAILS_T Type

The information about the rollback of an upgrade.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deploymentUpgrade rollback.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_ROLLBACK_DEPLOYMENT_UPGRADE_DETAILS_T Type

Definition of the additional attributes for default upgrade rollback.

Syntax

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

dbms_cloud_oci_golden_gate_default_rollback_deployment_upgrade_details_t is a subtype of the dbms_cloud_oci_golden_gate_rollback_deployment_upgrade_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_SNOOZE_DEPLOYMENT_UPGRADE_DETAILS_T Type

The information about the snooze for a deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deploymentUpgrade snooze.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_SNOOZE_DEPLOYMENT_UPGRADE_DETAILS_T Type

Definition of the additional attributes for default deployment upgrade snooze.

Syntax

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

dbms_cloud_oci_golden_gate_default_snooze_deployment_upgrade_details_t is a subtype of the dbms_cloud_oci_golden_gate_snooze_deployment_upgrade_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_START_DEPLOYMENT_DETAILS_T Type

The information about the Start for a Deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment start

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_START_DEPLOYMENT_DETAILS_T Type

Definition of the additional attributes for default deployment start.

Syntax

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

dbms_cloud_oci_golden_gate_default_start_deployment_details_t is a subtype of the dbms_cloud_oci_golden_gate_start_deployment_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_STOP_DEPLOYMENT_DETAILS_T Type

The information about the Stop for a Deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment stop

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_STOP_DEPLOYMENT_DETAILS_T Type

Definition of the additional attributes for default deployment stop.

Syntax

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

dbms_cloud_oci_golden_gate_default_stop_deployment_details_t is a subtype of the dbms_cloud_oci_golden_gate_stop_deployment_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_TEST_CONNECTION_ASSIGNMENT_DETAILS_T Type

The information about testing the assigned connection.

Syntax

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

Fields

Field Description

l_type

(required) The type of the test of the assigned connection.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_TEST_CONNECTION_ASSIGNMENT_DETAILS_T Type

Definition of the additional attributes for default test of assigned connection.

Syntax

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

dbms_cloud_oci_golden_gate_default_test_connection_assignment_details_t is a subtype of the dbms_cloud_oci_golden_gate_test_connection_assignment_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPGRADE_DEPLOYMENT_UPGRADE_DETAILS_T Type

The information about the upgrade for a deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment start.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_GOLDEN_GATE_DEFAULT_UPGRADE_DEPLOYMENT_UPGRADE_DETAILS_T Type

Definition of the additional attributes for default deployment upgrade.

Syntax

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

dbms_cloud_oci_golden_gate_default_upgrade_deployment_upgrade_details_t is a subtype of the dbms_cloud_oci_golden_gate_upgrade_deployment_upgrade_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_OGG_DEPLOYMENT_T Type

Deployment Data for an OggDeployment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_ogg_deployment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  deployment_name varchar2(32767),
  admin_username varchar2(32767),
  ogg_version varchar2(32767),
  certificate varchar2(32767),
  credential_store varchar2(32767),
  identity_domain_id varchar2(32767),
  password_secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_ogg_deployment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_ogg_deployment_t (
    deployment_name varchar2,
    admin_username varchar2,
    ogg_version varchar2,
    certificate varchar2,
    credential_store varchar2,
    identity_domain_id varchar2,
    password_secret_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

deployment_name

(required) The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

admin_username

(required) The GoldenGate deployment console username.

ogg_version

(optional) Version of OGG

certificate

(optional) A PEM-encoded SSL certificate.

credential_store

(optional) The type of credential store for OGG.

Allowed values are: 'GOLDENGATE', 'IAM'

identity_domain_id

(optional) The OCID of the Identity Domain when IAM credential store is used.

password_secret_id

(optional) The OCID of the Secret where the deployment password is stored.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_DIAGNOSTIC_DATA_T Type

Information regarding the deployment diagnostic collection

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_diagnostic_data_t FORCE AUTHID CURRENT_USER IS OBJECT (
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  diagnostic_state varchar2(32767),
  time_diagnostic_start timestamp with time zone,
  time_diagnostic_end timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_diagnostic_data_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_diagnostic_data_t (
    namespace_name varchar2,
    bucket_name varchar2,
    object_name varchar2,
    diagnostic_state varchar2,
    time_diagnostic_start timestamp with time zone,
    time_diagnostic_end timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

namespace_name

(required) Name of namespace that serves as a container for all of your buckets

bucket_name

(required) Name of the bucket where the object is to be uploaded in the object storage

object_name

(required) Name of the diagnostic collected and uploaded to object storage

diagnostic_state

(required) The state of the deployment diagnostic collection.

Allowed values are: 'IN_PROGRESS', 'SUCCEEDED', 'FAILED'

time_diagnostic_start

(optional) The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_diagnostic_end

(optional) The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_MAINTENANCE_WINDOW_T Type

Defines the maintenance window, when automatic actions can be performed.

Syntax

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

Fields

Field Description

day

(required) Days of the week.

Allowed values are: 'MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY', 'SUNDAY'

start_hour

(required) Start hour for maintenance period. Hour is in UTC.

DBMS_CLOUD_OCI_GOLDEN_GATE_MAINTENANCE_CONFIGURATION_T Type

Attributes for configuring automatic deployment maintenance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_maintenance_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_interim_release_auto_upgrade_enabled number,
  interim_release_upgrade_period_in_days number,
  bundle_release_upgrade_period_in_days number,
  major_release_upgrade_period_in_days number,
  security_patch_upgrade_period_in_days number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_maintenance_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_maintenance_configuration_t (
    is_interim_release_auto_upgrade_enabled number,
    interim_release_upgrade_period_in_days number,
    bundle_release_upgrade_period_in_days number,
    major_release_upgrade_period_in_days number,
    security_patch_upgrade_period_in_days number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_interim_release_auto_upgrade_enabled

(required) By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.

interim_release_upgrade_period_in_days

(optional) Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.

bundle_release_upgrade_period_in_days

(required) Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.

major_release_upgrade_period_in_days

(required) Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.

security_patch_upgrade_period_in_days

(required) Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_T Type

A container for your OCI GoldenGate resources, such as the OCI GoldenGate deployment console.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  deployment_backup_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_sub_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  is_healthy number,
  subnet_id varchar2(32767),
  load_balancer_subnet_id varchar2(32767),
  load_balancer_id varchar2(32767),
  fqdn varchar2(32767),
  license_model varchar2(32767),
  cpu_core_count number,
  is_auto_scaling_enabled number,
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  is_public number,
  public_ip_address varchar2(32767),
  private_ip_address varchar2(32767),
  deployment_url varchar2(32767),
  system_tags json_element_t,
  is_latest_version number,
  time_upgrade_required timestamp with time zone,
  storage_utilization_in_bytes number,
  is_storage_utilization_limit_exceeded number,
  deployment_type varchar2(32767),
  ogg_data dbms_cloud_oci_golden_gate_ogg_deployment_t,
  deployment_diagnostic_data dbms_cloud_oci_golden_gate_deployment_diagnostic_data_t,
  maintenance_window dbms_cloud_oci_golden_gate_maintenance_window_t,
  time_of_next_maintenance timestamp with time zone,
  next_maintenance_action_type varchar2(32767),
  next_maintenance_description varchar2(32767),
  maintenance_configuration dbms_cloud_oci_golden_gate_maintenance_configuration_t,
  time_ogg_version_supported_until timestamp with time zone,
  ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    deployment_backup_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_sub_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    is_healthy number,
    subnet_id varchar2,
    load_balancer_subnet_id varchar2,
    load_balancer_id varchar2,
    fqdn varchar2,
    license_model varchar2,
    cpu_core_count number,
    is_auto_scaling_enabled number,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    is_public number,
    public_ip_address varchar2,
    private_ip_address varchar2,
    deployment_url varchar2,
    system_tags json_element_t,
    is_latest_version number,
    time_upgrade_required timestamp with time zone,
    storage_utilization_in_bytes number,
    is_storage_utilization_limit_exceeded number,
    deployment_type varchar2,
    ogg_data dbms_cloud_oci_golden_gate_ogg_deployment_t,
    deployment_diagnostic_data dbms_cloud_oci_golden_gate_deployment_diagnostic_data_t,
    maintenance_window dbms_cloud_oci_golden_gate_maintenance_window_t,
    time_of_next_maintenance timestamp with time zone,
    next_maintenance_action_type varchar2,
    next_maintenance_description varchar2,
    maintenance_configuration dbms_cloud_oci_golden_gate_maintenance_configuration_t,
    time_ogg_version_supported_until timestamp with time zone,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the deployment being referenced.

display_name

(optional) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

deployment_backup_id

(optional) The OCID of the backup being referenced.

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

lifecycle_state

(optional) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_sub_state

(optional) Possible GGS lifecycle sub-states.

Allowed values are: 'RECOVERING', 'STARTING', 'STOPPING', 'MOVING', 'UPGRADING', 'RESTORING', 'BACKUP_IN_PROGRESS', 'ROLLBACK_IN_PROGRESS'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

freeform_tags

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

defined_tags

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

is_healthy

(optional) True if all of the aggregate resources are working correctly.

subnet_id

(required) The OCID of the subnet of the deployment's private endpoint.

load_balancer_subnet_id

(optional) The OCID of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.

load_balancer_id

(optional) The OCID of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.

fqdn

(optional) A three-label Fully Qualified Domain Name (FQDN) for a resource.

license_model

(required) The Oracle license model that applies to a Deployment.

Allowed values are: 'LICENSE_INCLUDED', 'BRING_YOUR_OWN_LICENSE'

cpu_core_count

(required) The Minimum number of OCPUs to be made available for this Deployment.

is_auto_scaling_enabled

(required) Indicates if auto scaling is enabled for the Deployment's CPU core count.

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

is_public

(optional) True if this object is publicly available.

public_ip_address

(optional) The public IP address representing the access point for the Deployment.

private_ip_address

(optional) The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.

deployment_url

(optional) The URL of a resource.

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

is_latest_version

(optional) Indicates if the resource is the the latest available version.

time_upgrade_required

(optional) Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

storage_utilization_in_bytes

(optional) The amount of storage being utilized (in bytes)

is_storage_utilization_limit_exceeded

(optional) Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.

deployment_type

(required) The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.

Allowed values are: 'OGG', 'DATABASE_ORACLE', 'BIGDATA', 'DATABASE_MICROSOFT_SQLSERVER', 'DATABASE_MYSQL', 'DATABASE_POSTGRESQL', 'DATABASE_DB2ZOS', 'GGSA', 'DATA_TRANSFORMS'

ogg_data

(optional)

deployment_diagnostic_data

(optional)

maintenance_window

(optional)

time_of_next_maintenance

(optional) The time of next maintenance schedule. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

next_maintenance_action_type

(optional) Type of the next maintenance.

Allowed values are: 'UPGRADE'

next_maintenance_description

(optional) Description of the next maintenance.

maintenance_configuration

(optional)

time_ogg_version_supported_until

(optional) The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

ingress_ips

(optional) List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_BACKUP_T Type

A backup of the current state of the GoldenGate deployment. Can be used to restore a deployment, or create a new deployment with that state as the starting deployment state.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_backup_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  deployment_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  is_automatic number,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_of_backup timestamp with time zone,
  time_backup_finished timestamp with time zone,
  size_in_bytes number,
  backup_type varchar2(32767),
  ogg_version varchar2(32767),
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_backup_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_backup_t (
    id varchar2,
    deployment_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    is_automatic number,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_of_backup timestamp with time zone,
    time_backup_finished timestamp with time zone,
    size_in_bytes number,
    backup_type varchar2,
    ogg_version varchar2,
    namespace_name varchar2,
    bucket_name varchar2,
    object_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the backup being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

compartment_id

(required) The OCID of the compartment being referenced.

display_name

(optional) An object's Display Name.

is_automatic

(optional) True if this object is automatically created

lifecycle_state

(required) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

time_of_backup

(optional) The time of the resource backup. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_backup_finished

(optional) The time of the resource backup finish. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

size_in_bytes

(optional) The size of the backup stored in object storage (in bytes)

backup_type

(optional) Possible Deployment backup types.

Allowed values are: 'INCREMENTAL', 'FULL'

ogg_version

(required) Version of OGG

namespace_name

(optional) Name of namespace that serves as a container for all of your buckets

bucket_name

(optional) Name of the bucket where the object is to be uploaded in the object storage

object_name

(optional) Name of the object to be uploaded to object storage

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

freeform_tags

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

defined_tags

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

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_BACKUP_SUMMARY_T Type

The summary of the Backup.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_backup_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  deployment_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  is_automatic number,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_of_backup timestamp with time zone,
  time_backup_finished timestamp with time zone,
  size_in_bytes number,
  backup_type varchar2(32767),
  ogg_version varchar2(32767),
  namespace_name varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_backup_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_backup_summary_t (
    id varchar2,
    deployment_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    is_automatic number,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_of_backup timestamp with time zone,
    time_backup_finished timestamp with time zone,
    size_in_bytes number,
    backup_type varchar2,
    ogg_version varchar2,
    namespace_name varchar2,
    bucket_name varchar2,
    object_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the backup being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

compartment_id

(required) The OCID of the compartment being referenced.

display_name

(optional) An object's Display Name.

is_automatic

(optional) True if this object is automatically created

lifecycle_state

(required) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

time_of_backup

(optional) The time of the resource backup. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_backup_finished

(optional) The time of the resource backup finish. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

size_in_bytes

(optional) The size of the backup stored in object storage (in bytes)

backup_type

(optional) Possible Deployment backup types.

Allowed values are: 'INCREMENTAL', 'FULL'

ogg_version

(required) Version of OGG

namespace_name

(optional) Name of namespace that serves as a container for all of your buckets

bucket_name

(optional) Name of the bucket where the object is to be uploaded in the object storage

object_name

(optional) Name of the object to be uploaded to object storage

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

freeform_tags

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

defined_tags

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

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_BACKUP_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_deployment_backup_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_backup_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_deployment_backup_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_BACKUP_COLLECTION_T Type

A list of DeploymentBackups.

Syntax

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

Fields

Field Description

items

(required) An array of DeploymentBackups.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_SUMMARY_T Type

Summary of the Deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_sub_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  subnet_id varchar2(32767),
  load_balancer_subnet_id varchar2(32767),
  load_balancer_id varchar2(32767),
  license_model varchar2(32767),
  fqdn varchar2(32767),
  cpu_core_count number,
  is_auto_scaling_enabled number,
  is_public number,
  public_ip_address varchar2(32767),
  private_ip_address varchar2(32767),
  deployment_url varchar2(32767),
  system_tags json_element_t,
  is_latest_version number,
  time_upgrade_required timestamp with time zone,
  deployment_type varchar2(32767),
  storage_utilization_in_bytes number,
  is_storage_utilization_limit_exceeded number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_sub_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    subnet_id varchar2,
    load_balancer_subnet_id varchar2,
    load_balancer_id varchar2,
    license_model varchar2,
    fqdn varchar2,
    cpu_core_count number,
    is_auto_scaling_enabled number,
    is_public number,
    public_ip_address varchar2,
    private_ip_address varchar2,
    deployment_url varchar2,
    system_tags json_element_t,
    is_latest_version number,
    time_upgrade_required timestamp with time zone,
    deployment_type varchar2,
    storage_utilization_in_bytes number,
    is_storage_utilization_limit_exceeded number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the deployment being referenced.

display_name

(optional) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

lifecycle_state

(optional) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_sub_state

(optional) Possible GGS lifecycle sub-states.

Allowed values are: 'RECOVERING', 'STARTING', 'STOPPING', 'MOVING', 'UPGRADING', 'RESTORING', 'BACKUP_IN_PROGRESS', 'ROLLBACK_IN_PROGRESS'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

freeform_tags

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

defined_tags

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

subnet_id

(required) The OCID of the subnet of the deployment's private endpoint.

load_balancer_subnet_id

(optional) The OCID of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.

load_balancer_id

(optional) The OCID of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.

license_model

(required) The Oracle license model that applies to a Deployment.

Allowed values are: 'LICENSE_INCLUDED', 'BRING_YOUR_OWN_LICENSE'

fqdn

(optional) A three-label Fully Qualified Domain Name (FQDN) for a resource.

cpu_core_count

(optional) The Minimum number of OCPUs to be made available for this Deployment.

is_auto_scaling_enabled

(optional) Indicates if auto scaling is enabled for the Deployment's CPU core count.

is_public

(optional) True if this object is publicly available.

public_ip_address

(optional) The public IP address representing the access point for the Deployment.

private_ip_address

(optional) The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.

deployment_url

(optional) The URL of a resource.

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

is_latest_version

(optional) Indicates if the resource is the the latest available version.

time_upgrade_required

(optional) Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

deployment_type

(optional) The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.

Allowed values are: 'OGG', 'DATABASE_ORACLE', 'BIGDATA', 'DATABASE_MICROSOFT_SQLSERVER', 'DATABASE_MYSQL', 'DATABASE_POSTGRESQL', 'DATABASE_DB2ZOS', 'GGSA', 'DATA_TRANSFORMS'

storage_utilization_in_bytes

(optional) The amount of storage being utilized (in bytes)

is_storage_utilization_limit_exceeded

(optional) Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_deployment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_deployment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_COLLECTION_T Type

A list of Deployments.

Syntax

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

Fields

Field Description

items

(required) An array of Deployment summaries.

DBMS_CLOUD_OCI_GOLDEN_GATE_MESSAGE_SUMMARY_T Type

Deployment message Summary.

Syntax

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

Fields

Field Description

id

(required) The deployment Message Id.

deployment_message

(required) The deployment Message in plain text with optional HTML anchor tags.

deployment_message_status

(required) The deployment Message Status.

Allowed values are: 'INFO', 'WARNING', 'ERROR'

DBMS_CLOUD_OCI_GOLDEN_GATE_MESSAGE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_message_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_message_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_message_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_MESSAGE_COLLECTION_T Type

A list of DeploymentMessages.

Syntax

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

Fields

Field Description

items

(required) An array of DeploymentMessages.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_TYPE_SUMMARY_T Type

The meta-data specific on particular deployment type represented by deploymentType field.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  category varchar2(32767),
  display_name varchar2(32767),
  deployment_type varchar2(32767),
  connection_types dbms_cloud_oci_golden_gate_varchar2_tbl,
  source_technologies dbms_cloud_oci_golden_gate_varchar2_tbl,
  target_technologies dbms_cloud_oci_golden_gate_varchar2_tbl,
  ogg_version varchar2(32767),
  supported_technologies_url varchar2(32767),
  default_username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_type_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_type_summary_t (
    category varchar2,
    display_name varchar2,
    deployment_type varchar2,
    connection_types dbms_cloud_oci_golden_gate_varchar2_tbl,
    source_technologies dbms_cloud_oci_golden_gate_varchar2_tbl,
    target_technologies dbms_cloud_oci_golden_gate_varchar2_tbl,
    ogg_version varchar2,
    supported_technologies_url varchar2,
    default_username varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

category

(required) The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.

Allowed values are: 'DATA_REPLICATION', 'STREAM_ANALYTICS', 'DATA_TRANSFORMS'

display_name

(required) An object's Display Name.

deployment_type

(required) The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.

Allowed values are: 'OGG', 'DATABASE_ORACLE', 'BIGDATA', 'DATABASE_MICROSOFT_SQLSERVER', 'DATABASE_MYSQL', 'DATABASE_POSTGRESQL', 'DATABASE_DB2ZOS', 'GGSA', 'DATA_TRANSFORMS'

connection_types

(optional) An array of connectionTypes.

Allowed values are: 'GOLDENGATE', 'KAFKA', 'KAFKA_SCHEMA_REGISTRY', 'MYSQL', 'JAVA_MESSAGE_SERVICE', 'MICROSOFT_SQLSERVER', 'OCI_OBJECT_STORAGE', 'ORACLE', 'AZURE_DATA_LAKE_STORAGE', 'POSTGRESQL', 'AZURE_SYNAPSE_ANALYTICS', 'SNOWFLAKE', 'AMAZON_S3', 'HDFS', 'ORACLE_NOSQL', 'MONGODB', 'AMAZON_KINESIS', 'AMAZON_REDSHIFT', 'REDIS', 'ELASTICSEARCH', 'GENERIC', 'GOOGLE_CLOUD_STORAGE', 'GOOGLE_BIGQUERY'

source_technologies

(optional) List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ \"Oracle Database 19c\", \"Oracle Exadata\", \"OCI Streaming\" ]

target_technologies

(optional) List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ \"Oracle Database 19c\", \"Oracle Exadata\", \"OCI Streaming\" ]

ogg_version

(optional) Version of OGG

supported_technologies_url

(optional) The URL to the webpage listing the supported technologies.

default_username

(optional) The default admin username used by deployment.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_TYPE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_deployment_type_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_deployment_type_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_TYPE_COLLECTION_T Type

The list of DeploymentTypeDescriptor objects.

Syntax

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

Fields

Field Description

items

(required) Array of DeploymentTypeSummary

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_UPGRADE_T Type

A container for your OCI GoldenGate Upgrade information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_upgrade_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  deployment_id varchar2(32767),
  deployment_upgrade_type varchar2(32767),
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  ogg_version varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_sub_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  previous_ogg_version varchar2(32767),
  time_schedule timestamp with time zone,
  is_snoozed number,
  time_snoozed_until timestamp with time zone,
  time_released timestamp with time zone,
  release_type varchar2(32767),
  is_security_fix number,
  is_rollback_allowed number,
  time_ogg_version_supported_until timestamp with time zone,
  is_cancel_allowed number,
  is_reschedule_allowed number,
  time_schedule_max timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_upgrade_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_upgrade_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    deployment_id varchar2,
    deployment_upgrade_type varchar2,
    time_started timestamp with time zone,
    time_finished timestamp with time zone,
    ogg_version varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_sub_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    previous_ogg_version varchar2,
    time_schedule timestamp with time zone,
    is_snoozed number,
    time_snoozed_until timestamp with time zone,
    time_released timestamp with time zone,
    release_type varchar2,
    is_security_fix number,
    is_rollback_allowed number,
    time_ogg_version_supported_until timestamp with time zone,
    is_cancel_allowed number,
    is_reschedule_allowed number,
    time_schedule_max timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the deployment upgrade being referenced.

display_name

(optional) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

deployment_upgrade_type

(required) The type of the deployment upgrade: MANUAL or AUTOMATIC

Allowed values are: 'MANUAL', 'AUTOMATIC'

time_started

(optional) The date and time the request was started. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_finished

(optional) The date and time the request was finished. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

ogg_version

(optional) Version of OGG

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

lifecycle_state

(optional) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_sub_state

(optional) Possible GGS lifecycle sub-states.

Allowed values are: 'RECOVERING', 'STARTING', 'STOPPING', 'MOVING', 'UPGRADING', 'RESTORING', 'BACKUP_IN_PROGRESS', 'ROLLBACK_IN_PROGRESS'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

freeform_tags

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

defined_tags

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

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

previous_ogg_version

(optional) Version of OGG

time_schedule

(optional) The time of upgrade schedule. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

is_snoozed

(optional) Indicates if upgrade notifications are snoozed or not.

time_snoozed_until

(optional) The time the upgrade notifications are snoozed until. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_released

(optional) The time the resource was released. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

release_type

(optional) The type of release.

Allowed values are: 'MAJOR', 'BUNDLE', 'MINOR'

is_security_fix

(optional) Indicates if OGG release contains security fix.

is_rollback_allowed

(optional) Indicates if rollback is allowed. In practice only the last upgrade can be rolled back. - Manual upgrade is allowed to rollback only until the old version isn't deprecated yet. - Automatic upgrade by default is not allowed, unless a serious issue does not justify.

time_ogg_version_supported_until

(optional) The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

is_cancel_allowed

(optional) Indicates if cancel is allowed. Scheduled upgrade can be cancelled only if target version is not forced by service, otherwise only reschedule allowed.

is_reschedule_allowed

(optional) Indicates if reschedule is allowed. Upgrade can be rescheduled postponed until the end of the service defined auto-upgrade period.

time_schedule_max

(optional) Indicates the latest time until the deployment upgrade could be rescheduled. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_UPGRADE_SUMMARY_T Type

Summary of the Deployment Upgrade.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_upgrade_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  deployment_id varchar2(32767),
  deployment_upgrade_type varchar2(32767),
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  ogg_version varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_sub_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  previous_ogg_version varchar2(32767),
  time_schedule timestamp with time zone,
  is_snoozed number,
  time_snoozed_until timestamp with time zone,
  time_released timestamp with time zone,
  release_type varchar2(32767),
  is_security_fix number,
  is_rollback_allowed number,
  time_ogg_version_supported_until timestamp with time zone,
  is_cancel_allowed number,
  is_reschedule_allowed number,
  time_schedule_max timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_upgrade_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_upgrade_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    deployment_id varchar2,
    deployment_upgrade_type varchar2,
    time_started timestamp with time zone,
    time_finished timestamp with time zone,
    ogg_version varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_sub_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    previous_ogg_version varchar2,
    time_schedule timestamp with time zone,
    is_snoozed number,
    time_snoozed_until timestamp with time zone,
    time_released timestamp with time zone,
    release_type varchar2,
    is_security_fix number,
    is_rollback_allowed number,
    time_ogg_version_supported_until timestamp with time zone,
    is_cancel_allowed number,
    is_reschedule_allowed number,
    time_schedule_max timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the deployment being referenced.

display_name

(optional) An object's Display Name.

description

(optional) Metadata about this specific object.

compartment_id

(required) The OCID of the compartment being referenced.

deployment_id

(required) The OCID of the deployment being referenced.

deployment_upgrade_type

(required) The type of the deployment upgrade: MANUAL or AUTOMATIC

Allowed values are: 'MANUAL', 'AUTOMATIC'

time_started

(optional) The date and time the request was started. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_finished

(optional) The date and time the request was finished. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

ogg_version

(optional) Version of OGG

time_created

(optional) The time the resource was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

lifecycle_state

(optional) Possible lifecycle states.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED', 'NEEDS_ATTENTION', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'WAITING'

lifecycle_sub_state

(optional) Possible GGS lifecycle sub-states.

Allowed values are: 'RECOVERING', 'STARTING', 'STOPPING', 'MOVING', 'UPGRADING', 'RESTORING', 'BACKUP_IN_PROGRESS', 'ROLLBACK_IN_PROGRESS'

lifecycle_details

(optional) Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.

freeform_tags

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

defined_tags

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

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

previous_ogg_version

(optional) Version of OGG

time_schedule

(optional) The time of upgrade schedule. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

is_snoozed

(optional) Indicates if upgrade notifications are snoozed or not.

time_snoozed_until

(optional) The time the upgrade notifications are snoozed until. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_released

(optional) The time the resource was released. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

release_type

(optional) The type of release.

Allowed values are: 'MAJOR', 'BUNDLE', 'MINOR'

is_security_fix

(optional) Indicates if OGG release contains security fix.

is_rollback_allowed

(optional) Indicates if rollback is allowed. In practice only the last upgrade can be rolled back. - Manual upgrade is allowed to rollback only until the old version isn't deprecated yet. - Automatic upgrade by default is not allowed, unless a serious issue does not justify.

time_ogg_version_supported_until

(optional) The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

is_cancel_allowed

(optional) Indicates if cancel is allowed. Scheduled upgrade can be cancelled only if target version is not forced by service, otherwise only reschedule allowed.

is_reschedule_allowed

(optional) Indicates if reschedule is allowed. Upgrade can be rescheduled postponed until the end of the service defined auto-upgrade period.

time_schedule_max

(optional) Indicates the latest time until the deployment upgrade could be rescheduled. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_UPGRADE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_deployment_upgrade_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_upgrade_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_deployment_upgrade_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_UPGRADE_COLLECTION_T Type

A list of Deployment Upgrades.

Syntax

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

Fields

Field Description

items

(required) An array of Deployment Upgrade summaries.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_VERSION_SUMMARY_T Type

The summary data of a specific deployment version.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_version_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ogg_version varchar2(32767),
  deployment_type varchar2(32767),
  time_released timestamp with time zone,
  release_type varchar2(32767),
  is_security_fix number,
  time_supported_until timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_version_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_version_summary_t (
    ogg_version varchar2,
    deployment_type varchar2,
    time_released timestamp with time zone,
    release_type varchar2,
    is_security_fix number,
    time_supported_until timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ogg_version

(required) Version of OGG

deployment_type

(required) The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.

Allowed values are: 'OGG', 'DATABASE_ORACLE', 'BIGDATA', 'DATABASE_MICROSOFT_SQLSERVER', 'DATABASE_MYSQL', 'DATABASE_POSTGRESQL', 'DATABASE_DB2ZOS', 'GGSA', 'DATA_TRANSFORMS'

time_released

(optional) The time the resource was released. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

release_type

(optional) The type of release.

Allowed values are: 'MAJOR', 'BUNDLE', 'MINOR'

is_security_fix

(optional) Indicates if OGG release contains security fix.

time_supported_until

(optional) The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_VERSION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_deployment_version_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_version_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_deployment_version_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_VERSION_COLLECTION_T Type

The list of DeploymentVersionSummary objects.

Syntax

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

Fields

Field Description

items

(required) Array of DeploymentVersionSummary.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_WALLET_EXISTS_RESPONSE_DETAILS_T Type

Indicates whether the wallet exists in the deployment container

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_wallet_exists_response_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_ogg_wallet_exists number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_wallet_exists_response_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_wallet_exists_response_details_t (
    is_ogg_wallet_exists number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_ogg_wallet_exists

(required) Indicates if the wallet is present in the deployment container

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_WALLETS_OPERATION_SUMMARY_T Type

Summary of the deployment wallets operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_wallets_operation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  wallet_operation_id varchar2(32767),
  wallet_secret_id varchar2(32767),
  deployment_wallet_operation_type varchar2(32767),
  deployment_wallet_operation_status varchar2(32767),
  time_started timestamp with time zone,
  time_completed timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_wallets_operation_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_deployment_wallets_operation_summary_t (
    wallet_operation_id varchar2,
    wallet_secret_id varchar2,
    deployment_wallet_operation_type varchar2,
    deployment_wallet_operation_status varchar2,
    time_started timestamp with time zone,
    time_completed timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

wallet_operation_id

(required) The UUID of the wallet operation performed by the customer. If provided, this will reference a key which the customer can use to query or search a particular wallet operation

wallet_secret_id

(required) The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.

deployment_wallet_operation_type

(required) The operation type of the deployment wallet.

Allowed values are: 'EXPORT', 'IMPORT'

deployment_wallet_operation_status

(required) The status of the deployment wallet.

Allowed values are: 'EXPORTING', 'EXPORTED', 'IMPORTED', 'IMPORTING', 'FAILED'

time_started

(required) The date and time the request was started. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_completed

(optional) The date and time the request was finished. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_WALLETS_OPERATION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_deployment_wallets_operation_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_deployment_wallets_operation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_deployment_wallets_operation_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_DEPLOYMENT_WALLETS_OPERATION_COLLECTION_T Type

A list of deployment wallets operations.

Syntax

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

Fields

Field Description

items

(required) An array of DeploymentWallets operations.

DBMS_CLOUD_OCI_GOLDEN_GATE_ELASTICSEARCH_CONNECTION_T Type

Represents the metadata of a Elasticsearch Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_elasticsearch_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_elasticsearch_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_elasticsearch_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_elasticsearch_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Elasticsearch technology type.

Allowed values are: 'ELASTICSEARCH'

servers

(required) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `\"server1.example.com:4000,server2.example.com:4000\"`

security_protocol

(required) Security protocol for Elasticsearch

Allowed values are: 'PLAIN', 'TLS'

authentication_type

(required) Authentication type for Elasticsearch.

Allowed values are: 'NONE', 'BASIC'

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_ELASTICSEARCH_CONNECTION_SUMMARY_T Type

Summary of the Elasticsearch Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_elasticsearch_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_elasticsearch_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_elasticsearch_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_elasticsearch_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Elasticsearch technology type.

servers

(required) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `\"server1.example.com:4000,server2.example.com:4000\"`

security_protocol

(required) Security protocol for Elasticsearch.

authentication_type

(required) Authentication type for Elasticsearch.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_ERROR_T Type

Error information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_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_GOLDEN_GATE_EXPORT_DEPLOYMENT_WALLET_DETAILS_T Type

Metadata required to export wallet from deployment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_export_deployment_wallet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  vault_id varchar2(32767),
  master_encryption_key_id varchar2(32767),
  secret_name varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_export_deployment_wallet_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_export_deployment_wallet_details_t (
    vault_id varchar2,
    master_encryption_key_id varchar2,
    secret_name varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

vault_id

(required) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

master_encryption_key_id

(required) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

secret_name

(required) Name of the secret with which secret is shown in vault

description

(optional) Metadata about this specific object.

DBMS_CLOUD_OCI_GOLDEN_GATE_GENERIC_CONNECTION_T Type

Represents the metadata of a Generic Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_generic_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  host varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_generic_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_generic_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    host varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_generic_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Generic technology type.

Allowed values are: 'GENERIC'

host

(required) Host and port separated by colon. Example: `\"server.example.com:1234\"` For multiple hosts, provide a comma separated list. Example: `\"server1.example.com:1000,server1.example.com:2000\"`

DBMS_CLOUD_OCI_GOLDEN_GATE_GENERIC_CONNECTION_SUMMARY_T Type

Summary of the Generic Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_generic_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  host varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_generic_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_generic_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    host varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_generic_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Generic technology type.

host

(required) Host and port separated by colon. Example: `\"server.example.com:1234\"` For multiple hosts, provide a comma separated list. Example: `\"server1.example.com:1000,server1.example.com:2000\"`

DBMS_CLOUD_OCI_GOLDEN_GATE_GOLDEN_GATE_CONNECTION_T Type

Represents the metadata of a GoldenGate Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_golden_gate_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  deployment_id varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_golden_gate_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_golden_gate_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    deployment_id varchar2,
    host varchar2,
    port number,
    username varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_golden_gate_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The GoldenGate technology type.

Allowed values are: 'GOLDENGATE'

deployment_id

(optional) The OCID of the deployment being referenced.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

username

(optional) The username credential existing in the Oracle GoldenGate used to be connected to.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_GOLDEN_GATE_CONNECTION_SUMMARY_T Type

Summary of the GoldenGate Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_golden_gate_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  deployment_id varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_golden_gate_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_golden_gate_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    deployment_id varchar2,
    host varchar2,
    port number,
    username varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_golden_gate_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The GoldenGate technology type.

deployment_id

(optional) The OCID of the deployment being referenced.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

username

(optional) The username credential existing in the Oracle GoldenGate used to be connected to.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_GOOGLE_BIG_QUERY_CONNECTION_T Type

Represents the metadata of a Google BigQuery Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_google_big_query_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_big_query_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_big_query_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_google_big_query_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Google BigQuery technology type.

Allowed values are: 'GOOGLE_BIGQUERY'

DBMS_CLOUD_OCI_GOLDEN_GATE_GOOGLE_BIG_QUERY_CONNECTION_SUMMARY_T Type

Summary of the Google BigQuery Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_google_big_query_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_big_query_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_big_query_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_google_big_query_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Google BigQuery technology type.

DBMS_CLOUD_OCI_GOLDEN_GATE_GOOGLE_CLOUD_STORAGE_CONNECTION_T Type

Represents the metadata of a Google Cloud Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_google_cloud_storage_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_cloud_storage_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_cloud_storage_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_google_cloud_storage_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Google Cloud Storage technology type.

Allowed values are: 'GOOGLE_CLOUD_STORAGE'

DBMS_CLOUD_OCI_GOLDEN_GATE_GOOGLE_CLOUD_STORAGE_CONNECTION_SUMMARY_T Type

Summary of the Google Cloud Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_google_cloud_storage_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_cloud_storage_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_google_cloud_storage_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_google_cloud_storage_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Google Cloud Storage technology type.

DBMS_CLOUD_OCI_GOLDEN_GATE_HDFS_CONNECTION_T Type

Represents the metadata of a Hadoop Distributed File System Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_hdfs_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_hdfs_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_hdfs_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_hdfs_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Hadoop Distributed File System technology type.

Allowed values are: 'HDFS'

DBMS_CLOUD_OCI_GOLDEN_GATE_HDFS_CONNECTION_SUMMARY_T Type

Summary of the Hadoop Distributed File System Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_hdfs_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_hdfs_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_hdfs_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_hdfs_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Hadoop Distributed File System technology type.

DBMS_CLOUD_OCI_GOLDEN_GATE_IMPORT_DEPLOYMENT_WALLET_DETAILS_T Type

Metadata required to import wallet to deployment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_import_deployment_wallet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  vault_id varchar2(32767),
  new_wallet_secret_id varchar2(32767),
  wallet_backup_secret_name varchar2(32767),
  master_encryption_key_id varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_import_deployment_wallet_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_import_deployment_wallet_details_t (
    vault_id varchar2,
    new_wallet_secret_id varchar2,
    wallet_backup_secret_name varchar2,
    master_encryption_key_id varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

vault_id

(required) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

new_wallet_secret_id

(required) The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.

wallet_backup_secret_name

(optional) Name of the secret with which secret is shown in vault

master_encryption_key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

description

(optional) Metadata about this specific object.

DBMS_CLOUD_OCI_GOLDEN_GATE_JAVA_MESSAGE_SERVICE_CONNECTION_T Type

Represents the metadata of a Java Message Service Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_java_message_service_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  should_use_jndi number,
  jndi_connection_factory varchar2(32767),
  jndi_provider_url varchar2(32767),
  jndi_initial_context_factory varchar2(32767),
  jndi_security_principal varchar2(32767),
  connection_url varchar2(32767),
  connection_factory varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_java_message_service_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_java_message_service_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    should_use_jndi number,
    jndi_connection_factory varchar2,
    jndi_provider_url varchar2,
    jndi_initial_context_factory varchar2,
    jndi_security_principal varchar2,
    connection_url varchar2,
    connection_factory varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_java_message_service_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Java Message Service technology type.

Allowed values are: 'ORACLE_WEBLOGIC_JMS'

should_use_jndi

(required) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.

jndi_connection_factory

(optional) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'

jndi_provider_url

(optional) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'

jndi_initial_context_factory

(optional) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'

jndi_security_principal

(optional) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'

connection_url

(optional) Connectin URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'

connection_factory

(optional) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'

security_protocol

(optional) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.

Allowed values are: 'PLAIN', 'TLS', 'MTLS'

authentication_type

(optional) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.

Allowed values are: 'NONE', 'BASIC'

username

(optional) The username Oracle GoldenGate uses to connect to the Java Message Service. This username must already exist and be available by the Java Message Service to be connected to.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_JAVA_MESSAGE_SERVICE_CONNECTION_SUMMARY_T Type

Summary of the Java Message Service Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_java_message_service_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  should_use_jndi number,
  jndi_connection_factory varchar2(32767),
  jndi_provider_url varchar2(32767),
  jndi_initial_context_factory varchar2(32767),
  jndi_security_principal varchar2(32767),
  connection_url varchar2(32767),
  connection_factory varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_java_message_service_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_java_message_service_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    should_use_jndi number,
    jndi_connection_factory varchar2,
    jndi_provider_url varchar2,
    jndi_initial_context_factory varchar2,
    jndi_security_principal varchar2,
    connection_url varchar2,
    connection_factory varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_java_message_service_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Java Message Service technology type.

should_use_jndi

(required) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.

jndi_connection_factory

(optional) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'

jndi_provider_url

(optional) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'

jndi_initial_context_factory

(optional) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'

jndi_security_principal

(optional) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'

connection_url

(optional) Connectin URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'

connection_factory

(optional) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'

security_protocol

(optional) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.

authentication_type

(optional) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.

username

(optional) The username Oracle GoldenGate uses to connect to the Java Message Service. This username must already exist and be available by the Java Message Service to be connected to.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_KAFKA_CONNECTION_T Type

Represents the metadata of a Kafka Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_kafka_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  stream_pool_id varchar2(32767),
  bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
  security_protocol varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    stream_pool_id varchar2,
    bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
    security_protocol varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_kafka_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Kafka technology type.

Allowed values are: 'APACHE_KAFKA', 'AZURE_EVENT_HUBS', 'CONFLUENT_KAFKA', 'OCI_STREAMING'

stream_pool_id

(optional) The OCID of the stream pool being referenced.

bootstrap_servers

(optional) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `\"server1.example.com:9092,server2.example.com:9092\"`

security_protocol

(optional) Kafka security protocol.

Allowed values are: 'SSL', 'SASL_SSL', 'PLAINTEXT', 'SASL_PLAINTEXT'

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_KAFKA_CONNECTION_SUMMARY_T Type

Summary of the Kafka Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_kafka_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  stream_pool_id varchar2(32767),
  bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
  security_protocol varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    stream_pool_id varchar2,
    bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
    security_protocol varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_kafka_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Kafka technology type.

stream_pool_id

(optional) The OCID of the stream pool being referenced.

bootstrap_servers

(optional) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `\"server1.example.com:9092,server2.example.com:9092\"`

security_protocol

(optional) Security Type for Kafka.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_KAFKA_SCHEMA_REGISTRY_CONNECTION_T Type

Represents the metadata of a Kafka (e.g. Confluent) Schema Registry Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    url varchar2,
    authentication_type varchar2,
    username varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Kafka (e.g. Confluent) Schema Registry technology type.

Allowed values are: 'CONFLUENT_SCHEMA_REGISTRY'

url

(required) Kafka Schema Registry URL.

authentication_type

(required) Used authentication mechanism to access Schema Registry.

Allowed values are: 'NONE', 'BASIC', 'MUTUAL'

username

(optional) The username to access Schema Registry using basic authentation. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_KAFKA_SCHEMA_REGISTRY_CONNECTION_SUMMARY_T Type

Summary of the Kafka (e.g. Confluent) Schema Registry Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    url varchar2,
    authentication_type varchar2,
    username varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_kafka_schema_registry_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Kafka (e.g. Confluent) Schema Registry technology type.

url

(required) Kafka Schema Registry URL.

authentication_type

(required) Used authentication mechanism to access Schema Registry.

username

(optional) The username to access Schema Registry using basic authentation. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_MICROSOFT_SQLSERVER_CONNECTION_T Type

Represents the metadata of a Microsoft SQL Server Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  host varchar2(32767),
  port number,
  database_name varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_ca varchar2(32767),
  should_validate_server_certificate number,
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    host varchar2,
    port number,
    database_name varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_ca varchar2,
    should_validate_server_certificate number,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Microsoft SQL Server technology type.

Allowed values are: 'AMAZON_RDS_SQLSERVER', 'AZURE_SQLSERVER_MANAGED_INSTANCE', 'AZURE_SQLSERVER_NON_MANAGED_INSTANCE', 'GOOGLE_CLOUD_SQL_SQLSERVER', 'MICROSOFT_SQLSERVER'

username

(required) The username Oracle GoldenGate uses to connect to the Microsoft SQL Server. This username must already exist and be available by the Microsoft SQL Server to be connected to.

host

(required) The name or address of a host.

port

(required) The port of an endpoint usually specified for a connection.

database_name

(required) The name of the database.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(required) Security Protocol for Microsoft SQL Server.

Allowed values are: 'PLAIN', 'TLS'

ssl_ca

(optional) Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).

should_validate_server_certificate

(optional) If set to true, the driver validates the certificate that is sent by the database server.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_MICROSOFT_SQLSERVER_CONNECTION_SUMMARY_T Type

Summary of the Microsoft SQL Server Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_ca varchar2(32767),
  should_validate_server_certificate number,
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_ca varchar2,
    should_validate_server_certificate number,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_microsoft_sqlserver_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Microsoft SQL Server technology type.

database_name

(required) The name of the database.

host

(required) The name or address of a host.

port

(required) The port of an endpoint usually specified for a connection.

username

(required) The username Oracle GoldenGate uses to connect to the Microsoft SQL Server. This username must already exist and be available by the Microsoft SQL Server to be connected to.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(required) Security Type for Microsoft SQL Server.

ssl_ca

(optional) Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).

should_validate_server_certificate

(optional) If set to true, the driver validates the certificate that is sent by the database server.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_MONGO_DB_CONNECTION_T Type

Represents the metadata of a MongoDB Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_mongo_db_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  connection_string varchar2(32767),
  username varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mongo_db_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mongo_db_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_string varchar2,
    username varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_mongo_db_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The MongoDB technology type.

Allowed values are: 'MONGODB', 'OCI_AUTONOMOUS_JSON_DATABASE', 'AZURE_COSMOS_DB_FOR_MONGODB'

connection_string

(optional) MongoDB connection string. e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'

username

(optional) The username Oracle GoldenGate uses to connect to the database. This username must already exist and be available by the database to be connected to.

database_id

(optional) The OCID of the Oracle Autonomous Json Database.

DBMS_CLOUD_OCI_GOLDEN_GATE_MONGO_DB_CONNECTION_SUMMARY_T Type

Summary of the MongoDB Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_mongo_db_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  connection_string varchar2(32767),
  username varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mongo_db_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mongo_db_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_string varchar2,
    username varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_mongo_db_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The MongoDB technology type.

connection_string

(optional) MongoDB connection string. e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'

username

(optional) The username Oracle GoldenGate uses to connect to the database. This username must already exist and be available by the database to be connected to.

database_id

(optional) The OCID of the Oracle Autonomous Json Database.

DBMS_CLOUD_OCI_GOLDEN_GATE_MYSQL_CONNECTION_T Type

Represents the metadata of a MySQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_mysql_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  host varchar2(32767),
  port number,
  database_name varchar2(32767),
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  private_ip varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  db_system_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mysql_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mysql_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    host varchar2,
    port number,
    database_name varchar2,
    security_protocol varchar2,
    ssl_mode varchar2,
    private_ip varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    db_system_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_mysql_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The MySQL technology type.

Allowed values are: 'AMAZON_AURORA_MYSQL', 'AMAZON_RDS_MARIADB', 'AMAZON_RDS_MYSQL', 'AZURE_MYSQL', 'GOOGLE_CLOUD_SQL_MYSQL', 'MARIADB', 'MYSQL_SERVER', 'OCI_MYSQL', 'SINGLESTOREDB', 'SINGLESTOREDB_CLOUD'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

database_name

(optional) The name of the database.

security_protocol

(required) Security Protocol for MySQL.

Allowed values are: 'PLAIN', 'TLS', 'MTLS'

ssl_mode

(optional) SSL modes for MySQL.

Allowed values are: 'DISABLED', 'PREFERRED', 'REQUIRED', 'VERIFY_CA', 'VERIFY_IDENTITY'

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

db_system_id

(optional) The OCID of the database system being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_MYSQL_CONNECTION_SUMMARY_T Type

Summary of the MySQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_mysql_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  host varchar2(32767),
  port number,
  database_name varchar2(32767),
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  private_ip varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  db_system_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mysql_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_mysql_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    host varchar2,
    port number,
    database_name varchar2,
    security_protocol varchar2,
    ssl_mode varchar2,
    private_ip varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    db_system_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_mysql_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The MySQL technology type.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

database_name

(optional) The name of the database.

security_protocol

(required) Security Type for MySQL.

ssl_mode

(optional) SSL modes for MySQL.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

db_system_id

(optional) The OCID of the database system being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_OCI_OBJECT_STORAGE_CONNECTION_T Type

Represents the metadata of an OCI Object Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_oci_object_storage_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oci_object_storage_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oci_object_storage_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_oci_object_storage_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The OCI Object Storage technology type.

Allowed values are: 'OCI_OBJECT_STORAGE'

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(required) The OCID of the OCI user who will access the Object Storage. The user must have write access to the bucket they want to connect to.

DBMS_CLOUD_OCI_GOLDEN_GATE_OCI_OBJECT_STORAGE_CONNECTION_SUMMARY_T Type

Summary of the OCI Object Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_oci_object_storage_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oci_object_storage_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oci_object_storage_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_oci_object_storage_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The OCI Object Storage technology type.

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(required) The OCID of the OCI user who will access the Object Storage. The user must have write access to the bucket they want to connect to.

DBMS_CLOUD_OCI_GOLDEN_GATE_ORACLE_CONNECTION_T Type

Represents the metadata of an Oracle Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_oracle_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  connection_string varchar2(32767),
  session_mode varchar2(32767),
  private_ip varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    connection_string varchar2,
    session_mode varchar2,
    private_ip varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_oracle_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Oracle technology type.

Allowed values are: 'AMAZON_RDS_ORACLE', 'OCI_AUTONOMOUS_DATABASE', 'ORACLE_DATABASE', 'ORACLE_EXADATA'

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

connection_string

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

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

Allowed values are: 'DIRECT', 'REDIRECT'

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

database_id

(optional) The OCID of the database being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_ORACLE_CONNECTION_SUMMARY_T Type

Summary of the Oracle Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_oracle_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  username varchar2(32767),
  connection_string varchar2(32767),
  session_mode varchar2(32767),
  private_ip varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    username varchar2,
    connection_string varchar2,
    session_mode varchar2,
    private_ip varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_oracle_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Oracle technology type.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

connection_string

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

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

database_id

(optional) The OCID of the database being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_ORACLE_NOSQL_CONNECTION_T Type

Represents the metadata of an Oracle NoSQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_oracle_nosql_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_nosql_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_nosql_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_oracle_nosql_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Oracle NoSQL technology type.

Allowed values are: 'ORACLE_NOSQL'

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(required) The OCID of the OCI user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to.

DBMS_CLOUD_OCI_GOLDEN_GATE_ORACLE_NOSQL_CONNECTION_SUMMARY_T Type

Summary of the Oracle NoSQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_oracle_nosql_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_nosql_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_oracle_nosql_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_oracle_nosql_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Oracle NoSQL technology type.

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(required) The OCID of the OCI user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to.

DBMS_CLOUD_OCI_GOLDEN_GATE_POSTGRESQL_CONNECTION_T Type

Represents the metadata of a PostgreSQL Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_postgresql_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_postgresql_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_postgresql_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_mode varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_postgresql_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The PostgreSQL technology type.

Allowed values are: 'POSTGRESQL_SERVER', 'AMAZON_AURORA_POSTGRESQL', 'AMAZON_RDS_POSTGRESQL', 'AZURE_POSTGRESQL', 'GOOGLE_CLOUD_SQL_POSTGRESQL'

database_name

(required) The name of the database.

host

(required) The name or address of a host.

port

(required) The port of an endpoint usually specified for a connection.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(required) Security protocol for PostgreSQL.

Allowed values are: 'PLAIN', 'TLS', 'MTLS'

ssl_mode

(optional) SSL mode for PostgreSQL.

Allowed values are: 'PREFER', 'REQUIRE', 'VERIFY_CA', 'VERIFY_FULL'

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_POSTGRESQL_CONNECTION_SUMMARY_T Type

Summary of the PostgreSQL Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_postgresql_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_postgresql_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_postgresql_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_mode varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_postgresql_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The PostgreSQL technology type.

database_name

(required) The name of the database.

host

(required) The name or address of a host.

port

(required) The port of an endpoint usually specified for a connection.

username

(required) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(required) Security protocol for PostgreSQL.

ssl_mode

(optional) SSL modes for PostgreSQL.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_REDIS_CONNECTION_T Type

Represents the metadata of a Redis Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_redis_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_redis_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_redis_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_redis_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Redis technology type.

Allowed values are: 'REDIS'

servers

(required) Comma separated list of Redis server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 6379. Used for establishing the initial connection to the Redis cluster. Example: `\"server1.example.com:6379,server2.example.com:6379\"`

security_protocol

(required) Security protocol for Redis

Allowed values are: 'PLAIN', 'TLS', 'MTLS'

authentication_type

(required) Authentication type for Redis.

Allowed values are: 'NONE', 'BASIC'

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_REDIS_CONNECTION_SUMMARY_T Type

Summary of the Redis Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_redis_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_redis_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_redis_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_redis_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Redis technology type.

servers

(required) Comma separated list of Redis server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 6379. Used for establishing the initial connection to the Redis cluster. Example: `\"server1.example.com:6379,server2.example.com:6379\"`

security_protocol

(required) Security protocol for Redis.

authentication_type

(required) Authenticationentication type for the Redis database.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

DBMS_CLOUD_OCI_GOLDEN_GATE_RESCHEDULE_DEPLOYMENT_UPGRADE_DETAILS_T Type

The information about canceling.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deploymentUpgrade reschedule.

Allowed values are: 'RESCHEDULE_TO_DATE'

DBMS_CLOUD_OCI_GOLDEN_GATE_RESCHEDULE_DEPLOYMENT_UPGRADE_TO_DATE_DETAILS_T Type

Definition of the additional attributes for default deployment upgrade cancel.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_reschedule_deployment_upgrade_to_date_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_reschedule_deployment_upgrade_details_t (
  time_schedule timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_reschedule_deployment_upgrade_to_date_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_reschedule_deployment_upgrade_to_date_details_t (
    l_type varchar2,
    time_schedule timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_reschedule_deployment_upgrade_to_date_details_t is a subtype of the dbms_cloud_oci_golden_gate_reschedule_deployment_upgrade_details_t type.

Fields

Field Description

time_schedule

(required) The time of upgrade schedule. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_SNOWFLAKE_CONNECTION_T Type

Represents the metadata of a Snowflake Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_snowflake_connection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_t (
  technology_type varchar2(32767),
  connection_url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_snowflake_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_snowflake_connection_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_url varchar2,
    authentication_type varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_snowflake_connection_t is a subtype of the dbms_cloud_oci_golden_gate_connection_t type.

Fields

Field Description

technology_type

(required) The Snowflake technology type.

Allowed values are: 'SNOWFLAKE'

connection_url

(required) JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'

authentication_type

(required) Used authentication mechanism to access Snowflake.

Allowed values are: 'BASIC', 'KEY_PAIR'

username

(optional) The username Oracle GoldenGate uses to connect to Snowflake. This username must already exist and be available by Snowflake platform to be connected to.

DBMS_CLOUD_OCI_GOLDEN_GATE_SNOWFLAKE_CONNECTION_SUMMARY_T Type

Summary of the Snowflake Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_snowflake_connection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_connection_summary_t (
  technology_type varchar2(32767),
  connection_url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_snowflake_connection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_snowflake_connection_summary_t (
    connection_type varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    vault_id varchar2,
    key_id varchar2,
    ingress_ips dbms_cloud_oci_golden_gate_ingress_ip_details_tbl,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    technology_type varchar2,
    connection_url varchar2,
    authentication_type varchar2,
    username varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_snowflake_connection_summary_t is a subtype of the dbms_cloud_oci_golden_gate_connection_summary_t type.

Fields

Field Description

technology_type

(required) The Snowflake technology type.

connection_url

(required) JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'

authentication_type

(required) Used authentication mechanism to access Snowflake.

username

(optional) The username Oracle GoldenGate uses to connect to Snowflake. This username must already exist and be available by Snowflake platform to be connected to.

DBMS_CLOUD_OCI_GOLDEN_GATE_TEST_CONNECTION_ASSIGNMENT_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_test_connection_assignment_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  issue varchar2(32767),
  action varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_test_connection_assignment_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_test_connection_assignment_error_t (
    code varchar2,
    message varchar2,
    issue varchar2,
    action 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.

issue

(optional) The text describing the root cause of the reported issue.

action

(optional) The text describing the action required to fix the issue.

DBMS_CLOUD_OCI_GOLDEN_GATE_TEST_CONNECTION_ASSIGNMENT_RESULT_T Type

The result of the connectivity test performed between the GoldenGate deployment and the associated database / service.

Syntax

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

Fields

Field Description

result_type

(required) Type of the result (i.e. Success, Failure or Timeout).

Allowed values are: 'SUCCEEDED', 'FAILED', 'TIMED_OUT'

error

(optional)

DBMS_CLOUD_OCI_GOLDEN_GATE_TRAIL_FILE_SUMMARY_T Type

Summary of the TrailFiles.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_trail_file_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  trail_file_id varchar2(32767),
  display_name varchar2(32767),
  size_in_bytes number,
  time_last_updated timestamp with time zone,
  number_of_sequences number,
  min_sequence_number varchar2(32767),
  max_sequence_number varchar2(32767),
  producer varchar2(32767),
  consumers dbms_cloud_oci_golden_gate_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_file_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_file_summary_t (
    trail_file_id varchar2,
    display_name varchar2,
    size_in_bytes number,
    time_last_updated timestamp with time zone,
    number_of_sequences number,
    min_sequence_number varchar2,
    max_sequence_number varchar2,
    producer varchar2,
    consumers dbms_cloud_oci_golden_gate_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

trail_file_id

(required) The TrailFile Id.

display_name

(optional) An object's Display Name.

size_in_bytes

(optional) The size of the backup stored in object storage (in bytes)

time_last_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

number_of_sequences

(optional) Number of sequences for a specific trail file

min_sequence_number

(optional) Minimum sequence number

max_sequence_number

(optional) Maximum sequence number

producer

(optional) Producer Process Name if any.

consumers

(optional) array of consumer process names

DBMS_CLOUD_OCI_GOLDEN_GATE_TRAIL_FILE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_trail_file_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_trail_file_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_trail_file_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_TRAIL_FILE_COLLECTION_T Type

A list of TrailFiles.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_trail_file_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_last_fetched timestamp with time zone,
  items dbms_cloud_oci_golden_gate_trail_file_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_file_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_file_collection_t (
    time_last_fetched timestamp with time zone,
    items dbms_cloud_oci_golden_gate_trail_file_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_last_fetched

(required) The time the data was last fetched from the deployment. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

items

(required) An array of TrailFiles.

DBMS_CLOUD_OCI_GOLDEN_GATE_TRAIL_SEQUENCE_SUMMARY_T Type

Summary of the TrailSequences.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_trail_sequence_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  sequence_id varchar2(32767),
  display_name varchar2(32767),
  size_in_bytes number,
  time_last_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_sequence_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_sequence_summary_t (
    sequence_id varchar2,
    display_name varchar2,
    size_in_bytes number,
    time_last_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

sequence_id

(required) Sequence Id

display_name

(optional) An object's Display Name.

size_in_bytes

(optional) The size of the backup stored in object storage (in bytes)

time_last_updated

(optional) The time the resource was last updated. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_TRAIL_SEQUENCE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_trail_sequence_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_trail_sequence_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_trail_sequence_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_TRAIL_SEQUENCE_COLLECTION_T Type

A list of TrailSequences.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_trail_sequence_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_last_fetched timestamp with time zone,
  items dbms_cloud_oci_golden_gate_trail_sequence_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_sequence_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_trail_sequence_collection_t (
    time_last_fetched timestamp with time zone,
    items dbms_cloud_oci_golden_gate_trail_sequence_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_last_fetched

(required) The time the data was last fetched from the deployment. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

items

(required) An array of TrailSequences.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_CONNECTION_DETAILS_T Type

The information to update a Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  connection_type varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  vault_id varchar2(32767),
  key_id varchar2(32767),
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  subnet_id varchar2(32767),
  routing_method varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

connection_type

(optional) The connection type.

Allowed values are: 'GOLDENGATE', 'KAFKA', 'KAFKA_SCHEMA_REGISTRY', 'MYSQL', 'JAVA_MESSAGE_SERVICE', 'MICROSOFT_SQLSERVER', 'OCI_OBJECT_STORAGE', 'ORACLE', 'AZURE_DATA_LAKE_STORAGE', 'POSTGRESQL', 'AZURE_SYNAPSE_ANALYTICS', 'SNOWFLAKE', 'AMAZON_S3', 'HDFS', 'ORACLE_NOSQL', 'MONGODB', 'AMAZON_KINESIS', 'AMAZON_REDSHIFT', 'REDIS', 'ELASTICSEARCH', 'GENERIC', 'GOOGLE_CLOUD_STORAGE', 'GOOGLE_BIGQUERY'

display_name

(optional) An object's Display Name.

description

(optional) Metadata about this specific object.

freeform_tags

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

defined_tags

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

vault_id

(optional) Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

key_id

(optional) Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

subnet_id

(optional) The OCID of the target subnet of the dedicated connection.

routing_method

(optional) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.

Allowed values are: 'SHARED_SERVICE_ENDPOINT', 'SHARED_DEPLOYMENT_ENDPOINT', 'DEDICATED_ENDPOINT'

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_AMAZON_KINESIS_CONNECTION_DETAILS_T Type

The information to update a the Amazon Kinesis Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_amazon_kinesis_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  access_key_id varchar2(32767),
  secret_access_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_amazon_kinesis_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_amazon_kinesis_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    access_key_id varchar2,
    secret_access_key varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_amazon_kinesis_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

access_key_id

(optional) Access key ID to access the Amazon Kinesis.

secret_access_key

(optional) Secret access key to access the Amazon Kinesis.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_AMAZON_REDSHIFT_CONNECTION_DETAILS_T Type

The information to update a the Amazon Redshift Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_amazon_redshift_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  connection_url varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_amazon_redshift_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_amazon_redshift_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    connection_url varchar2,
    username varchar2,
    password varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_amazon_redshift_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

connection_url

(optional) Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_AMAZON_S3_CONNECTION_DETAILS_T Type

The information to update a the Amazon S3 Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_amazon_s3_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  access_key_id varchar2(32767),
  secret_access_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_amazon_s3_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_amazon_s3_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    access_key_id varchar2,
    secret_access_key varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_amazon_s3_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

access_key_id

(optional) Access key ID to access the Amazon S3 bucket. e.g.: \"this-is-not-the-secret\"

secret_access_key

(optional) Secret access key to access the Amazon S3 bucket. e.g.: \"this-is-not-the-secret\"

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_AZURE_DATA_LAKE_STORAGE_CONNECTION_DETAILS_T Type

The information to update a Azure Data Lake Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_azure_data_lake_storage_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  authentication_type varchar2(32767),
  account_name varchar2(32767),
  account_key varchar2(32767),
  sas_token varchar2(32767),
  azure_tenant_id varchar2(32767),
  client_id varchar2(32767),
  client_secret varchar2(32767),
  endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_azure_data_lake_storage_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_azure_data_lake_storage_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    authentication_type varchar2,
    account_name varchar2,
    account_key varchar2,
    sas_token varchar2,
    azure_tenant_id varchar2,
    client_id varchar2,
    client_secret varchar2,
    endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_azure_data_lake_storage_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

authentication_type

(optional) Used authentication mechanism to access Azure Data Lake Storage.

account_name

(optional) Sets the Azure storage account name.

account_key

(optional) Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ==

sas_token

(optional) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D

azure_tenant_id

(optional) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f

client_id

(optional) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d

client_secret

(optional) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1

endpoint

(optional) Azure Storage service endpoint. e.g: https://test.blob.core.windows.net

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_AZURE_SYNAPSE_CONNECTION_DETAILS_T Type

The information to update a Azure Synapse Analytics Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_azure_synapse_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  connection_string varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_azure_synapse_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_azure_synapse_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    connection_string varchar2,
    username varchar2,
    password varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_azure_synapse_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

connection_string

(optional) JDBC connection string. e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;'

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_DATABASE_REGISTRATION_DETAILS_T Type

The information to update a DatabaseRegistration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_database_registration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  fqdn varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  connection_string varchar2(32767),
  session_mode varchar2(32767),
  wallet varchar2(32767),
  alias_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_database_registration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_database_registration_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fqdn varchar2,
    username varchar2,
    password varchar2,
    connection_string varchar2,
    session_mode varchar2,
    wallet varchar2,
    alias_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) An object's Display Name.

description

(optional) Metadata about this specific object.

freeform_tags

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

defined_tags

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

fqdn

(optional) A three-label Fully Qualified Domain Name (FQDN) for a resource.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

connection_string

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

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

Allowed values are: 'DIRECT', 'REDIRECT'

wallet

(optional) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.

alias_name

(optional) Credential store alias.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_DEPLOYMENT_BACKUP_DETAILS_T Type

The information to use to update a Deployment Backup.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_deployment_backup_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_deployment_backup_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_deployment_backup_details_t (
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_OGG_DEPLOYMENT_DETAILS_T Type

Deployment Details for updating an OggDeployment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_ogg_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  credential_store varchar2(32767),
  identity_domain_id varchar2(32767),
  password_secret_id varchar2(32767),
  admin_username varchar2(32767),
  admin_password varchar2(32767),
  certificate varchar2(32767),
  key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_ogg_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_ogg_deployment_details_t (
    credential_store varchar2,
    identity_domain_id varchar2,
    password_secret_id varchar2,
    admin_username varchar2,
    admin_password varchar2,
    certificate varchar2,
    key varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

credential_store

(optional) The type of credential store for OGG.

Allowed values are: 'GOLDENGATE', 'IAM'

identity_domain_id

(optional) The OCID of the Identity Domain when IAM credential store is used.

password_secret_id

(optional) The OCID of the Secret where the deployment password is stored.

admin_username

(optional) The GoldenGate deployment console username.

admin_password

(optional) The password associated with the GoldenGate deployment console username. The password must be 8 to 30 characters long and must contain at least 1 uppercase, 1 lowercase, 1 numeric, and 1 special character. Special characters such as '$', '^', or '?' are not allowed. This field will be deprecated and replaced by \"passwordSecretId\".

certificate

(optional) A PEM-encoded SSL certificate.

key

(optional) A PEM-encoded private key.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_MAINTENANCE_WINDOW_DETAILS_T Type

Defines the maintenance window for update operation, when automatic actions can be performed.

Syntax

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

Fields

Field Description

day

(required) Days of the week.

Allowed values are: 'MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY', 'SUNDAY'

start_hour

(required) Start hour for maintenance period. Hour is in UTC.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_MAINTENANCE_CONFIGURATION_DETAILS_T Type

Defines the maintenance configuration for update operation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_maintenance_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_interim_release_auto_upgrade_enabled number,
  interim_release_upgrade_period_in_days number,
  bundle_release_upgrade_period_in_days number,
  major_release_upgrade_period_in_days number,
  security_patch_upgrade_period_in_days number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_maintenance_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_maintenance_configuration_details_t (
    is_interim_release_auto_upgrade_enabled number,
    interim_release_upgrade_period_in_days number,
    bundle_release_upgrade_period_in_days number,
    major_release_upgrade_period_in_days number,
    security_patch_upgrade_period_in_days number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_interim_release_auto_upgrade_enabled

(optional) By default auto upgrade for interim releases are not enabled. If auto-upgrade is enabled for interim release, you have to specify interimReleaseUpgradePeriodInDays too.

interim_release_upgrade_period_in_days

(optional) Defines auto upgrade period for interim releases. This period must be shorter or equal to bundle release upgrade period.

bundle_release_upgrade_period_in_days

(optional) Defines auto upgrade period for bundle releases. Manually configured period cannot be longer than service defined period for bundle releases. This period must be shorter or equal to major release upgrade period. Not passing this field during create will equate to using the service default.

major_release_upgrade_period_in_days

(optional) Defines auto upgrade period for major releases. Manually configured period cannot be longer than service defined period for major releases. Not passing this field during create will equate to using the service default.

security_patch_upgrade_period_in_days

(optional) Defines auto upgrade period for releases with security fix. Manually configured period cannot be longer than service defined period for security releases. Not passing this field during create will equate to using the service default.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_DEPLOYMENT_DETAILS_T Type

The information to use to update a Deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  license_model varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
  subnet_id varchar2(32767),
  is_public number,
  fqdn varchar2(32767),
  cpu_core_count number,
  is_auto_scaling_enabled number,
  ogg_data dbms_cloud_oci_golden_gate_update_ogg_deployment_details_t,
  maintenance_window dbms_cloud_oci_golden_gate_update_maintenance_window_details_t,
  maintenance_configuration dbms_cloud_oci_golden_gate_update_maintenance_configuration_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_deployment_details_t (
    display_name varchar2,
    license_model varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    is_public number,
    fqdn varchar2,
    cpu_core_count number,
    is_auto_scaling_enabled number,
    ogg_data dbms_cloud_oci_golden_gate_update_ogg_deployment_details_t,
    maintenance_window dbms_cloud_oci_golden_gate_update_maintenance_window_details_t,
    maintenance_configuration dbms_cloud_oci_golden_gate_update_maintenance_configuration_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) An object's Display Name.

license_model

(optional) The Oracle license model that applies to a Deployment.

Allowed values are: 'LICENSE_INCLUDED', 'BRING_YOUR_OWN_LICENSE'

description

(optional) Metadata about this specific object.

freeform_tags

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

defined_tags

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

nsg_ids

(optional) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.

subnet_id

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

is_public

(optional) True if this object is publicly available.

fqdn

(optional) A three-label Fully Qualified Domain Name (FQDN) for a resource.

cpu_core_count

(optional) The Minimum number of OCPUs to be made available for this Deployment.

is_auto_scaling_enabled

(optional) Indicates if auto scaling is enabled for the Deployment's CPU core count.

ogg_data

(optional)

maintenance_window

(optional)

maintenance_configuration

(optional)

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_ELASTICSEARCH_CONNECTION_DETAILS_T Type

The information to update a Elasticsearch Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_elasticsearch_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  fingerprint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_elasticsearch_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_elasticsearch_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    fingerprint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_elasticsearch_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

servers

(optional) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `\"server1.example.com:4000,server2.example.com:4000\"`

security_protocol

(optional) Security protocol for Elasticsearch.

authentication_type

(optional) Authentication type for Elasticsearch.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

fingerprint

(optional) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_GENERIC_CONNECTION_DETAILS_T Type

The information to update a Generic Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_generic_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  host varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_generic_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_generic_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    host varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_generic_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

host

(optional) Host and port separated by colon. Example: `\"server.example.com:1234\"` For multiple hosts, provide a comma separated list. Example: `\"server1.example.com:1000,server1.example.com:2000\"`

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_GOLDEN_GATE_CONNECTION_DETAILS_T Type

The information to update a GoldenGate Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_golden_gate_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  deployment_id varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  password varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_golden_gate_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_golden_gate_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    deployment_id varchar2,
    host varchar2,
    port number,
    username varchar2,
    password varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_golden_gate_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

deployment_id

(optional) The OCID of the deployment being referenced.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

username

(optional) The username credential existing in the Oracle GoldenGate used to be connected to.

password

(optional) The password used to connect to the Oracle GoldenGate accessed trough this connection.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_GOOGLE_BIG_QUERY_CONNECTION_DETAILS_T Type

The information to update a the Google BigQuery Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_google_big_query_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  service_account_key_file varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_google_big_query_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_google_big_query_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    service_account_key_file varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_google_big_query_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

service_account_key_file

(optional) The base64 encoded content of the service account key file containing the credentials required to use Google BigQuery.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_GOOGLE_CLOUD_STORAGE_CONNECTION_DETAILS_T Type

The information to update a the Google Cloud Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_google_cloud_storage_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  service_account_key_file varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_google_cloud_storage_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_google_cloud_storage_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    service_account_key_file varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_google_cloud_storage_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

service_account_key_file

(optional) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_HDFS_CONNECTION_DETAILS_T Type

The information to update a Hadoop Distributed File System Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_hdfs_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  core_site_xml varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_hdfs_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_hdfs_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    core_site_xml varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_hdfs_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

core_site_xml

(optional) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_JAVA_MESSAGE_SERVICE_CONNECTION_DETAILS_T Type

The information to update a Java Message Service Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_java_message_service_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  should_use_jndi number,
  jndi_connection_factory varchar2(32767),
  jndi_provider_url varchar2(32767),
  jndi_initial_context_factory varchar2(32767),
  jndi_security_principal varchar2(32767),
  jndi_security_credentials varchar2(32767),
  connection_url varchar2(32767),
  connection_factory varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  ssl_key_password varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_java_message_service_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_java_message_service_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    should_use_jndi number,
    jndi_connection_factory varchar2,
    jndi_provider_url varchar2,
    jndi_initial_context_factory varchar2,
    jndi_security_principal varchar2,
    jndi_security_credentials varchar2,
    connection_url varchar2,
    connection_factory varchar2,
    username varchar2,
    password varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2,
    ssl_key_password varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_java_message_service_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

should_use_jndi

(optional) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.

jndi_connection_factory

(optional) The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory'

jndi_provider_url

(optional) The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'

jndi_initial_context_factory

(optional) The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory'

jndi_security_principal

(optional) Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2'

jndi_security_credentials

(optional) The password associated to the principal.

connection_url

(optional) Connectin URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'

connection_factory

(optional) The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA'

username

(optional) The username Oracle GoldenGate uses to connect to the Java Message Service. This username must already exist and be available by the Java Message Service to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect the associated Java Message Service.

security_protocol

(optional) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.

authentication_type

(optional) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

ssl_key_password

(optional) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_KAFKA_CONNECTION_DETAILS_T Type

The information to update a Kafka Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_kafka_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  stream_pool_id varchar2(32767),
  bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
  security_protocol varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  ssl_key_password varchar2(32767),
  consumer_properties varchar2(32767),
  producer_properties varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_kafka_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_kafka_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    stream_pool_id varchar2,
    bootstrap_servers dbms_cloud_oci_golden_gate_kafka_bootstrap_server_tbl,
    security_protocol varchar2,
    username varchar2,
    password varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2,
    ssl_key_password varchar2,
    consumer_properties varchar2,
    producer_properties varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_kafka_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

stream_pool_id

(optional) The OCID of the stream pool being referenced.

bootstrap_servers

(optional) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `\"server1.example.com:9092,server2.example.com:9092\"`

security_protocol

(optional) Security Type for Kafka.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

ssl_key_password

(optional) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.

consumer_properties

(optional) The base64 encoded content of the consumer.properties file.

producer_properties

(optional) The base64 encoded content of the producer.properties file.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_KAFKA_SCHEMA_REGISTRY_CONNECTION_DETAILS_T Type

The information to update Kafka (e.g. Confluent) Schema Registry Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_kafka_schema_registry_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  ssl_key_password varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_kafka_schema_registry_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_kafka_schema_registry_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    url varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2,
    ssl_key_password varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_kafka_schema_registry_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

url

(optional) Kafka Schema Registry URL.

authentication_type

(optional) Used authentication mechanism to access Schema Registry.

username

(optional) The username to access Schema Registry using basic authentation. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.

password

(optional) The password to access Schema Registry using basic authentation. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

ssl_key_password

(optional) The password for the cert inside the KeyStore. In case it differs from the KeyStore password, it should be provided.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_MICROSOFT_SQLSERVER_CONNECTION_DETAILS_T Type

The information to update a Microsoft SQL Server Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_microsoft_sqlserver_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  password varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_ca varchar2(32767),
  should_validate_server_certificate number,
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_microsoft_sqlserver_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_microsoft_sqlserver_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    password varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_ca varchar2,
    should_validate_server_certificate number,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_microsoft_sqlserver_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

database_name

(optional) The name of the database.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

username

(optional) The username Oracle GoldenGate uses to connect to the Microsoft SQL Server. This username must already exist and be available by the Microsoft SQL Server to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect the associated Microsoft SQL Server.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(optional) Security Type for Microsoft SQL Server.

ssl_ca

(optional) Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).

should_validate_server_certificate

(optional) If set to true, the driver validates the certificate that is sent by the database server.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_MONGO_DB_CONNECTION_DETAILS_T Type

The information to update a MongoDB Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_mongo_db_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  connection_string varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_mongo_db_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_mongo_db_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    connection_string varchar2,
    username varchar2,
    password varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_mongo_db_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

connection_string

(optional) MongoDB connection string. e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'

username

(optional) The username Oracle GoldenGate uses to connect to the database. This username must already exist and be available by the database to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect the associated database.

database_id

(optional) The OCID of the Oracle Autonomous Json Database.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_MYSQL_CONNECTION_DETAILS_T Type

The information to update a MySQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_mysql_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  username varchar2(32767),
  password varchar2(32767),
  host varchar2(32767),
  port number,
  database_name varchar2(32767),
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  ssl_ca varchar2(32767),
  ssl_crl varchar2(32767),
  ssl_cert varchar2(32767),
  ssl_key varchar2(32767),
  private_ip varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  db_system_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_mysql_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_mysql_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    username varchar2,
    password varchar2,
    host varchar2,
    port number,
    database_name varchar2,
    security_protocol varchar2,
    ssl_mode varchar2,
    ssl_ca varchar2,
    ssl_crl varchar2,
    ssl_cert varchar2,
    ssl_key varchar2,
    private_ip varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    db_system_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_mysql_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

database_name

(optional) The name of the database.

security_protocol

(optional) Security Type for MySQL.

ssl_mode

(optional) SSL modes for MySQL.

ssl_ca

(optional) Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1 and 2-way SSL).

ssl_crl

(optional) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.

ssl_cert

(optional) Client Certificate - The base64 encoded content of a .pem or .crt file. containing the client public key (for 2-way SSL).

ssl_key

(optional) Client Key – The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

db_system_id

(optional) The OCID of the database system being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_OCI_OBJECT_STORAGE_CONNECTION_DETAILS_T Type

The information to update a OCI Object Storage Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_oci_object_storage_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  private_key_file varchar2(32767),
  private_key_passphrase varchar2(32767),
  public_key_fingerprint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_oci_object_storage_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_oci_object_storage_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2,
    private_key_file varchar2,
    private_key_passphrase varchar2,
    public_key_fingerprint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_oci_object_storage_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(optional) The OCID of the OCI user who will access the Object Storage. The user must have write access to the bucket they want to connect to.

private_key_file

(optional) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint.

private_key_passphrase

(optional) The passphrase of the private key.

public_key_fingerprint

(optional) The fingerprint of the API Key of the user specified by the userId.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_ORACLE_CONNECTION_DETAILS_T Type

The information to update an Oracle Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_oracle_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  username varchar2(32767),
  password varchar2(32767),
  connection_string varchar2(32767),
  wallet varchar2(32767),
  session_mode varchar2(32767),
  private_ip varchar2(32767),
  database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_oracle_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_oracle_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    username varchar2,
    password varchar2,
    connection_string varchar2,
    wallet varchar2,
    session_mode varchar2,
    private_ip varchar2,
    database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_oracle_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

connection_string

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

wallet

(optional) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.

session_mode

(optional) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

database_id

(optional) The OCID of the database being referenced.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_ORACLE_NOSQL_CONNECTION_DETAILS_T Type

The information to update a Oracle NoSQL Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_oracle_nosql_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  tenancy_id varchar2(32767),
  l_region varchar2(32767),
  user_id varchar2(32767),
  private_key_file varchar2(32767),
  private_key_passphrase varchar2(32767),
  public_key_fingerprint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_oracle_nosql_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_oracle_nosql_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    tenancy_id varchar2,
    l_region varchar2,
    user_id varchar2,
    private_key_file varchar2,
    private_key_passphrase varchar2,
    public_key_fingerprint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_oracle_nosql_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

tenancy_id

(optional) The OCID of the related OCI tenancy.

l_region

(optional) The name of the region. e.g.: us-ashburn-1

user_id

(optional) The OCID of the OCI user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to.

private_key_file

(optional) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint.

private_key_passphrase

(optional) The passphrase of the private key.

public_key_fingerprint

(optional) The fingerprint of the API Key of the user specified by the userId.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_POSTGRESQL_CONNECTION_DETAILS_T Type

The information to update a PostgreSQL Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_postgresql_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  database_name varchar2(32767),
  host varchar2(32767),
  port number,
  username varchar2(32767),
  password varchar2(32767),
  additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
  security_protocol varchar2(32767),
  ssl_mode varchar2(32767),
  ssl_ca varchar2(32767),
  ssl_crl varchar2(32767),
  ssl_cert varchar2(32767),
  ssl_key varchar2(32767),
  private_ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_postgresql_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_postgresql_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    database_name varchar2,
    host varchar2,
    port number,
    username varchar2,
    password varchar2,
    additional_attributes dbms_cloud_oci_golden_gate_name_value_pair_tbl,
    security_protocol varchar2,
    ssl_mode varchar2,
    ssl_ca varchar2,
    ssl_crl varchar2,
    ssl_cert varchar2,
    ssl_key varchar2,
    private_ip varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_postgresql_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

database_name

(optional) The name of the database.

host

(optional) The name or address of a host.

port

(optional) The port of an endpoint usually specified for a connection.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

additional_attributes

(optional) An array of name-value pair attribute entries. Used as additional parameters in connection string.

security_protocol

(optional) Security protocol for PostgreSQL.

ssl_mode

(optional) SSL modes for PostgreSQL.

ssl_ca

(optional) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.

ssl_crl

(optional) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA).

ssl_cert

(optional) The base64 encoded certificate of the PostgreSQL server. The supported file formats are .pem and .crt.

ssl_key

(optional) The base64 encoded private key of the PostgreSQL server. The supported file formats are .pem and .crt.

private_ip

(optional) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_REDIS_CONNECTION_DETAILS_T Type

The information to update a Redis Database Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_redis_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  servers varchar2(32767),
  security_protocol varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  trust_store varchar2(32767),
  trust_store_password varchar2(32767),
  key_store varchar2(32767),
  key_store_password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_redis_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_redis_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    servers varchar2,
    security_protocol varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    trust_store varchar2,
    trust_store_password varchar2,
    key_store varchar2,
    key_store_password varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_redis_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

servers

(optional) Comma separated list of Redis server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 6379. Used for establishing the initial connection to the Redis cluster. Example: `\"server1.example.com:6379,server2.example.com:6379\"`

security_protocol

(optional) Security protocol for Redis.

authentication_type

(optional) Authenticationentication type for the Redis database.

username

(optional) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.

password

(optional) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.

trust_store

(optional) The base64 encoded content of the TrustStore file.

trust_store_password

(optional) The TrustStore password.

key_store

(optional) The base64 encoded content of the KeyStore file.

key_store_password

(optional) The KeyStore password.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPDATE_SNOWFLAKE_CONNECTION_DETAILS_T Type

The information to update a Snowflake Connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_update_snowflake_connection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_update_connection_details_t (
  connection_url varchar2(32767),
  authentication_type varchar2(32767),
  username varchar2(32767),
  password varchar2(32767),
  private_key_file varchar2(32767),
  private_key_passphrase varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_snowflake_connection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_update_snowflake_connection_details_t (
    connection_type varchar2,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    vault_id varchar2,
    key_id varchar2,
    nsg_ids dbms_cloud_oci_golden_gate_varchar2_tbl,
    subnet_id varchar2,
    routing_method varchar2,
    connection_url varchar2,
    authentication_type varchar2,
    username varchar2,
    password varchar2,
    private_key_file varchar2,
    private_key_passphrase varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_update_snowflake_connection_details_t is a subtype of the dbms_cloud_oci_golden_gate_update_connection_details_t type.

Fields

Field Description

connection_url

(optional) JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'

authentication_type

(optional) Used authentication mechanism to access Snowflake.

username

(optional) The username Oracle GoldenGate uses to connect to Snowflake. This username must already exist and be available by Snowflake platform to be connected to.

password

(optional) The password Oracle GoldenGate uses to connect to Snowflake platform.

private_key_file

(optional) The base64 encoded content of private key file in PEM format.

private_key_passphrase

(optional) Password if the private key file is encrypted.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPGRADE_DEPLOYMENT_DETAILS_T Type

The information about the Upgrade for a Deployment.

Syntax

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

Fields

Field Description

l_type

(required) The type of a deployment upgrade

Allowed values are: 'CURRENT_RELEASE', 'SPECIFIC_RELEASE'

DBMS_CLOUD_OCI_GOLDEN_GATE_UPGRADE_DEPLOYMENT_CURRENT_RELEASE_DETAILS_T Type

Definition of the additional attributes for a Current Release upgrade.

Syntax

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

dbms_cloud_oci_golden_gate_upgrade_deployment_current_release_details_t is a subtype of the dbms_cloud_oci_golden_gate_upgrade_deployment_details_t type.

DBMS_CLOUD_OCI_GOLDEN_GATE_UPGRADE_DEPLOYMENT_SPECIFIC_RELEASE_DETAILS_T Type

Definition of the additional attributes for a Specific Release upgrade.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_upgrade_deployment_specific_release_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_golden_gate_upgrade_deployment_details_t (
  ogg_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_upgrade_deployment_specific_release_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_upgrade_deployment_specific_release_details_t (
    l_type varchar2,
    ogg_version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_golden_gate_upgrade_deployment_specific_release_details_t is a subtype of the dbms_cloud_oci_golden_gate_upgrade_deployment_details_t type.

Fields

Field Description

ogg_version

(required) Version of OGG

DBMS_CLOUD_OCI_GOLDEN_GATE_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_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_golden_gate_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_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. When you create, update, or delete a resource, it remains in the IN_PROGRESS state until work is complete for that resource. It then transitions 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 you perform a GET on to access the resource metadata.

DBMS_CLOUD_OCI_GOLDEN_GATE_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_golden_gate_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_golden_gate_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_GOLDEN_GATE_WORK_REQUEST_T Type

The API operations that create and configure GoldenGate resources do not take effect immediately. In these cases, the operation spawns an asynchronous workflow to fulfill the request. Work requests provide visibility into the status of these in-progress, long-running asynchronous workflows.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_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_golden_gate_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_golden_gate_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_golden_gate_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 work request's operation type.

Allowed values are: 'GOLDENGATE_DATABASE_REGISTRATION_CREATE', 'GOLDENGATE_DATABASE_REGISTRATION_UPDATE', 'GOLDENGATE_DATABASE_REGISTRATION_DELETE', 'GOLDENGATE_DATABASE_REGISTRATION_MOVE', 'GOLDENGATE_DEPLOYMENT_CREATE', 'GOLDENGATE_DEPLOYMENT_UPDATE', 'GOLDENGATE_DEPLOYMENT_DELETE', 'GOLDENGATE_DEPLOYMENT_MOVE', 'GOLDENGATE_DEPLOYMENT_RESTORE', 'GOLDENGATE_DEPLOYMENT_START', 'GOLDENGATE_DEPLOYMENT_STOP', 'GOLDENGATE_DEPLOYMENT_UPGRADE', 'GOLDENGATE_DEPLOYMENT_BACKUP_CREATE', 'GOLDENGATE_DEPLOYMENT_BACKUP_DELETE', 'GOLDENGATE_DEPLOYMENT_BACKUP_CANCEL', 'GOLDENGATE_DEPLOYMENT_BACKUP_COPY', 'GOLDENGATE_CONNECTION_CREATE', 'GOLDENGATE_CONNECTION_UPDATE', 'GOLDENGATE_CONNECTION_DELETE', 'GOLDENGATE_CONNECTION_MOVE', 'GOLDENGATE_CONNECTION_ASSIGNMENT_CREATE', 'GOLDENGATE_CONNECTION_ASSIGMNENT_DELETE', 'GOLDENGATE_DEPLOYMENT_DIAGNOSTIC_COLLECT', 'GOLDENGATE_DEPLOYMENT_WALLET_EXPORT', 'GOLDENGATE_DEPLOYMENT_WALLET_IMPORT', 'GOLDENGATE_DEPLOYMENT_UPGRADE_UPGRADE', 'GOLDENGATE_DEPLOYMENT_UPGRADE_ROLLBACK', 'GOLDENGATE_DEPLOYMENT_UPGRADE_SNOOZE', 'GOLDENGATE_DEPLOYMENT_CERTIFICATE_CREATE', 'GOLDENGATE_DEPLOYMENT_CERTIFICATE_DELETE'

status

(required) Status of current work request.

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

id

(required) The id of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.

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 request was created. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_started

(optional) The date and time the request was started. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

time_finished

(optional) The date and time the request was finished. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_golden_gate_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_golden_gate_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_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.us-phoenix-1.oraclecloud.com/Content/API/References/apierrors.htm).

message

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

l_timestamp

(required) The time the error occured. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

DBMS_CLOUD_OCI_GOLDEN_GATE_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_golden_gate_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_golden_gate_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_golden_gate_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. The format is defined by RFC3339, such as `2016-08-25T21:10:29.600Z`.

Was this article helpful?