google-apis-datamigration_v1 0.74.0 → 0.76.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: 95d61be0a3ca2cf8e0f4d7ecf1796141c3f89d9441c30fceaa9fc87122f6db3e
4
- data.tar.gz: 2dab2842908143e5cc577e3ba193cfdba4cd2bc987edfcc562f9aca2e7ea3b34
3
+ metadata.gz: ec3e12e0ce545676dcd8bcef3bfe7d3d9fbb4f02605b25d336336066a92602d4
4
+ data.tar.gz: 51fb9cb68a89644c0004586c04e2bc7233986f9c086eaa5171b5dd7f4af92a5c
5
5
  SHA512:
6
- metadata.gz: 74602d4fb2ef86bd389057cedf05716050023661547980a1f2f53ba5766bbd16e2fb0c60f528a5df4dd756dd66ee87e4f3e171814bc068613900cc53768d9a82
7
- data.tar.gz: 8fd4063b2599d6c5fa5d06dacd7475d63e767f7cc5e6ec807dda2812764cf05abadfd72fe37ef26441f263f61021a72ae7b5b85f5fde1e815131370b62882e46
6
+ metadata.gz: d70b7af5c255c148d550c3ae288fee3dcd6535f525ac8257a540562e8022cf7d2514a0bd4bbb4124529f4ddb6b2da7b1c0b062f27ad3248846e0ade06d33d57a
7
+ data.tar.gz: 55afcacf0d36606cd15213c78ab0b48e65b2f3758f682bd4fc1bc62c83e4c134649b329e79ae78276d36ddccf99038bef7662f54c15058104b4641a3968b3b11
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.76.0 (2025-05-25)
4
+
5
+ * Regenerated from discovery document revision 20250519
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.75.0 (2025-05-18)
9
+
10
+ * Regenerated from discovery document revision 20250507
11
+
3
12
  ### v0.74.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -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
@@ -5558,6 +5570,14 @@ module Google
5558
5570
  # @return [String]
5559
5571
  attr_accessor :client_key
5560
5572
 
5573
+ # Optional. SSL flags used for establishing SSL connection to the source
5574
+ # database. Only source specific flags are supported. An object containing a
5575
+ # list of "key": "value" pairs. Example: ` "server_certificate_hostname": "
5576
+ # server.com"`.
5577
+ # Corresponds to the JSON property `sslFlags`
5578
+ # @return [Hash<String,String>]
5579
+ attr_accessor :ssl_flags
5580
+
5561
5581
  # Optional. The ssl config type according to 'client_key', 'client_certificate'
5562
5582
  # and 'ca_certificate'.
5563
5583
  # Corresponds to the JSON property `type`
@@ -5573,6 +5593,7 @@ module Google
5573
5593
  @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
5574
5594
  @client_certificate = args[:client_certificate] if args.key?(:client_certificate)
5575
5595
  @client_key = args[:client_key] if args.key?(:client_key)
5596
+ @ssl_flags = args[:ssl_flags] if args.key?(:ssl_flags)
5576
5597
  @type = args[:type] if args.key?(:type)
5577
5598
  end
5578
5599
  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.74.0"
19
+ GEM_VERSION = "0.76.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250416"
25
+ REVISION = "20250519"
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
@@ -2359,6 +2361,7 @@ module Google
2359
2361
  property :ca_certificate, as: 'caCertificate'
2360
2362
  property :client_certificate, as: 'clientCertificate'
2361
2363
  property :client_key, as: 'clientKey'
2364
+ hash :ssl_flags, as: 'sslFlags'
2362
2365
  property :type, as: 'type'
2363
2366
  end
2364
2367
  end
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.74.0
4
+ version: 0.76.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.74.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.76.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Database Migration API V1
79
79
  test_files: []