google-apis-datastream_v1 0.48.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7117afaa8e959861fc63a0481afeb834973008e5f6c67ed6388cbbabdb7d3591
|
4
|
+
data.tar.gz: a0b18a30977794189ea5cdd080d184212712775e151e7fac62a26e208a19a883
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30323d0aa1b3de3977f719c251552b950f1460998f3551a5456869c535e2c46930520d591fae1979a14f64fd4a060be8694f7619d4ec6e6c598f402e892312b3
|
7
|
+
data.tar.gz: 3fab86e80a84bc7c82ed4085d60e93d9bf6c0533cc1512fc6fedcc6971a46fcd07157a79a65b887134c70185a562652f46a8d9c8772d05a0b7dd44cb4d1c884f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.49.0 (2025-05-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250505
|
10
|
+
|
3
11
|
### v0.48.0 (2025-05-04)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.17.0
|
@@ -1385,7 +1385,10 @@ module Google
|
|
1385
1385
|
class MongodbProfile
|
1386
1386
|
include Google::Apis::Core::Hashable
|
1387
1387
|
|
1388
|
-
# Required. List of host addresses for a MongoDB cluster.
|
1388
|
+
# Required. List of host addresses for a MongoDB cluster. For SRV connection
|
1389
|
+
# format, this list must contain exactly one DNS host without a port. For
|
1390
|
+
# Standard connection format, this list must contain all the required hosts in
|
1391
|
+
# the cluster with their respective ports.
|
1389
1392
|
# Corresponds to the JSON property `hostAddresses`
|
1390
1393
|
# @return [Array<Google::Apis::DatastreamV1::HostAddress>]
|
1391
1394
|
attr_accessor :host_addresses
|
@@ -1397,7 +1400,8 @@ module Google
|
|
1397
1400
|
attr_accessor :password
|
1398
1401
|
|
1399
1402
|
# Optional. Name of the replica set. Only needed for self hosted replica set
|
1400
|
-
# type MongoDB cluster.
|
1403
|
+
# type MongoDB cluster. For SRV connection format, this field must be empty. For
|
1404
|
+
# Standard connection format, this field must be specified.
|
1401
1405
|
# Corresponds to the JSON property `replicaSet`
|
1402
1406
|
# @return [String]
|
1403
1407
|
attr_accessor :replica_set
|
@@ -1453,6 +1457,13 @@ module Google
|
|
1453
1457
|
# @return [Google::Apis::DatastreamV1::MongodbCluster]
|
1454
1458
|
attr_accessor :include_objects
|
1455
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
|
+
|
1456
1467
|
def initialize(**args)
|
1457
1468
|
update!(**args)
|
1458
1469
|
end
|
@@ -1461,6 +1472,7 @@ module Google
|
|
1461
1472
|
def update!(**args)
|
1462
1473
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1463
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)
|
1464
1476
|
end
|
1465
1477
|
end
|
1466
1478
|
|
@@ -3661,12 +3673,20 @@ module Google
|
|
3661
3673
|
class StandardConnectionFormat
|
3662
3674
|
include Google::Apis::Core::Hashable
|
3663
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
|
+
|
3664
3683
|
def initialize(**args)
|
3665
3684
|
update!(**args)
|
3666
3685
|
end
|
3667
3686
|
|
3668
3687
|
# Update properties of this object
|
3669
3688
|
def update!(**args)
|
3689
|
+
@direct_connection = args[:direct_connection] if args.key?(:direct_connection)
|
3670
3690
|
end
|
3671
3691
|
end
|
3672
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.
|
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 = "
|
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.
|
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.
|
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:
|