Skip to content

Commit c28c194

Browse files
feat: Automated regeneration of datastream v1 client (#24941)
Auto-created at 2025-11-09 10:54:43 +0000 using the toys pull request generator.
1 parent 64dc6b0 commit c28c194

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165190,6 +165190,7 @@
165190165190
"/datastream:v1/MongodbSourceConfig": mongodb_source_config
165191165191
"/datastream:v1/MongodbSourceConfig/excludeObjects": exclude_objects
165192165192
"/datastream:v1/MongodbSourceConfig/includeObjects": include_objects
165193+
"/datastream:v1/MongodbSourceConfig/jsonMode": json_mode
165193165194
"/datastream:v1/MongodbSourceConfig/maxConcurrentBackfillTasks": max_concurrent_backfill_tasks
165194165195
"/datastream:v1/MongodbSslConfig": mongodb_ssl_config
165195165196
"/datastream:v1/MongodbSslConfig/caCertificate": ca_certificate

generated/google-apis-datastream_v1/CHANGELOG.md

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

3+
### v0.58.0 (2025-11-09)
4+
5+
* Regenerated from discovery document revision 20251029
6+
37
### v0.57.0 (2025-11-02)
48

59
* Regenerated from discovery document revision 20251021

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1573,6 +1573,11 @@ class MongodbSourceConfig
15731573
# @return [Google::Apis::DatastreamV1::MongodbCluster]
15741574
attr_accessor :include_objects
15751575

1576+
# Optional. MongoDB JSON mode to use for the stream.
1577+
# Corresponds to the JSON property `jsonMode`
1578+
# @return [String]
1579+
attr_accessor :json_mode
1580+
15761581
# Optional. Maximum number of concurrent backfill tasks. The number should be
15771582
# non-negative and less than or equal to 50. If not set (or set to 0), the
15781583
# system's default value is used
@@ -1588,6 +1593,7 @@ def initialize(**args)
15881593
def update!(**args)
15891594
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
15901595
@include_objects = args[:include_objects] if args.key?(:include_objects)
1596+
@json_mode = args[:json_mode] if args.key?(:json_mode)
15911597
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
15921598
end
15931599
end

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DatastreamV1
1818
# Version of the google-apis-datastream_v1 gem
19-
GEM_VERSION = "0.57.0"
19+
GEM_VERSION = "0.58.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,6 +1312,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
13121312

13131313
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MongodbCluster, decorator: Google::Apis::DatastreamV1::MongodbCluster::Representation
13141314

1315+
property :json_mode, as: 'jsonMode'
13151316
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
13161317
end
13171318
end

0 commit comments

Comments
 (0)