google-apis-datamigration_v1 0.86.0 → 0.88.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 283708e6ca0a7c2642e9994531903748fd269da89345abbb60faa471889fdf77
|
|
4
|
+
data.tar.gz: cf61058fb36b07fb4f46fcda84a502794f5aae760b60c1286de4db760d91531b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 541b1be64338d053cdb345e3d639722fe53b6f5487ae2fd1de1cb7c2915c95a0aa95e482c9b83bc1da8633d4947914f045ac832bc1d786655478fdf309d8342b
|
|
7
|
+
data.tar.gz: 24eb8075e7cea2f9a39ba634285fa8ac136f2de6651a4fe96e330fcbfa4602708778598290d7cd8b747c2c93a87d228b2b3083c00029b247a949210eb41be0e6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datamigration_v1
|
|
2
2
|
|
|
3
|
+
### v0.88.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260511
|
|
6
|
+
|
|
7
|
+
### v0.87.0 (2026-05-10)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260406
|
|
10
|
+
|
|
3
11
|
### v0.86.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* 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[
|
|
2154
|
-
# email_addresses` message * `email_addresses[
|
|
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[
|
|
2158
|
-
# first `emailAddresses` message * `emailAddresses[
|
|
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
|
|
@@ -4861,7 +4894,7 @@ module Google
|
|
|
4861
4894
|
class QuotaFailureViolation
|
|
4862
4895
|
include Google::Apis::Core::Hashable
|
|
4863
4896
|
|
|
4864
|
-
# The API Service from which the `QuotaFailure.Violation`
|
|
4897
|
+
# The API Service from which the `QuotaFailure.Violation` originates. In some
|
|
4865
4898
|
# cases, Quota issues originate from an API Service other than the one that was
|
|
4866
4899
|
# called. In other words, a dependency of the called API Service could be the
|
|
4867
4900
|
# cause of the `QuotaFailure`, and this field would have the dependency API
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.88.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 = "
|
|
25
|
+
REVISION = "20260511"
|
|
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
|
|
@@ -120,8 +120,8 @@ module Google
|
|
|
120
120
|
end
|
|
121
121
|
|
|
122
122
|
# Lists information about the supported locations for this service. This method
|
|
123
|
-
# lists locations based on the resource scope provided in the
|
|
124
|
-
# ListLocationsRequest.name
|
|
123
|
+
# lists locations based on the resource scope provided in the
|
|
124
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
125
125
|
# the method lists the public locations available to all projects. * **Project-
|
|
126
126
|
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
127
127
|
# method lists locations visible to that specific project. This includes public,
|
|
@@ -132,8 +132,8 @@ module Google
|
|
|
132
132
|
# @param [String] name
|
|
133
133
|
# The resource that owns the locations collection, if applicable.
|
|
134
134
|
# @param [Array<String>, String] extra_location_types
|
|
135
|
-
# Optional. Do not use this field
|
|
136
|
-
#
|
|
135
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
136
|
+
# is primarily for internal usage.
|
|
137
137
|
# @param [String] filter
|
|
138
138
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
139
139
|
# 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.
|
|
4
|
+
version: 0.88.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.88.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:
|