File tree Expand file tree Collapse file tree 5 files changed +20
-3
lines changed
generated/google-apis-datamigration_v1
lib/google/apis/datamigration_v1 Expand file tree Collapse file tree 5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -146676,6 +146676,8 @@
146676
146676
"/datamigration:v1/SslConfig/caCertificate": ca_certificate
146677
146677
"/datamigration:v1/SslConfig/clientCertificate": client_certificate
146678
146678
"/datamigration:v1/SslConfig/clientKey": client_key
146679
+ "/datamigration:v1/SslConfig/sslFlags": ssl_flags
146680
+ "/datamigration:v1/SslConfig/sslFlags/ssl_flag": ssl_flag
146679
146681
"/datamigration:v1/SslConfig/type": type
146680
146682
"/datamigration:v1/StartMigrationJobRequest": start_migration_job_request
146681
146683
"/datamigration:v1/StartMigrationJobRequest/skipValidation": skip_validation
Original file line number Diff line number Diff line change 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
+
3
8
### v0.75.0 (2025-05-18)
4
9
5
10
* Regenerated from discovery document revision 20250507
Original file line number Diff line number Diff line change @@ -5570,6 +5570,14 @@ class SslConfig
5570
5570
# @return [String]
5571
5571
attr_accessor :client_key
5572
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
+
5573
5581
# Optional. The ssl config type according to 'client_key', 'client_certificate'
5574
5582
# and 'ca_certificate'.
5575
5583
# Corresponds to the JSON property `type`
@@ -5585,6 +5593,7 @@ def update!(**args)
5585
5593
@ca_certificate = args [ :ca_certificate ] if args . key? ( :ca_certificate )
5586
5594
@client_certificate = args [ :client_certificate ] if args . key? ( :client_certificate )
5587
5595
@client_key = args [ :client_key ] if args . key? ( :client_key )
5596
+ @ssl_flags = args [ :ssl_flags ] if args . key? ( :ssl_flags )
5588
5597
@type = args [ :type ] if args . key? ( :type )
5589
5598
end
5590
5599
end
Original file line number Diff line number Diff line change @@ -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.75 .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 = "20250507 "
25
+ REVISION = "20250519 "
26
26
end
27
27
end
28
28
end
Original file line number Diff line number Diff line change @@ -2361,6 +2361,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
2361
2361
property :ca_certificate , as : 'caCertificate'
2362
2362
property :client_certificate , as : 'clientCertificate'
2363
2363
property :client_key , as : 'clientKey'
2364
+ hash :ssl_flags , as : 'sslFlags'
2364
2365
property :type , as : 'type'
2365
2366
end
2366
2367
end
You can’t perform that action at this time.
0 commit comments