File tree Expand file tree Collapse file tree 5 files changed +24
-2
lines changed
generated/google-apis-datamigration_v1
lib/google/apis/datamigration_v1 Expand file tree Collapse file tree 5 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -144145,6 +144145,8 @@
144145144145"/datamigration:v1/SourceObjectConfig/objectIdentifier": object_identifier
144146144146"/datamigration:v1/SourceObjectIdentifier": source_object_identifier
144147144147"/datamigration:v1/SourceObjectIdentifier/database": database
144148+ "/datamigration:v1/SourceObjectIdentifier/schema": schema
144149+ "/datamigration:v1/SourceObjectIdentifier/table": table
144148144150"/datamigration:v1/SourceObjectIdentifier/type": type
144149144151"/datamigration:v1/SourceObjectsConfig": source_objects_config
144150144152"/datamigration:v1/SourceObjectsConfig/objectConfigs": object_configs
Original file line number Diff line number Diff line change 11# Release history for google-apis-datamigration_v1
22
3+ ### v0.73.0 (2025-04-27)
4+
5+ * Regenerated from discovery document revision 20250416
6+
37### v0.72.0 (2025-04-20)
48
59* Regenerated from discovery document revision 20250409
Original file line number Diff line number Diff line change @@ -5014,6 +5014,18 @@ class SourceObjectIdentifier
50145014 # @return [String]
50155015 attr_accessor :database
50165016
5017+ # Optional. The schema name. This will be required only if the object uses a
5018+ # schema name as part of its unique identifier.
5019+ # Corresponds to the JSON property `schema`
5020+ # @return [String]
5021+ attr_accessor :schema
5022+
5023+ # Optional. The table name. This will be required only if the object is a level
5024+ # below database or schema.
5025+ # Corresponds to the JSON property `table`
5026+ # @return [String]
5027+ attr_accessor :table
5028+
50175029 # Required. The type of the migration job object.
50185030 # Corresponds to the JSON property `type`
50195031 # @return [String]
@@ -5026,6 +5038,8 @@ def initialize(**args)
50265038 # Update properties of this object
50275039 def update! ( **args )
50285040 @database = args [ :database ] if args . key? ( :database )
5041+ @schema = args [ :schema ] if args . key? ( :schema )
5042+ @table = args [ :table ] if args . key? ( :table )
50295043 @type = args [ :type ] if args . key? ( :type )
50305044 end
50315045 end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module DatamigrationV1
1818 # Version of the google-apis-datamigration_v1 gem
19- GEM_VERSION = "0.72 .0"
19+ GEM_VERSION = "0.73 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.16.0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20250409 "
25+ REVISION = "20250416 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -2212,6 +2212,8 @@ class SourceObjectIdentifier
22122212 # @private
22132213 class Representation < Google ::Apis ::Core ::JsonRepresentation
22142214 property :database , as : 'database'
2215+ property :schema , as : 'schema'
2216+ property :table , as : 'table'
22152217 property :type , as : 'type'
22162218 end
22172219 end
You can’t perform that action at this time.
0 commit comments