google-cloud-oracle_database-v1 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/oracle_database/v1/oracle_database/client.rb +2672 -184
- data/lib/google/cloud/oracle_database/v1/oracle_database/operations.rb +2 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/paths.rb +152 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/client.rb +2444 -117
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/operations.rb +2 -0
- data/lib/google/cloud/oracle_database/v1/oracle_database/rest/service_stub.rb +1782 -373
- data/lib/google/cloud/oracle_database/v1/version.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/autonomous_database_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/database_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/db_system_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/exadata_infra_pb.rb +2 -1
- data/lib/google/cloud/oracledatabase/v1/exascale_db_storage_vault_pb.rb +1 -1
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_assignment_pb.rb +38 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_pb.rb +98 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_connection_type_pb.rb +28 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_environment_pb.rb +29 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_pb.rb +54 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_type_pb.rb +29 -0
- data/lib/google/cloud/oracledatabase/v1/goldengate_deployment_version_pb.rb +31 -0
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_pb.rb +8 -1
- data/lib/google/cloud/oracledatabase/v1/oracledatabase_services_pb.rb +47 -0
- data/lib/google/cloud/oracledatabase/v1/vm_cluster_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +4 -0
- data/proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb +84 -48
- data/proto_docs/google/cloud/oracledatabase/v1/database.rb +27 -1
- data/proto_docs/google/cloud/oracledatabase/v1/db_system.rb +6 -1
- data/proto_docs/google/cloud/oracledatabase/v1/exascale_db_storage_vault.rb +4 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection.rb +2238 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection_assignment.rb +300 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_connection_type.rb +186 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment.rb +712 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_environment.rb +145 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_type.rb +177 -0
- data/proto_docs/google/cloud/oracledatabase/v1/goldengate_deployment_version.rb +175 -0
- data/proto_docs/google/cloud/oracledatabase/v1/oracledatabase.rb +20 -2
- data/proto_docs/google/cloud/oracledatabase/v1/vm_cluster.rb +4 -4
- metadata +17 -3
|
@@ -0,0 +1,2238 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2026 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
module Google
|
|
21
|
+
module Cloud
|
|
22
|
+
module OracleDatabase
|
|
23
|
+
module V1
|
|
24
|
+
# Details of the GoldengateConnection resource.
|
|
25
|
+
# @!attribute [rw] name
|
|
26
|
+
# @return [::String]
|
|
27
|
+
# Identifier. The name of the GoldengateConnection resource in the following
|
|
28
|
+
# format:
|
|
29
|
+
# projects/\\{project}/locations/\\{region}/goldengateConnections/\\{goldengate_connection}
|
|
30
|
+
# @!attribute [rw] properties
|
|
31
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionProperties]
|
|
32
|
+
# Required. The properties of the GoldengateConnection.
|
|
33
|
+
# @!attribute [rw] gcp_oracle_zone
|
|
34
|
+
# @return [::String]
|
|
35
|
+
# Optional. The GCP Oracle zone where Oracle GoldengateConnection is hosted.
|
|
36
|
+
# Example: us-east4-b-r2.
|
|
37
|
+
# If not specified, the system will pick a zone based on availability.
|
|
38
|
+
# @!attribute [rw] labels
|
|
39
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
40
|
+
# Optional. The labels or tags associated with the GoldengateConnection.
|
|
41
|
+
# @!attribute [rw] odb_network
|
|
42
|
+
# @return [::String]
|
|
43
|
+
# Optional. The name of the OdbNetwork associated with the
|
|
44
|
+
# GoldengateConnection. The format is
|
|
45
|
+
# projects/\\{project}/locations/\\{location}/odbNetworks/\\{odb_network}.
|
|
46
|
+
# It is optional but if specified, this should match the parent ODBNetwork
|
|
47
|
+
# of the OdbSubnet.
|
|
48
|
+
# @!attribute [rw] odb_subnet
|
|
49
|
+
# @return [::String]
|
|
50
|
+
# Optional. The name of the OdbSubnet associated with the
|
|
51
|
+
# GoldengateConnection for IP allocation. Format:
|
|
52
|
+
# projects/\\{project}/locations/\\{location}/odbNetworks/\\{odb_network}/odbSubnets/\\{odb_subnet}
|
|
53
|
+
# @!attribute [r] entitlement_id
|
|
54
|
+
# @return [::String]
|
|
55
|
+
# Output only. The ID of the subscription entitlement associated with the
|
|
56
|
+
# GoldengateConnection.
|
|
57
|
+
# @!attribute [r] create_time
|
|
58
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
59
|
+
# Output only. The date and time that the GoldengateConnection was created.
|
|
60
|
+
# @!attribute [r] oci_url
|
|
61
|
+
# @return [::String]
|
|
62
|
+
# Output only. HTTPS link to OCI resources exposed to Customer via UI
|
|
63
|
+
# Interface.
|
|
64
|
+
class GoldengateConnection
|
|
65
|
+
include ::Google::Protobuf::MessageExts
|
|
66
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
67
|
+
|
|
68
|
+
# @!attribute [rw] key
|
|
69
|
+
# @return [::String]
|
|
70
|
+
# @!attribute [rw] value
|
|
71
|
+
# @return [::String]
|
|
72
|
+
class LabelsEntry
|
|
73
|
+
include ::Google::Protobuf::MessageExts
|
|
74
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# The properties of a GoldengateConnection.
|
|
79
|
+
# @!attribute [rw] oracle_connection_properties
|
|
80
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateOracleConnectionProperties]
|
|
81
|
+
# Properties for an Oracle Database Connection.
|
|
82
|
+
#
|
|
83
|
+
# Note: The following fields are mutually exclusive: `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
84
|
+
# @!attribute [rw] goldengate_connection_properties
|
|
85
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateGoldengateConnectionProperties]
|
|
86
|
+
# Properties for a Goldengate Connection.
|
|
87
|
+
#
|
|
88
|
+
# Note: The following fields are mutually exclusive: `goldengate_connection_properties`, `oracle_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
89
|
+
# @!attribute [rw] generic_connection_properties
|
|
90
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateGenericConnectionProperties]
|
|
91
|
+
# Properties for a Generic Connection.
|
|
92
|
+
#
|
|
93
|
+
# Note: The following fields are mutually exclusive: `generic_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
94
|
+
# @!attribute [rw] google_cloud_storage_connection_properties
|
|
95
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateGoogleCloudStorageConnectionProperties]
|
|
96
|
+
# Properties for a Google Cloud Storage Connection.
|
|
97
|
+
#
|
|
98
|
+
# Note: The following fields are mutually exclusive: `google_cloud_storage_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
99
|
+
# @!attribute [rw] google_big_query_connection_properties
|
|
100
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateGoogleBigQueryConnectionProperties]
|
|
101
|
+
# Properties for a Google BigQuery Connection.
|
|
102
|
+
#
|
|
103
|
+
# Note: The following fields are mutually exclusive: `google_big_query_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
104
|
+
# @!attribute [rw] mysql_connection_properties
|
|
105
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMysqlConnectionProperties]
|
|
106
|
+
# Properties for a Mysql Connection.
|
|
107
|
+
#
|
|
108
|
+
# Note: The following fields are mutually exclusive: `mysql_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
109
|
+
# @!attribute [rw] kafka_connection_properties
|
|
110
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateKafkaConnectionProperties]
|
|
111
|
+
# Properties for a Kafka Connection.
|
|
112
|
+
#
|
|
113
|
+
# Note: The following fields are mutually exclusive: `kafka_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
114
|
+
# @!attribute [rw] kafka_schema_registry_connection_properties
|
|
115
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateKafkaSchemaRegistryConnectionProperties]
|
|
116
|
+
# Properties for a Kafka Schema Registry Connection.
|
|
117
|
+
#
|
|
118
|
+
# Note: The following fields are mutually exclusive: `kafka_schema_registry_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
119
|
+
# @!attribute [rw] oci_object_storage_connection_properties
|
|
120
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateOciObjectStorageConnectionProperties]
|
|
121
|
+
# Properties for an OCI Object Storage Connection.
|
|
122
|
+
#
|
|
123
|
+
# Note: The following fields are mutually exclusive: `oci_object_storage_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
124
|
+
# @!attribute [rw] azure_data_lake_storage_connection_properties
|
|
125
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateAzureDataLakeStorageConnectionProperties]
|
|
126
|
+
# Properties for an Azure Data Lake Storage Connection.
|
|
127
|
+
#
|
|
128
|
+
# Note: The following fields are mutually exclusive: `azure_data_lake_storage_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
129
|
+
# @!attribute [rw] azure_synapse_analytics_connection_properties
|
|
130
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateAzureSynapseAnalyticsConnectionProperties]
|
|
131
|
+
# Properties for an Azure Synapse Analytics connection.
|
|
132
|
+
#
|
|
133
|
+
# Note: The following fields are mutually exclusive: `azure_synapse_analytics_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
134
|
+
# @!attribute [rw] postgresql_connection_properties
|
|
135
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengatePostgresqlConnectionProperties]
|
|
136
|
+
# Properties for a PostgreSQL connection.
|
|
137
|
+
#
|
|
138
|
+
# Note: The following fields are mutually exclusive: `postgresql_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
139
|
+
# @!attribute [rw] microsoft_sqlserver_connection_properties
|
|
140
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMicrosoftSqlserverConnectionProperties]
|
|
141
|
+
# Properties for a Microsoft SQL Server connection.
|
|
142
|
+
#
|
|
143
|
+
# Note: The following fields are mutually exclusive: `microsoft_sqlserver_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
144
|
+
# @!attribute [rw] amazon_s3_connection_properties
|
|
145
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateAmazonS3ConnectionProperties]
|
|
146
|
+
# Properties for an Amazon S3 connection.
|
|
147
|
+
#
|
|
148
|
+
# Note: The following fields are mutually exclusive: `amazon_s3_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
149
|
+
# @!attribute [rw] hdfs_connection_properties
|
|
150
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateHdfsConnectionProperties]
|
|
151
|
+
# Properties for an HDFS connection.
|
|
152
|
+
#
|
|
153
|
+
# Note: The following fields are mutually exclusive: `hdfs_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
154
|
+
# @!attribute [rw] java_message_service_connection_properties
|
|
155
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateJavaMessageServiceConnectionProperties]
|
|
156
|
+
# Properties for a Java Message Service connection.
|
|
157
|
+
#
|
|
158
|
+
# Note: The following fields are mutually exclusive: `java_message_service_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
159
|
+
# @!attribute [rw] mongodb_connection_properties
|
|
160
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMongodbConnectionProperties]
|
|
161
|
+
# Properties for a MongoDB connection.
|
|
162
|
+
#
|
|
163
|
+
# Note: The following fields are mutually exclusive: `mongodb_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
164
|
+
# @!attribute [rw] oracle_nosql_connection_properties
|
|
165
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateOracleNosqlConnectionProperties]
|
|
166
|
+
# Properties for an Oracle NoSQL connection.
|
|
167
|
+
#
|
|
168
|
+
# Note: The following fields are mutually exclusive: `oracle_nosql_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
169
|
+
# @!attribute [rw] snowflake_connection_properties
|
|
170
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateSnowflakeConnectionProperties]
|
|
171
|
+
# Properties for a Snowflake connection.
|
|
172
|
+
#
|
|
173
|
+
# Note: The following fields are mutually exclusive: `snowflake_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
174
|
+
# @!attribute [rw] amazon_redshift_connection_properties
|
|
175
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateAmazonRedshiftConnectionProperties]
|
|
176
|
+
# Properties for an Amazon Redshift connection.
|
|
177
|
+
#
|
|
178
|
+
# Note: The following fields are mutually exclusive: `amazon_redshift_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
179
|
+
# @!attribute [rw] elasticsearch_connection_properties
|
|
180
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateElasticsearchConnectionProperties]
|
|
181
|
+
# Properties for an Elasticsearch connection.
|
|
182
|
+
#
|
|
183
|
+
# Note: The following fields are mutually exclusive: `elasticsearch_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
184
|
+
# @!attribute [rw] amazon_kinesis_connection_properties
|
|
185
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateAmazonKinesisConnectionProperties]
|
|
186
|
+
# Properties for an Amazon Kinesis connection.
|
|
187
|
+
#
|
|
188
|
+
# Note: The following fields are mutually exclusive: `amazon_kinesis_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
189
|
+
# @!attribute [rw] db2_connection_properties
|
|
190
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDb2ConnectionProperties]
|
|
191
|
+
# Properties for a DB2 connection.
|
|
192
|
+
#
|
|
193
|
+
# Note: The following fields are mutually exclusive: `db2_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
194
|
+
# @!attribute [rw] redis_connection_properties
|
|
195
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateRedisConnectionProperties]
|
|
196
|
+
# Properties for a Redis connection.
|
|
197
|
+
#
|
|
198
|
+
# Note: The following fields are mutually exclusive: `redis_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
199
|
+
# @!attribute [rw] databricks_connection_properties
|
|
200
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDatabricksConnectionProperties]
|
|
201
|
+
# Properties for a Databricks connection.
|
|
202
|
+
#
|
|
203
|
+
# Note: The following fields are mutually exclusive: `databricks_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
204
|
+
# @!attribute [rw] google_pubsub_connection_properties
|
|
205
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateGooglePubsubConnectionProperties]
|
|
206
|
+
# Properties for a Google Pub/Sub connection.
|
|
207
|
+
#
|
|
208
|
+
# Note: The following fields are mutually exclusive: `google_pubsub_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
209
|
+
# @!attribute [rw] microsoft_fabric_connection_properties
|
|
210
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMicrosoftFabricConnectionProperties]
|
|
211
|
+
# Properties for a Microsoft Fabric connection.
|
|
212
|
+
#
|
|
213
|
+
# Note: The following fields are mutually exclusive: `microsoft_fabric_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `oracle_ai_data_platform_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
214
|
+
# @!attribute [rw] oracle_ai_data_platform_connection_properties
|
|
215
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateOracleAIDataPlatformConnectionProperties]
|
|
216
|
+
# Properties for an Oracle AI Data Platform connection.
|
|
217
|
+
#
|
|
218
|
+
# Note: The following fields are mutually exclusive: `oracle_ai_data_platform_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `iceberg_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
219
|
+
# @!attribute [rw] iceberg_connection_properties
|
|
220
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateIcebergConnectionProperties]
|
|
221
|
+
# Properties for an Iceberg connection.
|
|
222
|
+
#
|
|
223
|
+
# Note: The following fields are mutually exclusive: `iceberg_connection_properties`, `oracle_connection_properties`, `goldengate_connection_properties`, `generic_connection_properties`, `google_cloud_storage_connection_properties`, `google_big_query_connection_properties`, `mysql_connection_properties`, `kafka_connection_properties`, `kafka_schema_registry_connection_properties`, `oci_object_storage_connection_properties`, `azure_data_lake_storage_connection_properties`, `azure_synapse_analytics_connection_properties`, `postgresql_connection_properties`, `microsoft_sqlserver_connection_properties`, `amazon_s3_connection_properties`, `hdfs_connection_properties`, `java_message_service_connection_properties`, `mongodb_connection_properties`, `oracle_nosql_connection_properties`, `snowflake_connection_properties`, `amazon_redshift_connection_properties`, `elasticsearch_connection_properties`, `amazon_kinesis_connection_properties`, `db2_connection_properties`, `redis_connection_properties`, `databricks_connection_properties`, `google_pubsub_connection_properties`, `microsoft_fabric_connection_properties`, `oracle_ai_data_platform_connection_properties`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
224
|
+
# @!attribute [rw] connection_type
|
|
225
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionProperties::GoldengateConnectionType]
|
|
226
|
+
# Required. The connection type.
|
|
227
|
+
# @!attribute [r] ocid
|
|
228
|
+
# @return [::String]
|
|
229
|
+
# Output only. The [OCID] of the connection being
|
|
230
|
+
# referenced.
|
|
231
|
+
# @!attribute [rw] display_name
|
|
232
|
+
# @return [::String]
|
|
233
|
+
# Required. An object's Display Name.
|
|
234
|
+
# @!attribute [rw] description
|
|
235
|
+
# @return [::String]
|
|
236
|
+
# Optional. Metadata about this specific object.
|
|
237
|
+
# @!attribute [r] lifecycle_state
|
|
238
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionProperties::GoldengateConnectionLifecycleState]
|
|
239
|
+
# Output only. The lifecycle state of the connection.
|
|
240
|
+
# @!attribute [r] lifecycle_details
|
|
241
|
+
# @return [::String]
|
|
242
|
+
# Output only. Describes the object's current state in detail. For example,
|
|
243
|
+
# it can be used to provide actionable information for a resource in a Failed
|
|
244
|
+
# state.
|
|
245
|
+
# @!attribute [r] update_time
|
|
246
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
247
|
+
# Output only. The time the resource was last updated.
|
|
248
|
+
# @!attribute [rw] routing_method
|
|
249
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionProperties::GoldengateConnectionRoutingMethod]
|
|
250
|
+
# Optional. The routing method for the GoldengateConnection.
|
|
251
|
+
# @!attribute [r] ingress_ip_addresses
|
|
252
|
+
# @return [::Array<::String>]
|
|
253
|
+
# Output only. The Ingress IPs of the GoldengateConnection.
|
|
254
|
+
class GoldengateConnectionProperties
|
|
255
|
+
include ::Google::Protobuf::MessageExts
|
|
256
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
257
|
+
|
|
258
|
+
# Enum for Connection type.
|
|
259
|
+
module GoldengateConnectionType
|
|
260
|
+
# Connection type unspecified.
|
|
261
|
+
GOLDENGATE_CONNECTION_TYPE_UNSPECIFIED = 0
|
|
262
|
+
|
|
263
|
+
# Goldengate connection type.
|
|
264
|
+
GOLDENGATE = 1
|
|
265
|
+
|
|
266
|
+
# Kafka connection type.
|
|
267
|
+
KAFKA = 2
|
|
268
|
+
|
|
269
|
+
# Kafka schema registry connection type.
|
|
270
|
+
KAFKA_SCHEMA_REGISTRY = 3
|
|
271
|
+
|
|
272
|
+
# MySQL connection type.
|
|
273
|
+
MYSQL = 4
|
|
274
|
+
|
|
275
|
+
# Java message service connection type.
|
|
276
|
+
JAVA_MESSAGE_SERVICE = 5
|
|
277
|
+
|
|
278
|
+
# Microsoft SQL Server connection type.
|
|
279
|
+
MICROSOFT_SQLSERVER = 6
|
|
280
|
+
|
|
281
|
+
# OCI object storage connection type.
|
|
282
|
+
OCI_OBJECT_STORAGE = 7
|
|
283
|
+
|
|
284
|
+
# Oracle connection type.
|
|
285
|
+
ORACLE = 8
|
|
286
|
+
|
|
287
|
+
# Azure data lake storage connection type.
|
|
288
|
+
AZURE_DATA_LAKE_STORAGE = 9
|
|
289
|
+
|
|
290
|
+
# PostgreSQL connection type.
|
|
291
|
+
POSTGRESQL = 10
|
|
292
|
+
|
|
293
|
+
# Azure synapse analytics connection type.
|
|
294
|
+
AZURE_SYNAPSE_ANALYTICS = 11
|
|
295
|
+
|
|
296
|
+
# Snowflake connection type.
|
|
297
|
+
SNOWFLAKE = 12
|
|
298
|
+
|
|
299
|
+
# Amazon S3 connection type.
|
|
300
|
+
AMAZON_S3 = 13
|
|
301
|
+
|
|
302
|
+
# HDFS connection type.
|
|
303
|
+
HDFS = 14
|
|
304
|
+
|
|
305
|
+
# Oracle AI data platform connection type.
|
|
306
|
+
ORACLE_AI_DATA_PLATFORM = 15
|
|
307
|
+
|
|
308
|
+
# Oracle NoSQL connection type.
|
|
309
|
+
ORACLE_NOSQL = 16
|
|
310
|
+
|
|
311
|
+
# MongoDB connection type.
|
|
312
|
+
MONGODB = 17
|
|
313
|
+
|
|
314
|
+
# Amazon Kinesis connection type.
|
|
315
|
+
AMAZON_KINESIS = 18
|
|
316
|
+
|
|
317
|
+
# Amazon Redshift connection type.
|
|
318
|
+
AMAZON_REDSHIFT = 19
|
|
319
|
+
|
|
320
|
+
# DB2 connection type.
|
|
321
|
+
DB2 = 20
|
|
322
|
+
|
|
323
|
+
# Redis connection type.
|
|
324
|
+
REDIS = 21
|
|
325
|
+
|
|
326
|
+
# Elasticsearch connection type.
|
|
327
|
+
ELASTICSEARCH = 22
|
|
328
|
+
|
|
329
|
+
# Generic connection type.
|
|
330
|
+
GENERIC = 23
|
|
331
|
+
|
|
332
|
+
# Google Cloud Storage connection type.
|
|
333
|
+
GOOGLE_CLOUD_STORAGE = 24
|
|
334
|
+
|
|
335
|
+
# Google BigQuery connection type.
|
|
336
|
+
GOOGLE_BIGQUERY = 25
|
|
337
|
+
|
|
338
|
+
# Databricks connection type.
|
|
339
|
+
DATABRICKS = 26
|
|
340
|
+
|
|
341
|
+
# Google Pub/Sub connection type.
|
|
342
|
+
GOOGLE_PUBSUB = 27
|
|
343
|
+
|
|
344
|
+
# Microsoft Fabric connection type.
|
|
345
|
+
MICROSOFT_FABRIC = 28
|
|
346
|
+
|
|
347
|
+
# Iceberg connection type.
|
|
348
|
+
ICEBERG = 29
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
# Possible lifecycle states for connection.
|
|
352
|
+
module GoldengateConnectionLifecycleState
|
|
353
|
+
# Default unspecified value.
|
|
354
|
+
GOLDENGATE_CONNECTION_LIFECYCLE_STATE_UNSPECIFIED = 0
|
|
355
|
+
|
|
356
|
+
# Indicates that the resource is in provisioning state.
|
|
357
|
+
CREATING = 1
|
|
358
|
+
|
|
359
|
+
# Indicates that the resource is in active state.
|
|
360
|
+
ACTIVE = 2
|
|
361
|
+
|
|
362
|
+
# Indicates that the resource is in updating state.
|
|
363
|
+
UPDATING = 3
|
|
364
|
+
|
|
365
|
+
# Indicates that the resource is in deleting state.
|
|
366
|
+
DELETING = 4
|
|
367
|
+
|
|
368
|
+
# Indicates that the resource is in deleted state.
|
|
369
|
+
DELETED = 5
|
|
370
|
+
|
|
371
|
+
# Indicates that the resource is in failed state.
|
|
372
|
+
FAILED = 6
|
|
373
|
+
end
|
|
374
|
+
|
|
375
|
+
# The various routing methods of the GoldengateConnection.
|
|
376
|
+
module GoldengateConnectionRoutingMethod
|
|
377
|
+
# Default unspecified value.
|
|
378
|
+
GOLDENGATE_CONNECTION_ROUTING_METHOD_UNSPECIFIED = 0
|
|
379
|
+
|
|
380
|
+
# Network traffic flows from the assigned deployment's private endpoint
|
|
381
|
+
# through the deployment's subnet.
|
|
382
|
+
SHARED_DEPLOYMENT_ENDPOINT = 1
|
|
383
|
+
|
|
384
|
+
# A dedicated private endpoint is created in the target VCN subnet for
|
|
385
|
+
# the connection.
|
|
386
|
+
DEDICATED_ENDPOINT = 2
|
|
387
|
+
end
|
|
388
|
+
end
|
|
389
|
+
|
|
390
|
+
# The properties of Goldengate Oracle Database Connection.
|
|
391
|
+
# @!attribute [rw] password
|
|
392
|
+
# @return [::String]
|
|
393
|
+
# Optional. Input only. The password Oracle Goldengate uses in plain text.
|
|
394
|
+
#
|
|
395
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
396
|
+
# @!attribute [rw] password_secret_version
|
|
397
|
+
# @return [::String]
|
|
398
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
399
|
+
# Manager which contains the password Oracle Goldengate uses. Format:
|
|
400
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
401
|
+
#
|
|
402
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
403
|
+
# @!attribute [rw] technology_type
|
|
404
|
+
# @return [::String]
|
|
405
|
+
# Optional. The technology type.
|
|
406
|
+
# @!attribute [rw] username
|
|
407
|
+
# @return [::String]
|
|
408
|
+
# Optional. The username Oracle Goldengate uses to connect.
|
|
409
|
+
# @!attribute [rw] authentication_mode
|
|
410
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateOracleConnectionProperties::OracleAuthenticationMode]
|
|
411
|
+
# Optional. Authentication mode.
|
|
412
|
+
# @!attribute [rw] connection_string
|
|
413
|
+
# @return [::String]
|
|
414
|
+
# Optional. Connect descriptor or Easy Connect Naming method used to connect
|
|
415
|
+
# to a database.
|
|
416
|
+
# @!attribute [rw] session_mode
|
|
417
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateOracleConnectionProperties::SessionMode]
|
|
418
|
+
# Optional. The mode of the database connection session to be established by
|
|
419
|
+
# the data client.
|
|
420
|
+
# @!attribute [rw] gcp_oracle_database_id
|
|
421
|
+
# @return [::String]
|
|
422
|
+
# Optional. Autonomous AI Database instance id of database in Oracle Database
|
|
423
|
+
# @ Google Cloud. If gcp_oracle_database_id is provided, connection_string
|
|
424
|
+
# must be empty. Format:
|
|
425
|
+
# projects/\\{project}/locations/\\{location}/autonomousDatabases/\\{autonomous_database}
|
|
426
|
+
# @!attribute [rw] wallet_file
|
|
427
|
+
# @return [::String]
|
|
428
|
+
# Optional. The wallet contents Oracle Goldengate uses to make connections to
|
|
429
|
+
# a database. This attribute is expected to be base64 encoded.
|
|
430
|
+
class GoldengateOracleConnectionProperties
|
|
431
|
+
include ::Google::Protobuf::MessageExts
|
|
432
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
433
|
+
|
|
434
|
+
# Enum for Authentication mode.
|
|
435
|
+
module OracleAuthenticationMode
|
|
436
|
+
# Authentication mode not specified.
|
|
437
|
+
ORACLE_AUTHENTICATION_MODE_UNSPECIFIED = 0
|
|
438
|
+
|
|
439
|
+
# TLS authentication mode.
|
|
440
|
+
TLS = 1
|
|
441
|
+
|
|
442
|
+
# MTLS authentication mode.
|
|
443
|
+
MTLS = 2
|
|
444
|
+
end
|
|
445
|
+
|
|
446
|
+
# The various session modes of the GoldengateConnection.
|
|
447
|
+
module SessionMode
|
|
448
|
+
# Default unspecified value.
|
|
449
|
+
SESSION_MODE_UNSPECIFIED = 0
|
|
450
|
+
|
|
451
|
+
# Indicates that the resource is using direct session mode.
|
|
452
|
+
DIRECT = 1
|
|
453
|
+
|
|
454
|
+
# Indicates that the resource is using redirect session mode.
|
|
455
|
+
REDIRECT = 2
|
|
456
|
+
end
|
|
457
|
+
end
|
|
458
|
+
|
|
459
|
+
# The properties of GoldengateGoldengateConnectionProperties.
|
|
460
|
+
# @!attribute [rw] password
|
|
461
|
+
# @return [::String]
|
|
462
|
+
# Optional. Input only. The password used to connect to the Oracle
|
|
463
|
+
# Goldengate in plain text.
|
|
464
|
+
#
|
|
465
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
466
|
+
# @!attribute [rw] password_secret_version
|
|
467
|
+
# @return [::String]
|
|
468
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
469
|
+
# Manager which contains the password used to connect to the Oracle
|
|
470
|
+
# Goldengate. Format:
|
|
471
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
472
|
+
#
|
|
473
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
474
|
+
# @!attribute [rw] technology_type
|
|
475
|
+
# @return [::String]
|
|
476
|
+
# Optional. The technology type.
|
|
477
|
+
# @!attribute [rw] goldengate_deployment_id
|
|
478
|
+
# @return [::String]
|
|
479
|
+
# Optional. The name of the GoldengateDeployment associated with the
|
|
480
|
+
# GoldengateConnection.
|
|
481
|
+
# Format:
|
|
482
|
+
# projects/\\{project}/locations/\\{location}/goldengateDeployments/\\{goldengate_deployment}
|
|
483
|
+
# @!attribute [rw] host
|
|
484
|
+
# @return [::String]
|
|
485
|
+
# Optional. The host of the GoldengateConnection.
|
|
486
|
+
# @!attribute [rw] port
|
|
487
|
+
# @return [::Integer]
|
|
488
|
+
# Optional. The port of the GoldengateConnection.
|
|
489
|
+
# @!attribute [rw] username
|
|
490
|
+
# @return [::String]
|
|
491
|
+
# Optional. The username credential.
|
|
492
|
+
class GoldengateGoldengateConnectionProperties
|
|
493
|
+
include ::Google::Protobuf::MessageExts
|
|
494
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
# The properties of GoldengateGenericConnectionProperties.
|
|
498
|
+
# @!attribute [rw] technology_type
|
|
499
|
+
# @return [::String]
|
|
500
|
+
# Optional. The technology type.
|
|
501
|
+
# @!attribute [rw] host
|
|
502
|
+
# @return [::String]
|
|
503
|
+
# Optional. The host of the GenericConnection.
|
|
504
|
+
class GoldengateGenericConnectionProperties
|
|
505
|
+
include ::Google::Protobuf::MessageExts
|
|
506
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
# The properties of GoldengateGoogleCloudStorageConnectionProperties.
|
|
510
|
+
# @!attribute [rw] technology_type
|
|
511
|
+
# @return [::String]
|
|
512
|
+
# Optional. The technology type.
|
|
513
|
+
# @!attribute [rw] service_account_key_file
|
|
514
|
+
# @return [::String]
|
|
515
|
+
# Optional. The base64 encoded content of the service account key file
|
|
516
|
+
# containing the credentials required to use Google Cloud Storage.
|
|
517
|
+
class GoldengateGoogleCloudStorageConnectionProperties
|
|
518
|
+
include ::Google::Protobuf::MessageExts
|
|
519
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
520
|
+
end
|
|
521
|
+
|
|
522
|
+
# The properties of GoldengateGoogleBigQueryConnectionProperties.
|
|
523
|
+
# @!attribute [rw] technology_type
|
|
524
|
+
# @return [::String]
|
|
525
|
+
# Optional. The technology type.
|
|
526
|
+
# @!attribute [rw] service_account_key_file
|
|
527
|
+
# @return [::String]
|
|
528
|
+
# Optional. The base64 encoded content of the service account key file
|
|
529
|
+
# containing the credentials required to use Google BigQuery.
|
|
530
|
+
class GoldengateGoogleBigQueryConnectionProperties
|
|
531
|
+
include ::Google::Protobuf::MessageExts
|
|
532
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
533
|
+
end
|
|
534
|
+
|
|
535
|
+
# Properties of GoldengateMysqlConnection.
|
|
536
|
+
# @!attribute [rw] password
|
|
537
|
+
# @return [::String]
|
|
538
|
+
# Optional. Input only. The password Oracle Goldengate uses to connect to
|
|
539
|
+
# MySQL in plain text.
|
|
540
|
+
#
|
|
541
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
542
|
+
# @!attribute [rw] password_secret_version
|
|
543
|
+
# @return [::String]
|
|
544
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
545
|
+
# Manager which contains the password Oracle Goldengate uses to connect to
|
|
546
|
+
# MySQL. Format: projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
547
|
+
#
|
|
548
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
549
|
+
# @!attribute [rw] technology_type
|
|
550
|
+
# @return [::String]
|
|
551
|
+
# Optional. The technology type of MysqlConnection.
|
|
552
|
+
# @!attribute [rw] username
|
|
553
|
+
# @return [::String]
|
|
554
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
555
|
+
# system of the given technology.
|
|
556
|
+
# @!attribute [rw] host
|
|
557
|
+
# @return [::String]
|
|
558
|
+
# Optional. The name or address of a host.
|
|
559
|
+
# @!attribute [rw] port
|
|
560
|
+
# @return [::Integer]
|
|
561
|
+
# Optional. The port of an endpoint usually specified for a connection.
|
|
562
|
+
# @!attribute [rw] database
|
|
563
|
+
# @return [::String]
|
|
564
|
+
# Optional. The name of the database.
|
|
565
|
+
# @!attribute [rw] security_protocol
|
|
566
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMysqlConnectionProperties::MysqlSecurityProtocol]
|
|
567
|
+
# Optional. Security Type for MySQL.
|
|
568
|
+
# @!attribute [rw] ssl_mode
|
|
569
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMysqlConnectionProperties::SSLMode]
|
|
570
|
+
# Optional. SSL modes for MySQL.
|
|
571
|
+
# @!attribute [rw] ssl_ca_file
|
|
572
|
+
# @return [::String]
|
|
573
|
+
# Optional. Database Certificate - The base64 encoded content of a .pem or
|
|
574
|
+
# .crt file containing the server public key (for 1 and 2-way SSL).
|
|
575
|
+
# @!attribute [rw] ssl_crl_file
|
|
576
|
+
# @return [::String]
|
|
577
|
+
# Optional. The base64 encoded list of certificates revoked by the trusted
|
|
578
|
+
# certificate authorities (Trusted CA).
|
|
579
|
+
# @!attribute [rw] ssl_cert_file
|
|
580
|
+
# @return [::String]
|
|
581
|
+
# Optional. Client Certificate - The base64 encoded content of a .pem or .crt
|
|
582
|
+
# file containing the client public key (for 2-way SSL).
|
|
583
|
+
# @!attribute [rw] ssl_key_file
|
|
584
|
+
# @return [::String]
|
|
585
|
+
# Optional. Client Key - The base64 encoded content of a .pem or .crt file
|
|
586
|
+
# containing the client private key (for 2-way SSL).
|
|
587
|
+
# @!attribute [rw] additional_attributes
|
|
588
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::NameValuePair>]
|
|
589
|
+
# Optional. An array of name-value pair attribute entries.
|
|
590
|
+
# Used as additional parameters in connection string.
|
|
591
|
+
# @!attribute [rw] db_system_id
|
|
592
|
+
# @return [::String]
|
|
593
|
+
# Optional. The OCID of the database system being referenced.
|
|
594
|
+
class GoldengateMysqlConnectionProperties
|
|
595
|
+
include ::Google::Protobuf::MessageExts
|
|
596
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
597
|
+
|
|
598
|
+
# Enum for Security Type for MySQL.
|
|
599
|
+
module MysqlSecurityProtocol
|
|
600
|
+
# Security type not specified.
|
|
601
|
+
MYSQL_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
602
|
+
|
|
603
|
+
# Plain text communication.
|
|
604
|
+
PLAIN = 1
|
|
605
|
+
|
|
606
|
+
# Transport Layer Security.
|
|
607
|
+
TLS = 2
|
|
608
|
+
|
|
609
|
+
# Mutual Transport Layer Security.
|
|
610
|
+
MTLS = 3
|
|
611
|
+
end
|
|
612
|
+
|
|
613
|
+
# Enum for SSL modes for MySQL.
|
|
614
|
+
module SSLMode
|
|
615
|
+
# SSL mode not specified.
|
|
616
|
+
SSL_MODE_UNSPECIFIED = 0
|
|
617
|
+
|
|
618
|
+
# SSL is disabled.
|
|
619
|
+
DISABLED = 1
|
|
620
|
+
|
|
621
|
+
# SSL is preferred.
|
|
622
|
+
PREFERRED = 2
|
|
623
|
+
|
|
624
|
+
# SSL is required.
|
|
625
|
+
REQUIRED = 3
|
|
626
|
+
|
|
627
|
+
# SSL is required and certificate is verified.
|
|
628
|
+
VERIFY_CA = 4
|
|
629
|
+
|
|
630
|
+
# SSL is required and certificate and hostname are verified.
|
|
631
|
+
VERIFY_IDENTITY = 5
|
|
632
|
+
end
|
|
633
|
+
end
|
|
634
|
+
|
|
635
|
+
# The properties of GoldengateKafkaConnection.
|
|
636
|
+
# @!attribute [rw] password
|
|
637
|
+
# @return [::String]
|
|
638
|
+
# Optional. Input only. The password for Kafka basic/SASL auth in plain
|
|
639
|
+
# text.
|
|
640
|
+
#
|
|
641
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
642
|
+
# @!attribute [rw] password_secret_version
|
|
643
|
+
# @return [::String]
|
|
644
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
645
|
+
# Manager which contains the password for Kafka basic/SASL auth. Format:
|
|
646
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
647
|
+
#
|
|
648
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
649
|
+
# @!attribute [rw] trust_store_password
|
|
650
|
+
# @return [::String]
|
|
651
|
+
# Optional. Input only. The TrustStore password in plain text.
|
|
652
|
+
#
|
|
653
|
+
# Note: The following fields are mutually exclusive: `trust_store_password`, `trust_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
654
|
+
# @!attribute [rw] trust_store_password_secret_version
|
|
655
|
+
# @return [::String]
|
|
656
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
657
|
+
# Manager which contains the TrustStore password. Format:
|
|
658
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
659
|
+
#
|
|
660
|
+
# Note: The following fields are mutually exclusive: `trust_store_password_secret_version`, `trust_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
661
|
+
# @!attribute [rw] key_store_password
|
|
662
|
+
# @return [::String]
|
|
663
|
+
# Optional. Input only. The KeyStore password in plain text.
|
|
664
|
+
#
|
|
665
|
+
# Note: The following fields are mutually exclusive: `key_store_password`, `key_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
666
|
+
# @!attribute [rw] key_store_password_secret_version
|
|
667
|
+
# @return [::String]
|
|
668
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
669
|
+
# Manager which contains the KeyStore password. Format:
|
|
670
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
671
|
+
#
|
|
672
|
+
# Note: The following fields are mutually exclusive: `key_store_password_secret_version`, `key_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
673
|
+
# @!attribute [rw] ssl_key_password
|
|
674
|
+
# @return [::String]
|
|
675
|
+
# Optional. Input only. The password for the cert inside of the KeyStore in
|
|
676
|
+
# plain text.
|
|
677
|
+
#
|
|
678
|
+
# Note: The following fields are mutually exclusive: `ssl_key_password`, `ssl_key_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
679
|
+
# @!attribute [rw] ssl_key_password_secret_version
|
|
680
|
+
# @return [::String]
|
|
681
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
682
|
+
# Manager which contains the password for the cert inside of the KeyStore.
|
|
683
|
+
# Format: projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
684
|
+
#
|
|
685
|
+
# Note: The following fields are mutually exclusive: `ssl_key_password_secret_version`, `ssl_key_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
686
|
+
# @!attribute [rw] technology_type
|
|
687
|
+
# @return [::String]
|
|
688
|
+
# Optional. The technology type of KafkaConnection.
|
|
689
|
+
# @!attribute [rw] stream_pool_id
|
|
690
|
+
# @return [::String]
|
|
691
|
+
# Optional. The OCID of the stream pool being referenced.
|
|
692
|
+
# @!attribute [rw] cluster_id
|
|
693
|
+
# @return [::String]
|
|
694
|
+
# Optional. The OCID of the Kafka cluster being referenced from OCI Streaming
|
|
695
|
+
# with Apache Kafka.
|
|
696
|
+
# @!attribute [rw] bootstrap_servers
|
|
697
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::KafkaBootstrapServer>]
|
|
698
|
+
# Optional. Kafka bootstrap. Equivalent of bootstrap.servers configuration
|
|
699
|
+
# property in Kafka: list of KafkaBootstrapServer objects specified by
|
|
700
|
+
# host/port. Used for establishing the initial connection to the Kafka
|
|
701
|
+
# cluster. Example: "server1.example.com:9092,server2.example.com:9092"
|
|
702
|
+
# @!attribute [rw] security_protocol
|
|
703
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateKafkaConnectionProperties::KafkaSecurityProtocol]
|
|
704
|
+
# Optional. Security Type for Kafka.
|
|
705
|
+
# @!attribute [rw] username
|
|
706
|
+
# @return [::String]
|
|
707
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
708
|
+
# system of the given technology.
|
|
709
|
+
# @!attribute [rw] trust_store_file
|
|
710
|
+
# @return [::String]
|
|
711
|
+
# Optional. The base64 encoded content of the TrustStore file.
|
|
712
|
+
# @!attribute [rw] key_store_file
|
|
713
|
+
# @return [::String]
|
|
714
|
+
# Optional. The base64 encoded content of the KeyStore file.
|
|
715
|
+
# @!attribute [rw] consumer_properties_file
|
|
716
|
+
# @return [::String]
|
|
717
|
+
# Optional. The base64 encoded content of the consumer.properties file.
|
|
718
|
+
# @!attribute [rw] producer_properties_file
|
|
719
|
+
# @return [::String]
|
|
720
|
+
# Optional. The base64 encoded content of the producer.properties file.
|
|
721
|
+
# @!attribute [rw] use_resource_principal
|
|
722
|
+
# @return [::Boolean]
|
|
723
|
+
# Optional. Specifies that the user intends to authenticate to the instance
|
|
724
|
+
# using a resource principal. Applicable only for OCI Streaming connections.
|
|
725
|
+
class GoldengateKafkaConnectionProperties
|
|
726
|
+
include ::Google::Protobuf::MessageExts
|
|
727
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
728
|
+
|
|
729
|
+
# Enum for Security Type for Kafka.
|
|
730
|
+
module KafkaSecurityProtocol
|
|
731
|
+
# Security type not specified.
|
|
732
|
+
KAFKA_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
733
|
+
|
|
734
|
+
# SSL security protocol.
|
|
735
|
+
SSL = 1
|
|
736
|
+
|
|
737
|
+
# SASL SSL security protocol.
|
|
738
|
+
SASL_SSL = 2
|
|
739
|
+
|
|
740
|
+
# Plaintext security protocol.
|
|
741
|
+
PLAINTEXT = 3
|
|
742
|
+
|
|
743
|
+
# SASL Plaintext security protocol.
|
|
744
|
+
SASL_PLAINTEXT = 4
|
|
745
|
+
end
|
|
746
|
+
end
|
|
747
|
+
|
|
748
|
+
# The properties of GoldengateKafkaSchemaRegistryConnection.
|
|
749
|
+
# @!attribute [rw] password
|
|
750
|
+
# @return [::String]
|
|
751
|
+
# Optional. Input only. The password to access Schema Registry in plain
|
|
752
|
+
# text.
|
|
753
|
+
#
|
|
754
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
755
|
+
# @!attribute [rw] password_secret_version
|
|
756
|
+
# @return [::String]
|
|
757
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
758
|
+
# Manager which contains the password to access Schema Registry using basic
|
|
759
|
+
# authentication. Format:
|
|
760
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
761
|
+
#
|
|
762
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
763
|
+
# @!attribute [rw] trust_store_password
|
|
764
|
+
# @return [::String]
|
|
765
|
+
# Optional. Input only. The TrustStore password in plain text.
|
|
766
|
+
#
|
|
767
|
+
# Note: The following fields are mutually exclusive: `trust_store_password`, `trust_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
768
|
+
# @!attribute [rw] trust_store_password_secret_version
|
|
769
|
+
# @return [::String]
|
|
770
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
771
|
+
# Manager which contains the TrustStore password. Format:
|
|
772
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
773
|
+
#
|
|
774
|
+
# Note: The following fields are mutually exclusive: `trust_store_password_secret_version`, `trust_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
775
|
+
# @!attribute [rw] key_store_password
|
|
776
|
+
# @return [::String]
|
|
777
|
+
# Optional. Input only. The KeyStore password in plain text.
|
|
778
|
+
#
|
|
779
|
+
# Note: The following fields are mutually exclusive: `key_store_password`, `key_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
780
|
+
# @!attribute [rw] key_store_password_secret_version
|
|
781
|
+
# @return [::String]
|
|
782
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
783
|
+
# Manager which contains the KeyStore password. Format:
|
|
784
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
785
|
+
#
|
|
786
|
+
# Note: The following fields are mutually exclusive: `key_store_password_secret_version`, `key_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
787
|
+
# @!attribute [rw] ssl_key_password
|
|
788
|
+
# @return [::String]
|
|
789
|
+
# Optional. Input only. The password for the cert inside the KeyStore in
|
|
790
|
+
# plain text.
|
|
791
|
+
#
|
|
792
|
+
# Note: The following fields are mutually exclusive: `ssl_key_password`, `ssl_key_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
793
|
+
# @!attribute [rw] ssl_key_password_secret_version
|
|
794
|
+
# @return [::String]
|
|
795
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
796
|
+
# Manager which contains the password for the cert inside the KeyStore.
|
|
797
|
+
# Format: projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
798
|
+
#
|
|
799
|
+
# Note: The following fields are mutually exclusive: `ssl_key_password_secret_version`, `ssl_key_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
800
|
+
# @!attribute [rw] technology_type
|
|
801
|
+
# @return [::String]
|
|
802
|
+
# Optional. The technology type of KafkaSchemaRegistryConnection.
|
|
803
|
+
# @!attribute [rw] url
|
|
804
|
+
# @return [::String]
|
|
805
|
+
# Optional. Kafka Schema Registry URL.
|
|
806
|
+
# e.g.: 'https://server1.us.oracle.com:8081'
|
|
807
|
+
# @!attribute [rw] authentication_type
|
|
808
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateKafkaSchemaRegistryConnectionProperties::AuthenticationType]
|
|
809
|
+
# Optional. Used authentication mechanism to access Schema Registry.
|
|
810
|
+
# @!attribute [rw] username
|
|
811
|
+
# @return [::String]
|
|
812
|
+
# Optional. The username to access Schema Registry using basic
|
|
813
|
+
# authentication. This value is injected into
|
|
814
|
+
# 'schema.registry.basic.auth.user.info=user:password' configuration
|
|
815
|
+
# property.
|
|
816
|
+
# @!attribute [rw] trust_store_file
|
|
817
|
+
# @return [::String]
|
|
818
|
+
# Optional. The base64 encoded content of the TrustStore file.
|
|
819
|
+
# @!attribute [rw] key_store_file
|
|
820
|
+
# @return [::String]
|
|
821
|
+
# Optional. The base64 encoded content of the KeyStore file.
|
|
822
|
+
class GoldengateKafkaSchemaRegistryConnectionProperties
|
|
823
|
+
include ::Google::Protobuf::MessageExts
|
|
824
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
825
|
+
|
|
826
|
+
# Enum for authentication mechanism to access Schema Registry.
|
|
827
|
+
module AuthenticationType
|
|
828
|
+
# Authentication type not specified.
|
|
829
|
+
AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
830
|
+
|
|
831
|
+
# No authentication.
|
|
832
|
+
NONE = 1
|
|
833
|
+
|
|
834
|
+
# Basic authentication.
|
|
835
|
+
BASIC = 2
|
|
836
|
+
|
|
837
|
+
# Mutual authentication.
|
|
838
|
+
MUTUAL = 3
|
|
839
|
+
end
|
|
840
|
+
end
|
|
841
|
+
|
|
842
|
+
# The properties of GoldengateOciObjectStorageConnection.
|
|
843
|
+
# @!attribute [rw] technology_type
|
|
844
|
+
# @return [::String]
|
|
845
|
+
# Optional. The technology type of OciObjectStorageConnection.
|
|
846
|
+
# @!attribute [rw] tenancy_id
|
|
847
|
+
# @return [::String]
|
|
848
|
+
# Optional. The OCID of the related OCI tenancy.
|
|
849
|
+
# @!attribute [rw] region
|
|
850
|
+
# @return [::String]
|
|
851
|
+
# Optional. The name of the region of OCI Object Storage. e.g.: us-ashburn-1
|
|
852
|
+
# If the region is not provided, backend will default to the default region.
|
|
853
|
+
# @!attribute [rw] user_id
|
|
854
|
+
# @return [::String]
|
|
855
|
+
# Optional. The OCID of the OCI user who will access the Object Storage.
|
|
856
|
+
# The user must have write access to the bucket they want to connect to.
|
|
857
|
+
# @!attribute [rw] private_key_file
|
|
858
|
+
# @return [::String]
|
|
859
|
+
# Optional. The content of the private key file (PEM file)
|
|
860
|
+
# corresponding to the API key of the fingerprint.
|
|
861
|
+
# @!attribute [rw] private_key_passphrase_secret
|
|
862
|
+
# @return [::String]
|
|
863
|
+
# Optional. The passphrase of the private key.
|
|
864
|
+
# @!attribute [rw] public_key_fingerprint
|
|
865
|
+
# @return [::String]
|
|
866
|
+
# Optional. The fingerprint of the API Key of the user specified by the
|
|
867
|
+
# userId.
|
|
868
|
+
# @!attribute [rw] use_resource_principal
|
|
869
|
+
# @return [::Boolean]
|
|
870
|
+
# Optional. Specifies that the user intends to authenticate to the instance
|
|
871
|
+
# using a resource principal.
|
|
872
|
+
class GoldengateOciObjectStorageConnectionProperties
|
|
873
|
+
include ::Google::Protobuf::MessageExts
|
|
874
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
# The properties of GoldengateAzureDataLakeStorageConnection.
|
|
878
|
+
# @!attribute [rw] technology_type
|
|
879
|
+
# @return [::String]
|
|
880
|
+
# Optional. The technology type of AzureDataLakeStorageConnection.
|
|
881
|
+
# @!attribute [rw] authentication_type
|
|
882
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateAzureDataLakeStorageConnectionProperties::AuthenticationType]
|
|
883
|
+
# Optional. Authentication mechanism to access Azure Data Lake Storage.
|
|
884
|
+
# @!attribute [rw] account
|
|
885
|
+
# @return [::String]
|
|
886
|
+
# Optional. Sets the Azure storage account name.
|
|
887
|
+
# @!attribute [rw] account_key_secret
|
|
888
|
+
# @return [::String]
|
|
889
|
+
# Optional. Azure storage account key. This property is required when
|
|
890
|
+
# 'authentication_type' is set to 'SHARED_KEY'.
|
|
891
|
+
# @!attribute [rw] sas_token_secret
|
|
892
|
+
# @return [::String]
|
|
893
|
+
# Optional. Credential that uses a shared access signature (SAS) to
|
|
894
|
+
# authenticate to an Azure Service.
|
|
895
|
+
# @!attribute [rw] azure_tenant_id
|
|
896
|
+
# @return [::String]
|
|
897
|
+
# Optional. Azure tenant ID of the application. This property is required
|
|
898
|
+
# when 'authentication_type' is set to 'AZURE_ACTIVE_DIRECTORY'.
|
|
899
|
+
# @!attribute [rw] client_id
|
|
900
|
+
# @return [::String]
|
|
901
|
+
# Optional. Azure client ID of the application. This property is required
|
|
902
|
+
# when 'authentication_type' is set to 'AZURE_ACTIVE_DIRECTORY'.
|
|
903
|
+
# @!attribute [rw] client_secret
|
|
904
|
+
# @return [::String]
|
|
905
|
+
# Optional. Azure client secret (aka application password) for
|
|
906
|
+
# authentication.
|
|
907
|
+
# @!attribute [rw] endpoint
|
|
908
|
+
# @return [::String]
|
|
909
|
+
# Optional. Azure Storage service endpoint.
|
|
910
|
+
# e.g: https://test.blob.core.windows.net
|
|
911
|
+
# @!attribute [rw] azure_authority_host
|
|
912
|
+
# @return [::String]
|
|
913
|
+
# Optional. The endpoint used for authentication with Microsoft Entra ID
|
|
914
|
+
# (formerly Azure Active Directory). Default value:
|
|
915
|
+
# https://login.microsoftonline.com
|
|
916
|
+
class GoldengateAzureDataLakeStorageConnectionProperties
|
|
917
|
+
include ::Google::Protobuf::MessageExts
|
|
918
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
919
|
+
|
|
920
|
+
# Enum for authentication mechanism to access Azure Data Lake Storage.
|
|
921
|
+
module AuthenticationType
|
|
922
|
+
# Authentication type not specified.
|
|
923
|
+
AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
924
|
+
|
|
925
|
+
# Shared key authentication.
|
|
926
|
+
SHARED_KEY = 1
|
|
927
|
+
|
|
928
|
+
# Shared access signature authentication.
|
|
929
|
+
SHARED_ACCESS_SIGNATURE = 2
|
|
930
|
+
|
|
931
|
+
# Azure active directory authentication.
|
|
932
|
+
AZURE_ACTIVE_DIRECTORY = 3
|
|
933
|
+
end
|
|
934
|
+
end
|
|
935
|
+
|
|
936
|
+
# The properties of GoldengateAzureSynapseAnalyticsConnection.
|
|
937
|
+
# @!attribute [rw] password
|
|
938
|
+
# @return [::String]
|
|
939
|
+
# Optional. Input only. The password Oracle Goldengate uses for Azure
|
|
940
|
+
# Synapse Analytics connection in plain text.
|
|
941
|
+
#
|
|
942
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
943
|
+
# @!attribute [rw] password_secret_version
|
|
944
|
+
# @return [::String]
|
|
945
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
946
|
+
# Manager which contains the password Oracle Goldengate uses for Azure
|
|
947
|
+
# Synapse Analytics connection. Format:
|
|
948
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
949
|
+
#
|
|
950
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
951
|
+
# @!attribute [rw] technology_type
|
|
952
|
+
# @return [::String]
|
|
953
|
+
# Optional. The technology type of AzureSynapseAnalyticsConnection.
|
|
954
|
+
# @!attribute [rw] connection_string
|
|
955
|
+
# @return [::String]
|
|
956
|
+
# Optional. JDBC connection string.
|
|
957
|
+
# e.g.:
|
|
958
|
+
# 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;'
|
|
959
|
+
# @!attribute [rw] username
|
|
960
|
+
# @return [::String]
|
|
961
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
962
|
+
# system of the given technology.
|
|
963
|
+
class GoldengateAzureSynapseAnalyticsConnectionProperties
|
|
964
|
+
include ::Google::Protobuf::MessageExts
|
|
965
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
966
|
+
end
|
|
967
|
+
|
|
968
|
+
# The properties of GoldengatePostgresqlConnection.
|
|
969
|
+
# @!attribute [rw] password
|
|
970
|
+
# @return [::String]
|
|
971
|
+
# Optional. Input only. The password Oracle Goldengate uses for PostgreSQL
|
|
972
|
+
# connection in plain text.
|
|
973
|
+
#
|
|
974
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
975
|
+
# @!attribute [rw] password_secret_version
|
|
976
|
+
# @return [::String]
|
|
977
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
978
|
+
# Manager which contains the password Oracle Goldengate uses for PostgreSQL
|
|
979
|
+
# connection. Format:
|
|
980
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
981
|
+
#
|
|
982
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
983
|
+
# @!attribute [rw] technology_type
|
|
984
|
+
# @return [::String]
|
|
985
|
+
# Optional. The technology type of PostgresqlConnection.
|
|
986
|
+
# @!attribute [rw] database
|
|
987
|
+
# @return [::String]
|
|
988
|
+
# Optional. The name of the database.
|
|
989
|
+
# @!attribute [rw] host
|
|
990
|
+
# @return [::String]
|
|
991
|
+
# Optional. The name or address of a host.
|
|
992
|
+
# @!attribute [rw] port
|
|
993
|
+
# @return [::Integer]
|
|
994
|
+
# Optional. The port of an endpoint usually specified for a connection.
|
|
995
|
+
# @!attribute [rw] username
|
|
996
|
+
# @return [::String]
|
|
997
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
998
|
+
# system of the given technology.
|
|
999
|
+
# @!attribute [rw] additional_attributes
|
|
1000
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::NameValuePair>]
|
|
1001
|
+
# Optional. An array of name-value pair attribute entries.
|
|
1002
|
+
# Used as additional parameters in connection string.
|
|
1003
|
+
# @!attribute [rw] security_protocol
|
|
1004
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengatePostgresqlConnectionProperties::PostgresqlSecurityProtocol]
|
|
1005
|
+
# Optional. Security protocol for PostgreSQL.
|
|
1006
|
+
# @!attribute [rw] ssl_mode
|
|
1007
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengatePostgresqlConnectionProperties::PostgresqlSslMode]
|
|
1008
|
+
# Optional. SSL modes for PostgreSQL.
|
|
1009
|
+
# @!attribute [rw] ssl_ca_file
|
|
1010
|
+
# @return [::String]
|
|
1011
|
+
# Optional. The base64 encoded certificate of the trusted certificate
|
|
1012
|
+
# authorities (Trusted CA) for PostgreSQL.
|
|
1013
|
+
# @!attribute [rw] ssl_crl_file
|
|
1014
|
+
# @return [::String]
|
|
1015
|
+
# Optional. The base64 encoded list of certificates revoked by the trusted
|
|
1016
|
+
# certificate authorities (Trusted CA).
|
|
1017
|
+
# @!attribute [rw] ssl_cert_file
|
|
1018
|
+
# @return [::String]
|
|
1019
|
+
# Optional. The base64 encoded certificate of the PostgreSQL server.
|
|
1020
|
+
# @!attribute [rw] ssl_key_file
|
|
1021
|
+
# @return [::String]
|
|
1022
|
+
# Optional. The base64 encoded private key of the PostgreSQL server.
|
|
1023
|
+
# @!attribute [rw] db_system_id
|
|
1024
|
+
# @return [::String]
|
|
1025
|
+
# Optional. The OCID of the database system being referenced.
|
|
1026
|
+
class GoldengatePostgresqlConnectionProperties
|
|
1027
|
+
include ::Google::Protobuf::MessageExts
|
|
1028
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1029
|
+
|
|
1030
|
+
# Enum for Security protocol for PostgreSQL.
|
|
1031
|
+
module PostgresqlSecurityProtocol
|
|
1032
|
+
# Security protocol not specified.
|
|
1033
|
+
POSTGRESQL_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1034
|
+
|
|
1035
|
+
# Plain text communication.
|
|
1036
|
+
PLAIN = 1
|
|
1037
|
+
|
|
1038
|
+
# Transport Layer Security.
|
|
1039
|
+
TLS = 2
|
|
1040
|
+
|
|
1041
|
+
# Mutual Transport Layer Security.
|
|
1042
|
+
MTLS = 3
|
|
1043
|
+
end
|
|
1044
|
+
|
|
1045
|
+
# Enum for SSL modes for PostgreSQL.
|
|
1046
|
+
module PostgresqlSslMode
|
|
1047
|
+
# SSL mode not specified.
|
|
1048
|
+
POSTGRESQL_SSL_MODE_UNSPECIFIED = 0
|
|
1049
|
+
|
|
1050
|
+
# Prefer SSL.
|
|
1051
|
+
PREFER = 1
|
|
1052
|
+
|
|
1053
|
+
# Require SSL.
|
|
1054
|
+
REQUIRE = 2
|
|
1055
|
+
|
|
1056
|
+
# Verify Certificate Authority.
|
|
1057
|
+
VERIFY_CA = 3
|
|
1058
|
+
|
|
1059
|
+
# Verify Full.
|
|
1060
|
+
VERIFY_FULL = 4
|
|
1061
|
+
end
|
|
1062
|
+
end
|
|
1063
|
+
|
|
1064
|
+
# The properties of GoldengateMicrosoftSqlserverConnection.
|
|
1065
|
+
# @!attribute [rw] password
|
|
1066
|
+
# @return [::String]
|
|
1067
|
+
# Optional. Input only. The password Oracle Goldengate uses for Microsoft
|
|
1068
|
+
# SQL Server connection in plain text.
|
|
1069
|
+
#
|
|
1070
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1071
|
+
# @!attribute [rw] password_secret_version
|
|
1072
|
+
# @return [::String]
|
|
1073
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1074
|
+
# Manager which contains the password Oracle Goldengate uses for Microsoft
|
|
1075
|
+
# SQL Server connection. Format:
|
|
1076
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1077
|
+
#
|
|
1078
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1079
|
+
# @!attribute [rw] technology_type
|
|
1080
|
+
# @return [::String]
|
|
1081
|
+
# Optional. The technology type of MicrosoftSqlserverConnection.
|
|
1082
|
+
# @!attribute [rw] database
|
|
1083
|
+
# @return [::String]
|
|
1084
|
+
# Optional. The name of the database.
|
|
1085
|
+
# @!attribute [rw] host
|
|
1086
|
+
# @return [::String]
|
|
1087
|
+
# Optional. The name or address of a host.
|
|
1088
|
+
# @!attribute [rw] port
|
|
1089
|
+
# @return [::Integer]
|
|
1090
|
+
# Optional. The port of an endpoint usually specified for a connection.
|
|
1091
|
+
# @!attribute [rw] username
|
|
1092
|
+
# @return [::String]
|
|
1093
|
+
# Optional. The username Oracle Goldengate uses to connect to the Microsoft
|
|
1094
|
+
# SQL Server.
|
|
1095
|
+
# @!attribute [rw] additional_attributes
|
|
1096
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::NameValuePair>]
|
|
1097
|
+
# Optional. An array of name-value pair attribute entries.
|
|
1098
|
+
# Used as additional parameters in connection string.
|
|
1099
|
+
# @!attribute [rw] security_protocol
|
|
1100
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMicrosoftSqlserverConnectionProperties::MicrosoftSqlserverSecurityProtocol]
|
|
1101
|
+
# Optional. Security Type for Microsoft SQL Server.
|
|
1102
|
+
# @!attribute [rw] ssl_ca_file
|
|
1103
|
+
# @return [::String]
|
|
1104
|
+
# Optional. Database Certificate - The base64 encoded content of a .pem or
|
|
1105
|
+
# .crt file containing the server public key (for 1-way SSL).
|
|
1106
|
+
# @!attribute [rw] server_certificate_validation_required
|
|
1107
|
+
# @return [::Boolean]
|
|
1108
|
+
# Optional. If set to true, the driver validates the certificate that is sent
|
|
1109
|
+
# by the database server.
|
|
1110
|
+
class GoldengateMicrosoftSqlserverConnectionProperties
|
|
1111
|
+
include ::Google::Protobuf::MessageExts
|
|
1112
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1113
|
+
|
|
1114
|
+
# Enum for Security Type for Microsoft SQL Server.
|
|
1115
|
+
module MicrosoftSqlserverSecurityProtocol
|
|
1116
|
+
# Security type not specified.
|
|
1117
|
+
MICROSOFT_SQLSERVER_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1118
|
+
|
|
1119
|
+
# Plain text communication.
|
|
1120
|
+
PLAIN = 1
|
|
1121
|
+
|
|
1122
|
+
# Transport Layer Security.
|
|
1123
|
+
TLS = 2
|
|
1124
|
+
end
|
|
1125
|
+
end
|
|
1126
|
+
|
|
1127
|
+
# The properties of GoldengateAmazonS3Connection.
|
|
1128
|
+
# @!attribute [rw] technology_type
|
|
1129
|
+
# @return [::String]
|
|
1130
|
+
# Optional. The technology type of AmazonS3Connection.
|
|
1131
|
+
# @!attribute [rw] access_key_id
|
|
1132
|
+
# @return [::String]
|
|
1133
|
+
# Optional. Access key ID to access the Amazon S3 bucket.
|
|
1134
|
+
# @!attribute [rw] secret_access_key_secret
|
|
1135
|
+
# @return [::String]
|
|
1136
|
+
# Optional. Secret access key to access the Amazon S3 bucket.
|
|
1137
|
+
# @!attribute [rw] endpoint
|
|
1138
|
+
# @return [::String]
|
|
1139
|
+
# Optional. The Amazon Endpoint for S3.
|
|
1140
|
+
# @!attribute [rw] region
|
|
1141
|
+
# @return [::String]
|
|
1142
|
+
# Optional. The name of the AWS region where the bucket is created.
|
|
1143
|
+
class GoldengateAmazonS3ConnectionProperties
|
|
1144
|
+
include ::Google::Protobuf::MessageExts
|
|
1145
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1146
|
+
end
|
|
1147
|
+
|
|
1148
|
+
# The properties of GoldengateHdfsConnection.
|
|
1149
|
+
# @!attribute [rw] technology_type
|
|
1150
|
+
# @return [::String]
|
|
1151
|
+
# Optional. The technology type of HdfsConnection.
|
|
1152
|
+
# @!attribute [rw] core_site_xml
|
|
1153
|
+
# @return [::String]
|
|
1154
|
+
# Optional. The content of the Hadoop Distributed File System
|
|
1155
|
+
# configuration file (core-site.xml).
|
|
1156
|
+
class GoldengateHdfsConnectionProperties
|
|
1157
|
+
include ::Google::Protobuf::MessageExts
|
|
1158
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1159
|
+
end
|
|
1160
|
+
|
|
1161
|
+
# The properties of GoldengateJavaMessageServiceConnection.
|
|
1162
|
+
# @!attribute [rw] password
|
|
1163
|
+
# @return [::String]
|
|
1164
|
+
# Optional. Input only. The password Oracle Goldengate uses to connect the
|
|
1165
|
+
# Java Message Service in plain text.
|
|
1166
|
+
#
|
|
1167
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1168
|
+
# @!attribute [rw] password_secret_version
|
|
1169
|
+
# @return [::String]
|
|
1170
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1171
|
+
# Manager which contains the password Oracle Goldengate uses to connect the
|
|
1172
|
+
# associated Java Message Service. Format:
|
|
1173
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1174
|
+
#
|
|
1175
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1176
|
+
# @!attribute [rw] trust_store_password
|
|
1177
|
+
# @return [::String]
|
|
1178
|
+
# Optional. Input only. The TrustStore password in plain text.
|
|
1179
|
+
#
|
|
1180
|
+
# Note: The following fields are mutually exclusive: `trust_store_password`, `trust_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1181
|
+
# @!attribute [rw] trust_store_password_secret_version
|
|
1182
|
+
# @return [::String]
|
|
1183
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1184
|
+
# Manager which contains the TrustStore password. Format:
|
|
1185
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1186
|
+
#
|
|
1187
|
+
# Note: The following fields are mutually exclusive: `trust_store_password_secret_version`, `trust_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1188
|
+
# @!attribute [rw] key_store_password
|
|
1189
|
+
# @return [::String]
|
|
1190
|
+
# Optional. Input only. The KeyStore password in plain text.
|
|
1191
|
+
#
|
|
1192
|
+
# Note: The following fields are mutually exclusive: `key_store_password`, `key_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1193
|
+
# @!attribute [rw] key_store_password_secret_version
|
|
1194
|
+
# @return [::String]
|
|
1195
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1196
|
+
# Manager which contains the KeyStore password. Format:
|
|
1197
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1198
|
+
#
|
|
1199
|
+
# Note: The following fields are mutually exclusive: `key_store_password_secret_version`, `key_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1200
|
+
# @!attribute [rw] ssl_key_password
|
|
1201
|
+
# @return [::String]
|
|
1202
|
+
# Optional. Input only. The password for the cert inside of the KeyStore in
|
|
1203
|
+
# plain text.
|
|
1204
|
+
#
|
|
1205
|
+
# Note: The following fields are mutually exclusive: `ssl_key_password`, `ssl_key_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1206
|
+
# @!attribute [rw] ssl_key_password_secret_version
|
|
1207
|
+
# @return [::String]
|
|
1208
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1209
|
+
# Manager which contains the password for the cert inside of the KeyStore.
|
|
1210
|
+
# Format: projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1211
|
+
#
|
|
1212
|
+
# Note: The following fields are mutually exclusive: `ssl_key_password_secret_version`, `ssl_key_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1213
|
+
# @!attribute [rw] technology_type
|
|
1214
|
+
# @return [::String]
|
|
1215
|
+
# Optional. The technology type of JavaMessageServiceConnection.
|
|
1216
|
+
# @!attribute [rw] use_jndi
|
|
1217
|
+
# @return [::Boolean]
|
|
1218
|
+
# Optional. If set to true, Java Naming and Directory Interface (JNDI)
|
|
1219
|
+
# properties should be provided.
|
|
1220
|
+
# @!attribute [rw] jndi_connection_factory
|
|
1221
|
+
# @return [::String]
|
|
1222
|
+
# Optional. The Connection Factory can be looked up using this name.
|
|
1223
|
+
# e.g.: 'ConnectionFactory'
|
|
1224
|
+
# @!attribute [rw] jndi_provider_url
|
|
1225
|
+
# @return [::String]
|
|
1226
|
+
# Optional. The URL that Java Message Service will use to contact the JNDI
|
|
1227
|
+
# provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000'
|
|
1228
|
+
# @!attribute [rw] jndi_initial_context_factory
|
|
1229
|
+
# @return [::String]
|
|
1230
|
+
# Optional. The implementation of javax.naming.spi.InitialContextFactory
|
|
1231
|
+
# interface used to obtain initial naming context.
|
|
1232
|
+
# @!attribute [rw] jndi_security_principal
|
|
1233
|
+
# @return [::String]
|
|
1234
|
+
# Optional. Specifies the identity of the principal (user) to be
|
|
1235
|
+
# authenticated.
|
|
1236
|
+
# @!attribute [rw] jndi_security_credentials_secret
|
|
1237
|
+
# @return [::String]
|
|
1238
|
+
# Optional. The password associated to the principal.
|
|
1239
|
+
# @!attribute [rw] connection_url
|
|
1240
|
+
# @return [::String]
|
|
1241
|
+
# Optional. Connection URL of the Java Message Service, specifying the
|
|
1242
|
+
# protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'
|
|
1243
|
+
# @!attribute [rw] connection_factory
|
|
1244
|
+
# @return [::String]
|
|
1245
|
+
# Optional. The Java class implementing javax.jms.ConnectionFactory interface
|
|
1246
|
+
# supplied by the JMS provider.
|
|
1247
|
+
# @!attribute [rw] username
|
|
1248
|
+
# @return [::String]
|
|
1249
|
+
# Optional. The username Oracle Goldengate uses to connect to the Java
|
|
1250
|
+
# Message Service.
|
|
1251
|
+
# @!attribute [rw] security_protocol
|
|
1252
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateJavaMessageServiceConnectionProperties::JmsSecurityProtocol]
|
|
1253
|
+
# Optional. Security protocol for Java Message Service.
|
|
1254
|
+
# @!attribute [rw] authentication_type
|
|
1255
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateJavaMessageServiceConnectionProperties::JmsAuthenticationType]
|
|
1256
|
+
# Optional. Authentication type for Java Message Service.
|
|
1257
|
+
# @!attribute [rw] trust_store_file
|
|
1258
|
+
# @return [::String]
|
|
1259
|
+
# Optional. The base64 encoded content of the TrustStore file.
|
|
1260
|
+
# @!attribute [rw] key_store_file
|
|
1261
|
+
# @return [::String]
|
|
1262
|
+
# Optional. The base64 encoded content of the KeyStore file.
|
|
1263
|
+
class GoldengateJavaMessageServiceConnectionProperties
|
|
1264
|
+
include ::Google::Protobuf::MessageExts
|
|
1265
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1266
|
+
|
|
1267
|
+
# Enum for Security protocol for Java Message Service.
|
|
1268
|
+
module JmsSecurityProtocol
|
|
1269
|
+
# Security protocol not specified.
|
|
1270
|
+
JMS_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1271
|
+
|
|
1272
|
+
# Plain text communication.
|
|
1273
|
+
PLAIN = 1
|
|
1274
|
+
|
|
1275
|
+
# Transport Layer Security.
|
|
1276
|
+
TLS = 2
|
|
1277
|
+
|
|
1278
|
+
# Mutual Transport Layer Security.
|
|
1279
|
+
MTLS = 3
|
|
1280
|
+
end
|
|
1281
|
+
|
|
1282
|
+
# Enum for Authentication type for Java Message Service.
|
|
1283
|
+
module JmsAuthenticationType
|
|
1284
|
+
# Authentication type not specified.
|
|
1285
|
+
JMS_AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
1286
|
+
|
|
1287
|
+
# No authentication.
|
|
1288
|
+
NONE = 1
|
|
1289
|
+
|
|
1290
|
+
# Basic authentication.
|
|
1291
|
+
BASIC = 2
|
|
1292
|
+
end
|
|
1293
|
+
end
|
|
1294
|
+
|
|
1295
|
+
# The properties of GoldengateMongodbConnection.
|
|
1296
|
+
# @!attribute [rw] password
|
|
1297
|
+
# @return [::String]
|
|
1298
|
+
# Optional. Input only. The password Oracle Goldengate uses to connect the
|
|
1299
|
+
# Mongodb connection in plain text.
|
|
1300
|
+
#
|
|
1301
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1302
|
+
# @!attribute [rw] password_secret_version
|
|
1303
|
+
# @return [::String]
|
|
1304
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1305
|
+
# Manager which contains the password Oracle Goldengate uses to connect the
|
|
1306
|
+
# Mongodb connection. Format:
|
|
1307
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1308
|
+
#
|
|
1309
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1310
|
+
# @!attribute [rw] tls_certificate_key_file_password
|
|
1311
|
+
# @return [::String]
|
|
1312
|
+
# Optional. Input only. The Client Certificate key file password in plain
|
|
1313
|
+
# text.
|
|
1314
|
+
#
|
|
1315
|
+
# Note: The following fields are mutually exclusive: `tls_certificate_key_file_password`, `tls_certificate_key_file_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1316
|
+
# @!attribute [rw] tls_certificate_key_file_password_secret_version
|
|
1317
|
+
# @return [::String]
|
|
1318
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1319
|
+
# Manager which contains the Client Certificate key file password in Secret
|
|
1320
|
+
# Manager. Format: projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1321
|
+
#
|
|
1322
|
+
# Note: The following fields are mutually exclusive: `tls_certificate_key_file_password_secret_version`, `tls_certificate_key_file_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1323
|
+
# @!attribute [rw] technology_type
|
|
1324
|
+
# @return [::String]
|
|
1325
|
+
# Optional. The technology type of MongodbConnection.
|
|
1326
|
+
# @!attribute [rw] connection_string
|
|
1327
|
+
# @return [::String]
|
|
1328
|
+
# Optional. MongoDB connection string.
|
|
1329
|
+
# e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'
|
|
1330
|
+
# @!attribute [rw] username
|
|
1331
|
+
# @return [::String]
|
|
1332
|
+
# Optional. The username Oracle Goldengate uses to connect to the database.
|
|
1333
|
+
# @!attribute [rw] database_id
|
|
1334
|
+
# @return [::String]
|
|
1335
|
+
# Optional. The OCID of the Oracle Autonomous Json Database.
|
|
1336
|
+
# @!attribute [rw] security_protocol
|
|
1337
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateMongodbConnectionProperties::MongodbSecurityProtocol]
|
|
1338
|
+
# Optional. Security Type for MongoDB.
|
|
1339
|
+
# @!attribute [rw] tls_ca_file
|
|
1340
|
+
# @return [::String]
|
|
1341
|
+
# Optional. Database Certificate - The base64 encoded content of a .pem file,
|
|
1342
|
+
# containing the server public key (for 1 and 2-way SSL).
|
|
1343
|
+
# @!attribute [rw] tls_certificate_key_file
|
|
1344
|
+
# @return [::String]
|
|
1345
|
+
# Optional. Client Certificate - The base64 encoded content of a .pem file,
|
|
1346
|
+
# containing the client public key (for 2-way SSL).
|
|
1347
|
+
class GoldengateMongodbConnectionProperties
|
|
1348
|
+
include ::Google::Protobuf::MessageExts
|
|
1349
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1350
|
+
|
|
1351
|
+
# Enum for Security Type for MongoDB.
|
|
1352
|
+
module MongodbSecurityProtocol
|
|
1353
|
+
# Security type not specified.
|
|
1354
|
+
MONGODB_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1355
|
+
|
|
1356
|
+
# Plain text communication.
|
|
1357
|
+
PLAIN = 1
|
|
1358
|
+
|
|
1359
|
+
# Transport Layer Security.
|
|
1360
|
+
TLS = 2
|
|
1361
|
+
|
|
1362
|
+
# Mutual Transport Layer Security.
|
|
1363
|
+
MTLS = 3
|
|
1364
|
+
end
|
|
1365
|
+
end
|
|
1366
|
+
|
|
1367
|
+
# The properties of GoldengateOracleNosqlConnection.
|
|
1368
|
+
# @!attribute [rw] technology_type
|
|
1369
|
+
# @return [::String]
|
|
1370
|
+
# Optional. The technology type of OracleNosqlConnection.
|
|
1371
|
+
# @!attribute [rw] tenancy_id
|
|
1372
|
+
# @return [::String]
|
|
1373
|
+
# Optional. The OCID of the OCI tenancy.
|
|
1374
|
+
# @!attribute [rw] region
|
|
1375
|
+
# @return [::String]
|
|
1376
|
+
# Optional. The name of the region. e.g.: us-ashburn-1
|
|
1377
|
+
# @!attribute [rw] user_id
|
|
1378
|
+
# @return [::String]
|
|
1379
|
+
# Optional. The OCID of the OCI user who will access the Oracle NoSQL
|
|
1380
|
+
# database.
|
|
1381
|
+
# @!attribute [rw] private_key_file
|
|
1382
|
+
# @return [::String]
|
|
1383
|
+
# Optional. The content of the private key file (PEM file)
|
|
1384
|
+
# corresponding to the API key of the fingerprint.
|
|
1385
|
+
# @!attribute [rw] private_key_passphrase_secret
|
|
1386
|
+
# @return [::String]
|
|
1387
|
+
# Optional. The passphrase of the private key.
|
|
1388
|
+
# @!attribute [rw] public_key_fingerprint
|
|
1389
|
+
# @return [::String]
|
|
1390
|
+
# Optional. The fingerprint of the API Key of the user specified by the
|
|
1391
|
+
# userId.
|
|
1392
|
+
# @!attribute [rw] use_resource_principal
|
|
1393
|
+
# @return [::Boolean]
|
|
1394
|
+
# Optional. Specifies that the user intends to authenticate to the instance
|
|
1395
|
+
# using a resource principal.
|
|
1396
|
+
class GoldengateOracleNosqlConnectionProperties
|
|
1397
|
+
include ::Google::Protobuf::MessageExts
|
|
1398
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1399
|
+
end
|
|
1400
|
+
|
|
1401
|
+
# The properties of GoldengateSnowflakeConnection.
|
|
1402
|
+
# @!attribute [rw] password
|
|
1403
|
+
# @return [::String]
|
|
1404
|
+
# Optional. Input only. The password Oracle Goldengate uses to connect to
|
|
1405
|
+
# Snowflake platform in plain text.
|
|
1406
|
+
#
|
|
1407
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1408
|
+
# @!attribute [rw] password_secret_version
|
|
1409
|
+
# @return [::String]
|
|
1410
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1411
|
+
# Manager which contains the password Oracle Goldengate uses to connect to
|
|
1412
|
+
# Snowflake platform. Format:
|
|
1413
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1414
|
+
#
|
|
1415
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1416
|
+
# @!attribute [rw] technology_type
|
|
1417
|
+
# @return [::String]
|
|
1418
|
+
# Optional. The technology type of SnowflakeConnection.
|
|
1419
|
+
# @!attribute [rw] connection_url
|
|
1420
|
+
# @return [::String]
|
|
1421
|
+
# Optional. JDBC connection URL.
|
|
1422
|
+
# e.g.:
|
|
1423
|
+
# 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'
|
|
1424
|
+
# @!attribute [rw] authentication_type
|
|
1425
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateSnowflakeConnectionProperties::AuthenticationType]
|
|
1426
|
+
# Optional. Used authentication mechanism to access Snowflake.
|
|
1427
|
+
# @!attribute [rw] username
|
|
1428
|
+
# @return [::String]
|
|
1429
|
+
# Optional. The username Oracle Goldengate uses to connect to Snowflake.
|
|
1430
|
+
# @!attribute [rw] private_key_file
|
|
1431
|
+
# @return [::String]
|
|
1432
|
+
# Optional. The content of private key file in PEM format.
|
|
1433
|
+
# @!attribute [rw] private_key_passphrase_secret
|
|
1434
|
+
# @return [::String]
|
|
1435
|
+
# Optional. Password if the private key file is encrypted.
|
|
1436
|
+
class GoldengateSnowflakeConnectionProperties
|
|
1437
|
+
include ::Google::Protobuf::MessageExts
|
|
1438
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1439
|
+
|
|
1440
|
+
# Enum for authentication mechanism to access Snowflake.
|
|
1441
|
+
module AuthenticationType
|
|
1442
|
+
# Authentication type not specified.
|
|
1443
|
+
AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
1444
|
+
|
|
1445
|
+
# Basic authentication.
|
|
1446
|
+
BASIC = 1
|
|
1447
|
+
|
|
1448
|
+
# Key pair authentication.
|
|
1449
|
+
KEY_PAIR = 2
|
|
1450
|
+
end
|
|
1451
|
+
end
|
|
1452
|
+
|
|
1453
|
+
# The properties of GoldengateAmazonRedshiftConnection.
|
|
1454
|
+
# @!attribute [rw] password
|
|
1455
|
+
# @return [::String]
|
|
1456
|
+
# Optional. Input only. The password Oracle Goldengate uses for Amazon
|
|
1457
|
+
# Redshift connection in plain text.
|
|
1458
|
+
#
|
|
1459
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1460
|
+
# @!attribute [rw] password_secret_version
|
|
1461
|
+
# @return [::String]
|
|
1462
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1463
|
+
# Manager which contains the password Oracle Goldengate uses for Amazon
|
|
1464
|
+
# Redshift connection. Format:
|
|
1465
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1466
|
+
#
|
|
1467
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1468
|
+
# @!attribute [rw] technology_type
|
|
1469
|
+
# @return [::String]
|
|
1470
|
+
# Optional. The technology type of AmazonRedshiftConnection.
|
|
1471
|
+
# @!attribute [rw] connection_url
|
|
1472
|
+
# @return [::String]
|
|
1473
|
+
# Optional. Connection URL.
|
|
1474
|
+
# e.g.:
|
|
1475
|
+
# 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'
|
|
1476
|
+
# @!attribute [rw] username
|
|
1477
|
+
# @return [::String]
|
|
1478
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
1479
|
+
# system of the given technology.
|
|
1480
|
+
class GoldengateAmazonRedshiftConnectionProperties
|
|
1481
|
+
include ::Google::Protobuf::MessageExts
|
|
1482
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1483
|
+
end
|
|
1484
|
+
|
|
1485
|
+
# The properties of GoldengateElasticsearchConnection.
|
|
1486
|
+
# @!attribute [rw] password
|
|
1487
|
+
# @return [::String]
|
|
1488
|
+
# Optional. Input only. The password Oracle Goldengate uses for Elastic
|
|
1489
|
+
# Search connection in plain text.
|
|
1490
|
+
#
|
|
1491
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1492
|
+
# @!attribute [rw] password_secret_version
|
|
1493
|
+
# @return [::String]
|
|
1494
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1495
|
+
# Manager which contains the password Oracle Goldengate uses for Elastic
|
|
1496
|
+
# Search connection. Format:
|
|
1497
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1498
|
+
#
|
|
1499
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1500
|
+
# @!attribute [rw] technology_type
|
|
1501
|
+
# @return [::String]
|
|
1502
|
+
# Optional. The technology type of ElasticsearchConnection.
|
|
1503
|
+
# @!attribute [rw] servers
|
|
1504
|
+
# @return [::String]
|
|
1505
|
+
# Optional. Comma separated list of Elasticsearch server addresses, specified
|
|
1506
|
+
# as host:port entries, where :port is optional. If port is not specified, it
|
|
1507
|
+
# defaults to 9200. Example:
|
|
1508
|
+
# "server1.example.com:4000,server2.example.com:4000"
|
|
1509
|
+
# @!attribute [rw] security_protocol
|
|
1510
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateElasticsearchConnectionProperties::ElasticsearchSecurityProtocol]
|
|
1511
|
+
# Optional. Security protocol for Elasticsearch.
|
|
1512
|
+
# @!attribute [rw] authentication_type
|
|
1513
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateElasticsearchConnectionProperties::ElasticsearchAuthenticationType]
|
|
1514
|
+
# Optional. Authentication type for Elasticsearch.
|
|
1515
|
+
# @!attribute [rw] username
|
|
1516
|
+
# @return [::String]
|
|
1517
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
1518
|
+
# system of the given technology.
|
|
1519
|
+
# @!attribute [rw] fingerprint
|
|
1520
|
+
# @return [::String]
|
|
1521
|
+
# Optional. Fingerprint required by TLS security protocol.
|
|
1522
|
+
# Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
|
1523
|
+
class GoldengateElasticsearchConnectionProperties
|
|
1524
|
+
include ::Google::Protobuf::MessageExts
|
|
1525
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1526
|
+
|
|
1527
|
+
# Enum for Security protocol for Elasticsearch.
|
|
1528
|
+
module ElasticsearchSecurityProtocol
|
|
1529
|
+
# Security protocol not specified.
|
|
1530
|
+
ELASTICSEARCH_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1531
|
+
|
|
1532
|
+
# Plain text communication.
|
|
1533
|
+
PLAIN = 1
|
|
1534
|
+
|
|
1535
|
+
# Transport Layer Security.
|
|
1536
|
+
TLS = 2
|
|
1537
|
+
end
|
|
1538
|
+
|
|
1539
|
+
# Enum for Authentication type for Elasticsearch.
|
|
1540
|
+
module ElasticsearchAuthenticationType
|
|
1541
|
+
# Authentication type not specified.
|
|
1542
|
+
ELASTICSEARCH_AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
1543
|
+
|
|
1544
|
+
# No authentication.
|
|
1545
|
+
NONE = 1
|
|
1546
|
+
|
|
1547
|
+
# Basic authentication.
|
|
1548
|
+
BASIC = 2
|
|
1549
|
+
end
|
|
1550
|
+
end
|
|
1551
|
+
|
|
1552
|
+
# The properties of GoldengateAmazonKinesisConnection.
|
|
1553
|
+
# @!attribute [rw] technology_type
|
|
1554
|
+
# @return [::String]
|
|
1555
|
+
# Optional. The technology type of AmazonKinesisConnection.
|
|
1556
|
+
# @!attribute [rw] access_key_id
|
|
1557
|
+
# @return [::String]
|
|
1558
|
+
# Optional. Access key ID to access the Amazon Kinesis.
|
|
1559
|
+
# @!attribute [rw] secret_access_key_secret
|
|
1560
|
+
# @return [::String]
|
|
1561
|
+
# Optional. Secret access key to access the Amazon Kinesis.
|
|
1562
|
+
# @!attribute [rw] endpoint
|
|
1563
|
+
# @return [::String]
|
|
1564
|
+
# Optional. The endpoint URL of the Amazon Kinesis service.
|
|
1565
|
+
# e.g.: 'https://kinesis.us-east-1.amazonaws.com'
|
|
1566
|
+
# If not provided, Goldengate will default to
|
|
1567
|
+
# 'https://kinesis.<region>.amazonaws.com'.
|
|
1568
|
+
# @!attribute [rw] aws_region
|
|
1569
|
+
# @return [::String]
|
|
1570
|
+
# Optional. The name of the AWS region.
|
|
1571
|
+
# If not provided, Goldengate will default to 'us-west-1'.
|
|
1572
|
+
class GoldengateAmazonKinesisConnectionProperties
|
|
1573
|
+
include ::Google::Protobuf::MessageExts
|
|
1574
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1575
|
+
end
|
|
1576
|
+
|
|
1577
|
+
# The properties of GoldengateDb2Connection.
|
|
1578
|
+
# @!attribute [rw] password
|
|
1579
|
+
# @return [::String]
|
|
1580
|
+
# Optional. Input only. The password Oracle Goldengate uses for Db2
|
|
1581
|
+
# connection in plain text.
|
|
1582
|
+
#
|
|
1583
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1584
|
+
# @!attribute [rw] password_secret_version
|
|
1585
|
+
# @return [::String]
|
|
1586
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1587
|
+
# Manager which contains the password Oracle Goldengate uses for Db2
|
|
1588
|
+
# connection. Format:
|
|
1589
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1590
|
+
#
|
|
1591
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1592
|
+
# @!attribute [rw] technology_type
|
|
1593
|
+
# @return [::String]
|
|
1594
|
+
# Optional. The technology type of Db2Connection.
|
|
1595
|
+
# @!attribute [rw] host
|
|
1596
|
+
# @return [::String]
|
|
1597
|
+
# Optional. The name or address of a host.
|
|
1598
|
+
# @!attribute [rw] port
|
|
1599
|
+
# @return [::Integer]
|
|
1600
|
+
# Optional. The port of an endpoint usually specified for a connection.
|
|
1601
|
+
# @!attribute [rw] database
|
|
1602
|
+
# @return [::String]
|
|
1603
|
+
# Optional. The name of the database.
|
|
1604
|
+
# @!attribute [rw] username
|
|
1605
|
+
# @return [::String]
|
|
1606
|
+
# Optional. The username Oracle Goldengate uses to connect to the DB2
|
|
1607
|
+
# database.
|
|
1608
|
+
# @!attribute [rw] security_protocol
|
|
1609
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDb2ConnectionProperties::Db2SecurityProtocol]
|
|
1610
|
+
# Optional. Security protocol for the DB2 database.
|
|
1611
|
+
# @!attribute [rw] additional_attributes
|
|
1612
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::NameValuePair>]
|
|
1613
|
+
# Optional. An array of name-value pair attribute entries.
|
|
1614
|
+
# Used as additional parameters in connection string.
|
|
1615
|
+
# @!attribute [rw] ssl_client_keystoredb_file
|
|
1616
|
+
# @return [::String]
|
|
1617
|
+
# Optional. The keystore file created at the client containing the
|
|
1618
|
+
# server certificate / CA root certificate. Not supported for IBM Db2 for i.
|
|
1619
|
+
# @!attribute [rw] ssl_client_keystash_file
|
|
1620
|
+
# @return [::String]
|
|
1621
|
+
# Optional. The keystash file which contains the encrypted password to
|
|
1622
|
+
# the key database file. Not supported for IBM Db2 for i.
|
|
1623
|
+
# @!attribute [rw] ssl_server_certificate_file
|
|
1624
|
+
# @return [::String]
|
|
1625
|
+
# Optional. The file which contains the self-signed server certificate
|
|
1626
|
+
# / Certificate Authority (CA) certificate.
|
|
1627
|
+
class GoldengateDb2ConnectionProperties
|
|
1628
|
+
include ::Google::Protobuf::MessageExts
|
|
1629
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1630
|
+
|
|
1631
|
+
# Enum for Security protocol for the DB2 database.
|
|
1632
|
+
module Db2SecurityProtocol
|
|
1633
|
+
# Security protocol not specified.
|
|
1634
|
+
DB2_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1635
|
+
|
|
1636
|
+
# Plain text communication.
|
|
1637
|
+
PLAIN = 1
|
|
1638
|
+
|
|
1639
|
+
# Transport Layer Security.
|
|
1640
|
+
TLS = 2
|
|
1641
|
+
end
|
|
1642
|
+
end
|
|
1643
|
+
|
|
1644
|
+
# The properties of GoldengateRedisConnection.
|
|
1645
|
+
# @!attribute [rw] password
|
|
1646
|
+
# @return [::String]
|
|
1647
|
+
# Optional. Input only. The password Oracle Goldengate uses for Redis
|
|
1648
|
+
# connection in plain text.
|
|
1649
|
+
#
|
|
1650
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1651
|
+
# @!attribute [rw] password_secret_version
|
|
1652
|
+
# @return [::String]
|
|
1653
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1654
|
+
# Manager which contains the password Oracle Goldengate uses for Redis
|
|
1655
|
+
# connection. Format:
|
|
1656
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1657
|
+
#
|
|
1658
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1659
|
+
# @!attribute [rw] trust_store_password
|
|
1660
|
+
# @return [::String]
|
|
1661
|
+
# Optional. Input only. The TrustStore password in plain text.
|
|
1662
|
+
#
|
|
1663
|
+
# Note: The following fields are mutually exclusive: `trust_store_password`, `trust_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1664
|
+
# @!attribute [rw] trust_store_password_secret_version
|
|
1665
|
+
# @return [::String]
|
|
1666
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1667
|
+
# Manager which contains the TrustStore password. Format:
|
|
1668
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1669
|
+
#
|
|
1670
|
+
# Note: The following fields are mutually exclusive: `trust_store_password_secret_version`, `trust_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1671
|
+
# @!attribute [rw] key_store_password
|
|
1672
|
+
# @return [::String]
|
|
1673
|
+
# Optional. Input only. The KeyStore password in plain text.
|
|
1674
|
+
#
|
|
1675
|
+
# Note: The following fields are mutually exclusive: `key_store_password`, `key_store_password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1676
|
+
# @!attribute [rw] key_store_password_secret_version
|
|
1677
|
+
# @return [::String]
|
|
1678
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1679
|
+
# Manager which contains the KeyStore password. Format:
|
|
1680
|
+
# projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1681
|
+
#
|
|
1682
|
+
# Note: The following fields are mutually exclusive: `key_store_password_secret_version`, `key_store_password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1683
|
+
# @!attribute [rw] technology_type
|
|
1684
|
+
# @return [::String]
|
|
1685
|
+
# Optional. The technology type of RedisConnection.
|
|
1686
|
+
# @!attribute [rw] servers
|
|
1687
|
+
# @return [::String]
|
|
1688
|
+
# Optional. Comma separated list of Redis server addresses, specified as
|
|
1689
|
+
# host:port entries, where :port is optional. If port is not specified, it
|
|
1690
|
+
# defaults to 6379. Example:
|
|
1691
|
+
# "server1.example.com:6379,server2.example.com:6379"
|
|
1692
|
+
# @!attribute [rw] security_protocol
|
|
1693
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateRedisConnectionProperties::RedisSecurityProtocol]
|
|
1694
|
+
# Optional. Security protocol for Redis.
|
|
1695
|
+
# @!attribute [rw] authentication_type
|
|
1696
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateRedisConnectionProperties::RedisAuthenticationType]
|
|
1697
|
+
# Optional. Authentication type for Redis.
|
|
1698
|
+
# @!attribute [rw] username
|
|
1699
|
+
# @return [::String]
|
|
1700
|
+
# Optional. The username Oracle Goldengate uses to connect the associated
|
|
1701
|
+
# system of the given technology.
|
|
1702
|
+
# @!attribute [rw] redis_cluster_id
|
|
1703
|
+
# @return [::String]
|
|
1704
|
+
# Optional. The OCID of the Redis cluster.
|
|
1705
|
+
# @!attribute [rw] trust_store_file
|
|
1706
|
+
# @return [::String]
|
|
1707
|
+
# Optional. The base64 encoded content of the TrustStore file.
|
|
1708
|
+
# @!attribute [rw] key_store_file
|
|
1709
|
+
# @return [::String]
|
|
1710
|
+
# Optional. The base64 encoded content of the KeyStore file.
|
|
1711
|
+
class GoldengateRedisConnectionProperties
|
|
1712
|
+
include ::Google::Protobuf::MessageExts
|
|
1713
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1714
|
+
|
|
1715
|
+
# Enum for Security protocol for Redis.
|
|
1716
|
+
module RedisSecurityProtocol
|
|
1717
|
+
# Security protocol not specified.
|
|
1718
|
+
REDIS_SECURITY_PROTOCOL_UNSPECIFIED = 0
|
|
1719
|
+
|
|
1720
|
+
# Plain text communication.
|
|
1721
|
+
PLAIN = 1
|
|
1722
|
+
|
|
1723
|
+
# Transport Layer Security.
|
|
1724
|
+
TLS = 2
|
|
1725
|
+
|
|
1726
|
+
# Mutual Transport Layer Security.
|
|
1727
|
+
MTLS = 3
|
|
1728
|
+
end
|
|
1729
|
+
|
|
1730
|
+
# Enum for Authentication type for Redis.
|
|
1731
|
+
module RedisAuthenticationType
|
|
1732
|
+
# Authentication type not specified.
|
|
1733
|
+
REDIS_AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
1734
|
+
|
|
1735
|
+
# No authentication.
|
|
1736
|
+
NONE = 1
|
|
1737
|
+
|
|
1738
|
+
# Basic authentication.
|
|
1739
|
+
BASIC = 2
|
|
1740
|
+
end
|
|
1741
|
+
end
|
|
1742
|
+
|
|
1743
|
+
# The properties of GoldengateDatabricksConnection.
|
|
1744
|
+
# @!attribute [rw] password
|
|
1745
|
+
# @return [::String]
|
|
1746
|
+
# Optional. Input only. The password used to connect to Databricks in plain
|
|
1747
|
+
# text.
|
|
1748
|
+
#
|
|
1749
|
+
# Note: The following fields are mutually exclusive: `password`, `password_secret_version`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1750
|
+
# @!attribute [rw] password_secret_version
|
|
1751
|
+
# @return [::String]
|
|
1752
|
+
# Optional. Input only. The resource name of a secret version in Secret
|
|
1753
|
+
# Manager which contains the password used to connect to Databricks.
|
|
1754
|
+
# Format: projects/\\{project}/secrets/\\{secret}/versions/\\{version}.
|
|
1755
|
+
#
|
|
1756
|
+
# Note: The following fields are mutually exclusive: `password_secret_version`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1757
|
+
# @!attribute [rw] technology_type
|
|
1758
|
+
# @return [::String]
|
|
1759
|
+
# Optional. The technology type of DatabricksConnection.
|
|
1760
|
+
# @!attribute [rw] authentication_type
|
|
1761
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateDatabricksConnectionProperties::DatabricksAuthenticationType]
|
|
1762
|
+
# Optional. Authentication type for Databricks.
|
|
1763
|
+
# @!attribute [rw] connection_url
|
|
1764
|
+
# @return [::String]
|
|
1765
|
+
# Optional. Connection URL.
|
|
1766
|
+
# e.g.:
|
|
1767
|
+
# 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
|
|
1768
|
+
# @!attribute [rw] client_id
|
|
1769
|
+
# @return [::String]
|
|
1770
|
+
# Optional. OAuth client id, only applicable for authentication_type ==
|
|
1771
|
+
# OAUTH_M2M
|
|
1772
|
+
# @!attribute [rw] client_secret
|
|
1773
|
+
# @return [::String]
|
|
1774
|
+
# Optional. OAuth client secret, only applicable for authentication_type ==
|
|
1775
|
+
# OAUTH_M2M
|
|
1776
|
+
# @!attribute [rw] storage_credential
|
|
1777
|
+
# @return [::String]
|
|
1778
|
+
# Optional. External storage credential name to access files on object
|
|
1779
|
+
# storage such as ADLS Gen2, S3 or Cloud Storage.
|
|
1780
|
+
class GoldengateDatabricksConnectionProperties
|
|
1781
|
+
include ::Google::Protobuf::MessageExts
|
|
1782
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1783
|
+
|
|
1784
|
+
# Enum for authentication type for Databricks.
|
|
1785
|
+
module DatabricksAuthenticationType
|
|
1786
|
+
# Authentication type not specified.
|
|
1787
|
+
DATABRICKS_AUTHENTICATION_TYPE_UNSPECIFIED = 0
|
|
1788
|
+
|
|
1789
|
+
# Personal access token authentication.
|
|
1790
|
+
PERSONAL_ACCESS_TOKEN = 1
|
|
1791
|
+
|
|
1792
|
+
# OAuth M2M authentication.
|
|
1793
|
+
OAUTH_M2M = 2
|
|
1794
|
+
end
|
|
1795
|
+
end
|
|
1796
|
+
|
|
1797
|
+
# The properties of GoldengateGooglePubsubConnection.
|
|
1798
|
+
# @!attribute [rw] technology_type
|
|
1799
|
+
# @return [::String]
|
|
1800
|
+
# Optional. The technology type of GooglePubsubConnection.
|
|
1801
|
+
# @!attribute [rw] service_account_key_file
|
|
1802
|
+
# @return [::String]
|
|
1803
|
+
# Optional. The base64 encoded content of the service account key file
|
|
1804
|
+
# containing the credentials required to use Google Pub/Sub.
|
|
1805
|
+
class GoldengateGooglePubsubConnectionProperties
|
|
1806
|
+
include ::Google::Protobuf::MessageExts
|
|
1807
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1808
|
+
end
|
|
1809
|
+
|
|
1810
|
+
# The properties of GoldengateMicrosoftFabricConnection.
|
|
1811
|
+
# @!attribute [rw] technology_type
|
|
1812
|
+
# @return [::String]
|
|
1813
|
+
# Optional. The technology type of MicrosoftFabricConnection.
|
|
1814
|
+
# @!attribute [rw] tenant_id
|
|
1815
|
+
# @return [::String]
|
|
1816
|
+
# Optional. Azure tenant ID of the application.
|
|
1817
|
+
# @!attribute [rw] client_id
|
|
1818
|
+
# @return [::String]
|
|
1819
|
+
# Optional. Azure client ID of the application.
|
|
1820
|
+
# @!attribute [rw] client_secret
|
|
1821
|
+
# @return [::String]
|
|
1822
|
+
# Optional. Client secret associated with the client id.
|
|
1823
|
+
# @!attribute [rw] endpoint
|
|
1824
|
+
# @return [::String]
|
|
1825
|
+
# Optional. Optional Microsoft Fabric service endpoint.
|
|
1826
|
+
# Default value: https://onelake.dfs.fabric.microsoft.com
|
|
1827
|
+
class GoldengateMicrosoftFabricConnectionProperties
|
|
1828
|
+
include ::Google::Protobuf::MessageExts
|
|
1829
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1830
|
+
end
|
|
1831
|
+
|
|
1832
|
+
# The properties of GoldengateOracleAIDataPlatformConnection.
|
|
1833
|
+
# @!attribute [rw] technology_type
|
|
1834
|
+
# @return [::String]
|
|
1835
|
+
# Optional. The technology type of OracleAiDataPlatformConnection.
|
|
1836
|
+
# @!attribute [rw] connection_url
|
|
1837
|
+
# @return [::String]
|
|
1838
|
+
# Optional. Connection URL. It must start with 'jdbc:spark://'
|
|
1839
|
+
# @!attribute [rw] tenancy_id
|
|
1840
|
+
# @return [::String]
|
|
1841
|
+
# Optional. The OCID of the related OCI tenancy.
|
|
1842
|
+
# @!attribute [rw] region
|
|
1843
|
+
# @return [::String]
|
|
1844
|
+
# Optional. The name of the region. e.g.: us-ashburn-1
|
|
1845
|
+
# @!attribute [rw] user_id
|
|
1846
|
+
# @return [::String]
|
|
1847
|
+
# Optional. The OCID of the OCI user who will access.
|
|
1848
|
+
# @!attribute [rw] private_key_file
|
|
1849
|
+
# @return [::String]
|
|
1850
|
+
# Optional. The content of the private key file (PEM file)
|
|
1851
|
+
# corresponding to the API key of the fingerprint.
|
|
1852
|
+
# @!attribute [rw] private_key_passphrase_secret
|
|
1853
|
+
# @return [::String]
|
|
1854
|
+
# Optional. The passphrase of the private key.
|
|
1855
|
+
# @!attribute [rw] public_key_fingerprint
|
|
1856
|
+
# @return [::String]
|
|
1857
|
+
# Optional. The fingerprint of the API Key of the user specified by the
|
|
1858
|
+
# user_id.
|
|
1859
|
+
# @!attribute [rw] use_resource_principal
|
|
1860
|
+
# @return [::Boolean]
|
|
1861
|
+
# Optional. Specifies that the user intends to authenticate to the instance
|
|
1862
|
+
# using a resource principal.
|
|
1863
|
+
class GoldengateOracleAIDataPlatformConnectionProperties
|
|
1864
|
+
include ::Google::Protobuf::MessageExts
|
|
1865
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1866
|
+
end
|
|
1867
|
+
|
|
1868
|
+
# The Glue Iceberg catalog.
|
|
1869
|
+
# @!attribute [rw] glue_id
|
|
1870
|
+
# @return [::String]
|
|
1871
|
+
# Required. The catalog ID of Glue.
|
|
1872
|
+
class GlueIcebergCatalog
|
|
1873
|
+
include ::Google::Protobuf::MessageExts
|
|
1874
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1875
|
+
end
|
|
1876
|
+
|
|
1877
|
+
# The Nessie Iceberg catalog.
|
|
1878
|
+
# @!attribute [rw] uri
|
|
1879
|
+
# @return [::String]
|
|
1880
|
+
# Required. The Nessie uri.
|
|
1881
|
+
# @!attribute [rw] branch
|
|
1882
|
+
# @return [::String]
|
|
1883
|
+
# Required. The Nessie branch.
|
|
1884
|
+
class NessieIcebergCatalog
|
|
1885
|
+
include ::Google::Protobuf::MessageExts
|
|
1886
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1887
|
+
end
|
|
1888
|
+
|
|
1889
|
+
# The Polaris Iceberg catalog.
|
|
1890
|
+
# @!attribute [rw] uri
|
|
1891
|
+
# @return [::String]
|
|
1892
|
+
# Required. The Polaris uri.
|
|
1893
|
+
# @!attribute [rw] polaris_catalog
|
|
1894
|
+
# @return [::String]
|
|
1895
|
+
# Required. The catalog name within Polaris.
|
|
1896
|
+
# @!attribute [rw] client_id
|
|
1897
|
+
# @return [::String]
|
|
1898
|
+
# Required. The Polaris client ID.
|
|
1899
|
+
# @!attribute [rw] principal_role
|
|
1900
|
+
# @return [::String]
|
|
1901
|
+
# Required. The Polaris principal role.
|
|
1902
|
+
# @!attribute [rw] client_secret
|
|
1903
|
+
# @return [::String]
|
|
1904
|
+
# Optional. The Polaris client secret.
|
|
1905
|
+
class PolarisIcebergCatalog
|
|
1906
|
+
include ::Google::Protobuf::MessageExts
|
|
1907
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1908
|
+
end
|
|
1909
|
+
|
|
1910
|
+
# The REST Iceberg catalog.
|
|
1911
|
+
# @!attribute [rw] uri
|
|
1912
|
+
# @return [::String]
|
|
1913
|
+
# Required. The REST uri.
|
|
1914
|
+
# @!attribute [rw] properties
|
|
1915
|
+
# @return [::String]
|
|
1916
|
+
# Optional. The base64 encoded content of the configuration file containing
|
|
1917
|
+
# additional properties for the REST catalog.
|
|
1918
|
+
class RestIcebergCatalog
|
|
1919
|
+
include ::Google::Protobuf::MessageExts
|
|
1920
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1921
|
+
end
|
|
1922
|
+
|
|
1923
|
+
# The Iceberg catalog details.
|
|
1924
|
+
# @!attribute [rw] glue_iceberg_catalog
|
|
1925
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GlueIcebergCatalog]
|
|
1926
|
+
# The Glue Iceberg catalog.
|
|
1927
|
+
#
|
|
1928
|
+
# Note: The following fields are mutually exclusive: `glue_iceberg_catalog`, `nessie_iceberg_catalog`, `polaris_iceberg_catalog`, `rest_iceberg_catalog`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1929
|
+
# @!attribute [rw] nessie_iceberg_catalog
|
|
1930
|
+
# @return [::Google::Cloud::OracleDatabase::V1::NessieIcebergCatalog]
|
|
1931
|
+
# The Nessie Iceberg catalog.
|
|
1932
|
+
#
|
|
1933
|
+
# Note: The following fields are mutually exclusive: `nessie_iceberg_catalog`, `glue_iceberg_catalog`, `polaris_iceberg_catalog`, `rest_iceberg_catalog`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1934
|
+
# @!attribute [rw] polaris_iceberg_catalog
|
|
1935
|
+
# @return [::Google::Cloud::OracleDatabase::V1::PolarisIcebergCatalog]
|
|
1936
|
+
# The Polaris Iceberg catalog.
|
|
1937
|
+
#
|
|
1938
|
+
# Note: The following fields are mutually exclusive: `polaris_iceberg_catalog`, `glue_iceberg_catalog`, `nessie_iceberg_catalog`, `rest_iceberg_catalog`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1939
|
+
# @!attribute [rw] rest_iceberg_catalog
|
|
1940
|
+
# @return [::Google::Cloud::OracleDatabase::V1::RestIcebergCatalog]
|
|
1941
|
+
# The REST Iceberg catalog.
|
|
1942
|
+
#
|
|
1943
|
+
# Note: The following fields are mutually exclusive: `rest_iceberg_catalog`, `glue_iceberg_catalog`, `nessie_iceberg_catalog`, `polaris_iceberg_catalog`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
1944
|
+
# @!attribute [rw] catalog_type
|
|
1945
|
+
# @return [::Google::Cloud::OracleDatabase::V1::IcebergCatalog::CatalogType]
|
|
1946
|
+
# Required. The type of Iceberg catalog.
|
|
1947
|
+
class IcebergCatalog
|
|
1948
|
+
include ::Google::Protobuf::MessageExts
|
|
1949
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1950
|
+
|
|
1951
|
+
# The type of Iceberg catalog.
|
|
1952
|
+
module CatalogType
|
|
1953
|
+
# Catalog type not specified.
|
|
1954
|
+
CATALOG_TYPE_UNSPECIFIED = 0
|
|
1955
|
+
|
|
1956
|
+
# Glue catalog.
|
|
1957
|
+
GLUE = 1
|
|
1958
|
+
|
|
1959
|
+
# Hadoop catalog.
|
|
1960
|
+
HADOOP = 2
|
|
1961
|
+
|
|
1962
|
+
# Nessie catalog.
|
|
1963
|
+
NESSIE = 3
|
|
1964
|
+
|
|
1965
|
+
# Polaris catalog.
|
|
1966
|
+
POLARIS = 4
|
|
1967
|
+
|
|
1968
|
+
# REST catalog.
|
|
1969
|
+
REST = 5
|
|
1970
|
+
end
|
|
1971
|
+
end
|
|
1972
|
+
|
|
1973
|
+
# The Amazon S3 Iceberg storage.
|
|
1974
|
+
# @!attribute [rw] scheme_type
|
|
1975
|
+
# @return [::Google::Cloud::OracleDatabase::V1::AmazonS3IcebergStorage::SchemeType]
|
|
1976
|
+
# Required. The scheme type of Amazon S3.
|
|
1977
|
+
# @!attribute [rw] access_key_id
|
|
1978
|
+
# @return [::String]
|
|
1979
|
+
# Required. The access key ID of Amazon S3.
|
|
1980
|
+
# @!attribute [rw] region
|
|
1981
|
+
# @return [::String]
|
|
1982
|
+
# Required. The region of Amazon S3.
|
|
1983
|
+
# @!attribute [rw] bucket
|
|
1984
|
+
# @return [::String]
|
|
1985
|
+
# Required. The bucket of Amazon S3.
|
|
1986
|
+
# @!attribute [rw] endpoint
|
|
1987
|
+
# @return [::String]
|
|
1988
|
+
# Optional. The endpoint of Amazon S3.
|
|
1989
|
+
# @!attribute [rw] secret_access_key_secret
|
|
1990
|
+
# @return [::String]
|
|
1991
|
+
# Optional. The secret access key of Amazon S3.
|
|
1992
|
+
class AmazonS3IcebergStorage
|
|
1993
|
+
include ::Google::Protobuf::MessageExts
|
|
1994
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1995
|
+
|
|
1996
|
+
# Enum for scheme type of Amazon S3.
|
|
1997
|
+
module SchemeType
|
|
1998
|
+
# Scheme type not specified.
|
|
1999
|
+
SCHEME_TYPE_UNSPECIFIED = 0
|
|
2000
|
+
|
|
2001
|
+
# S3 scheme.
|
|
2002
|
+
S3 = 1
|
|
2003
|
+
|
|
2004
|
+
# S3A scheme.
|
|
2005
|
+
S3A = 2
|
|
2006
|
+
end
|
|
2007
|
+
end
|
|
2008
|
+
|
|
2009
|
+
# The Google Cloud Storage Iceberg storage.
|
|
2010
|
+
# @!attribute [rw] bucket
|
|
2011
|
+
# @return [::String]
|
|
2012
|
+
# Required. The bucket of Google Cloud Storage.
|
|
2013
|
+
# @!attribute [rw] project_id
|
|
2014
|
+
# @return [::String]
|
|
2015
|
+
# Required. The project ID of Google Cloud Storage.
|
|
2016
|
+
# @!attribute [rw] service_account_key_file
|
|
2017
|
+
# @return [::String]
|
|
2018
|
+
# Optional. The base64 encoded content of the service account key file of
|
|
2019
|
+
# Google Cloud Storage.
|
|
2020
|
+
class GoogleCloudStorageIcebergStorage
|
|
2021
|
+
include ::Google::Protobuf::MessageExts
|
|
2022
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2023
|
+
end
|
|
2024
|
+
|
|
2025
|
+
# The Azure Data Lake Storage Iceberg storage.
|
|
2026
|
+
# @!attribute [rw] azure_account
|
|
2027
|
+
# @return [::String]
|
|
2028
|
+
# Required. The account of Azure Data Lake Storage.
|
|
2029
|
+
# @!attribute [rw] container
|
|
2030
|
+
# @return [::String]
|
|
2031
|
+
# Required. The container of Azure Data Lake Storage.
|
|
2032
|
+
# @!attribute [rw] account_key_secret
|
|
2033
|
+
# @return [::String]
|
|
2034
|
+
# Optional. The account key of Azure Data Lake Storage.
|
|
2035
|
+
# @!attribute [rw] endpoint
|
|
2036
|
+
# @return [::String]
|
|
2037
|
+
# Optional. The endpoint of Azure Data Lake Storage.
|
|
2038
|
+
class AzureDataLakeStorageIcebergStorage
|
|
2039
|
+
include ::Google::Protobuf::MessageExts
|
|
2040
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2041
|
+
end
|
|
2042
|
+
|
|
2043
|
+
# The Iceberg storage details.
|
|
2044
|
+
# @!attribute [rw] amazon_s3_iceberg_storage
|
|
2045
|
+
# @return [::Google::Cloud::OracleDatabase::V1::AmazonS3IcebergStorage]
|
|
2046
|
+
# The Amazon S3 Iceberg storage.
|
|
2047
|
+
#
|
|
2048
|
+
# Note: The following fields are mutually exclusive: `amazon_s3_iceberg_storage`, `google_cloud_storage_iceberg_storage`, `azure_data_lake_storage_iceberg_storage`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
2049
|
+
# @!attribute [rw] google_cloud_storage_iceberg_storage
|
|
2050
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoogleCloudStorageIcebergStorage]
|
|
2051
|
+
# The Google Cloud Storage Iceberg storage.
|
|
2052
|
+
#
|
|
2053
|
+
# Note: The following fields are mutually exclusive: `google_cloud_storage_iceberg_storage`, `amazon_s3_iceberg_storage`, `azure_data_lake_storage_iceberg_storage`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
2054
|
+
# @!attribute [rw] azure_data_lake_storage_iceberg_storage
|
|
2055
|
+
# @return [::Google::Cloud::OracleDatabase::V1::AzureDataLakeStorageIcebergStorage]
|
|
2056
|
+
# The Azure Data Lake Storage Iceberg storage.
|
|
2057
|
+
#
|
|
2058
|
+
# Note: The following fields are mutually exclusive: `azure_data_lake_storage_iceberg_storage`, `amazon_s3_iceberg_storage`, `google_cloud_storage_iceberg_storage`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
2059
|
+
# @!attribute [rw] storage_type
|
|
2060
|
+
# @return [::Google::Cloud::OracleDatabase::V1::IcebergStorage::StorageType]
|
|
2061
|
+
# Required. The type of Iceberg storage.
|
|
2062
|
+
class IcebergStorage
|
|
2063
|
+
include ::Google::Protobuf::MessageExts
|
|
2064
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2065
|
+
|
|
2066
|
+
# The type of Iceberg storage.
|
|
2067
|
+
module StorageType
|
|
2068
|
+
# Storage type not specified.
|
|
2069
|
+
STORAGE_TYPE_UNSPECIFIED = 0
|
|
2070
|
+
|
|
2071
|
+
# Amazon S3 storage.
|
|
2072
|
+
AMAZON_S3 = 1
|
|
2073
|
+
|
|
2074
|
+
# Google Cloud Storage storage.
|
|
2075
|
+
GOOGLE_CLOUD_STORAGE = 2
|
|
2076
|
+
|
|
2077
|
+
# Azure Data Lake Storage storage.
|
|
2078
|
+
AZURE_DATA_LAKE_STORAGE = 3
|
|
2079
|
+
end
|
|
2080
|
+
end
|
|
2081
|
+
|
|
2082
|
+
# The properties of GoldengateIcebergConnection.
|
|
2083
|
+
# @!attribute [rw] technology_type
|
|
2084
|
+
# @return [::String]
|
|
2085
|
+
# Required. The technology type of Iceberg connection.
|
|
2086
|
+
# @!attribute [rw] catalog
|
|
2087
|
+
# @return [::Google::Cloud::OracleDatabase::V1::IcebergCatalog]
|
|
2088
|
+
# Required. The Iceberg catalog.
|
|
2089
|
+
# @!attribute [rw] storage
|
|
2090
|
+
# @return [::Google::Cloud::OracleDatabase::V1::IcebergStorage]
|
|
2091
|
+
# Required. The Iceberg storage.
|
|
2092
|
+
class GoldengateIcebergConnectionProperties
|
|
2093
|
+
include ::Google::Protobuf::MessageExts
|
|
2094
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2095
|
+
end
|
|
2096
|
+
|
|
2097
|
+
# The request for `GoldengateConnection.Create`.
|
|
2098
|
+
# @!attribute [rw] parent
|
|
2099
|
+
# @return [::String]
|
|
2100
|
+
# Required. The value for parent of the GoldengateConnection in the following
|
|
2101
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
2102
|
+
# @!attribute [rw] goldengate_connection_id
|
|
2103
|
+
# @return [::String]
|
|
2104
|
+
# Required. The ID of the GoldengateConnection to create. This value is
|
|
2105
|
+
# restricted to (^[a-z]([a-z0-9-]\\{0,61}[a-z0-9])?$) and must be a maximum of
|
|
2106
|
+
# 63 characters in length. The value must start with a letter and end with a
|
|
2107
|
+
# letter or a number.
|
|
2108
|
+
# @!attribute [rw] goldengate_connection
|
|
2109
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnection]
|
|
2110
|
+
# Required. The resource being created.
|
|
2111
|
+
# @!attribute [rw] request_id
|
|
2112
|
+
# @return [::String]
|
|
2113
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
|
2114
|
+
# request ID so that if you must retry your request, the server will know to
|
|
2115
|
+
# ignore the request if it has already been completed. The server will
|
|
2116
|
+
# guarantee that for at least 60 minutes since the first request.
|
|
2117
|
+
#
|
|
2118
|
+
# For example, consider a situation where you make an initial request and the
|
|
2119
|
+
# request times out. If you make the request again with the same request
|
|
2120
|
+
# ID, the server can check if original operation with the same request ID
|
|
2121
|
+
# was received, and if so, will ignore the second request. This prevents
|
|
2122
|
+
# clients from accidentally creating duplicate commitments.
|
|
2123
|
+
#
|
|
2124
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
2125
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
2126
|
+
class CreateGoldengateConnectionRequest
|
|
2127
|
+
include ::Google::Protobuf::MessageExts
|
|
2128
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2129
|
+
end
|
|
2130
|
+
|
|
2131
|
+
# The request for `GoldengateConnection.Delete`.
|
|
2132
|
+
# @!attribute [rw] name
|
|
2133
|
+
# @return [::String]
|
|
2134
|
+
# Required. The name of the GoldengateConnection in the following format:
|
|
2135
|
+
# projects/\\{project}/locations/\\{location}/goldengateConnections/\\{goldengate_connection}.
|
|
2136
|
+
# @!attribute [rw] request_id
|
|
2137
|
+
# @return [::String]
|
|
2138
|
+
# Optional. An optional ID to identify the request. This value is used to
|
|
2139
|
+
# identify duplicate requests. If you make a request with the same request ID
|
|
2140
|
+
# and the original request is still in progress or completed, the server
|
|
2141
|
+
# ignores the second request. This prevents clients from
|
|
2142
|
+
# accidentally creating duplicate commitments.
|
|
2143
|
+
#
|
|
2144
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
2145
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
2146
|
+
class DeleteGoldengateConnectionRequest
|
|
2147
|
+
include ::Google::Protobuf::MessageExts
|
|
2148
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2149
|
+
end
|
|
2150
|
+
|
|
2151
|
+
# The request for `GoldengateConnection.Get`.
|
|
2152
|
+
# @!attribute [rw] name
|
|
2153
|
+
# @return [::String]
|
|
2154
|
+
# Required. The name of the GoldengateConnection in the following format:
|
|
2155
|
+
# projects/\\{project}/locations/\\{location}/goldengateConnections/\\{goldengate_connection}.
|
|
2156
|
+
class GetGoldengateConnectionRequest
|
|
2157
|
+
include ::Google::Protobuf::MessageExts
|
|
2158
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2159
|
+
end
|
|
2160
|
+
|
|
2161
|
+
# The request for `GoldengateConnection.List`.
|
|
2162
|
+
# @!attribute [rw] parent
|
|
2163
|
+
# @return [::String]
|
|
2164
|
+
# Required. The parent value for GoldengateConnections in the following
|
|
2165
|
+
# format: projects/\\{project}/locations/\\{location}.
|
|
2166
|
+
# @!attribute [rw] page_size
|
|
2167
|
+
# @return [::Integer]
|
|
2168
|
+
# Optional. The maximum number of items to return.
|
|
2169
|
+
# If unspecified, at most 50 GoldengateConnections will be returned.
|
|
2170
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
2171
|
+
# @!attribute [rw] page_token
|
|
2172
|
+
# @return [::String]
|
|
2173
|
+
# Optional. A page token, received from a previous ListGoldengateConnections
|
|
2174
|
+
# call. Provide this to retrieve the subsequent page.
|
|
2175
|
+
# @!attribute [rw] filter
|
|
2176
|
+
# @return [::String]
|
|
2177
|
+
# Optional. An expression for filtering the results of the request.
|
|
2178
|
+
# @!attribute [rw] order_by
|
|
2179
|
+
# @return [::String]
|
|
2180
|
+
# Optional. An expression for ordering the results of the request.
|
|
2181
|
+
class ListGoldengateConnectionsRequest
|
|
2182
|
+
include ::Google::Protobuf::MessageExts
|
|
2183
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2184
|
+
end
|
|
2185
|
+
|
|
2186
|
+
# The response for `GoldengateConnection.List`.
|
|
2187
|
+
# @!attribute [rw] goldengate_connections
|
|
2188
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::GoldengateConnection>]
|
|
2189
|
+
# The list of GoldengateConnections.
|
|
2190
|
+
# @!attribute [rw] next_page_token
|
|
2191
|
+
# @return [::String]
|
|
2192
|
+
# A token identifying a page of results the server should return.
|
|
2193
|
+
# @!attribute [rw] unreachable
|
|
2194
|
+
# @return [::Array<::String>]
|
|
2195
|
+
# Optional. Locations that could not be reached.
|
|
2196
|
+
class ListGoldengateConnectionsResponse
|
|
2197
|
+
include ::Google::Protobuf::MessageExts
|
|
2198
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2199
|
+
end
|
|
2200
|
+
|
|
2201
|
+
# A name-value pair representing an attribute entry usable in a list of
|
|
2202
|
+
# attributes.
|
|
2203
|
+
# @!attribute [rw] key
|
|
2204
|
+
# @return [::String]
|
|
2205
|
+
# Required. The name of the property entry.
|
|
2206
|
+
# @!attribute [rw] value
|
|
2207
|
+
# @return [::String]
|
|
2208
|
+
# Required. The value of the property entry.
|
|
2209
|
+
class NameValuePair
|
|
2210
|
+
include ::Google::Protobuf::MessageExts
|
|
2211
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2212
|
+
end
|
|
2213
|
+
|
|
2214
|
+
# Represents a Kafka bootstrap server with host name, optional port defaults to
|
|
2215
|
+
# 9092, and an optional private ip.
|
|
2216
|
+
# @!attribute [rw] host
|
|
2217
|
+
# @return [::String]
|
|
2218
|
+
# Required. The name or address of a host.
|
|
2219
|
+
# @!attribute [rw] port
|
|
2220
|
+
# @return [::Integer]
|
|
2221
|
+
# Optional. The port of an endpoint usually specified for a connection.
|
|
2222
|
+
# @!attribute [rw] private_ip_address
|
|
2223
|
+
# @return [::String]
|
|
2224
|
+
# Optional. The private IP address of the connection's endpoint in the
|
|
2225
|
+
# customer's VCN, typically a database endpoint or a big data endpoint (e.g.
|
|
2226
|
+
# Kafka bootstrap server). In case the privateIp is provided, the subnetId
|
|
2227
|
+
# must also be provided. In case the privateIp (and the subnetId) is not
|
|
2228
|
+
# provided it is assumed the datasource is publicly accessible. In case the
|
|
2229
|
+
# connection is accessible only privately, the lack of privateIp will result
|
|
2230
|
+
# in not being able to access the connection.
|
|
2231
|
+
class KafkaBootstrapServer
|
|
2232
|
+
include ::Google::Protobuf::MessageExts
|
|
2233
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2234
|
+
end
|
|
2235
|
+
end
|
|
2236
|
+
end
|
|
2237
|
+
end
|
|
2238
|
+
end
|