Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164641,6 +164641,7 @@
"/datastream:v1/MongodbSourceConfig": mongodb_source_config
"/datastream:v1/MongodbSourceConfig/excludeObjects": exclude_objects
"/datastream:v1/MongodbSourceConfig/includeObjects": include_objects
"/datastream:v1/MongodbSourceConfig/jsonMode": json_mode
"/datastream:v1/MongodbSourceConfig/maxConcurrentBackfillTasks": max_concurrent_backfill_tasks
"/datastream:v1/MongodbSslConfig": mongodb_ssl_config
"/datastream:v1/MongodbSslConfig/caCertificate": ca_certificate
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-datastream_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-datastream_v1

### v0.58.0 (2025-11-09)

* Regenerated from discovery document revision 20251029

### v0.57.0 (2025-11-02)

* Regenerated from discovery document revision 20251021
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1573,6 +1573,11 @@ class MongodbSourceConfig
# @return [Google::Apis::DatastreamV1::MongodbCluster]
attr_accessor :include_objects

# Optional. MongoDB JSON mode to use for the stream.
# Corresponds to the JSON property `jsonMode`
# @return [String]
attr_accessor :json_mode

# Optional. Maximum number of concurrent backfill tasks. The number should be
# non-negative and less than or equal to 50. If not set (or set to 0), the
# system's default value is used
Expand All @@ -1588,6 +1593,7 @@ def initialize(**args)
def update!(**args)
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
@include_objects = args[:include_objects] if args.key?(:include_objects)
@json_mode = args[:json_mode] if args.key?(:json_mode)
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DatastreamV1
# Version of the google-apis-datastream_v1 gem
GEM_VERSION = "0.57.0"
GEM_VERSION = "0.58.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251021"
REVISION = "20251029"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,7 @@ class Representation < Google::Apis::Core::JsonRepresentation

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

property :json_mode, as: 'jsonMode'
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
end
end
Expand Down