google-apis-datamigration_v1 0.29.0 → 0.30.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -118,6 +118,31 @@ module Google
|
|
118
118
|
end
|
119
119
|
end
|
120
120
|
|
121
|
+
# Details regarding an Apply background job.
|
122
|
+
class ApplyJobDetails
|
123
|
+
include Google::Apis::Core::Hashable
|
124
|
+
|
125
|
+
# The connection profile which was used for the apply job.
|
126
|
+
# Corresponds to the JSON property `connectionProfile`
|
127
|
+
# @return [String]
|
128
|
+
attr_accessor :connection_profile
|
129
|
+
|
130
|
+
# AIP-160 based filter used to specify the entities to apply
|
131
|
+
# Corresponds to the JSON property `filter`
|
132
|
+
# @return [String]
|
133
|
+
attr_accessor :filter
|
134
|
+
|
135
|
+
def initialize(**args)
|
136
|
+
update!(**args)
|
137
|
+
end
|
138
|
+
|
139
|
+
# Update properties of this object
|
140
|
+
def update!(**args)
|
141
|
+
@connection_profile = args[:connection_profile] if args.key?(:connection_profile)
|
142
|
+
@filter = args[:filter] if args.key?(:filter)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
121
146
|
# Specifies the audit configuration for a service. The configuration determines
|
122
147
|
# which permission types are logged, and what identities, if any, are exempted
|
123
148
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -193,8 +218,13 @@ module Google
|
|
193
218
|
class BackgroundJobLogEntry
|
194
219
|
include Google::Apis::Core::Hashable
|
195
220
|
|
221
|
+
# Details regarding an Apply background job.
|
222
|
+
# Corresponds to the JSON property `applyJobDetails`
|
223
|
+
# @return [Google::Apis::DatamigrationV1::ApplyJobDetails]
|
224
|
+
attr_accessor :apply_job_details
|
225
|
+
|
196
226
|
# Job completion comment, such as how many entities were seeded, how many
|
197
|
-
# warnings were found during conversion and similar information.
|
227
|
+
# warnings were found during conversion, and similar information.
|
198
228
|
# Corresponds to the JSON property `completionComment`
|
199
229
|
# @return [String]
|
200
230
|
attr_accessor :completion_comment
|
@@ -204,17 +234,22 @@ module Google
|
|
204
234
|
# @return [String]
|
205
235
|
attr_accessor :completion_state
|
206
236
|
|
237
|
+
# Details regarding a Convert background job.
|
238
|
+
# Corresponds to the JSON property `convertJobDetails`
|
239
|
+
# @return [Google::Apis::DatamigrationV1::ConvertJobDetails]
|
240
|
+
attr_accessor :convert_job_details
|
241
|
+
|
207
242
|
# The timestamp when the background job was finished.
|
208
243
|
# Corresponds to the JSON property `finishTime`
|
209
244
|
# @return [String]
|
210
245
|
attr_accessor :finish_time
|
211
246
|
|
212
|
-
# The background job log entry
|
247
|
+
# The background job log entry ID.
|
213
248
|
# Corresponds to the JSON property `id`
|
214
249
|
# @return [String]
|
215
250
|
attr_accessor :id
|
216
251
|
|
217
|
-
# Details regarding an Import Rules background job
|
252
|
+
# Details regarding an Import Rules background job.
|
218
253
|
# Corresponds to the JSON property `importRulesJobDetails`
|
219
254
|
# @return [Google::Apis::DatamigrationV1::ImportRulesJobDetails]
|
220
255
|
attr_accessor :import_rules_job_details
|
@@ -231,7 +266,7 @@ module Google
|
|
231
266
|
attr_accessor :request_autocommit
|
232
267
|
alias_method :request_autocommit?, :request_autocommit
|
233
268
|
|
234
|
-
# Details regarding a Seed background job
|
269
|
+
# Details regarding a Seed background job.
|
235
270
|
# Corresponds to the JSON property `seedJobDetails`
|
236
271
|
# @return [Google::Apis::DatamigrationV1::SeedJobDetails]
|
237
272
|
attr_accessor :seed_job_details
|
@@ -247,8 +282,10 @@ module Google
|
|
247
282
|
|
248
283
|
# Update properties of this object
|
249
284
|
def update!(**args)
|
285
|
+
@apply_job_details = args[:apply_job_details] if args.key?(:apply_job_details)
|
250
286
|
@completion_comment = args[:completion_comment] if args.key?(:completion_comment)
|
251
287
|
@completion_state = args[:completion_state] if args.key?(:completion_state)
|
288
|
+
@convert_job_details = args[:convert_job_details] if args.key?(:convert_job_details)
|
252
289
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
253
290
|
@id = args[:id] if args.key?(:id)
|
254
291
|
@import_rules_job_details = args[:import_rules_job_details] if args.key?(:import_rules_job_details)
|
@@ -549,96 +586,96 @@ module Google
|
|
549
586
|
class ColumnEntity
|
550
587
|
include Google::Apis::Core::Hashable
|
551
588
|
|
552
|
-
# Is the column of array type
|
589
|
+
# Is the column of array type.
|
553
590
|
# Corresponds to the JSON property `array`
|
554
591
|
# @return [Boolean]
|
555
592
|
attr_accessor :array
|
556
593
|
alias_method :array?, :array
|
557
594
|
|
558
|
-
# If the column is array, of which length
|
595
|
+
# If the column is array, of which length.
|
559
596
|
# Corresponds to the JSON property `arrayLength`
|
560
597
|
# @return [Fixnum]
|
561
598
|
attr_accessor :array_length
|
562
599
|
|
563
|
-
# Is the column auto-generated/identity
|
600
|
+
# Is the column auto-generated/identity.
|
564
601
|
# Corresponds to the JSON property `autoGenerated`
|
565
602
|
# @return [Boolean]
|
566
603
|
attr_accessor :auto_generated
|
567
604
|
alias_method :auto_generated?, :auto_generated
|
568
605
|
|
569
|
-
# Charset override - instead of table level charset
|
606
|
+
# Charset override - instead of table level charset.
|
570
607
|
# Corresponds to the JSON property `charset`
|
571
608
|
# @return [String]
|
572
609
|
attr_accessor :charset
|
573
610
|
|
574
|
-
# Collation override - instead of table level collation
|
611
|
+
# Collation override - instead of table level collation.
|
575
612
|
# Corresponds to the JSON property `collation`
|
576
613
|
# @return [String]
|
577
614
|
attr_accessor :collation
|
578
615
|
|
579
|
-
# Comment associated with the column
|
616
|
+
# Comment associated with the column.
|
580
617
|
# Corresponds to the JSON property `comment`
|
581
618
|
# @return [String]
|
582
619
|
attr_accessor :comment
|
583
620
|
|
584
|
-
# Custom engine specific features
|
621
|
+
# Custom engine specific features.
|
585
622
|
# Corresponds to the JSON property `customFeatures`
|
586
623
|
# @return [Hash<String,Object>]
|
587
624
|
attr_accessor :custom_features
|
588
625
|
|
589
|
-
# Column data type
|
626
|
+
# Column data type.
|
590
627
|
# Corresponds to the JSON property `dataType`
|
591
628
|
# @return [String]
|
592
629
|
attr_accessor :data_type
|
593
630
|
|
594
|
-
# Default value of the column
|
631
|
+
# Default value of the column.
|
595
632
|
# Corresponds to the JSON property `defaultValue`
|
596
633
|
# @return [String]
|
597
634
|
attr_accessor :default_value
|
598
635
|
|
599
|
-
# Column fractional second precision - used for timestamp based datatypes
|
636
|
+
# Column fractional second precision - used for timestamp based datatypes.
|
600
637
|
# Corresponds to the JSON property `fractionalSecondsPrecision`
|
601
638
|
# @return [Fixnum]
|
602
639
|
attr_accessor :fractional_seconds_precision
|
603
640
|
|
604
|
-
# Column length - e.g. varchar (50)
|
641
|
+
# Column length - e.g. varchar (50).
|
605
642
|
# Corresponds to the JSON property `length`
|
606
643
|
# @return [Fixnum]
|
607
644
|
attr_accessor :length
|
608
645
|
|
609
|
-
# Column name
|
646
|
+
# Column name.
|
610
647
|
# Corresponds to the JSON property `name`
|
611
648
|
# @return [String]
|
612
649
|
attr_accessor :name
|
613
650
|
|
614
|
-
# Is the column nullable
|
651
|
+
# Is the column nullable.
|
615
652
|
# Corresponds to the JSON property `nullable`
|
616
653
|
# @return [Boolean]
|
617
654
|
attr_accessor :nullable
|
618
655
|
alias_method :nullable?, :nullable
|
619
656
|
|
620
|
-
# Column order in the table
|
657
|
+
# Column order in the table.
|
621
658
|
# Corresponds to the JSON property `ordinalPosition`
|
622
659
|
# @return [Fixnum]
|
623
660
|
attr_accessor :ordinal_position
|
624
661
|
|
625
|
-
# Column precision - when relevant
|
662
|
+
# Column precision - when relevant.
|
626
663
|
# Corresponds to the JSON property `precision`
|
627
664
|
# @return [Fixnum]
|
628
665
|
attr_accessor :precision
|
629
666
|
|
630
|
-
# Column scale - when relevant
|
667
|
+
# Column scale - when relevant.
|
631
668
|
# Corresponds to the JSON property `scale`
|
632
669
|
# @return [Fixnum]
|
633
670
|
attr_accessor :scale
|
634
671
|
|
635
|
-
# Specifies the list of values allowed in the column. List is empty if
|
636
|
-
#
|
672
|
+
# Specifies the list of values allowed in the column. List is empty if setValues
|
673
|
+
# is not required.
|
637
674
|
# Corresponds to the JSON property `setValues`
|
638
675
|
# @return [Array<String>]
|
639
676
|
attr_accessor :set_values
|
640
677
|
|
641
|
-
# Is the column a UDT
|
678
|
+
# Is the column a UDT.
|
642
679
|
# Corresponds to the JSON property `udt`
|
643
680
|
# @return [Boolean]
|
644
681
|
attr_accessor :udt
|
@@ -801,32 +838,32 @@ module Google
|
|
801
838
|
class ConstraintEntity
|
802
839
|
include Google::Apis::Core::Hashable
|
803
840
|
|
804
|
-
# Custom engine specific features
|
841
|
+
# Custom engine specific features.
|
805
842
|
# Corresponds to the JSON property `customFeatures`
|
806
843
|
# @return [Hash<String,Object>]
|
807
844
|
attr_accessor :custom_features
|
808
845
|
|
809
|
-
# The name of the table constraint
|
846
|
+
# The name of the table constraint.
|
810
847
|
# Corresponds to the JSON property `name`
|
811
848
|
# @return [String]
|
812
849
|
attr_accessor :name
|
813
850
|
|
814
|
-
# Reference
|
815
|
-
# constraint is a FOREIGN_KEY, this represents the list of full names of
|
851
|
+
# Reference columns which may be associated with the constraint. For example, if
|
852
|
+
# the constraint is a FOREIGN_KEY, this represents the list of full names of
|
816
853
|
# referenced columns by the foreign key.
|
817
854
|
# Corresponds to the JSON property `referenceColumns`
|
818
855
|
# @return [Array<String>]
|
819
856
|
attr_accessor :reference_columns
|
820
857
|
|
821
|
-
# Reference table which may be associated with the constraint.
|
822
|
-
# constraint is a FOREIGN_KEY, this represents the list of full name of the
|
858
|
+
# Reference table which may be associated with the constraint. For example, if
|
859
|
+
# the constraint is a FOREIGN_KEY, this represents the list of full name of the
|
823
860
|
# referenced table by the foreign key.
|
824
861
|
# Corresponds to the JSON property `referenceTable`
|
825
862
|
# @return [String]
|
826
863
|
attr_accessor :reference_table
|
827
864
|
|
828
|
-
# Table columns used as part of the Constraint for
|
829
|
-
# should list the columns which constitutes the key
|
865
|
+
# Table columns used as part of the Constraint, for example primary key
|
866
|
+
# constraint should list the columns which constitutes the key.
|
830
867
|
# Corresponds to the JSON property `tableColumns`
|
831
868
|
# @return [Array<String>]
|
832
869
|
attr_accessor :table_columns
|
@@ -839,8 +876,8 @@ module Google
|
|
839
876
|
# @return [String]
|
840
877
|
attr_accessor :table_name
|
841
878
|
|
842
|
-
# Type of constraint
|
843
|
-
# primary key is supported)
|
879
|
+
# Type of constraint, for example unique, primary key, foreign key (currently
|
880
|
+
# only primary key is supported).
|
844
881
|
# Corresponds to the JSON property `type`
|
845
882
|
# @return [String]
|
846
883
|
attr_accessor :type
|
@@ -870,12 +907,12 @@ module Google
|
|
870
907
|
# @return [String]
|
871
908
|
attr_accessor :create_time
|
872
909
|
|
873
|
-
# The type and version of a source or destination
|
910
|
+
# The type and version of a source or destination database.
|
874
911
|
# Corresponds to the JSON property `destination`
|
875
912
|
# @return [Google::Apis::DatamigrationV1::DatabaseEngineInfo]
|
876
913
|
attr_accessor :destination
|
877
914
|
|
878
|
-
# The display name for the workspace
|
915
|
+
# The display name for the workspace.
|
879
916
|
# Corresponds to the JSON property `displayName`
|
880
917
|
# @return [String]
|
881
918
|
attr_accessor :display_name
|
@@ -890,13 +927,13 @@ module Google
|
|
890
927
|
attr_accessor :global_settings
|
891
928
|
|
892
929
|
# Output only. Whether the workspace has uncommitted changes (changes which were
|
893
|
-
# made after the workspace was committed)
|
930
|
+
# made after the workspace was committed).
|
894
931
|
# Corresponds to the JSON property `hasUncommittedChanges`
|
895
932
|
# @return [Boolean]
|
896
933
|
attr_accessor :has_uncommitted_changes
|
897
934
|
alias_method :has_uncommitted_changes?, :has_uncommitted_changes
|
898
935
|
|
899
|
-
# Output only. The latest commit
|
936
|
+
# Output only. The latest commit ID.
|
900
937
|
# Corresponds to the JSON property `latestCommitId`
|
901
938
|
# @return [String]
|
902
939
|
attr_accessor :latest_commit_id
|
@@ -912,7 +949,7 @@ module Google
|
|
912
949
|
# @return [String]
|
913
950
|
attr_accessor :name
|
914
951
|
|
915
|
-
# The type and version of a source or destination
|
952
|
+
# The type and version of a source or destination database.
|
916
953
|
# Corresponds to the JSON property `source`
|
917
954
|
# @return [Google::Apis::DatamigrationV1::DatabaseEngineInfo]
|
918
955
|
attr_accessor :source
|
@@ -970,8 +1007,8 @@ module Google
|
|
970
1007
|
class ConvertConversionWorkspaceRequest
|
971
1008
|
include Google::Apis::Core::Hashable
|
972
1009
|
|
973
|
-
#
|
974
|
-
# conversion.
|
1010
|
+
# Specifies whether the conversion workspace is to be committed automatically
|
1011
|
+
# after the conversion.
|
975
1012
|
# Corresponds to the JSON property `autoCommit`
|
976
1013
|
# @return [Boolean]
|
977
1014
|
attr_accessor :auto_commit
|
@@ -994,16 +1031,35 @@ module Google
|
|
994
1031
|
end
|
995
1032
|
end
|
996
1033
|
|
997
|
-
#
|
1034
|
+
# Details regarding a Convert background job.
|
1035
|
+
class ConvertJobDetails
|
1036
|
+
include Google::Apis::Core::Hashable
|
1037
|
+
|
1038
|
+
# AIP-160 based filter used to specify the entities to convert
|
1039
|
+
# Corresponds to the JSON property `filter`
|
1040
|
+
# @return [String]
|
1041
|
+
attr_accessor :filter
|
1042
|
+
|
1043
|
+
def initialize(**args)
|
1044
|
+
update!(**args)
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
# Update properties of this object
|
1048
|
+
def update!(**args)
|
1049
|
+
@filter = args[:filter] if args.key?(:filter)
|
1050
|
+
end
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
# The type and version of a source or destination database.
|
998
1054
|
class DatabaseEngineInfo
|
999
1055
|
include Google::Apis::Core::Hashable
|
1000
1056
|
|
1001
|
-
# Required. Engine
|
1057
|
+
# Required. Engine type.
|
1002
1058
|
# Corresponds to the JSON property `engine`
|
1003
1059
|
# @return [String]
|
1004
1060
|
attr_accessor :engine
|
1005
1061
|
|
1006
|
-
# Required. Engine named version, for
|
1062
|
+
# Required. Engine named version, for example 12.c.1.
|
1007
1063
|
# Corresponds to the JSON property `version`
|
1008
1064
|
# @return [String]
|
1009
1065
|
attr_accessor :version
|
@@ -1019,9 +1075,9 @@ module Google
|
|
1019
1075
|
end
|
1020
1076
|
end
|
1021
1077
|
|
1022
|
-
# The base entity type for all the database related entities The message
|
1023
|
-
# contains the entity name, the name of its parent,
|
1024
|
-
# details per
|
1078
|
+
# The base entity type for all the database related entities. The message
|
1079
|
+
# contains the entity name, the name of its parent, the entity type, and the
|
1080
|
+
# specific details per entity type.
|
1025
1081
|
class DatabaseEntity
|
1026
1082
|
include Google::Apis::Core::Hashable
|
1027
1083
|
|
@@ -1054,8 +1110,8 @@ module Google
|
|
1054
1110
|
attr_accessor :parent_entity
|
1055
1111
|
|
1056
1112
|
# Schema typically has no parent entity, but can have a parent entity
|
1057
|
-
# DatabaseInstance (for database engines which
|
1058
|
-
# engines the
|
1113
|
+
# DatabaseInstance (for database engines which support it). For some database
|
1114
|
+
# engines, the terms schema and user can be used interchangeably when they refer
|
1059
1115
|
# to a namespace or a collection of other database entities. Can store
|
1060
1116
|
# additional information which is schema specific.
|
1061
1117
|
# Corresponds to the JSON property `schema`
|
@@ -1172,7 +1228,7 @@ module Google
|
|
1172
1228
|
# @return [Array<Google::Apis::DatamigrationV1::DatabaseEntity>]
|
1173
1229
|
attr_accessor :database_entities
|
1174
1230
|
|
1175
|
-
# A token
|
1231
|
+
# A token which can be sent as `page_token` to retrieve the next page. If this
|
1176
1232
|
# field is omitted, there are no subsequent pages.
|
1177
1233
|
# Corresponds to the JSON property `nextPageToken`
|
1178
1234
|
# @return [String]
|
@@ -1254,22 +1310,22 @@ module Google
|
|
1254
1310
|
include Google::Apis::Core::Hashable
|
1255
1311
|
|
1256
1312
|
# Target entity full name. The draft entity can also include a column, index or
|
1257
|
-
# constraint using the same naming notation schema.table.column
|
1313
|
+
# constraint using the same naming notation schema.table.column.
|
1258
1314
|
# Corresponds to the JSON property `draftEntity`
|
1259
1315
|
# @return [String]
|
1260
1316
|
attr_accessor :draft_entity
|
1261
1317
|
|
1262
1318
|
# Entity mapping log entries. Multiple rules can be effective and contribute
|
1263
|
-
# changes to a converted entity such as
|
1319
|
+
# changes to a converted entity, such as a rule can handle the entity name,
|
1264
1320
|
# another rule can handle an entity type. In addition, rules which did not
|
1265
|
-
# change the entity are also logged along
|
1266
|
-
#
|
1321
|
+
# change the entity are also logged along with the reason preventing them to do
|
1322
|
+
# so.
|
1267
1323
|
# Corresponds to the JSON property `mappingLog`
|
1268
1324
|
# @return [Array<Google::Apis::DatamigrationV1::EntityMappingLogEntry>]
|
1269
1325
|
attr_accessor :mapping_log
|
1270
1326
|
|
1271
1327
|
# Source entity full name. The source entity can also be a column, index or
|
1272
|
-
# constraint using the same naming notation schema.table.column
|
1328
|
+
# constraint using the same naming notation schema.table.column.
|
1273
1329
|
# Corresponds to the JSON property `sourceEntity`
|
1274
1330
|
# @return [String]
|
1275
1331
|
attr_accessor :source_entity
|
@@ -1295,12 +1351,12 @@ module Google
|
|
1295
1351
|
# @return [String]
|
1296
1352
|
attr_accessor :mapping_comment
|
1297
1353
|
|
1298
|
-
# Which rule caused
|
1354
|
+
# Which rule caused this log entry.
|
1299
1355
|
# Corresponds to the JSON property `ruleId`
|
1300
1356
|
# @return [String]
|
1301
1357
|
attr_accessor :rule_id
|
1302
1358
|
|
1303
|
-
# Rule revision
|
1359
|
+
# Rule revision ID.
|
1304
1360
|
# Corresponds to the JSON property `ruleRevisionId`
|
1305
1361
|
# @return [String]
|
1306
1362
|
attr_accessor :rule_revision_id
|
@@ -1371,6 +1427,32 @@ module Google
|
|
1371
1427
|
end
|
1372
1428
|
end
|
1373
1429
|
|
1430
|
+
# Response message for a 'FetchStaticIps' request.
|
1431
|
+
class FetchStaticIpsResponse
|
1432
|
+
include Google::Apis::Core::Hashable
|
1433
|
+
|
1434
|
+
# A token that can be sent as `page_token` to retrieve the next page. If this
|
1435
|
+
# field is omitted, there are no subsequent pages.
|
1436
|
+
# Corresponds to the JSON property `nextPageToken`
|
1437
|
+
# @return [String]
|
1438
|
+
attr_accessor :next_page_token
|
1439
|
+
|
1440
|
+
# List of static IPs.
|
1441
|
+
# Corresponds to the JSON property `staticIps`
|
1442
|
+
# @return [Array<String>]
|
1443
|
+
attr_accessor :static_ips
|
1444
|
+
|
1445
|
+
def initialize(**args)
|
1446
|
+
update!(**args)
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
# Update properties of this object
|
1450
|
+
def update!(**args)
|
1451
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1452
|
+
@static_ips = args[:static_ips] if args.key?(:static_ips)
|
1453
|
+
end
|
1454
|
+
end
|
1455
|
+
|
1374
1456
|
# Forward SSH Tunnel connectivity.
|
1375
1457
|
class ForwardSshTunnelConnectivity
|
1376
1458
|
include Google::Apis::Core::Hashable
|
@@ -1418,12 +1500,12 @@ module Google
|
|
1418
1500
|
class FunctionEntity
|
1419
1501
|
include Google::Apis::Core::Hashable
|
1420
1502
|
|
1421
|
-
# Custom engine specific features
|
1503
|
+
# Custom engine specific features.
|
1422
1504
|
# Corresponds to the JSON property `customFeatures`
|
1423
1505
|
# @return [Hash<String,Object>]
|
1424
1506
|
attr_accessor :custom_features
|
1425
1507
|
|
1426
|
-
# The SQL code which creates the function
|
1508
|
+
# The SQL code which creates the function.
|
1427
1509
|
# Corresponds to the JSON property `sqlCode`
|
1428
1510
|
# @return [String]
|
1429
1511
|
attr_accessor :sql_code
|
@@ -1453,7 +1535,7 @@ module Google
|
|
1453
1535
|
# @return [Google::Apis::DatamigrationV1::VmCreationConfig]
|
1454
1536
|
attr_accessor :vm_creation_config
|
1455
1537
|
|
1456
|
-
# The port that will be open on the bastion host
|
1538
|
+
# The port that will be open on the bastion host.
|
1457
1539
|
# Corresponds to the JSON property `vmPort`
|
1458
1540
|
# @return [Fixnum]
|
1459
1541
|
attr_accessor :vm_port
|
@@ -1546,7 +1628,7 @@ module Google
|
|
1546
1628
|
attr_accessor :auto_commit
|
1547
1629
|
alias_method :auto_commit?, :auto_commit
|
1548
1630
|
|
1549
|
-
# One or more rules files
|
1631
|
+
# One or more rules files.
|
1550
1632
|
# Corresponds to the JSON property `rulesFiles`
|
1551
1633
|
# @return [Array<Google::Apis::DatamigrationV1::RulesFile>]
|
1552
1634
|
attr_accessor :rules_files
|
@@ -1568,16 +1650,16 @@ module Google
|
|
1568
1650
|
end
|
1569
1651
|
end
|
1570
1652
|
|
1571
|
-
# Details regarding an Import Rules background job
|
1653
|
+
# Details regarding an Import Rules background job.
|
1572
1654
|
class ImportRulesJobDetails
|
1573
1655
|
include Google::Apis::Core::Hashable
|
1574
1656
|
|
1575
|
-
# The requested file format
|
1657
|
+
# The requested file format.
|
1576
1658
|
# Corresponds to the JSON property `fileFormat`
|
1577
1659
|
# @return [String]
|
1578
1660
|
attr_accessor :file_format
|
1579
1661
|
|
1580
|
-
# File names used for the import rules job
|
1662
|
+
# File names used for the import rules job.
|
1581
1663
|
# Corresponds to the JSON property `files`
|
1582
1664
|
# @return [Array<String>]
|
1583
1665
|
attr_accessor :files
|
@@ -1598,28 +1680,28 @@ module Google
|
|
1598
1680
|
class IndexEntity
|
1599
1681
|
include Google::Apis::Core::Hashable
|
1600
1682
|
|
1601
|
-
# Custom engine specific features
|
1683
|
+
# Custom engine specific features.
|
1602
1684
|
# Corresponds to the JSON property `customFeatures`
|
1603
1685
|
# @return [Hash<String,Object>]
|
1604
1686
|
attr_accessor :custom_features
|
1605
1687
|
|
1606
|
-
# The name of the index
|
1688
|
+
# The name of the index.
|
1607
1689
|
# Corresponds to the JSON property `name`
|
1608
1690
|
# @return [String]
|
1609
1691
|
attr_accessor :name
|
1610
1692
|
|
1611
|
-
# Table columns used as part of the Index for
|
1612
|
-
# columns which constitutes the index.
|
1693
|
+
# Table columns used as part of the Index, for example B-TREE index should list
|
1694
|
+
# the columns which constitutes the index.
|
1613
1695
|
# Corresponds to the JSON property `tableColumns`
|
1614
1696
|
# @return [Array<String>]
|
1615
1697
|
attr_accessor :table_columns
|
1616
1698
|
|
1617
|
-
# Type of index
|
1699
|
+
# Type of index, for example B-TREE.
|
1618
1700
|
# Corresponds to the JSON property `type`
|
1619
1701
|
# @return [String]
|
1620
1702
|
attr_accessor :type
|
1621
1703
|
|
1622
|
-
#
|
1704
|
+
# Boolean value indicating whether the index is unique.
|
1623
1705
|
# Corresponds to the JSON property `unique`
|
1624
1706
|
# @return [Boolean]
|
1625
1707
|
attr_accessor :unique
|
@@ -1648,7 +1730,7 @@ module Google
|
|
1648
1730
|
# @return [Array<Google::Apis::DatamigrationV1::ConnectionProfile>]
|
1649
1731
|
attr_accessor :connection_profiles
|
1650
1732
|
|
1651
|
-
# A token
|
1733
|
+
# A token which can be sent as `page_token` to retrieve the next page. If this
|
1652
1734
|
# field is omitted, there are no subsequent pages.
|
1653
1735
|
# Corresponds to the JSON property `nextPageToken`
|
1654
1736
|
# @return [String]
|
@@ -1680,7 +1762,7 @@ module Google
|
|
1680
1762
|
# @return [Array<Google::Apis::DatamigrationV1::ConversionWorkspace>]
|
1681
1763
|
attr_accessor :conversion_workspaces
|
1682
1764
|
|
1683
|
-
# A token
|
1765
|
+
# A token which can be sent as `page_token` to retrieve the next page. If this
|
1684
1766
|
# field is omitted, there are no subsequent pages.
|
1685
1767
|
# Corresponds to the JSON property `nextPageToken`
|
1686
1768
|
# @return [String]
|
@@ -1737,7 +1819,7 @@ module Google
|
|
1737
1819
|
# @return [Array<Google::Apis::DatamigrationV1::MigrationJob>]
|
1738
1820
|
attr_accessor :migration_jobs
|
1739
1821
|
|
1740
|
-
# A token
|
1822
|
+
# A token which can be sent as `page_token` to retrieve the next page. If this
|
1741
1823
|
# field is omitted, there are no subsequent pages.
|
1742
1824
|
# Corresponds to the JSON property `nextPageToken`
|
1743
1825
|
# @return [String]
|
@@ -1789,7 +1871,7 @@ module Google
|
|
1789
1871
|
class ListPrivateConnectionsResponse
|
1790
1872
|
include Google::Apis::Core::Hashable
|
1791
1873
|
|
1792
|
-
# A token
|
1874
|
+
# A token which can be sent as `page_token` to retrieve the next page. If this
|
1793
1875
|
# field is omitted, there are no subsequent pages.
|
1794
1876
|
# Corresponds to the JSON property `nextPageToken`
|
1795
1877
|
# @return [String]
|
@@ -1999,10 +2081,10 @@ module Google
|
|
1999
2081
|
# @return [String]
|
2000
2082
|
attr_accessor :state
|
2001
2083
|
|
2002
|
-
# The source database will allow incoming connections from the
|
2003
|
-
# database
|
2004
|
-
# the Cloud SQL console or using Cloud SQL APIs. No additional
|
2005
|
-
# required.
|
2084
|
+
# The source database will allow incoming connections from the public IP of the
|
2085
|
+
# destination database. You can retrieve the public IP of the Cloud SQL instance
|
2086
|
+
# from the Cloud SQL console or using Cloud SQL APIs. No additional
|
2087
|
+
# configuration is required.
|
2006
2088
|
# Corresponds to the JSON property `staticIpConnectivity`
|
2007
2089
|
# @return [Google::Apis::DatamigrationV1::StaticIpConnectivity]
|
2008
2090
|
attr_accessor :static_ip_connectivity
|
@@ -2288,7 +2370,7 @@ module Google
|
|
2288
2370
|
class PackageEntity
|
2289
2371
|
include Google::Apis::Core::Hashable
|
2290
2372
|
|
2291
|
-
# Custom engine specific features
|
2373
|
+
# Custom engine specific features.
|
2292
2374
|
# Corresponds to the JSON property `customFeatures`
|
2293
2375
|
# @return [Hash<String,Object>]
|
2294
2376
|
attr_accessor :custom_features
|
@@ -2299,7 +2381,7 @@ module Google
|
|
2299
2381
|
# @return [String]
|
2300
2382
|
attr_accessor :package_body
|
2301
2383
|
|
2302
|
-
# The SQL code which creates the package
|
2384
|
+
# The SQL code which creates the package.
|
2303
2385
|
# Corresponds to the JSON property `packageSqlCode`
|
2304
2386
|
# @return [String]
|
2305
2387
|
attr_accessor :package_sql_code
|
@@ -2462,10 +2544,10 @@ module Google
|
|
2462
2544
|
# @return [Google::Apis::DatamigrationV1::SslConfig]
|
2463
2545
|
attr_accessor :ssl
|
2464
2546
|
|
2465
|
-
# The source database will allow incoming connections from the
|
2466
|
-
# database
|
2467
|
-
# the Cloud SQL console or using Cloud SQL APIs. No additional
|
2468
|
-
# required.
|
2547
|
+
# The source database will allow incoming connections from the public IP of the
|
2548
|
+
# destination database. You can retrieve the public IP of the Cloud SQL instance
|
2549
|
+
# from the Cloud SQL console or using Cloud SQL APIs. No additional
|
2550
|
+
# configuration is required.
|
2469
2551
|
# Corresponds to the JSON property `staticIpConnectivity`
|
2470
2552
|
# @return [Google::Apis::DatamigrationV1::StaticIpConnectivity]
|
2471
2553
|
attr_accessor :static_ip_connectivity
|
@@ -2575,12 +2657,12 @@ module Google
|
|
2575
2657
|
# @return [Hash<String,String>]
|
2576
2658
|
attr_accessor :labels
|
2577
2659
|
|
2578
|
-
# The resource
|
2660
|
+
# The name of the resource.
|
2579
2661
|
# Corresponds to the JSON property `name`
|
2580
2662
|
# @return [String]
|
2581
2663
|
attr_accessor :name
|
2582
2664
|
|
2583
|
-
# Output only. The state of the
|
2665
|
+
# Output only. The state of the private connection.
|
2584
2666
|
# Corresponds to the JSON property `state`
|
2585
2667
|
# @return [String]
|
2586
2668
|
attr_accessor :state
|
@@ -2590,7 +2672,7 @@ module Google
|
|
2590
2672
|
# @return [String]
|
2591
2673
|
attr_accessor :update_time
|
2592
2674
|
|
2593
|
-
# The VPC
|
2675
|
+
# The VPC peering configuration is used to create VPC peering with the consumer'
|
2594
2676
|
# s VPC.
|
2595
2677
|
# Corresponds to the JSON property `vpcPeeringConfig`
|
2596
2678
|
# @return [Google::Apis::DatamigrationV1::VpcPeeringConfig]
|
@@ -2751,18 +2833,18 @@ module Google
|
|
2751
2833
|
end
|
2752
2834
|
end
|
2753
2835
|
|
2754
|
-
# Details of a single rules file
|
2836
|
+
# Details of a single rules file.
|
2755
2837
|
class RulesFile
|
2756
2838
|
include Google::Apis::Core::Hashable
|
2757
2839
|
|
2758
|
-
# The text content of the rules that needs to be converted
|
2840
|
+
# The text content of the rules that needs to be converted.
|
2759
2841
|
# Corresponds to the JSON property `rulesContent`
|
2760
2842
|
# @return [String]
|
2761
2843
|
attr_accessor :rules_content
|
2762
2844
|
|
2763
|
-
# The filename of the rules that needs to be converted.
|
2764
|
-
# future logs of the import rules job
|
2765
|
-
# be searched by it
|
2845
|
+
# The filename of the rules that needs to be converted. The filename is used
|
2846
|
+
# mainly so that future logs of the import rules job contain it, and can
|
2847
|
+
# therefore be searched by it.
|
2766
2848
|
# Corresponds to the JSON property `rulesSourceFilename`
|
2767
2849
|
# @return [String]
|
2768
2850
|
attr_accessor :rules_source_filename
|
@@ -2779,14 +2861,14 @@ module Google
|
|
2779
2861
|
end
|
2780
2862
|
|
2781
2863
|
# Schema typically has no parent entity, but can have a parent entity
|
2782
|
-
# DatabaseInstance (for database engines which
|
2783
|
-
# engines the
|
2864
|
+
# DatabaseInstance (for database engines which support it). For some database
|
2865
|
+
# engines, the terms schema and user can be used interchangeably when they refer
|
2784
2866
|
# to a namespace or a collection of other database entities. Can store
|
2785
2867
|
# additional information which is schema specific.
|
2786
2868
|
class SchemaEntity
|
2787
2869
|
include Google::Apis::Core::Hashable
|
2788
2870
|
|
2789
|
-
# Custom engine specific features
|
2871
|
+
# Custom engine specific features.
|
2790
2872
|
# Corresponds to the JSON property `customFeatures`
|
2791
2873
|
# @return [Hash<String,Object>]
|
2792
2874
|
attr_accessor :custom_features
|
@@ -2853,11 +2935,11 @@ module Google
|
|
2853
2935
|
end
|
2854
2936
|
end
|
2855
2937
|
|
2856
|
-
# Details regarding a Seed background job
|
2938
|
+
# Details regarding a Seed background job.
|
2857
2939
|
class SeedJobDetails
|
2858
2940
|
include Google::Apis::Core::Hashable
|
2859
2941
|
|
2860
|
-
# The connection profile which was used for the seed job
|
2942
|
+
# The connection profile which was used for the seed job.
|
2861
2943
|
# Corresponds to the JSON property `connectionProfile`
|
2862
2944
|
# @return [String]
|
2863
2945
|
attr_accessor :connection_profile
|
@@ -2876,42 +2958,42 @@ module Google
|
|
2876
2958
|
class SequenceEntity
|
2877
2959
|
include Google::Apis::Core::Hashable
|
2878
2960
|
|
2879
|
-
# Indicates number of entries to cache / precreate
|
2961
|
+
# Indicates number of entries to cache / precreate.
|
2880
2962
|
# Corresponds to the JSON property `cache`
|
2881
2963
|
# @return [Fixnum]
|
2882
2964
|
attr_accessor :cache
|
2883
2965
|
|
2884
|
-
# Custom engine specific features
|
2966
|
+
# Custom engine specific features.
|
2885
2967
|
# Corresponds to the JSON property `customFeatures`
|
2886
2968
|
# @return [Hash<String,Object>]
|
2887
2969
|
attr_accessor :custom_features
|
2888
2970
|
|
2889
|
-
# Indicates whether the sequence value should cycle through
|
2971
|
+
# Indicates whether the sequence value should cycle through.
|
2890
2972
|
# Corresponds to the JSON property `cycle`
|
2891
2973
|
# @return [Boolean]
|
2892
2974
|
attr_accessor :cycle
|
2893
2975
|
alias_method :cycle?, :cycle
|
2894
2976
|
|
2895
|
-
# Increment value for the sequence
|
2977
|
+
# Increment value for the sequence.
|
2896
2978
|
# Corresponds to the JSON property `increment`
|
2897
2979
|
# @return [Fixnum]
|
2898
2980
|
attr_accessor :increment
|
2899
2981
|
|
2900
|
-
# Maximum number for the sequence represented as bytes to accommodate large
|
2982
|
+
# Maximum number for the sequence represented as bytes to accommodate large.
|
2901
2983
|
# numbers
|
2902
2984
|
# Corresponds to the JSON property `maxValue`
|
2903
2985
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2904
2986
|
# @return [String]
|
2905
2987
|
attr_accessor :max_value
|
2906
2988
|
|
2907
|
-
# Minimum number for the sequence represented as bytes to accommodate large
|
2989
|
+
# Minimum number for the sequence represented as bytes to accommodate large.
|
2908
2990
|
# numbers
|
2909
2991
|
# Corresponds to the JSON property `minValue`
|
2910
2992
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2911
2993
|
# @return [String]
|
2912
2994
|
attr_accessor :min_value
|
2913
2995
|
|
2914
|
-
# Start number for the sequence represented as bytes to accommodate large
|
2996
|
+
# Start number for the sequence represented as bytes to accommodate large.
|
2915
2997
|
# numbers
|
2916
2998
|
# Corresponds to the JSON property `startValue`
|
2917
2999
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
@@ -3145,10 +3227,10 @@ module Google
|
|
3145
3227
|
end
|
3146
3228
|
end
|
3147
3229
|
|
3148
|
-
# The source database will allow incoming connections from the
|
3149
|
-
# database
|
3150
|
-
# the Cloud SQL console or using Cloud SQL APIs. No additional
|
3151
|
-
# required.
|
3230
|
+
# The source database will allow incoming connections from the public IP of the
|
3231
|
+
# destination database. You can retrieve the public IP of the Cloud SQL instance
|
3232
|
+
# from the Cloud SQL console or using Cloud SQL APIs. No additional
|
3233
|
+
# configuration is required.
|
3152
3234
|
class StaticIpConnectivity
|
3153
3235
|
include Google::Apis::Core::Hashable
|
3154
3236
|
|
@@ -3230,12 +3312,12 @@ module Google
|
|
3230
3312
|
class StoredProcedureEntity
|
3231
3313
|
include Google::Apis::Core::Hashable
|
3232
3314
|
|
3233
|
-
# Custom engine specific features
|
3315
|
+
# Custom engine specific features.
|
3234
3316
|
# Corresponds to the JSON property `customFeatures`
|
3235
3317
|
# @return [Hash<String,Object>]
|
3236
3318
|
attr_accessor :custom_features
|
3237
3319
|
|
3238
|
-
# The SQL code which creates the stored procedure
|
3320
|
+
# The SQL code which creates the stored procedure.
|
3239
3321
|
# Corresponds to the JSON property `sqlCode`
|
3240
3322
|
# @return [String]
|
3241
3323
|
attr_accessor :sql_code
|
@@ -3255,18 +3337,18 @@ module Google
|
|
3255
3337
|
class SynonymEntity
|
3256
3338
|
include Google::Apis::Core::Hashable
|
3257
3339
|
|
3258
|
-
# Custom engine specific features
|
3340
|
+
# Custom engine specific features.
|
3259
3341
|
# Corresponds to the JSON property `customFeatures`
|
3260
3342
|
# @return [Hash<String,Object>]
|
3261
3343
|
attr_accessor :custom_features
|
3262
3344
|
|
3263
|
-
# The name of the entity for which the synonym is being created (the source)
|
3345
|
+
# The name of the entity for which the synonym is being created (the source).
|
3264
3346
|
# Corresponds to the JSON property `sourceEntity`
|
3265
3347
|
# @return [String]
|
3266
3348
|
attr_accessor :source_entity
|
3267
3349
|
|
3268
3350
|
# The type of the entity for which the synonym is being created (usually a table
|
3269
|
-
# or a sequence)
|
3351
|
+
# or a sequence).
|
3270
3352
|
# Corresponds to the JSON property `sourceType`
|
3271
3353
|
# @return [String]
|
3272
3354
|
attr_accessor :source_type
|
@@ -3287,27 +3369,27 @@ module Google
|
|
3287
3369
|
class TableEntity
|
3288
3370
|
include Google::Apis::Core::Hashable
|
3289
3371
|
|
3290
|
-
# Table
|
3372
|
+
# Table columns.
|
3291
3373
|
# Corresponds to the JSON property `columns`
|
3292
3374
|
# @return [Array<Google::Apis::DatamigrationV1::ColumnEntity>]
|
3293
3375
|
attr_accessor :columns
|
3294
3376
|
|
3295
|
-
# Comment associated with the table
|
3377
|
+
# Comment associated with the table.
|
3296
3378
|
# Corresponds to the JSON property `comment`
|
3297
3379
|
# @return [String]
|
3298
3380
|
attr_accessor :comment
|
3299
3381
|
|
3300
|
-
# Table
|
3382
|
+
# Table constraints.
|
3301
3383
|
# Corresponds to the JSON property `constraints`
|
3302
3384
|
# @return [Array<Google::Apis::DatamigrationV1::ConstraintEntity>]
|
3303
3385
|
attr_accessor :constraints
|
3304
3386
|
|
3305
|
-
# Custom engine specific features
|
3387
|
+
# Custom engine specific features.
|
3306
3388
|
# Corresponds to the JSON property `customFeatures`
|
3307
3389
|
# @return [Hash<String,Object>]
|
3308
3390
|
attr_accessor :custom_features
|
3309
3391
|
|
3310
|
-
# Table
|
3392
|
+
# Table indices.
|
3311
3393
|
# Corresponds to the JSON property `indices`
|
3312
3394
|
# @return [Array<Google::Apis::DatamigrationV1::IndexEntity>]
|
3313
3395
|
attr_accessor :indices
|
@@ -3377,27 +3459,28 @@ module Google
|
|
3377
3459
|
class TriggerEntity
|
3378
3460
|
include Google::Apis::Core::Hashable
|
3379
3461
|
|
3380
|
-
# Custom engine specific features
|
3462
|
+
# Custom engine specific features.
|
3381
3463
|
# Corresponds to the JSON property `customFeatures`
|
3382
3464
|
# @return [Hash<String,Object>]
|
3383
3465
|
attr_accessor :custom_features
|
3384
3466
|
|
3385
|
-
# The name of the trigger
|
3467
|
+
# The name of the trigger.
|
3386
3468
|
# Corresponds to the JSON property `name`
|
3387
3469
|
# @return [String]
|
3388
3470
|
attr_accessor :name
|
3389
3471
|
|
3390
|
-
# The SQL code which creates the trigger
|
3472
|
+
# The SQL code which creates the trigger.
|
3391
3473
|
# Corresponds to the JSON property `sqlCode`
|
3392
3474
|
# @return [String]
|
3393
3475
|
attr_accessor :sql_code
|
3394
3476
|
|
3395
|
-
# Indicates when the trigger fires,
|
3477
|
+
# Indicates when the trigger fires, for example BEFORE STATEMENT, AFTER EACH ROW.
|
3396
3478
|
# Corresponds to the JSON property `triggerType`
|
3397
3479
|
# @return [String]
|
3398
3480
|
attr_accessor :trigger_type
|
3399
3481
|
|
3400
|
-
# The DML, DDL, or database events that
|
3482
|
+
# The DML, DDL, or database events that fire the trigger, for example INSERT,
|
3483
|
+
# UPDATE.
|
3401
3484
|
# Corresponds to the JSON property `triggeringEvents`
|
3402
3485
|
# @return [Array<String>]
|
3403
3486
|
attr_accessor :triggering_events
|
@@ -3466,12 +3549,12 @@ module Google
|
|
3466
3549
|
class ViewEntity
|
3467
3550
|
include Google::Apis::Core::Hashable
|
3468
3551
|
|
3469
|
-
# View
|
3552
|
+
# View constraints.
|
3470
3553
|
# Corresponds to the JSON property `constraints`
|
3471
3554
|
# @return [Array<Google::Apis::DatamigrationV1::ConstraintEntity>]
|
3472
3555
|
attr_accessor :constraints
|
3473
3556
|
|
3474
|
-
# Custom engine specific features
|
3557
|
+
# Custom engine specific features.
|
3475
3558
|
# Corresponds to the JSON property `customFeatures`
|
3476
3559
|
# @return [Hash<String,Object>]
|
3477
3560
|
attr_accessor :custom_features
|
@@ -3543,7 +3626,7 @@ module Google
|
|
3543
3626
|
end
|
3544
3627
|
end
|
3545
3628
|
|
3546
|
-
# The VPC
|
3629
|
+
# The VPC peering configuration is used to create VPC peering with the consumer'
|
3547
3630
|
# s VPC.
|
3548
3631
|
class VpcPeeringConfig
|
3549
3632
|
include Google::Apis::Core::Hashable
|
@@ -3553,7 +3636,8 @@ module Google
|
|
3553
3636
|
# @return [String]
|
3554
3637
|
attr_accessor :subnet
|
3555
3638
|
|
3556
|
-
# Required. Fully qualified name of the VPC
|
3639
|
+
# Required. Fully qualified name of the VPC that Database Migration Service will
|
3640
|
+
# peer to.
|
3557
3641
|
# Corresponds to the JSON property `vpcName`
|
3558
3642
|
# @return [String]
|
3559
3643
|
attr_accessor :vpc_name
|