google-apis-datamigration_v1 0.77.0 → 0.79.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: 33aa74d2ff65483d3dbd4f17b36c6691b26cbeb449a1826a79c0f284314eb15c
4
- data.tar.gz: 8b820b922a273d2116cfc9956f3b08559cb4c9bf5f21580a5fa2dcdb1eeed785
3
+ metadata.gz: 321a491688783569cd31f616ab45264344d522da62a0601381fdeff7df8fb20f
4
+ data.tar.gz: dfd6e8cd524b2cf9f6d2e93834b42479b77002ad34861da82443f957e484ab91
5
5
  SHA512:
6
- metadata.gz: 425658900576f2441f4967d20f44ffb93ab7c8e278f716fc13fd1618cbba7d6286b6b1422813159a122072c848f6eb079ff9b59596abd33ab54fa131c385fa45
7
- data.tar.gz: f578be5c39c122c1bbb376e9d89db5790cd303f15fb08956379d5f040433640c1bb55c62416d29e3f82c48d0e9e7534ee2e90e88402382725846fd691dcb77f6
6
+ metadata.gz: f470fa1227341afc9e46064459124864ab723f194622a86f6bc8ffbf86d9fce6f519aa84796e0d06825f8e0737e530b9eff717b089219b1f64e4c823f233719c
7
+ data.tar.gz: 83f7f07242b092a23cd67bd837ac30d03e8a28e921ace50486b94e34017d7d8083c3c43ade8fa3758ba2d1fe21a176bdc5e973c876dbc87e432f7218d8101847
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.79.0 (2025-08-24)
4
+
5
+ * Regenerated from discovery document revision 20250815
6
+
7
+ ### v0.78.0 (2025-07-06)
8
+
9
+ * Regenerated from discovery document revision 20250625
10
+
3
11
  ### v0.77.0 (2025-06-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20250521
@@ -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)
@@ -4290,6 +4315,12 @@ module Google
4290
4315
  # @return [String]
4291
4316
  attr_accessor :name
4292
4317
 
4318
+ # The PSC Interface configuration is used to create PSC Interface between DMS's
4319
+ # internal VPC and the consumer's PSC.
4320
+ # Corresponds to the JSON property `pscInterfaceConfig`
4321
+ # @return [Google::Apis::DatamigrationV1::PscInterfaceConfig]
4322
+ attr_accessor :psc_interface_config
4323
+
4293
4324
  # Output only. Reserved for future use.
4294
4325
  # Corresponds to the JSON property `satisfiesPzi`
4295
4326
  # @return [Boolean]
@@ -4329,6 +4360,7 @@ module Google
4329
4360
  @error = args[:error] if args.key?(:error)
4330
4361
  @labels = args[:labels] if args.key?(:labels)
4331
4362
  @name = args[:name] if args.key?(:name)
4363
+ @psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
4332
4364
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
4333
4365
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
4334
4366
  @state = args[:state] if args.key?(:state)
@@ -4397,6 +4429,28 @@ module Google
4397
4429
  end
4398
4430
  end
4399
4431
 
4432
+ # The PSC Interface configuration is used to create PSC Interface between DMS's
4433
+ # internal VPC and the consumer's PSC.
4434
+ class PscInterfaceConfig
4435
+ include Google::Apis::Core::Hashable
4436
+
4437
+ # Required. Fully qualified name of the Network Attachment that DMS will connect
4438
+ # to. Format: `projects/``project``/regions/``region``/networkAttachments/``name`
4439
+ # ``
4440
+ # Corresponds to the JSON property `networkAttachment`
4441
+ # @return [String]
4442
+ attr_accessor :network_attachment
4443
+
4444
+ def initialize(**args)
4445
+ update!(**args)
4446
+ end
4447
+
4448
+ # Update properties of this object
4449
+ def update!(**args)
4450
+ @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
4451
+ end
4452
+ end
4453
+
4400
4454
  # Request message for 'RestartMigrationJob' request.
4401
4455
  class RestartMigrationJobRequest
4402
4456
  include Google::Apis::Core::Hashable
@@ -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.77.0"
19
+ GEM_VERSION = "0.79.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 = "20250521"
25
+ REVISION = "20250815"
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
 
@@ -598,6 +604,12 @@ module Google
598
604
  include Google::Apis::Core::JsonObjectSupport
599
605
  end
600
606
 
607
+ class PscInterfaceConfig
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
601
613
  class RestartMigrationJobRequest
602
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
615
 
@@ -1503,6 +1515,13 @@ module Google
1503
1515
  end
1504
1516
  end
1505
1517
 
1518
+ class HeterogeneousMetadata
1519
+ # @private
1520
+ class Representation < Google::Apis::Core::JsonRepresentation
1521
+ property :unsupported_events_count, :numeric_string => true, as: 'unsupportedEventsCount'
1522
+ end
1523
+ end
1524
+
1506
1525
  class ImportMappingRulesRequest
1507
1526
  # @private
1508
1527
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1782,6 +1801,8 @@ module Google
1782
1801
  property :create_time, as: 'createTime'
1783
1802
  property :error, as: 'error', class: Google::Apis::DatamigrationV1::Status, decorator: Google::Apis::DatamigrationV1::Status::Representation
1784
1803
 
1804
+ property :heterogeneous_metadata, as: 'heterogeneousMetadata', class: Google::Apis::DatamigrationV1::HeterogeneousMetadata, decorator: Google::Apis::DatamigrationV1::HeterogeneousMetadata::Representation
1805
+
1785
1806
  property :name, as: 'name'
1786
1807
  property :phase, as: 'phase'
1787
1808
  property :source_object, as: 'sourceObject', class: Google::Apis::DatamigrationV1::SourceObjectIdentifier, decorator: Google::Apis::DatamigrationV1::SourceObjectIdentifier::Representation
@@ -2016,6 +2037,8 @@ module Google
2016
2037
 
2017
2038
  hash :labels, as: 'labels'
2018
2039
  property :name, as: 'name'
2040
+ property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::DatamigrationV1::PscInterfaceConfig, decorator: Google::Apis::DatamigrationV1::PscInterfaceConfig::Representation
2041
+
2019
2042
  property :satisfies_pzi, as: 'satisfiesPzi'
2020
2043
  property :satisfies_pzs, as: 'satisfiesPzs'
2021
2044
  property :state, as: 'state'
@@ -2047,6 +2070,13 @@ module Google
2047
2070
  end
2048
2071
  end
2049
2072
 
2073
+ class PscInterfaceConfig
2074
+ # @private
2075
+ class Representation < Google::Apis::Core::JsonRepresentation
2076
+ property :network_attachment, as: 'networkAttachment'
2077
+ end
2078
+ end
2079
+
2050
2080
  class RestartMigrationJobRequest
2051
2081
  # @private
2052
2082
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -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
@@ -2411,6 +2411,9 @@ module Google
2411
2411
  # maximum length is 40 characters.
2412
2412
  # @param [Boolean] skip_validation
2413
2413
  # Optional. If set to true, will skip validations.
2414
+ # @param [Boolean] validate_only
2415
+ # Optional. For PSC Interface only - get the tenant project before creating the
2416
+ # resource.
2414
2417
  # @param [String] fields
2415
2418
  # Selector specifying which fields to include in a partial response.
2416
2419
  # @param [String] quota_user
@@ -2428,7 +2431,7 @@ module Google
2428
2431
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2429
2432
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2430
2433
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2431
- def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, skip_validation: nil, fields: nil, quota_user: nil, options: nil, &block)
2434
+ def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, skip_validation: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2432
2435
  command = make_simple_command(:post, 'v1/{+parent}/privateConnections', options)
2433
2436
  command.request_representation = Google::Apis::DatamigrationV1::PrivateConnection::Representation
2434
2437
  command.request_object = private_connection_object
@@ -2438,6 +2441,7 @@ module Google
2438
2441
  command.query['privateConnectionId'] = private_connection_id unless private_connection_id.nil?
2439
2442
  command.query['requestId'] = request_id unless request_id.nil?
2440
2443
  command.query['skipValidation'] = skip_validation unless skip_validation.nil?
2444
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
2441
2445
  command.query['fields'] = fields unless fields.nil?
2442
2446
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2443
2447
  execute_or_queue_command(command, &block)
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.77.0
4
+ version: 0.79.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.77.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.79.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: