google-apis-datamigration_v1 0.78.0 → 0.80.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efa8eb3318eeb0deabe9a9fbe614eb8a4171db192b83b5a4f69a60394bb5a215
4
- data.tar.gz: 41e85b32b14fd0348e13ff57926d20f603987d092cb09a7b333201b00d2dc831
3
+ metadata.gz: 7ae26866670dff350151269b9eb7e9bf18e8e7e8dd8bd0ca54aa414e905029b7
4
+ data.tar.gz: 89ea5096efeda03dc37131d52ea38312609c1b919a4a701b0961d73638268059
5
5
  SHA512:
6
- metadata.gz: 9920653e682f8a77c1bcbc99c3f52d1da44a44054454ebb1c15d78f629397fecd7afe8c6ec2db38ab3717e3f938fcb606948246f08be0f1b1d8b024827779783
7
- data.tar.gz: 2b51ff74b1bead72c39734f6e7fd861152ae28a7c1b994249610d0c164c33f12f6047a309bcafba0fe508740a77635bdb34337e6c96de28d74bab62fb0519651
6
+ metadata.gz: 8f08b8228eb2908aa2d1dba13a944a9c3186cad31d827a3db4f69678b56984cd40f2d0cb28288d82c33e4edd9da894a28a84644bc5ea5080a0506a6daaf0beef
7
+ data.tar.gz: cecc84f4c108f209fbd805d543cd4a9cd65d1d0f1e6f6efa3527d320ae844141372bd629a98e1907a8b304741a56b968c7cc294662efd15e612445e5afb3c0ac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.80.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250826
6
+
7
+ ### v0.79.0 (2025-08-24)
8
+
9
+ * Regenerated from discovery document revision 20250815
10
+
3
11
  ### v0.78.0 (2025-07-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20250625
@@ -2279,6 +2279,25 @@ module Google
2279
2279
  end
2280
2280
  end
2281
2281
 
2282
+ # Metadata for heterogeneous migration jobs objects.
2283
+ class HeterogeneousMetadata
2284
+ include Google::Apis::Core::Hashable
2285
+
2286
+ # The number of unsupported events.
2287
+ # Corresponds to the JSON property `unsupportedEventsCount`
2288
+ # @return [Fixnum]
2289
+ attr_accessor :unsupported_events_count
2290
+
2291
+ def initialize(**args)
2292
+ update!(**args)
2293
+ end
2294
+
2295
+ # Update properties of this object
2296
+ def update!(**args)
2297
+ @unsupported_events_count = args[:unsupported_events_count] if args.key?(:unsupported_events_count)
2298
+ end
2299
+ end
2300
+
2282
2301
  # Request message for 'ImportMappingRules' request.
2283
2302
  class ImportMappingRulesRequest
2284
2303
  include Google::Apis::Core::Hashable
@@ -3328,6 +3347,11 @@ module Google
3328
3347
  # @return [Google::Apis::DatamigrationV1::Status]
3329
3348
  attr_accessor :error
3330
3349
 
3350
+ # Metadata for heterogeneous migration jobs objects.
3351
+ # Corresponds to the JSON property `heterogeneousMetadata`
3352
+ # @return [Google::Apis::DatamigrationV1::HeterogeneousMetadata]
3353
+ attr_accessor :heterogeneous_metadata
3354
+
3331
3355
  # The object's name.
3332
3356
  # Corresponds to the JSON property `name`
3333
3357
  # @return [String]
@@ -3361,6 +3385,7 @@ module Google
3361
3385
  def update!(**args)
3362
3386
  @create_time = args[:create_time] if args.key?(:create_time)
3363
3387
  @error = args[:error] if args.key?(:error)
3388
+ @heterogeneous_metadata = args[:heterogeneous_metadata] if args.key?(:heterogeneous_metadata)
3364
3389
  @name = args[:name] if args.key?(:name)
3365
3390
  @phase = args[:phase] if args.key?(:phase)
3366
3391
  @source_object = args[:source_object] if args.key?(:source_object)
@@ -5301,11 +5326,22 @@ module Google
5301
5326
  # @return [String]
5302
5327
  attr_accessor :cloud_sql_id
5303
5328
 
5329
+ # Optional. The project id of the Cloud SQL instance. If not provided, the
5330
+ # project id of the connection profile will be used.
5331
+ # Corresponds to the JSON property `cloudSqlProjectId`
5332
+ # @return [String]
5333
+ attr_accessor :cloud_sql_project_id
5334
+
5304
5335
  # Required. The name of the specific database within the host.
5305
5336
  # Corresponds to the JSON property `database`
5306
5337
  # @return [String]
5307
5338
  attr_accessor :database
5308
5339
 
5340
+ # Optional. The Database Mirroring (DBM) port of the source SQL Server instance.
5341
+ # Corresponds to the JSON property `dbmPort`
5342
+ # @return [Fixnum]
5343
+ attr_accessor :dbm_port
5344
+
5309
5345
  # Forward SSH Tunnel connectivity.
5310
5346
  # Corresponds to the JSON property `forwardSshConnectivity`
5311
5347
  # @return [Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity]
@@ -5373,7 +5409,9 @@ module Google
5373
5409
  def update!(**args)
5374
5410
  @backups = args[:backups] if args.key?(:backups)
5375
5411
  @cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id)
5412
+ @cloud_sql_project_id = args[:cloud_sql_project_id] if args.key?(:cloud_sql_project_id)
5376
5413
  @database = args[:database] if args.key?(:database)
5414
+ @dbm_port = args[:dbm_port] if args.key?(:dbm_port)
5377
5415
  @forward_ssh_connectivity = args[:forward_ssh_connectivity] if args.key?(:forward_ssh_connectivity)
5378
5416
  @host = args[:host] if args.key?(:host)
5379
5417
  @password = args[:password] if args.key?(:password)
@@ -5387,6 +5425,34 @@ module Google
5387
5425
  end
5388
5426
  end
5389
5427
 
5428
+ # Configuration for distributed availability group (DAG) for the SQL Server
5429
+ # homogeneous migration.
5430
+ class SqlServerDagConfig
5431
+ include Google::Apis::Core::Hashable
5432
+
5433
+ # Required. The name of the linked server that points to the source SQL Server
5434
+ # instance. Only used by DAG migrations.
5435
+ # Corresponds to the JSON property `linkedServer`
5436
+ # @return [String]
5437
+ attr_accessor :linked_server
5438
+
5439
+ # Required. The name of the source availability group. Only used by DAG
5440
+ # migrations.
5441
+ # Corresponds to the JSON property `sourceAg`
5442
+ # @return [String]
5443
+ attr_accessor :source_ag
5444
+
5445
+ def initialize(**args)
5446
+ update!(**args)
5447
+ end
5448
+
5449
+ # Update properties of this object
5450
+ def update!(**args)
5451
+ @linked_server = args[:linked_server] if args.key?(:linked_server)
5452
+ @source_ag = args[:source_ag] if args.key?(:source_ag)
5453
+ end
5454
+ end
5455
+
5390
5456
  # Specifies the backup details for a single database in Cloud Storage for
5391
5457
  # homogeneous migration to Cloud SQL for SQL Server.
5392
5458
  class SqlServerDatabaseBackup
@@ -5466,6 +5532,12 @@ module Google
5466
5532
  # @return [String]
5467
5533
  attr_accessor :backup_file_pattern
5468
5534
 
5535
+ # Configuration for distributed availability group (DAG) for the SQL Server
5536
+ # homogeneous migration.
5537
+ # Corresponds to the JSON property `dagConfig`
5538
+ # @return [Google::Apis::DatamigrationV1::SqlServerDagConfig]
5539
+ attr_accessor :dag_config
5540
+
5469
5541
  # Required. Backup details per database in Cloud Storage.
5470
5542
  # Corresponds to the JSON property `databaseBackups`
5471
5543
  # @return [Array<Google::Apis::DatamigrationV1::SqlServerDatabaseBackup>]
@@ -5490,6 +5562,7 @@ module Google
5490
5562
  # Update properties of this object
5491
5563
  def update!(**args)
5492
5564
  @backup_file_pattern = args[:backup_file_pattern] if args.key?(:backup_file_pattern)
5565
+ @dag_config = args[:dag_config] if args.key?(:dag_config)
5493
5566
  @database_backups = args[:database_backups] if args.key?(:database_backups)
5494
5567
  @promote_when_ready = args[:promote_when_ready] if args.key?(:promote_when_ready)
5495
5568
  @use_diff_backup = args[:use_diff_backup] if args.key?(:use_diff_backup)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamigrationV1
18
18
  # Version of the google-apis-datamigration_v1 gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.80.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250625"
25
+ REVISION = "20250826"
26
26
  end
27
27
  end
28
28
  end
@@ -328,6 +328,12 @@ module Google
328
328
  include Google::Apis::Core::JsonObjectSupport
329
329
  end
330
330
 
331
+ class HeterogeneousMetadata
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
331
337
  class ImportMappingRulesRequest
332
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
339
 
@@ -760,6 +766,12 @@ module Google
760
766
  include Google::Apis::Core::JsonObjectSupport
761
767
  end
762
768
 
769
+ class SqlServerDagConfig
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
763
775
  class SqlServerDatabaseBackup
764
776
  class Representation < Google::Apis::Core::JsonRepresentation; end
765
777
 
@@ -1509,6 +1521,13 @@ module Google
1509
1521
  end
1510
1522
  end
1511
1523
 
1524
+ class HeterogeneousMetadata
1525
+ # @private
1526
+ class Representation < Google::Apis::Core::JsonRepresentation
1527
+ property :unsupported_events_count, :numeric_string => true, as: 'unsupportedEventsCount'
1528
+ end
1529
+ end
1530
+
1512
1531
  class ImportMappingRulesRequest
1513
1532
  # @private
1514
1533
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1788,6 +1807,8 @@ module Google
1788
1807
  property :create_time, as: 'createTime'
1789
1808
  property :error, as: 'error', class: Google::Apis::DatamigrationV1::Status, decorator: Google::Apis::DatamigrationV1::Status::Representation
1790
1809
 
1810
+ property :heterogeneous_metadata, as: 'heterogeneousMetadata', class: Google::Apis::DatamigrationV1::HeterogeneousMetadata, decorator: Google::Apis::DatamigrationV1::HeterogeneousMetadata::Representation
1811
+
1791
1812
  property :name, as: 'name'
1792
1813
  property :phase, as: 'phase'
1793
1814
  property :source_object, as: 'sourceObject', class: Google::Apis::DatamigrationV1::SourceObjectIdentifier, decorator: Google::Apis::DatamigrationV1::SourceObjectIdentifier::Representation
@@ -2296,7 +2317,9 @@ module Google
2296
2317
  property :backups, as: 'backups', class: Google::Apis::DatamigrationV1::SqlServerBackups, decorator: Google::Apis::DatamigrationV1::SqlServerBackups::Representation
2297
2318
 
2298
2319
  property :cloud_sql_id, as: 'cloudSqlId'
2320
+ property :cloud_sql_project_id, as: 'cloudSqlProjectId'
2299
2321
  property :database, as: 'database'
2322
+ property :dbm_port, as: 'dbmPort'
2300
2323
  property :forward_ssh_connectivity, as: 'forwardSshConnectivity', class: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity, decorator: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity::Representation
2301
2324
 
2302
2325
  property :host, as: 'host'
@@ -2315,6 +2338,14 @@ module Google
2315
2338
  end
2316
2339
  end
2317
2340
 
2341
+ class SqlServerDagConfig
2342
+ # @private
2343
+ class Representation < Google::Apis::Core::JsonRepresentation
2344
+ property :linked_server, as: 'linkedServer'
2345
+ property :source_ag, as: 'sourceAg'
2346
+ end
2347
+ end
2348
+
2318
2349
  class SqlServerDatabaseBackup
2319
2350
  # @private
2320
2351
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2337,6 +2368,8 @@ module Google
2337
2368
  # @private
2338
2369
  class Representation < Google::Apis::Core::JsonRepresentation
2339
2370
  property :backup_file_pattern, as: 'backupFilePattern'
2371
+ property :dag_config, as: 'dagConfig', class: Google::Apis::DatamigrationV1::SqlServerDagConfig, decorator: Google::Apis::DatamigrationV1::SqlServerDagConfig::Representation
2372
+
2340
2373
  collection :database_backups, as: 'databaseBackups', class: Google::Apis::DatamigrationV1::SqlServerDatabaseBackup, decorator: Google::Apis::DatamigrationV1::SqlServerDatabaseBackup::Representation
2341
2374
 
2342
2375
  property :promote_when_ready, as: 'promoteWhenReady'
@@ -123,8 +123,8 @@ module Google
123
123
  # @param [String] name
124
124
  # The resource that owns the locations collection, if applicable.
125
125
  # @param [Array<String>, String] extra_location_types
126
- # Optional. A list of extra location types that should be used as conditions for
127
- # controlling the visibility of the locations.
126
+ # Optional. Do not use this field. It is unsupported and is ignored unless
127
+ # explicitly documented otherwise. This is primarily for internal usage.
128
128
  # @param [String] filter
129
129
  # A filter to narrow down results to a preferred subset. The filtering language
130
130
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.78.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.80.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
62
62
  rdoc_options: []
63
63
  require_paths: