google-apis-datamigration_v1 0.85.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: 0b65a70e055aac85e56410c2ffb6082114f7adb9efdb10e140568dbbc99796c6
4
- data.tar.gz: 20ec33d61d8ab0c0f50689ad74157ecb6d71b91159b1354bcdffc3f2bd314d00
3
+ metadata.gz: 60ec0ae5dc1750442a7592d0aee01253b5cea1213a45de15a889c7fd1ecb8505
4
+ data.tar.gz: 5811821b567ca7ac2873aca7a9b155a3b47c750a3c7413b534b9ced3f02ff0d0
5
5
  SHA512:
6
- metadata.gz: 8ac407d775bfb347703b0aa37710b1e2273879aaa1677c6d86eac5b38c5b298d2da016392371243e76b6c09dee186f1e87175ccff7d340fb19594da700f8d76f
7
- data.tar.gz: 908e04f8a7e03783bac89928b93769fc810e0825a9f0e830697573eee9db89bc346bae9efe1957e6c233de396a10784dac63edcb110630c75a2255f8c5a9708e
6
+ metadata.gz: c16d4039ef79b6b54d3810435597d3e4f27132c3dc93f564ab0049bc2557d373ad1f4ab247770b20fdc9466871d14e0a2766adf952653634e80c4d0d4b313ed1
7
+ data.tar.gz: 43b159223904bfa3acde734d409afb450fc92150817aa028d81e6d2a7b8ffe4f7c73b1214008f2aa61364f1096503e374eacc8c1091efe0fb87bff90c9637038
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.86.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260320
10
+
3
11
  ### v0.85.0 (2026-02-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20260127
@@ -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)
@@ -4372,6 +4378,13 @@ module Google
4372
4378
  # @return [String]
4373
4379
  attr_accessor :database
4374
4380
 
4381
+ # Optional. If true, Database Migration Service will use IAM database
4382
+ # authentication to connect to the database.
4383
+ # Corresponds to the JSON property `enableIamAuthentication`
4384
+ # @return [Boolean]
4385
+ attr_accessor :enable_iam_authentication
4386
+ alias_method :enable_iam_authentication?, :enable_iam_authentication
4387
+
4375
4388
  # Forward SSH Tunnel connectivity.
4376
4389
  # Corresponds to the JSON property `forwardSshConnectivity`
4377
4390
  # @return [Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity]
@@ -4446,6 +4459,7 @@ module Google
4446
4459
  @alloydb_cluster_id = args[:alloydb_cluster_id] if args.key?(:alloydb_cluster_id)
4447
4460
  @cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id)
4448
4461
  @database = args[:database] if args.key?(:database)
4462
+ @enable_iam_authentication = args[:enable_iam_authentication] if args.key?(:enable_iam_authentication)
4449
4463
  @forward_ssh_connectivity = args[:forward_ssh_connectivity] if args.key?(:forward_ssh_connectivity)
4450
4464
  @host = args[:host] if args.key?(:host)
4451
4465
  @network_architecture = args[:network_architecture] if args.key?(:network_architecture)
@@ -4486,6 +4500,33 @@ module Google
4486
4500
  end
4487
4501
  end
4488
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
+
4489
4530
  # Configuration for Postgres as a source in a migration.
4490
4531
  class PostgresSourceConfig
4491
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.85.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 = "20260127"
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'
@@ -2163,6 +2171,7 @@ module Google
2163
2171
  property :alloydb_cluster_id, as: 'alloydbClusterId'
2164
2172
  property :cloud_sql_id, as: 'cloudSqlId'
2165
2173
  property :database, as: 'database'
2174
+ property :enable_iam_authentication, as: 'enableIamAuthentication'
2166
2175
  property :forward_ssh_connectivity, as: 'forwardSshConnectivity', class: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity, decorator: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity::Representation
2167
2176
 
2168
2177
  property :host, as: 'host'
@@ -2190,6 +2199,14 @@ module Google
2190
2199
  end
2191
2200
  end
2192
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
+
2193
2210
  class PostgresSourceConfig
2194
2211
  # @private
2195
2212
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -120,10 +120,15 @@ module Google
120
120
  end
121
121
 
122
122
  # Lists information about the supported locations for this service. This method
123
- # can be called in two ways: * **List all public locations:** Use the path `GET /
124
- # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
125
- # projects/`project_id`/locations`. This may include public locations as well as
126
- # private or other locations specifically visible to the project.
123
+ # lists locations based on the resource scope provided in the [
124
+ # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
125
+ # the method lists the public locations available to all projects. * **Project-
126
+ # specific locations**: If `name` follows the format `projects/`project``, the
127
+ # method lists locations visible to that specific project. This includes public,
128
+ # private, or other project-specific locations enabled for the project. For gRPC
129
+ # and client library implementations, the resource name is passed as the `name`
130
+ # field. For direct service calls, the resource name is incorporated into the
131
+ # request path based on the specific service implementation and version.
127
132
  # @param [String] name
128
133
  # The resource that owns the locations collection, if applicable.
129
134
  # @param [Array<String>, String] extra_location_types
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.85.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.85.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: