google-apis-datamigration_v1 0.86.0 → 0.87.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: 5c32d698658ab7598d574ab9a4cf14fc9887ba923dadc7d5ec89f110c4433d05
4
- data.tar.gz: cb847bcce995a6fc32ca596201bf32331ebf33cb128f1fce78cc3d25c2ba8d5d
3
+ metadata.gz: 60ec0ae5dc1750442a7592d0aee01253b5cea1213a45de15a889c7fd1ecb8505
4
+ data.tar.gz: 5811821b567ca7ac2873aca7a9b155a3b47c750a3c7413b534b9ced3f02ff0d0
5
5
  SHA512:
6
- metadata.gz: 7f0de422147dd44340161d188356c6aed5212ee9c339967694cd286b41a3b5641c5f173893bfb5778f2c302c2721d3e2562493672f54eeb160721323bd217b14
7
- data.tar.gz: a4c34906dbc5493d4c99cd3ee9d256d4ad4e6db89aa2be9df0b3eedf68986fc1f09b4080f4fdb79930e7c23cbab932ca7ae3453c3da34b6e1dc24be6e23ed489
6
+ metadata.gz: c16d4039ef79b6b54d3810435597d3e4f27132c3dc93f564ab0049bc2557d373ad1f4ab247770b20fdc9466871d14e0a2766adf952653634e80c4d0d4b313ed1
7
+ data.tar.gz: 43b159223904bfa3acde734d409afb450fc92150817aa028d81e6d2a7b8ffe4f7c73b1214008f2aa61364f1096503e374eacc8c1091efe0fb87bff90c9637038
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.87.0 (2026-05-10)
4
+
5
+ * Regenerated from discovery document revision 20260406
6
+
3
7
  ### v0.86.0 (2026-04-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20260320
@@ -2150,12 +2150,12 @@ module Google
2150
2150
  # repeated EmailType type = 2; ` string full_name = 1; repeated EmailAddress
2151
2151
  # email_addresses = 2; ` In this example, in proto `field` could take one of the
2152
2152
  # following values: * `full_name` for a violation in the `full_name` value * `
2153
- # email_addresses[1].email` for a violation in the `email` field of the first `
2154
- # email_addresses` message * `email_addresses[3].type[2]` for a violation in the
2153
+ # email_addresses[0].email` for a violation in the `email` field of the first `
2154
+ # email_addresses` message * `email_addresses[2].type[1]` for a violation in the
2155
2155
  # second `type` value in the third `email_addresses` message. In JSON, the same
2156
2156
  # values are represented as: * `fullName` for a violation in the `fullName`
2157
- # value * `emailAddresses[1].email` for a violation in the `email` field of the
2158
- # first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation
2157
+ # value * `emailAddresses[0].email` for a violation in the `email` field of the
2158
+ # first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation
2159
2159
  # in the second `type` value in the third `emailAddresses` message.
2160
2160
  # Corresponds to the JSON property `field`
2161
2161
  # @return [String]
@@ -3454,6 +3454,11 @@ module Google
3454
3454
  # @return [String]
3455
3455
  attr_accessor :phase
3456
3456
 
3457
+ # Configuration for PostgreSQL to PostgreSQL migrations.
3458
+ # Corresponds to the JSON property `postgresHomogeneousConfig`
3459
+ # @return [Google::Apis::DatamigrationV1::PostgresHomogeneousConfig]
3460
+ attr_accessor :postgres_homogeneous_config
3461
+
3457
3462
  # Configuration for heterogeneous failback migrations from **PostgreSQL to SQL
3458
3463
  # Server**.
3459
3464
  # Corresponds to the JSON property `postgresToSqlserverConfig`
@@ -3567,6 +3572,7 @@ module Google
3567
3572
  @original_migration_name = args[:original_migration_name] if args.key?(:original_migration_name)
3568
3573
  @performance_config = args[:performance_config] if args.key?(:performance_config)
3569
3574
  @phase = args[:phase] if args.key?(:phase)
3575
+ @postgres_homogeneous_config = args[:postgres_homogeneous_config] if args.key?(:postgres_homogeneous_config)
3570
3576
  @postgres_to_sqlserver_config = args[:postgres_to_sqlserver_config] if args.key?(:postgres_to_sqlserver_config)
3571
3577
  @purpose = args[:purpose] if args.key?(:purpose)
3572
3578
  @reverse_ssh_connectivity = args[:reverse_ssh_connectivity] if args.key?(:reverse_ssh_connectivity)
@@ -4494,6 +4500,33 @@ module Google
4494
4500
  end
4495
4501
  end
4496
4502
 
4503
+ # Configuration for PostgreSQL to PostgreSQL migrations.
4504
+ class PostgresHomogeneousConfig
4505
+ include Google::Apis::Core::Hashable
4506
+
4507
+ # Required. Whether the migration is native logical.
4508
+ # Corresponds to the JSON property `isNativeLogical`
4509
+ # @return [Boolean]
4510
+ attr_accessor :is_native_logical
4511
+ alias_method :is_native_logical?, :is_native_logical
4512
+
4513
+ # Optional. Maximum number of additional subscriptions to use for the migration
4514
+ # job.
4515
+ # Corresponds to the JSON property `maxAdditionalSubscriptions`
4516
+ # @return [Fixnum]
4517
+ attr_accessor :max_additional_subscriptions
4518
+
4519
+ def initialize(**args)
4520
+ update!(**args)
4521
+ end
4522
+
4523
+ # Update properties of this object
4524
+ def update!(**args)
4525
+ @is_native_logical = args[:is_native_logical] if args.key?(:is_native_logical)
4526
+ @max_additional_subscriptions = args[:max_additional_subscriptions] if args.key?(:max_additional_subscriptions)
4527
+ end
4528
+ end
4529
+
4497
4530
  # Configuration for Postgres as a source in a migration.
4498
4531
  class PostgresSourceConfig
4499
4532
  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.86.0"
19
+ GEM_VERSION = "0.87.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 = "20260320"
25
+ REVISION = "20260406"
26
26
  end
27
27
  end
28
28
  end
@@ -616,6 +616,12 @@ module Google
616
616
  include Google::Apis::Core::JsonObjectSupport
617
617
  end
618
618
 
619
+ class PostgresHomogeneousConfig
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
619
625
  class PostgresSourceConfig
620
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
621
627
 
@@ -1944,6 +1950,8 @@ module Google
1944
1950
  property :performance_config, as: 'performanceConfig', class: Google::Apis::DatamigrationV1::PerformanceConfig, decorator: Google::Apis::DatamigrationV1::PerformanceConfig::Representation
1945
1951
 
1946
1952
  property :phase, as: 'phase'
1953
+ property :postgres_homogeneous_config, as: 'postgresHomogeneousConfig', class: Google::Apis::DatamigrationV1::PostgresHomogeneousConfig, decorator: Google::Apis::DatamigrationV1::PostgresHomogeneousConfig::Representation
1954
+
1947
1955
  property :postgres_to_sqlserver_config, as: 'postgresToSqlserverConfig', class: Google::Apis::DatamigrationV1::PostgresToSqlServerConfig, decorator: Google::Apis::DatamigrationV1::PostgresToSqlServerConfig::Representation
1948
1956
 
1949
1957
  property :purpose, as: 'purpose'
@@ -2191,6 +2199,14 @@ module Google
2191
2199
  end
2192
2200
  end
2193
2201
 
2202
+ class PostgresHomogeneousConfig
2203
+ # @private
2204
+ class Representation < Google::Apis::Core::JsonRepresentation
2205
+ property :is_native_logical, as: 'isNativeLogical'
2206
+ property :max_additional_subscriptions, as: 'maxAdditionalSubscriptions'
2207
+ end
2208
+ end
2209
+
2194
2210
  class PostgresSourceConfig
2195
2211
  # @private
2196
2212
  class Representation < Google::Apis::Core::JsonRepresentation
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.86.0
4
+ version: 0.87.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.86.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.87.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: