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,300 @@
|
|
|
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
|
+
# Represents the metadata of a Goldengate Connection Assignment.
|
|
25
|
+
# @!attribute [rw] name
|
|
26
|
+
# @return [::String]
|
|
27
|
+
# Identifier. The name of the GoldengateConnectionAssignment resource in the
|
|
28
|
+
# following format:
|
|
29
|
+
# projects/\\{project}/locations/\\{region}/goldengateConnectionAssignments/\\{goldengate_connection_assignment}
|
|
30
|
+
# @!attribute [rw] properties
|
|
31
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignmentProperties]
|
|
32
|
+
# Required. The properties of the GoldengateConnectionAssignment.
|
|
33
|
+
# @!attribute [r] create_time
|
|
34
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
35
|
+
# Output only. The time when the connection assignment was created.
|
|
36
|
+
# @!attribute [rw] labels
|
|
37
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
38
|
+
# Optional. The labels or tags associated with the
|
|
39
|
+
# GoldengateConnectionAssignment.
|
|
40
|
+
# @!attribute [rw] display_name
|
|
41
|
+
# @return [::String]
|
|
42
|
+
# Optional. The display name for the GoldengateConnectionAssignment.
|
|
43
|
+
# @!attribute [r] entitlement_id
|
|
44
|
+
# @return [::String]
|
|
45
|
+
# Output only. The OCID of the entitlement linked to this resource.
|
|
46
|
+
class GoldengateConnectionAssignment
|
|
47
|
+
include ::Google::Protobuf::MessageExts
|
|
48
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
49
|
+
|
|
50
|
+
# @!attribute [rw] key
|
|
51
|
+
# @return [::String]
|
|
52
|
+
# @!attribute [rw] value
|
|
53
|
+
# @return [::String]
|
|
54
|
+
class LabelsEntry
|
|
55
|
+
include ::Google::Protobuf::MessageExts
|
|
56
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# The properties of a GoldengateConnectionAssignment.
|
|
61
|
+
# @!attribute [r] ocid
|
|
62
|
+
# @return [::String]
|
|
63
|
+
# Output only. The
|
|
64
|
+
# [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm)
|
|
65
|
+
# of the connection assignment being referenced.
|
|
66
|
+
# @!attribute [rw] goldengate_connection
|
|
67
|
+
# @return [::String]
|
|
68
|
+
# Required. The GoldengateConnection resource to be assigned.
|
|
69
|
+
# Format:
|
|
70
|
+
# projects/\\{project}/locations/\\{location}/goldengateConnections/\\{goldengate_connection}
|
|
71
|
+
# @!attribute [rw] goldengate_deployment
|
|
72
|
+
# @return [::String]
|
|
73
|
+
# Required. The GoldenGateDeployment to assign the connection to.
|
|
74
|
+
# Format:
|
|
75
|
+
# projects/\\{project}/locations/\\{location}/goldengateDeployments/\\{goldengate_deployment}
|
|
76
|
+
# @!attribute [r] alias
|
|
77
|
+
# @return [::String]
|
|
78
|
+
# Output only. Credential store alias.
|
|
79
|
+
# @!attribute [r] state
|
|
80
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignmentProperties::State]
|
|
81
|
+
# Output only. The lifecycle state of the connection assignment.
|
|
82
|
+
class GoldengateConnectionAssignmentProperties
|
|
83
|
+
include ::Google::Protobuf::MessageExts
|
|
84
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
85
|
+
|
|
86
|
+
# Possible lifecycle states for connection assignments.
|
|
87
|
+
module State
|
|
88
|
+
# Lifecycle state is unspecified.
|
|
89
|
+
STATE_UNSPECIFIED = 0
|
|
90
|
+
|
|
91
|
+
# Connection assignment is being created.
|
|
92
|
+
CREATING = 1
|
|
93
|
+
|
|
94
|
+
# Connection assignment is active.
|
|
95
|
+
ACTIVE = 2
|
|
96
|
+
|
|
97
|
+
# Connection assignment failed.
|
|
98
|
+
FAILED = 3
|
|
99
|
+
|
|
100
|
+
# Connection assignment is being updated.
|
|
101
|
+
UPDATING = 4
|
|
102
|
+
|
|
103
|
+
# Connection assignment is being deleted.
|
|
104
|
+
DELETING = 5
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
# Request message for listing GoldengateConnectionAssignments.
|
|
109
|
+
# @!attribute [rw] parent
|
|
110
|
+
# @return [::String]
|
|
111
|
+
# Required. The parent value for the GoldengateConnectionAssignments.
|
|
112
|
+
# Format: projects/\\{project}/locations/\\{location}
|
|
113
|
+
# @!attribute [rw] page_size
|
|
114
|
+
# @return [::Integer]
|
|
115
|
+
# Optional. The maximum number of GoldengateConnectionAssignments to return.
|
|
116
|
+
# The service may return fewer than this value. If unspecified, at most 50
|
|
117
|
+
# GoldengateConnectionAssignments will be returned. The maximum value is
|
|
118
|
+
# 1000; values above 1000 will be coerced to 1000.
|
|
119
|
+
# @!attribute [rw] page_token
|
|
120
|
+
# @return [::String]
|
|
121
|
+
# Optional. A page token, received from a previous
|
|
122
|
+
# `ListGoldengateConnectionAssignments` call. Provide this to retrieve the
|
|
123
|
+
# subsequent page.
|
|
124
|
+
#
|
|
125
|
+
# When paginating, all other parameters provided to
|
|
126
|
+
# `ListGoldengateConnectionAssignments` must match the call that provided
|
|
127
|
+
# the page token.
|
|
128
|
+
# @!attribute [rw] filter
|
|
129
|
+
# @return [::String]
|
|
130
|
+
# Optional. A filter expression that filters GoldengateConnectionAssignments
|
|
131
|
+
# listed in the response.
|
|
132
|
+
# @!attribute [rw] order_by
|
|
133
|
+
# @return [::String]
|
|
134
|
+
# Optional. A comma-separated list of fields to order by, sorted in ascending
|
|
135
|
+
# order. Use "DESC" after a field name for descending.
|
|
136
|
+
class ListGoldengateConnectionAssignmentsRequest
|
|
137
|
+
include ::Google::Protobuf::MessageExts
|
|
138
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# Response message for listing GoldengateConnectionAssignments.
|
|
142
|
+
# @!attribute [rw] goldengate_connection_assignments
|
|
143
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignment>]
|
|
144
|
+
# The list of GoldengateConnectionAssignments.
|
|
145
|
+
# @!attribute [rw] next_page_token
|
|
146
|
+
# @return [::String]
|
|
147
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
|
148
|
+
# If this field is omitted, there are no subsequent pages.
|
|
149
|
+
# @!attribute [rw] unreachable
|
|
150
|
+
# @return [::Array<::String>]
|
|
151
|
+
# Unreachable locations when listing resources across all locations using
|
|
152
|
+
# wildcard location '-'.
|
|
153
|
+
class ListGoldengateConnectionAssignmentsResponse
|
|
154
|
+
include ::Google::Protobuf::MessageExts
|
|
155
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
# Request message for getting a GoldengateConnectionAssignment.
|
|
159
|
+
# @!attribute [rw] name
|
|
160
|
+
# @return [::String]
|
|
161
|
+
# Required. The name of the GoldengateConnectionAssignment to retrieve.
|
|
162
|
+
# Format:
|
|
163
|
+
# projects/\\{project}/locations/\\{location}/goldengateConnectionAssignments/\\{goldengate_connection_assignment}
|
|
164
|
+
class GetGoldengateConnectionAssignmentRequest
|
|
165
|
+
include ::Google::Protobuf::MessageExts
|
|
166
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
# Request message for creating a GoldengateConnectionAssignment.
|
|
170
|
+
# @!attribute [rw] parent
|
|
171
|
+
# @return [::String]
|
|
172
|
+
# Required. The parent resource where this GoldengateConnectionAssignment
|
|
173
|
+
# will be created. Format: projects/\\{project}/locations/\\{location}
|
|
174
|
+
# @!attribute [rw] goldengate_connection_assignment_id
|
|
175
|
+
# @return [::String]
|
|
176
|
+
# Required. The ID of the GoldengateConnectionAssignment to create.
|
|
177
|
+
# @!attribute [rw] goldengate_connection_assignment
|
|
178
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionAssignment]
|
|
179
|
+
# Required. The GoldengateConnectionAssignment to create.
|
|
180
|
+
# @!attribute [rw] request_id
|
|
181
|
+
# @return [::String]
|
|
182
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
|
183
|
+
# request ID so that if you must retry your request, the server will know to
|
|
184
|
+
# ignore the request if it has already been completed. The server will
|
|
185
|
+
# guarantee that for at least 60 minutes since the first request.
|
|
186
|
+
#
|
|
187
|
+
# For example, consider a situation where you make an initial request and the
|
|
188
|
+
# request times out. If you make the request again with the same request
|
|
189
|
+
# ID, the server can check if original operation with the same request ID
|
|
190
|
+
# was received, and if so, will ignore the second request. This prevents
|
|
191
|
+
# clients from accidentally creating duplicate commitments.
|
|
192
|
+
#
|
|
193
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
194
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
195
|
+
class CreateGoldengateConnectionAssignmentRequest
|
|
196
|
+
include ::Google::Protobuf::MessageExts
|
|
197
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# Request message for TestGoldengateConnectionAssignment.
|
|
201
|
+
# @!attribute [rw] name
|
|
202
|
+
# @return [::String]
|
|
203
|
+
# Required. Name of the connection assignment for which to test connection.
|
|
204
|
+
# projects/\\{project}/locations/\\{region}/goldengateConnectionAssignments/\\{goldengate_connection_assignment}
|
|
205
|
+
# @!attribute [rw] type
|
|
206
|
+
# @return [::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentRequest::TestType]
|
|
207
|
+
# Optional. The type of the test of the assigned connection.
|
|
208
|
+
# The only type actually supported is DEFAULT.
|
|
209
|
+
class TestGoldengateConnectionAssignmentRequest
|
|
210
|
+
include ::Google::Protobuf::MessageExts
|
|
211
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
212
|
+
|
|
213
|
+
# The type of test to perform.
|
|
214
|
+
module TestType
|
|
215
|
+
# The default value. This value is unused.
|
|
216
|
+
TEST_TYPE_UNSPECIFIED = 0
|
|
217
|
+
|
|
218
|
+
# The default connection test.
|
|
219
|
+
DEFAULT = 1
|
|
220
|
+
end
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
# Error details for TestGoldengateConnectionAssignment.
|
|
224
|
+
# @!attribute [rw] code
|
|
225
|
+
# @return [::String]
|
|
226
|
+
# A short error code that defines the error, meant for programmatic parsing.
|
|
227
|
+
# @!attribute [rw] message
|
|
228
|
+
# @return [::String]
|
|
229
|
+
# A human-readable error message.
|
|
230
|
+
# @!attribute [rw] action
|
|
231
|
+
# @return [::String]
|
|
232
|
+
# The text describing the action required to fix the issue.
|
|
233
|
+
# @!attribute [rw] issue
|
|
234
|
+
# @return [::String]
|
|
235
|
+
# The text describing the root cause of the reported issue.
|
|
236
|
+
class TestConnectionAssignmentError
|
|
237
|
+
include ::Google::Protobuf::MessageExts
|
|
238
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
# The result of the connectivity test performed between the Goldengate
|
|
242
|
+
# deployment and the associated database / service.
|
|
243
|
+
# @!attribute [rw] result_type
|
|
244
|
+
# @return [::Google::Cloud::OracleDatabase::V1::TestGoldengateConnectionAssignmentResponse::ResultType]
|
|
245
|
+
# Type of the result i.e. Success, Failure or Timeout.
|
|
246
|
+
# @!attribute [rw] error
|
|
247
|
+
# @return [::Google::Cloud::OracleDatabase::V1::TestConnectionAssignmentError]
|
|
248
|
+
# Error details if test connection failed.
|
|
249
|
+
# @!attribute [rw] errors
|
|
250
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::TestConnectionAssignmentError>]
|
|
251
|
+
# List of test connection assignment error objects.
|
|
252
|
+
class TestGoldengateConnectionAssignmentResponse
|
|
253
|
+
include ::Google::Protobuf::MessageExts
|
|
254
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
255
|
+
|
|
256
|
+
# Type of the result.
|
|
257
|
+
module ResultType
|
|
258
|
+
# Result type is unspecified.
|
|
259
|
+
RESULT_TYPE_UNSPECIFIED = 0
|
|
260
|
+
|
|
261
|
+
# Test connection succeeded.
|
|
262
|
+
SUCCEEDED = 1
|
|
263
|
+
|
|
264
|
+
# Test connection failed.
|
|
265
|
+
FAILED = 2
|
|
266
|
+
|
|
267
|
+
# Test connection timed out.
|
|
268
|
+
TIMED_OUT = 3
|
|
269
|
+
end
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
# Request message for deleting a GoldengateConnectionAssignment.
|
|
273
|
+
# @!attribute [rw] name
|
|
274
|
+
# @return [::String]
|
|
275
|
+
# Required. The name of the GoldengateConnectionAssignment to delete.
|
|
276
|
+
# Format:
|
|
277
|
+
# projects/\\{project}/locations/\\{location}/goldengateConnectionAssignments/\\{goldengate_connection_assignment}
|
|
278
|
+
# @!attribute [rw] request_id
|
|
279
|
+
# @return [::String]
|
|
280
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
|
281
|
+
# request ID so that if you must retry your request, the server will know to
|
|
282
|
+
# ignore the request if it has already been completed. The server will
|
|
283
|
+
# guarantee that for at least 60 minutes after the first request.
|
|
284
|
+
#
|
|
285
|
+
# For example, consider a situation where you make an initial request and the
|
|
286
|
+
# request times out. If you make the request again with the same request
|
|
287
|
+
# ID, the server can check if original operation with the same request ID
|
|
288
|
+
# was received, and if so, will ignore the second request. This prevents
|
|
289
|
+
# clients from accidentally creating duplicate commitments.
|
|
290
|
+
#
|
|
291
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
|
292
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
|
293
|
+
class DeleteGoldengateConnectionAssignmentRequest
|
|
294
|
+
include ::Google::Protobuf::MessageExts
|
|
295
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
296
|
+
end
|
|
297
|
+
end
|
|
298
|
+
end
|
|
299
|
+
end
|
|
300
|
+
end
|
|
@@ -0,0 +1,186 @@
|
|
|
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 Goldengate Connection Type resource.
|
|
25
|
+
# @!attribute [rw] name
|
|
26
|
+
# @return [::String]
|
|
27
|
+
# Identifier. The name of the Goldengate Connection Type resource with the
|
|
28
|
+
# format:
|
|
29
|
+
# projects/\\{project}/locations/\\{region}/goldengateConnectionTypes/\\{goldengate_connection_type}
|
|
30
|
+
# @!attribute [r] connection_type
|
|
31
|
+
# @return [::Google::Cloud::OracleDatabase::V1::GoldengateConnectionType::ConnectionType]
|
|
32
|
+
# Output only. The connection type of the Goldengate Connection Type
|
|
33
|
+
# resource.
|
|
34
|
+
# @!attribute [r] technology_types
|
|
35
|
+
# @return [::Array<::String>]
|
|
36
|
+
# Output only. The technology type of the Goldengate Connection Type
|
|
37
|
+
# resource.
|
|
38
|
+
class GoldengateConnectionType
|
|
39
|
+
include ::Google::Protobuf::MessageExts
|
|
40
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
41
|
+
|
|
42
|
+
# The connection type of the Goldengate Connection Type resource.
|
|
43
|
+
module ConnectionType
|
|
44
|
+
# Default unspecified value.
|
|
45
|
+
CONNECTION_TYPE_UNSPECIFIED = 0
|
|
46
|
+
|
|
47
|
+
# Goldengate Connection Type category is GOLDENGATE.
|
|
48
|
+
GOLDENGATE = 1
|
|
49
|
+
|
|
50
|
+
# Goldengate Connection Type category is KAFKA.
|
|
51
|
+
KAFKA = 2
|
|
52
|
+
|
|
53
|
+
# Goldengate Connection Type category is KAFKA_SCHEMA_REGISTRY.
|
|
54
|
+
KAFKA_SCHEMA_REGISTRY = 3
|
|
55
|
+
|
|
56
|
+
# Goldengate Connection Type category is MYSQL.
|
|
57
|
+
MYSQL = 4
|
|
58
|
+
|
|
59
|
+
# Goldengate Connection Type category is JAVA_MESSAGE_SERVICE.
|
|
60
|
+
JAVA_MESSAGE_SERVICE = 5
|
|
61
|
+
|
|
62
|
+
# Goldengate Connection Type category is MICROSOFT_SQLSERVER.
|
|
63
|
+
MICROSOFT_SQLSERVER = 6
|
|
64
|
+
|
|
65
|
+
# Goldengate Connection Type category is OCI_OBJECT_STORAGE.
|
|
66
|
+
OCI_OBJECT_STORAGE = 7
|
|
67
|
+
|
|
68
|
+
# Goldengate Connection Type category is ORACLE.
|
|
69
|
+
ORACLE = 8
|
|
70
|
+
|
|
71
|
+
# Goldengate Connection Type category is AZURE_DATA_LAKE_STORAGE.
|
|
72
|
+
AZURE_DATA_LAKE_STORAGE = 9
|
|
73
|
+
|
|
74
|
+
# Goldengate Connection Type category is POSTGRESQL.
|
|
75
|
+
POSTGRESQL = 10
|
|
76
|
+
|
|
77
|
+
# Goldengate Connection Type category is AZURE_SYNAPSE_ANALYTICS.
|
|
78
|
+
AZURE_SYNAPSE_ANALYTICS = 11
|
|
79
|
+
|
|
80
|
+
# Goldengate Connection Type category is SNOWFLAKE.
|
|
81
|
+
SNOWFLAKE = 12
|
|
82
|
+
|
|
83
|
+
# Goldengate Connection Type category is AMAZON_S3.
|
|
84
|
+
AMAZON_S3 = 13
|
|
85
|
+
|
|
86
|
+
# Goldengate Connection Type category is HDFS.
|
|
87
|
+
HDFS = 14
|
|
88
|
+
|
|
89
|
+
# Goldengate Connection Type category is ORACLE_AI_DATA_PLATFORM.
|
|
90
|
+
ORACLE_AI_DATA_PLATFORM = 15
|
|
91
|
+
|
|
92
|
+
# Goldengate Connection Type category is ORACLE_NOSQL.
|
|
93
|
+
ORACLE_NOSQL = 16
|
|
94
|
+
|
|
95
|
+
# Goldengate Connection Type category is MONGODB.
|
|
96
|
+
MONGODB = 17
|
|
97
|
+
|
|
98
|
+
# Goldengate Connection Type category is AMAZON_KINESIS.
|
|
99
|
+
AMAZON_KINESIS = 18
|
|
100
|
+
|
|
101
|
+
# Goldengate Connection Type category is AMAZON_REDSHIFT.
|
|
102
|
+
AMAZON_REDSHIFT = 19
|
|
103
|
+
|
|
104
|
+
# Goldengate Connection Type category is DB2.
|
|
105
|
+
DB2 = 20
|
|
106
|
+
|
|
107
|
+
# Goldengate Connection Type category is REDIS.
|
|
108
|
+
REDIS = 21
|
|
109
|
+
|
|
110
|
+
# Goldengate Connection Type category is ELASTICSEARCH.
|
|
111
|
+
ELASTICSEARCH = 22
|
|
112
|
+
|
|
113
|
+
# Goldengate Connection Type category is GENERIC.
|
|
114
|
+
GENERIC = 23
|
|
115
|
+
|
|
116
|
+
# Goldengate Connection Type category is GOOGLE_CLOUD_STORAGE.
|
|
117
|
+
GOOGLE_CLOUD_STORAGE = 24
|
|
118
|
+
|
|
119
|
+
# Goldengate Connection Type category is GOOGLE_BIGQUERY.
|
|
120
|
+
GOOGLE_BIGQUERY = 25
|
|
121
|
+
|
|
122
|
+
# Goldengate Connection Type category is DATABRICKS.
|
|
123
|
+
DATABRICKS = 26
|
|
124
|
+
|
|
125
|
+
# Goldengate Connection Type category is GOOGLE_PUBSUB.
|
|
126
|
+
GOOGLE_PUBSUB = 27
|
|
127
|
+
|
|
128
|
+
# Goldengate Connection Type category is MICROSOFT_FABRIC.
|
|
129
|
+
MICROSOFT_FABRIC = 28
|
|
130
|
+
|
|
131
|
+
# Goldengate Connection Type category is ICEBERG.
|
|
132
|
+
ICEBERG = 29
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# Message for getting a GoldengateConnectionType.
|
|
137
|
+
# @!attribute [rw] name
|
|
138
|
+
# @return [::String]
|
|
139
|
+
# Required. Name of the resource in the format:
|
|
140
|
+
# projects/\\{project}/locations/\\{location}/goldengateConnectionTypes/\\{goldengate_connection_type}
|
|
141
|
+
class GetGoldengateConnectionTypeRequest
|
|
142
|
+
include ::Google::Protobuf::MessageExts
|
|
143
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
# Message for listing GoldengateConnectionTypes.
|
|
147
|
+
# @!attribute [rw] parent
|
|
148
|
+
# @return [::String]
|
|
149
|
+
# Required. Parent value for ListGoldengateConnectionTypesRequest
|
|
150
|
+
# Format: projects/\\{project}/locations/\\{location}
|
|
151
|
+
# @!attribute [rw] page_size
|
|
152
|
+
# @return [::Integer]
|
|
153
|
+
# Optional. Requested page size. Server may return fewer items than
|
|
154
|
+
# requested. If unspecified, server will pick an appropriate default.
|
|
155
|
+
# @!attribute [rw] page_token
|
|
156
|
+
# @return [::String]
|
|
157
|
+
# Optional. A token identifying a page of results the server should return.
|
|
158
|
+
# @!attribute [rw] filter
|
|
159
|
+
# @return [::String]
|
|
160
|
+
# Optional. An expression for filtering the results of the request. The
|
|
161
|
+
# connection_type field must be specified in the format:
|
|
162
|
+
# `connection_type="ORACLE"`.
|
|
163
|
+
class ListGoldengateConnectionTypesRequest
|
|
164
|
+
include ::Google::Protobuf::MessageExts
|
|
165
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
# Message for response to listing GoldengateConnectionTypes
|
|
169
|
+
# @!attribute [rw] goldengate_connection_types
|
|
170
|
+
# @return [::Array<::Google::Cloud::OracleDatabase::V1::GoldengateConnectionType>]
|
|
171
|
+
# The list of GoldengateConnectionType
|
|
172
|
+
# @!attribute [rw] next_page_token
|
|
173
|
+
# @return [::String]
|
|
174
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
|
175
|
+
# If this field is omitted, there are no subsequent pages.
|
|
176
|
+
# @!attribute [rw] unreachable
|
|
177
|
+
# @return [::Array<::String>]
|
|
178
|
+
# Unordered list. Locations that could not be reached.
|
|
179
|
+
class ListGoldengateConnectionTypesResponse
|
|
180
|
+
include ::Google::Protobuf::MessageExts
|
|
181
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
end
|
|
186
|
+
end
|