Skip to content

Commit 2545d9e

Browse files
feat: Automated regeneration of datamigration v1 client (googleapis#23245)
Auto-created at 2025-05-25 09:59:42 +0000 using the toys pull request generator.
1 parent bceeac9 commit 2545d9e

File tree

5 files changed

+20
-3
lines changed

5 files changed

+20
-3
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146676,6 +146676,8 @@
146676146676
"/datamigration:v1/SslConfig/caCertificate": ca_certificate
146677146677
"/datamigration:v1/SslConfig/clientCertificate": client_certificate
146678146678
"/datamigration:v1/SslConfig/clientKey": client_key
146679+
"/datamigration:v1/SslConfig/sslFlags": ssl_flags
146680+
"/datamigration:v1/SslConfig/sslFlags/ssl_flag": ssl_flag
146679146681
"/datamigration:v1/SslConfig/type": type
146680146682
"/datamigration:v1/StartMigrationJobRequest": start_migration_job_request
146681146683
"/datamigration:v1/StartMigrationJobRequest/skipValidation": skip_validation

generated/google-apis-datamigration_v1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-datamigration_v1
22

3+
### v0.76.0 (2025-05-25)
4+
5+
* Regenerated from discovery document revision 20250519
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.75.0 (2025-05-18)
49

510
* Regenerated from discovery document revision 20250507

generated/google-apis-datamigration_v1/lib/google/apis/datamigration_v1/classes.rb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5570,6 +5570,14 @@ class SslConfig
55705570
# @return [String]
55715571
attr_accessor :client_key
55725572

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+
55735581
# Optional. The ssl config type according to 'client_key', 'client_certificate'
55745582
# and 'ca_certificate'.
55755583
# Corresponds to the JSON property `type`
@@ -5585,6 +5593,7 @@ def update!(**args)
55855593
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
55865594
@client_certificate = args[:client_certificate] if args.key?(:client_certificate)
55875595
@client_key = args[:client_key] if args.key?(:client_key)
5596+
@ssl_flags = args[:ssl_flags] if args.key?(:ssl_flags)
55885597
@type = args[:type] if args.key?(:type)
55895598
end
55905599
end

generated/google-apis-datamigration_v1/lib/google/apis/datamigration_v1/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DatamigrationV1
1818
# Version of the google-apis-datamigration_v1 gem
19-
GEM_VERSION = "0.75.0"
19+
GEM_VERSION = "0.76.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250507"
25+
REVISION = "20250519"
2626
end
2727
end
2828
end

generated/google-apis-datamigration_v1/lib/google/apis/datamigration_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2361,6 +2361,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
23612361
property :ca_certificate, as: 'caCertificate'
23622362
property :client_certificate, as: 'clientCertificate'
23632363
property :client_key, as: 'clientKey'
2364+
hash :ssl_flags, as: 'sslFlags'
23642365
property :type, as: 'type'
23652366
end
23662367
end

0 commit comments

Comments
 (0)