google-apis-datamigration_v1 0.73.0 → 0.75.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: 40f0b1dd72a00e1073ba25bdbecbf42eb4682a89377d4a5275e9a87914d1807f
4
- data.tar.gz: 7586baeecffe3bcb36f7bbc446470e1a4ac3d4ee6e2cb4d4922c4394645bc9a7
3
+ metadata.gz: bc1dc7fb16fa65ecf8cb90eedc9e2b68fa10cdf8a2115df98d55bd46b2b2b18c
4
+ data.tar.gz: b85a9e88657db8e9a55ff065c67ff7fe2533faba5fbda1554e5a1be770db17d5
5
5
  SHA512:
6
- metadata.gz: 523df88d43f7a93cfbbef91fcbab0a07da56ee9fc15bffd4f2b82fcc9aea405a38c259a0a4a297765860e1c9ba8c5b67e1617d2880ac5b48d6262c196a7b9ec9
7
- data.tar.gz: f9edaf13db729f83e719d0eff8cc429ede7a50c0e5e126c88a4a0874837d35872cfaaf604aa8425aeb911d67faf76405ea452c3e6920b7270994f18b736b8d45
6
+ metadata.gz: d6069b9a011ff02d362a5256a0e4c8544ae99786f48a7dbaa20479edf2c238f513f8219d57965b1ece100b9cc276a7967d781493be54f90d6dcf4e98aebdd923
7
+ data.tar.gz: bbd6d6eda0c1c6c6d47b3691072e74028b36412800078e6cf8a818eab677438ee3dd1ecee371de3601cfd6fdf359fa4ac491596b1ffa0c56de0c04b3f33ef790
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.75.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250507
6
+
7
+ ### v0.74.0 (2025-05-04)
8
+
9
+ * Regenerated using generator version 0.17.0
10
+
3
11
  ### v0.73.0 (2025-04-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20250416
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/database-migration/) may pr
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1163,6 +1163,11 @@ module Google
1163
1163
  # @return [Google::Apis::DatamigrationV1::DatabaseEngineInfo]
1164
1164
  attr_accessor :destination
1165
1165
 
1166
+ # Optional. The provider for the destination database.
1167
+ # Corresponds to the JSON property `destinationProvider`
1168
+ # @return [String]
1169
+ attr_accessor :destination_provider
1170
+
1166
1171
  # Optional. The display name for the workspace.
1167
1172
  # Corresponds to the JSON property `displayName`
1168
1173
  # @return [String]
@@ -1205,6 +1210,11 @@ module Google
1205
1210
  # @return [Google::Apis::DatamigrationV1::DatabaseEngineInfo]
1206
1211
  attr_accessor :source
1207
1212
 
1213
+ # Optional. The provider for the source database.
1214
+ # Corresponds to the JSON property `sourceProvider`
1215
+ # @return [String]
1216
+ attr_accessor :source_provider
1217
+
1208
1218
  # Output only. The timestamp when the workspace resource was last updated.
1209
1219
  # Corresponds to the JSON property `updateTime`
1210
1220
  # @return [String]
@@ -1218,6 +1228,7 @@ module Google
1218
1228
  def update!(**args)
1219
1229
  @create_time = args[:create_time] if args.key?(:create_time)
1220
1230
  @destination = args[:destination] if args.key?(:destination)
1231
+ @destination_provider = args[:destination_provider] if args.key?(:destination_provider)
1221
1232
  @display_name = args[:display_name] if args.key?(:display_name)
1222
1233
  @global_settings = args[:global_settings] if args.key?(:global_settings)
1223
1234
  @has_uncommitted_changes = args[:has_uncommitted_changes] if args.key?(:has_uncommitted_changes)
@@ -1225,6 +1236,7 @@ module Google
1225
1236
  @latest_commit_time = args[:latest_commit_time] if args.key?(:latest_commit_time)
1226
1237
  @name = args[:name] if args.key?(:name)
1227
1238
  @source = args[:source] if args.key?(:source)
1239
+ @source_provider = args[:source_provider] if args.key?(:source_provider)
1228
1240
  @update_time = args[:update_time] if args.key?(:update_time)
1229
1241
  end
1230
1242
  end
@@ -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.73.0"
19
+ GEM_VERSION = "0.75.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250416"
25
+ REVISION = "20250507"
26
26
  end
27
27
  end
28
28
  end
@@ -1193,6 +1193,7 @@ module Google
1193
1193
  property :create_time, as: 'createTime'
1194
1194
  property :destination, as: 'destination', class: Google::Apis::DatamigrationV1::DatabaseEngineInfo, decorator: Google::Apis::DatamigrationV1::DatabaseEngineInfo::Representation
1195
1195
 
1196
+ property :destination_provider, as: 'destinationProvider'
1196
1197
  property :display_name, as: 'displayName'
1197
1198
  hash :global_settings, as: 'globalSettings'
1198
1199
  property :has_uncommitted_changes, as: 'hasUncommittedChanges'
@@ -1201,6 +1202,7 @@ module Google
1201
1202
  property :name, as: 'name'
1202
1203
  property :source, as: 'source', class: Google::Apis::DatamigrationV1::DatabaseEngineInfo, decorator: Google::Apis::DatamigrationV1::DatabaseEngineInfo::Representation
1203
1204
 
1205
+ property :source_provider, as: 'sourceProvider'
1204
1206
  property :update_time, as: 'updateTime'
1205
1207
  end
1206
1208
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.73.0
4
+ version: 0.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-27 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.73.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.75.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:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Database Migration API V1
79
79
  test_files: []