google-apis-datastream_v1 0.59.0 → 0.60.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: e919f1014a52b5089c5f2ed9d76dc08d4d6f9afd5f61d80673614bc3a06923bc
|
|
4
|
+
data.tar.gz: 9f161bf802c9742df6ea34de62f88778e02e730eb90594a23bbfba5976914379
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ec08356cab17911002fdd3e3ea8f3b737220ceeba2a9b93a54449025d019a9dc9a126719bb18fe64a9ee72f4564a80c2994afb3c3cdd44faa432dcfaec77455
|
|
7
|
+
data.tar.gz: 39344aadb7efc10fb94386bdcf566cfed2d8259c7e4e9789c42a5fd5001d1cce899962161e6caee78f216acb9b25f0df16725521b6110be6e8a673d1d3efbb22
|
data/CHANGELOG.md
CHANGED
|
@@ -1244,8 +1244,9 @@ module Google
|
|
|
1244
1244
|
attr_accessor :operations
|
|
1245
1245
|
|
|
1246
1246
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1247
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1248
|
-
# when attempting to list all resources across all supported
|
|
1247
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1248
|
+
# For example, when attempting to list all resources across all supported
|
|
1249
|
+
# locations.
|
|
1249
1250
|
# Corresponds to the JSON property `unreachable`
|
|
1250
1251
|
# @return [Array<String>]
|
|
1251
1252
|
attr_accessor :unreachable
|
|
@@ -1638,6 +1639,16 @@ module Google
|
|
|
1638
1639
|
class MongodbProfile
|
|
1639
1640
|
include Google::Apis::Core::Hashable
|
|
1640
1641
|
|
|
1642
|
+
# Optional. Specifies additional options for the MongoDB connection. The options
|
|
1643
|
+
# should be sent as key-value pairs, for example: `additional_options = `"
|
|
1644
|
+
# serverSelectionTimeoutMS": "10000", "directConnection": "true"``. Keys are
|
|
1645
|
+
# case-sensitive and should match the official MongoDB connection string options:
|
|
1646
|
+
# https://www.mongodb.com/docs/manual/reference/connection-string-options/ The
|
|
1647
|
+
# server will not modify the values provided by the user.
|
|
1648
|
+
# Corresponds to the JSON property `additionalOptions`
|
|
1649
|
+
# @return [Hash<String,String>]
|
|
1650
|
+
attr_accessor :additional_options
|
|
1651
|
+
|
|
1641
1652
|
# Required. List of host addresses for a MongoDB cluster. For SRV connection
|
|
1642
1653
|
# format, this list must contain exactly one DNS host without a port. For
|
|
1643
1654
|
# Standard connection format, this list must contain all the required hosts in
|
|
@@ -1691,6 +1702,7 @@ module Google
|
|
|
1691
1702
|
|
|
1692
1703
|
# Update properties of this object
|
|
1693
1704
|
def update!(**args)
|
|
1705
|
+
@additional_options = args[:additional_options] if args.key?(:additional_options)
|
|
1694
1706
|
@host_addresses = args[:host_addresses] if args.key?(:host_addresses)
|
|
1695
1707
|
@password = args[:password] if args.key?(:password)
|
|
1696
1708
|
@replica_set = args[:replica_set] if args.key?(:replica_set)
|
|
@@ -4129,8 +4141,10 @@ module Google
|
|
|
4129
4141
|
class StandardConnectionFormat
|
|
4130
4142
|
include Google::Apis::Core::Hashable
|
|
4131
4143
|
|
|
4132
|
-
# Optional.
|
|
4133
|
-
#
|
|
4144
|
+
# Optional. Deprecated: Use the `additional_options` map to specify the `
|
|
4145
|
+
# directConnection` parameter instead. For example: `additional_options = `"
|
|
4146
|
+
# directConnection": "true"``. Specifies whether the client connects directly to
|
|
4147
|
+
# the host[:port] in the connection URI.
|
|
4134
4148
|
# Corresponds to the JSON property `directConnection`
|
|
4135
4149
|
# @return [Boolean]
|
|
4136
4150
|
attr_accessor :direct_connection
|
|
@@ -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.60.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251201"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1385,6 +1385,7 @@ module Google
|
|
|
1385
1385
|
class MongodbProfile
|
|
1386
1386
|
# @private
|
|
1387
1387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1388
|
+
hash :additional_options, as: 'additionalOptions'
|
|
1388
1389
|
collection :host_addresses, as: 'hostAddresses', class: Google::Apis::DatastreamV1::HostAddress, decorator: Google::Apis::DatastreamV1::HostAddress::Representation
|
|
1389
1390
|
|
|
1390
1391
|
property :password, as: 'password'
|
|
@@ -552,11 +552,12 @@ module Google
|
|
|
552
552
|
# The standard list page token.
|
|
553
553
|
# @param [Boolean] return_partial_success
|
|
554
554
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
555
|
-
# those that are unreachable are returned in the
|
|
556
|
-
# unreachable
|
|
557
|
-
#
|
|
558
|
-
# by default
|
|
559
|
-
# explicitly documented otherwise in service or product specific
|
|
555
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
556
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
557
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
558
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
559
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
560
|
+
# documentation.
|
|
560
561
|
# @param [String] fields
|
|
561
562
|
# Selector specifying which fields to include in a partial response.
|
|
562
563
|
# @param [String] quota_user
|
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.60.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.60.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:
|