google-apis-datastream_v1 0.49.0 → 0.50.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: 153e721992c74c3f507347a9ff6573bc46548eea391d7fa075e26bef991851d7
4
- data.tar.gz: 9db94fc91e24c27d04deb1069bc6cd074cbf112c3ca2f25027845dc90a99342b
3
+ metadata.gz: 7117afaa8e959861fc63a0481afeb834973008e5f6c67ed6388cbbabdb7d3591
4
+ data.tar.gz: a0b18a30977794189ea5cdd080d184212712775e151e7fac62a26e208a19a883
5
5
  SHA512:
6
- metadata.gz: 5e758bacb3e75e69df9f10a91405259d8412a66c213531063967967af284ee231f292da1c2ccf09930a921c2878993d973194a3f51411f32b04a0e94c406c316
7
- data.tar.gz: ed8f9ce5511661f181ab581e34864ac67837f181c538771471528b2aaa60cdfe3e1eeae6ca65fcde23e9a4d8d8fd549b3f6c34ce7492e53aeb26ca4a025ce63c
6
+ metadata.gz: 30323d0aa1b3de3977f719c251552b950f1460998f3551a5456869c535e2c46930520d591fae1979a14f64fd4a060be8694f7619d4ec6e6c598f402e892312b3
7
+ data.tar.gz: 3fab86e80a84bc7c82ed4085d60e93d9bf6c0533cc1512fc6fedcc6971a46fcd07157a79a65b887134c70185a562652f46a8d9c8772d05a0b7dd44cb4d1c884f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.50.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250511
6
+
3
7
  ### v0.49.0 (2025-05-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20250505
@@ -1457,6 +1457,13 @@ module Google
1457
1457
  # @return [Google::Apis::DatastreamV1::MongodbCluster]
1458
1458
  attr_accessor :include_objects
1459
1459
 
1460
+ # Optional. Maximum number of concurrent backfill tasks. The number should be
1461
+ # non-negative and less than or equal to 50. If not set (or set to 0), the
1462
+ # system's default value is used
1463
+ # Corresponds to the JSON property `maxConcurrentBackfillTasks`
1464
+ # @return [Fixnum]
1465
+ attr_accessor :max_concurrent_backfill_tasks
1466
+
1460
1467
  def initialize(**args)
1461
1468
  update!(**args)
1462
1469
  end
@@ -1465,6 +1472,7 @@ module Google
1465
1472
  def update!(**args)
1466
1473
  @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
1467
1474
  @include_objects = args[:include_objects] if args.key?(:include_objects)
1475
+ @max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
1468
1476
  end
1469
1477
  end
1470
1478
 
@@ -3665,12 +3673,20 @@ module Google
3665
3673
  class StandardConnectionFormat
3666
3674
  include Google::Apis::Core::Hashable
3667
3675
 
3676
+ # Optional. Specifies whether the client connects directly to the host[:port] in
3677
+ # the connection URI.
3678
+ # Corresponds to the JSON property `directConnection`
3679
+ # @return [Boolean]
3680
+ attr_accessor :direct_connection
3681
+ alias_method :direct_connection?, :direct_connection
3682
+
3668
3683
  def initialize(**args)
3669
3684
  update!(**args)
3670
3685
  end
3671
3686
 
3672
3687
  # Update properties of this object
3673
3688
  def update!(**args)
3689
+ @direct_connection = args[:direct_connection] if args.key?(:direct_connection)
3674
3690
  end
3675
3691
  end
3676
3692
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastreamV1
18
18
  # Version of the google-apis-datastream_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250505"
25
+ REVISION = "20250511"
26
26
  end
27
27
  end
28
28
  end
@@ -1233,6 +1233,7 @@ module Google
1233
1233
 
1234
1234
  property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MongodbCluster, decorator: Google::Apis::DatastreamV1::MongodbCluster::Representation
1235
1235
 
1236
+ property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
1236
1237
  end
1237
1238
  end
1238
1239
 
@@ -1893,6 +1894,7 @@ module Google
1893
1894
  class StandardConnectionFormat
1894
1895
  # @private
1895
1896
  class Representation < Google::Apis::Core::JsonRepresentation
1897
+ property :direct_connection, as: 'directConnection'
1896
1898
  end
1897
1899
  end
1898
1900
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastream_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.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-datastream_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.49.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.50.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
62
62
  rdoc_options: []
63
63
  require_paths: