google-cloud-cloud_dms-v1 1.0.1 → 1.2.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 +31 -21
- data/lib/google/cloud/cloud_dms/v1/data_migration_service/client.rb +73 -42
- data/lib/google/cloud/cloud_dms/v1/data_migration_service/operations.rb +19 -15
- data/lib/google/cloud/cloud_dms/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/clouddms/v1/clouddms.rb +8 -0
- data/proto_docs/google/cloud/clouddms/v1/clouddms_resources.rb +34 -0
- data/proto_docs/google/cloud/clouddms/v1/conversionworkspace_resources.rb +80 -0
- data/proto_docs/google/longrunning/operations.rb +23 -14
- data/proto_docs/google/protobuf/struct.rb +12 -0
- metadata +6 -9
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +215,12 @@ module Google
|
|
212
215
|
# enabled. By default, asynchronous REST clients will not be generated.
|
213
216
|
# This feature will be enabled by default 1 month after launching the
|
214
217
|
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
215
224
|
class ExperimentalFeatures
|
216
225
|
include ::Google::Protobuf::MessageExts
|
217
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -297,9 +306,28 @@ module Google
|
|
297
306
|
# @!attribute [rw] common
|
298
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
299
308
|
# Some settings.
|
309
|
+
# @!attribute [rw] renamed_services
|
310
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
311
|
+
# Map of service names to renamed services. Keys are the package relative
|
312
|
+
# service names and values are the name to be used for the service client
|
313
|
+
# and call options.
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# go_settings:
|
317
|
+
# renamed_services:
|
318
|
+
# Publisher: TopicAdmin
|
300
319
|
class GoSettings
|
301
320
|
include ::Google::Protobuf::MessageExts
|
302
321
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
322
|
+
|
323
|
+
# @!attribute [rw] key
|
324
|
+
# @return [::String]
|
325
|
+
# @!attribute [rw] value
|
326
|
+
# @return [::String]
|
327
|
+
class RenamedServicesEntry
|
328
|
+
include ::Google::Protobuf::MessageExts
|
329
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
330
|
+
end
|
303
331
|
end
|
304
332
|
|
305
333
|
# Describes the generator configuration for a method.
|
@@ -375,6 +403,17 @@ module Google
|
|
375
403
|
end
|
376
404
|
end
|
377
405
|
|
406
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
407
|
+
# a service for client libraries.
|
408
|
+
# @!attribute [rw] methods
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
411
|
+
# on public client surfaces.
|
412
|
+
class SelectiveGapicGeneration
|
413
|
+
include ::Google::Protobuf::MessageExts
|
414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
415
|
+
end
|
416
|
+
|
378
417
|
# The organization for which the client libraries are being published.
|
379
418
|
# Affects the url where generated docs are published, etc.
|
380
419
|
module ClientLibraryOrganization
|
@@ -235,9 +235,13 @@ module Google
|
|
235
235
|
# @!attribute [rw] vm_creation_config
|
236
236
|
# @return [::Google::Cloud::CloudDMS::V1::VmCreationConfig]
|
237
237
|
# The VM creation configuration
|
238
|
+
#
|
239
|
+
# Note: The following fields are mutually exclusive: `vm_creation_config`, `vm_selection_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
238
240
|
# @!attribute [rw] vm_selection_config
|
239
241
|
# @return [::Google::Cloud::CloudDMS::V1::VmSelectionConfig]
|
240
242
|
# The VM selection configuration
|
243
|
+
#
|
244
|
+
# Note: The following fields are mutually exclusive: `vm_selection_config`, `vm_creation_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
241
245
|
# @!attribute [rw] vm_port
|
242
246
|
# @return [::Integer]
|
243
247
|
# The port that will be open on the bastion host.
|
@@ -837,10 +841,14 @@ module Google
|
|
837
841
|
# @!attribute [rw] source_connection_profile
|
838
842
|
# @return [::String]
|
839
843
|
# Optional. Fully qualified (Uri) name of the source connection profile.
|
844
|
+
#
|
845
|
+
# Note: The following fields are mutually exclusive: `source_connection_profile`, `destination_connection_profile`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
840
846
|
# @!attribute [rw] destination_connection_profile
|
841
847
|
# @return [::String]
|
842
848
|
# Optional. Fully qualified (Uri) name of the destination connection
|
843
849
|
# profile.
|
850
|
+
#
|
851
|
+
# Note: The following fields are mutually exclusive: `destination_connection_profile`, `source_connection_profile`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
844
852
|
class SeedConversionWorkspaceRequest
|
845
853
|
include ::Google::Protobuf::MessageExts
|
846
854
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -128,9 +128,13 @@ module Google
|
|
128
128
|
# @!attribute [rw] static_ip_connectivity
|
129
129
|
# @return [::Google::Cloud::CloudDMS::V1::StaticIpConnectivity]
|
130
130
|
# Static ip connectivity data (default, no additional details needed).
|
131
|
+
#
|
132
|
+
# Note: The following fields are mutually exclusive: `static_ip_connectivity`, `private_service_connect_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
131
133
|
# @!attribute [rw] private_service_connect_connectivity
|
132
134
|
# @return [::Google::Cloud::CloudDMS::V1::PrivateServiceConnectConnectivity]
|
133
135
|
# Private service connect connectivity.
|
136
|
+
#
|
137
|
+
# Note: The following fields are mutually exclusive: `private_service_connect_connectivity`, `static_ip_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
134
138
|
class PostgreSqlConnectionProfile
|
135
139
|
include ::Google::Protobuf::MessageExts
|
136
140
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -170,12 +174,18 @@ module Google
|
|
170
174
|
# @!attribute [rw] static_service_ip_connectivity
|
171
175
|
# @return [::Google::Cloud::CloudDMS::V1::StaticServiceIpConnectivity]
|
172
176
|
# Static Service IP connectivity.
|
177
|
+
#
|
178
|
+
# Note: The following fields are mutually exclusive: `static_service_ip_connectivity`, `forward_ssh_connectivity`, `private_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
173
179
|
# @!attribute [rw] forward_ssh_connectivity
|
174
180
|
# @return [::Google::Cloud::CloudDMS::V1::ForwardSshTunnelConnectivity]
|
175
181
|
# Forward SSH tunnel connectivity.
|
182
|
+
#
|
183
|
+
# Note: The following fields are mutually exclusive: `forward_ssh_connectivity`, `static_service_ip_connectivity`, `private_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
176
184
|
# @!attribute [rw] private_connectivity
|
177
185
|
# @return [::Google::Cloud::CloudDMS::V1::PrivateConnectivity]
|
178
186
|
# Private connectivity.
|
187
|
+
#
|
188
|
+
# Note: The following fields are mutually exclusive: `private_connectivity`, `static_service_ip_connectivity`, `forward_ssh_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
179
189
|
class OracleConnectionProfile
|
180
190
|
include ::Google::Protobuf::MessageExts
|
181
191
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -229,9 +239,13 @@ module Google
|
|
229
239
|
# The time when this access control entry expires in
|
230
240
|
# [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example:
|
231
241
|
# `2012-11-15T16:19:00.094Z`.
|
242
|
+
#
|
243
|
+
# Note: The following fields are mutually exclusive: `expire_time`, `ttl`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
232
244
|
# @!attribute [rw] ttl
|
233
245
|
# @return [::Google::Protobuf::Duration]
|
234
246
|
# Input only. The time-to-leave of this access control entry.
|
247
|
+
#
|
248
|
+
# Note: The following fields are mutually exclusive: `ttl`, `expire_time`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
235
249
|
# @!attribute [rw] label
|
236
250
|
# @return [::String]
|
237
251
|
# A label to identify this entry.
|
@@ -665,9 +679,13 @@ module Google
|
|
665
679
|
# @!attribute [rw] password
|
666
680
|
# @return [::String]
|
667
681
|
# Input only. SSH password.
|
682
|
+
#
|
683
|
+
# Note: The following fields are mutually exclusive: `password`, `private_key`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
668
684
|
# @!attribute [rw] private_key
|
669
685
|
# @return [::String]
|
670
686
|
# Input only. SSH private key.
|
687
|
+
#
|
688
|
+
# Note: The following fields are mutually exclusive: `private_key`, `password`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
671
689
|
class ForwardSshTunnelConnectivity
|
672
690
|
include ::Google::Protobuf::MessageExts
|
673
691
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -753,12 +771,18 @@ module Google
|
|
753
771
|
# @return [::Google::Cloud::CloudDMS::V1::ReverseSshConnectivity]
|
754
772
|
# The details needed to communicate to the source over Reverse SSH
|
755
773
|
# tunnel connectivity.
|
774
|
+
#
|
775
|
+
# Note: The following fields are mutually exclusive: `reverse_ssh_connectivity`, `vpc_peering_connectivity`, `static_ip_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
756
776
|
# @!attribute [rw] vpc_peering_connectivity
|
757
777
|
# @return [::Google::Cloud::CloudDMS::V1::VpcPeeringConnectivity]
|
758
778
|
# The details of the VPC network that the source database is located in.
|
779
|
+
#
|
780
|
+
# Note: The following fields are mutually exclusive: `vpc_peering_connectivity`, `reverse_ssh_connectivity`, `static_ip_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
759
781
|
# @!attribute [rw] static_ip_connectivity
|
760
782
|
# @return [::Google::Cloud::CloudDMS::V1::StaticIpConnectivity]
|
761
783
|
# static ip connectivity data (default, no additional details needed).
|
784
|
+
#
|
785
|
+
# Note: The following fields are mutually exclusive: `static_ip_connectivity`, `reverse_ssh_connectivity`, `vpc_peering_connectivity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
762
786
|
# @!attribute [r] duration
|
763
787
|
# @return [::Google::Protobuf::Duration]
|
764
788
|
# Output only. The duration of the migration job (in seconds). A duration in
|
@@ -990,18 +1014,28 @@ module Google
|
|
990
1014
|
# @!attribute [rw] mysql
|
991
1015
|
# @return [::Google::Cloud::CloudDMS::V1::MySqlConnectionProfile]
|
992
1016
|
# A MySQL database connection profile.
|
1017
|
+
#
|
1018
|
+
# Note: The following fields are mutually exclusive: `mysql`, `postgresql`, `oracle`, `cloudsql`, `alloydb`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
993
1019
|
# @!attribute [rw] postgresql
|
994
1020
|
# @return [::Google::Cloud::CloudDMS::V1::PostgreSqlConnectionProfile]
|
995
1021
|
# A PostgreSQL database connection profile.
|
1022
|
+
#
|
1023
|
+
# Note: The following fields are mutually exclusive: `postgresql`, `mysql`, `oracle`, `cloudsql`, `alloydb`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
996
1024
|
# @!attribute [rw] oracle
|
997
1025
|
# @return [::Google::Cloud::CloudDMS::V1::OracleConnectionProfile]
|
998
1026
|
# An Oracle database connection profile.
|
1027
|
+
#
|
1028
|
+
# Note: The following fields are mutually exclusive: `oracle`, `mysql`, `postgresql`, `cloudsql`, `alloydb`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
999
1029
|
# @!attribute [rw] cloudsql
|
1000
1030
|
# @return [::Google::Cloud::CloudDMS::V1::CloudSqlConnectionProfile]
|
1001
1031
|
# A CloudSQL database connection profile.
|
1032
|
+
#
|
1033
|
+
# Note: The following fields are mutually exclusive: `cloudsql`, `mysql`, `postgresql`, `oracle`, `alloydb`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1002
1034
|
# @!attribute [rw] alloydb
|
1003
1035
|
# @return [::Google::Cloud::CloudDMS::V1::AlloyDbConnectionProfile]
|
1004
1036
|
# An AlloyDB cluster connection profile.
|
1037
|
+
#
|
1038
|
+
# Note: The following fields are mutually exclusive: `alloydb`, `mysql`, `postgresql`, `oracle`, `cloudsql`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1005
1039
|
# @!attribute [r] error
|
1006
1040
|
# @return [::Google::Rpc::Status]
|
1007
1041
|
# Output only. The error details in case of state FAILED.
|
@@ -112,15 +112,23 @@ module Google
|
|
112
112
|
# @!attribute [r] seed_job_details
|
113
113
|
# @return [::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::SeedJobDetails]
|
114
114
|
# Output only. Seed job details.
|
115
|
+
#
|
116
|
+
# Note: The following fields are mutually exclusive: `seed_job_details`, `import_rules_job_details`, `convert_job_details`, `apply_job_details`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
115
117
|
# @!attribute [r] import_rules_job_details
|
116
118
|
# @return [::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ImportRulesJobDetails]
|
117
119
|
# Output only. Import rules job details.
|
120
|
+
#
|
121
|
+
# Note: The following fields are mutually exclusive: `import_rules_job_details`, `seed_job_details`, `convert_job_details`, `apply_job_details`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
118
122
|
# @!attribute [r] convert_job_details
|
119
123
|
# @return [::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ConvertJobDetails]
|
120
124
|
# Output only. Convert job details.
|
125
|
+
#
|
126
|
+
# Note: The following fields are mutually exclusive: `convert_job_details`, `seed_job_details`, `import_rules_job_details`, `apply_job_details`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
121
127
|
# @!attribute [r] apply_job_details
|
122
128
|
# @return [::Google::Cloud::CloudDMS::V1::BackgroundJobLogEntry::ApplyJobDetails]
|
123
129
|
# Output only. Apply job details.
|
130
|
+
#
|
131
|
+
# Note: The following fields are mutually exclusive: `apply_job_details`, `seed_job_details`, `import_rules_job_details`, `convert_job_details`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
124
132
|
class BackgroundJobLogEntry
|
125
133
|
include ::Google::Protobuf::MessageExts
|
126
134
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -247,43 +255,65 @@ module Google
|
|
247
255
|
# @!attribute [rw] single_entity_rename
|
248
256
|
# @return [::Google::Cloud::CloudDMS::V1::SingleEntityRename]
|
249
257
|
# Optional. Rule to specify how a single entity should be renamed.
|
258
|
+
#
|
259
|
+
# Note: The following fields are mutually exclusive: `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
250
260
|
# @!attribute [rw] multi_entity_rename
|
251
261
|
# @return [::Google::Cloud::CloudDMS::V1::MultiEntityRename]
|
252
262
|
# Optional. Rule to specify how multiple entities should be renamed.
|
263
|
+
#
|
264
|
+
# Note: The following fields are mutually exclusive: `multi_entity_rename`, `single_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
253
265
|
# @!attribute [rw] entity_move
|
254
266
|
# @return [::Google::Cloud::CloudDMS::V1::EntityMove]
|
255
267
|
# Optional. Rule to specify how multiple entities should be relocated into
|
256
268
|
# a different schema.
|
269
|
+
#
|
270
|
+
# Note: The following fields are mutually exclusive: `entity_move`, `single_entity_rename`, `multi_entity_rename`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
257
271
|
# @!attribute [rw] single_column_change
|
258
272
|
# @return [::Google::Cloud::CloudDMS::V1::SingleColumnChange]
|
259
273
|
# Optional. Rule to specify how a single column is converted.
|
274
|
+
#
|
275
|
+
# Note: The following fields are mutually exclusive: `single_column_change`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
260
276
|
# @!attribute [rw] multi_column_data_type_change
|
261
277
|
# @return [::Google::Cloud::CloudDMS::V1::MultiColumnDatatypeChange]
|
262
278
|
# Optional. Rule to specify how multiple columns should be converted to a
|
263
279
|
# different data type.
|
280
|
+
#
|
281
|
+
# Note: The following fields are mutually exclusive: `multi_column_data_type_change`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
264
282
|
# @!attribute [rw] conditional_column_set_value
|
265
283
|
# @return [::Google::Cloud::CloudDMS::V1::ConditionalColumnSetValue]
|
266
284
|
# Optional. Rule to specify how the data contained in a column should be
|
267
285
|
# transformed (such as trimmed, rounded, etc) provided that the data meets
|
268
286
|
# certain criteria.
|
287
|
+
#
|
288
|
+
# Note: The following fields are mutually exclusive: `conditional_column_set_value`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
269
289
|
# @!attribute [rw] convert_rowid_column
|
270
290
|
# @return [::Google::Cloud::CloudDMS::V1::ConvertRowIdToColumn]
|
271
291
|
# Optional. Rule to specify how multiple tables should be converted with an
|
272
292
|
# additional rowid column.
|
293
|
+
#
|
294
|
+
# Note: The following fields are mutually exclusive: `convert_rowid_column`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `set_table_primary_key`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
273
295
|
# @!attribute [rw] set_table_primary_key
|
274
296
|
# @return [::Google::Cloud::CloudDMS::V1::SetTablePrimaryKey]
|
275
297
|
# Optional. Rule to specify the primary key for a table
|
298
|
+
#
|
299
|
+
# Note: The following fields are mutually exclusive: `set_table_primary_key`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `single_package_change`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
276
300
|
# @!attribute [rw] single_package_change
|
277
301
|
# @return [::Google::Cloud::CloudDMS::V1::SinglePackageChange]
|
278
302
|
# Optional. Rule to specify how a single package is converted.
|
303
|
+
#
|
304
|
+
# Note: The following fields are mutually exclusive: `single_package_change`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `source_sql_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
279
305
|
# @!attribute [rw] source_sql_change
|
280
306
|
# @return [::Google::Cloud::CloudDMS::V1::SourceSqlChange]
|
281
307
|
# Optional. Rule to change the sql code for an entity, for example,
|
282
308
|
# function, procedure.
|
309
|
+
#
|
310
|
+
# Note: The following fields are mutually exclusive: `source_sql_change`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `filter_table_columns`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
283
311
|
# @!attribute [rw] filter_table_columns
|
284
312
|
# @return [::Google::Cloud::CloudDMS::V1::FilterTableColumns]
|
285
313
|
# Optional. Rule to specify the list of columns to include or exclude from
|
286
314
|
# a table.
|
315
|
+
#
|
316
|
+
# Note: The following fields are mutually exclusive: `filter_table_columns`, `single_entity_rename`, `multi_entity_rename`, `entity_move`, `single_column_change`, `multi_column_data_type_change`, `conditional_column_set_value`, `convert_rowid_column`, `set_table_primary_key`, `single_package_change`, `source_sql_change`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
287
317
|
class MappingRule
|
288
318
|
include ::Google::Protobuf::MessageExts
|
289
319
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -440,10 +470,14 @@ module Google
|
|
440
470
|
# @!attribute [rw] source_text_filter
|
441
471
|
# @return [::Google::Cloud::CloudDMS::V1::SourceTextFilter]
|
442
472
|
# Optional. Filter for text-based data types like varchar.
|
473
|
+
#
|
474
|
+
# Note: The following fields are mutually exclusive: `source_text_filter`, `source_numeric_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
443
475
|
# @!attribute [rw] source_numeric_filter
|
444
476
|
# @return [::Google::Cloud::CloudDMS::V1::SourceNumericFilter]
|
445
477
|
# Optional. Filter for fixed point number data types such as
|
446
478
|
# NUMERIC/NUMBER.
|
479
|
+
#
|
480
|
+
# Note: The following fields are mutually exclusive: `source_numeric_filter`, `source_text_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
447
481
|
# @!attribute [rw] new_data_type
|
448
482
|
# @return [::String]
|
449
483
|
# Required. New data type.
|
@@ -522,10 +556,14 @@ module Google
|
|
522
556
|
# @return [::Google::Cloud::CloudDMS::V1::SourceTextFilter]
|
523
557
|
# Optional. Optional filter on source column length. Used for text based
|
524
558
|
# data types like varchar.
|
559
|
+
#
|
560
|
+
# Note: The following fields are mutually exclusive: `source_text_filter`, `source_numeric_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
525
561
|
# @!attribute [rw] source_numeric_filter
|
526
562
|
# @return [::Google::Cloud::CloudDMS::V1::SourceNumericFilter]
|
527
563
|
# Optional. Optional filter on source column precision and scale. Used for
|
528
564
|
# fixed point numbers such as NUMERIC/NUMBER data types.
|
565
|
+
#
|
566
|
+
# Note: The following fields are mutually exclusive: `source_numeric_filter`, `source_text_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
529
567
|
# @!attribute [rw] value_transformation
|
530
568
|
# @return [::Google::Cloud::CloudDMS::V1::ValueTransformation]
|
531
569
|
# Required. Description of data transformation during migration.
|
@@ -542,38 +580,58 @@ module Google
|
|
542
580
|
# @!attribute [rw] is_null
|
543
581
|
# @return [::Google::Protobuf::Empty]
|
544
582
|
# Optional. Value is null
|
583
|
+
#
|
584
|
+
# Note: The following fields are mutually exclusive: `is_null`, `value_list`, `int_comparison`, `double_comparison`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
545
585
|
# @!attribute [rw] value_list
|
546
586
|
# @return [::Google::Cloud::CloudDMS::V1::ValueListFilter]
|
547
587
|
# Optional. Value is found in the specified list.
|
588
|
+
#
|
589
|
+
# Note: The following fields are mutually exclusive: `value_list`, `is_null`, `int_comparison`, `double_comparison`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
548
590
|
# @!attribute [rw] int_comparison
|
549
591
|
# @return [::Google::Cloud::CloudDMS::V1::IntComparisonFilter]
|
550
592
|
# Optional. Filter on relation between source value and compare value of
|
551
593
|
# type integer.
|
594
|
+
#
|
595
|
+
# Note: The following fields are mutually exclusive: `int_comparison`, `is_null`, `value_list`, `double_comparison`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
552
596
|
# @!attribute [rw] double_comparison
|
553
597
|
# @return [::Google::Cloud::CloudDMS::V1::DoubleComparisonFilter]
|
554
598
|
# Optional. Filter on relation between source value and compare value of
|
555
599
|
# type double.
|
600
|
+
#
|
601
|
+
# Note: The following fields are mutually exclusive: `double_comparison`, `is_null`, `value_list`, `int_comparison`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
556
602
|
# @!attribute [rw] assign_null
|
557
603
|
# @return [::Google::Protobuf::Empty]
|
558
604
|
# Optional. Set to null
|
605
|
+
#
|
606
|
+
# Note: The following fields are mutually exclusive: `assign_null`, `assign_specific_value`, `assign_min_value`, `assign_max_value`, `round_scale`, `apply_hash`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
559
607
|
# @!attribute [rw] assign_specific_value
|
560
608
|
# @return [::Google::Cloud::CloudDMS::V1::AssignSpecificValue]
|
561
609
|
# Optional. Set to a specific value (value is converted to fit the target
|
562
610
|
# data type)
|
611
|
+
#
|
612
|
+
# Note: The following fields are mutually exclusive: `assign_specific_value`, `assign_null`, `assign_min_value`, `assign_max_value`, `round_scale`, `apply_hash`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
563
613
|
# @!attribute [rw] assign_min_value
|
564
614
|
# @return [::Google::Protobuf::Empty]
|
565
615
|
# Optional. Set to min_value - if integer or numeric, will use
|
566
616
|
# int.minvalue, etc
|
617
|
+
#
|
618
|
+
# Note: The following fields are mutually exclusive: `assign_min_value`, `assign_null`, `assign_specific_value`, `assign_max_value`, `round_scale`, `apply_hash`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
567
619
|
# @!attribute [rw] assign_max_value
|
568
620
|
# @return [::Google::Protobuf::Empty]
|
569
621
|
# Optional. Set to max_value - if integer or numeric, will use
|
570
622
|
# int.maxvalue, etc
|
623
|
+
#
|
624
|
+
# Note: The following fields are mutually exclusive: `assign_max_value`, `assign_null`, `assign_specific_value`, `assign_min_value`, `round_scale`, `apply_hash`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
571
625
|
# @!attribute [rw] round_scale
|
572
626
|
# @return [::Google::Cloud::CloudDMS::V1::RoundToScale]
|
573
627
|
# Optional. Allows the data to change scale
|
628
|
+
#
|
629
|
+
# Note: The following fields are mutually exclusive: `round_scale`, `assign_null`, `assign_specific_value`, `assign_min_value`, `assign_max_value`, `apply_hash`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
574
630
|
# @!attribute [rw] apply_hash
|
575
631
|
# @return [::Google::Cloud::CloudDMS::V1::ApplyHash]
|
576
632
|
# Optional. Applies a hash function on the data
|
633
|
+
#
|
634
|
+
# Note: The following fields are mutually exclusive: `apply_hash`, `assign_null`, `assign_specific_value`, `assign_min_value`, `assign_max_value`, `round_scale`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
577
635
|
class ValueTransformation
|
578
636
|
include ::Google::Protobuf::MessageExts
|
579
637
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -773,36 +831,58 @@ module Google
|
|
773
831
|
# @!attribute [rw] database
|
774
832
|
# @return [::Google::Cloud::CloudDMS::V1::DatabaseInstanceEntity]
|
775
833
|
# Database.
|
834
|
+
#
|
835
|
+
# Note: The following fields are mutually exclusive: `database`, `schema`, `table`, `view`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
776
836
|
# @!attribute [rw] schema
|
777
837
|
# @return [::Google::Cloud::CloudDMS::V1::SchemaEntity]
|
778
838
|
# Schema.
|
839
|
+
#
|
840
|
+
# Note: The following fields are mutually exclusive: `schema`, `database`, `table`, `view`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
779
841
|
# @!attribute [rw] table
|
780
842
|
# @return [::Google::Cloud::CloudDMS::V1::TableEntity]
|
781
843
|
# Table.
|
844
|
+
#
|
845
|
+
# Note: The following fields are mutually exclusive: `table`, `database`, `schema`, `view`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
782
846
|
# @!attribute [rw] view
|
783
847
|
# @return [::Google::Cloud::CloudDMS::V1::ViewEntity]
|
784
848
|
# View.
|
849
|
+
#
|
850
|
+
# Note: The following fields are mutually exclusive: `view`, `database`, `schema`, `table`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
785
851
|
# @!attribute [rw] sequence
|
786
852
|
# @return [::Google::Cloud::CloudDMS::V1::SequenceEntity]
|
787
853
|
# Sequence.
|
854
|
+
#
|
855
|
+
# Note: The following fields are mutually exclusive: `sequence`, `database`, `schema`, `table`, `view`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
788
856
|
# @!attribute [rw] stored_procedure
|
789
857
|
# @return [::Google::Cloud::CloudDMS::V1::StoredProcedureEntity]
|
790
858
|
# Stored procedure.
|
859
|
+
#
|
860
|
+
# Note: The following fields are mutually exclusive: `stored_procedure`, `database`, `schema`, `table`, `view`, `sequence`, `database_function`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
791
861
|
# @!attribute [rw] database_function
|
792
862
|
# @return [::Google::Cloud::CloudDMS::V1::FunctionEntity]
|
793
863
|
# Function.
|
864
|
+
#
|
865
|
+
# Note: The following fields are mutually exclusive: `database_function`, `database`, `schema`, `table`, `view`, `sequence`, `stored_procedure`, `synonym`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
794
866
|
# @!attribute [rw] synonym
|
795
867
|
# @return [::Google::Cloud::CloudDMS::V1::SynonymEntity]
|
796
868
|
# Synonym.
|
869
|
+
#
|
870
|
+
# Note: The following fields are mutually exclusive: `synonym`, `database`, `schema`, `table`, `view`, `sequence`, `stored_procedure`, `database_function`, `database_package`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
797
871
|
# @!attribute [rw] database_package
|
798
872
|
# @return [::Google::Cloud::CloudDMS::V1::PackageEntity]
|
799
873
|
# Package.
|
874
|
+
#
|
875
|
+
# Note: The following fields are mutually exclusive: `database_package`, `database`, `schema`, `table`, `view`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `udt`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
800
876
|
# @!attribute [rw] udt
|
801
877
|
# @return [::Google::Cloud::CloudDMS::V1::UDTEntity]
|
802
878
|
# UDT.
|
879
|
+
#
|
880
|
+
# Note: The following fields are mutually exclusive: `udt`, `database`, `schema`, `table`, `view`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `materialized_view`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
803
881
|
# @!attribute [rw] materialized_view
|
804
882
|
# @return [::Google::Cloud::CloudDMS::V1::MaterializedViewEntity]
|
805
883
|
# Materialized view.
|
884
|
+
#
|
885
|
+
# Note: The following fields are mutually exclusive: `materialized_view`, `database`, `schema`, `table`, `view`, `sequence`, `stored_procedure`, `database_function`, `synonym`, `database_package`, `udt`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
806
886
|
class DatabaseEntity
|
807
887
|
include ::Google::Protobuf::MessageExts
|
808
888
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -40,9 +40,11 @@ module Google
|
|
40
40
|
# @!attribute [rw] error
|
41
41
|
# @return [::Google::Rpc::Status]
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
|
+
#
|
44
|
+
# Note: The following fields are mutually exclusive: `error`, `response`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
43
45
|
# @!attribute [rw] response
|
44
46
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
47
|
+
# The normal, successful response of the operation. If the original
|
46
48
|
# method returns no data on success, such as `Delete`, the response is
|
47
49
|
# `google.protobuf.Empty`. If the original method is standard
|
48
50
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -50,12 +52,15 @@ module Google
|
|
50
52
|
# is the original method name. For example, if the original method name
|
51
53
|
# is `TakeSnapshot()`, the inferred response type is
|
52
54
|
# `TakeSnapshotResponse`.
|
55
|
+
#
|
56
|
+
# Note: The following fields are mutually exclusive: `response`, `error`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
53
57
|
class Operation
|
54
58
|
include ::Google::Protobuf::MessageExts
|
55
59
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
60
|
end
|
57
61
|
|
58
|
-
# The request message for
|
62
|
+
# The request message for
|
63
|
+
# Operations.GetOperation.
|
59
64
|
# @!attribute [rw] name
|
60
65
|
# @return [::String]
|
61
66
|
# The name of the operation resource.
|
@@ -64,7 +69,8 @@ module Google
|
|
64
69
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
70
|
end
|
66
71
|
|
67
|
-
# The request message for
|
72
|
+
# The request message for
|
73
|
+
# Operations.ListOperations.
|
68
74
|
# @!attribute [rw] name
|
69
75
|
# @return [::String]
|
70
76
|
# The name of the operation's parent resource.
|
@@ -82,7 +88,8 @@ module Google
|
|
82
88
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
89
|
end
|
84
90
|
|
85
|
-
# The response message for
|
91
|
+
# The response message for
|
92
|
+
# Operations.ListOperations.
|
86
93
|
# @!attribute [rw] operations
|
87
94
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
95
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +101,8 @@ module Google
|
|
94
101
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
102
|
end
|
96
103
|
|
97
|
-
# The request message for
|
104
|
+
# The request message for
|
105
|
+
# Operations.CancelOperation.
|
98
106
|
# @!attribute [rw] name
|
99
107
|
# @return [::String]
|
100
108
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +111,8 @@ module Google
|
|
103
111
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
112
|
end
|
105
113
|
|
106
|
-
# The request message for
|
114
|
+
# The request message for
|
115
|
+
# Operations.DeleteOperation.
|
107
116
|
# @!attribute [rw] name
|
108
117
|
# @return [::String]
|
109
118
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +121,8 @@ module Google
|
|
112
121
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
122
|
end
|
114
123
|
|
115
|
-
# The request message for
|
124
|
+
# The request message for
|
125
|
+
# Operations.WaitOperation.
|
116
126
|
# @!attribute [rw] name
|
117
127
|
# @return [::String]
|
118
128
|
# The name of the operation resource to wait on.
|
@@ -130,13 +140,12 @@ module Google
|
|
130
140
|
#
|
131
141
|
# Example:
|
132
142
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
143
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
144
|
+
# option (google.longrunning.operation_info) = {
|
145
|
+
# response_type: "ExportResponse"
|
146
|
+
# metadata_type: "ExportMetadata"
|
147
|
+
# };
|
148
|
+
# }
|
140
149
|
# @!attribute [rw] response_type
|
141
150
|
# @return [::String]
|
142
151
|
# Required. The message name of the primary return type for this
|
@@ -53,21 +53,33 @@ module Google
|
|
53
53
|
# @!attribute [rw] null_value
|
54
54
|
# @return [::Google::Protobuf::NullValue]
|
55
55
|
# Represents a null value.
|
56
|
+
#
|
57
|
+
# Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
56
58
|
# @!attribute [rw] number_value
|
57
59
|
# @return [::Float]
|
58
60
|
# Represents a double value.
|
61
|
+
#
|
62
|
+
# Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
59
63
|
# @!attribute [rw] string_value
|
60
64
|
# @return [::String]
|
61
65
|
# Represents a string value.
|
66
|
+
#
|
67
|
+
# Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
62
68
|
# @!attribute [rw] bool_value
|
63
69
|
# @return [::Boolean]
|
64
70
|
# Represents a boolean value.
|
71
|
+
#
|
72
|
+
# Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
65
73
|
# @!attribute [rw] struct_value
|
66
74
|
# @return [::Google::Protobuf::Struct]
|
67
75
|
# Represents a structured value.
|
76
|
+
#
|
77
|
+
# Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
68
78
|
# @!attribute [rw] list_value
|
69
79
|
# @return [::Google::Protobuf::ListValue]
|
70
80
|
# Represents a repeated `Value`.
|
81
|
+
#
|
82
|
+
# Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
71
83
|
class Value
|
72
84
|
include ::Google::Protobuf::MessageExts
|
73
85
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-cloud_dms-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -133,7 +132,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
133
132
|
licenses:
|
134
133
|
- Apache-2.0
|
135
134
|
metadata: {}
|
136
|
-
post_install_message:
|
137
135
|
rdoc_options: []
|
138
136
|
require_paths:
|
139
137
|
- lib
|
@@ -141,15 +139,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
139
|
requirements:
|
142
140
|
- - ">="
|
143
141
|
- !ruby/object:Gem::Version
|
144
|
-
version: '
|
142
|
+
version: '3.0'
|
145
143
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
146
144
|
requirements:
|
147
145
|
- - ">="
|
148
146
|
- !ruby/object:Gem::Version
|
149
147
|
version: '0'
|
150
148
|
requirements: []
|
151
|
-
rubygems_version: 3.
|
152
|
-
signing_key:
|
149
|
+
rubygems_version: 3.6.2
|
153
150
|
specification_version: 4
|
154
151
|
summary: Manage Cloud Database Migration Service resources on Google Cloud Platform.
|
155
152
|
test_files: []
|