google-apis-datastream_v1 0.59.0 → 0.61.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: e296d9fd2e51d2b9e4f3dbb3ff1c51b4d4fc78c72bc71b5e3ac3057b9c6af047
4
- data.tar.gz: c57ad10923c799612e911c7b96a750c5dccded6d17007c2f947a8c9d1ea292a3
3
+ metadata.gz: c98da9db2b09e73af8d8282717195df544c6c4da97da8776ab3eccaff0e1ca57
4
+ data.tar.gz: d98411827730fdfe658d795b78a2e253a4abd563230d61898d33839bc37cbcd1
5
5
  SHA512:
6
- metadata.gz: d84bda04bce2cca38d540fd91415e71642531892137ca53a2657978dfe2645ae35d4dab2fead1f0d84453fcae2d7f66d12b264ad5e96068ddc268f88ae25866a
7
- data.tar.gz: cd154e1615176e3c3904f8e28279c89bfaef4f2e9d96fe2cb36c785380acd0c218da88d3fbe59a2c25a3109dde1c8cbbf00d3e07deb49acbb0ef4b94e20012cc
6
+ metadata.gz: ad95a5bda2fd1e90328e2a88abd8afd48cd067a8a8a0edc941f564354dc0833ed7e0c0c4c57e91de639a8c98b171d5715d86b03385c2d09b2c352eca02286ca2
7
+ data.tar.gz: b0c008b7ae6522639bd35e00b4ef3d2b54f6eb4093581285895f3a2dc1c4f7105e1743ebf9c2c232df9bc5f4d32e3db8c6c28a6bf2005f9acea74d5f26747511
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.61.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20251231
6
+
7
+ ### v0.60.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251201
10
+
3
11
  ### v0.59.0 (2025-12-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20251112
@@ -655,19 +655,20 @@ module Google
655
655
  # @return [Google::Apis::DatastreamV1::ConnectionProfile]
656
656
  attr_accessor :connection_profile
657
657
 
658
- # A reference to an existing connection profile.
658
+ # Optional. A reference to an existing connection profile.
659
659
  # Corresponds to the JSON property `connectionProfileName`
660
660
  # @return [String]
661
661
  attr_accessor :connection_profile_name
662
662
 
663
- # Whether to retrieve the full hierarchy of data objects (TRUE) or only the
664
- # current level (FALSE).
663
+ # Optional. Whether to retrieve the full hierarchy of data objects (TRUE) or
664
+ # only the current level (FALSE).
665
665
  # Corresponds to the JSON property `fullHierarchy`
666
666
  # @return [Boolean]
667
667
  attr_accessor :full_hierarchy
668
668
  alias_method :full_hierarchy?, :full_hierarchy
669
669
 
670
- # The number of hierarchy levels below the current level to be retrieved.
670
+ # Optional. The number of hierarchy levels below the current level to be
671
+ # retrieved.
671
672
  # Corresponds to the JSON property `hierarchyDepth`
672
673
  # @return [Fixnum]
673
674
  attr_accessor :hierarchy_depth
@@ -1244,8 +1245,9 @@ module Google
1244
1245
  attr_accessor :operations
1245
1246
 
1246
1247
  # Unordered list. Unreachable resources. Populated when the request sets `
1247
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1248
- # when attempting to list all resources across all supported locations.
1248
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1249
+ # For example, when attempting to list all resources across all supported
1250
+ # locations.
1249
1251
  # Corresponds to the JSON property `unreachable`
1250
1252
  # @return [Array<String>]
1251
1253
  attr_accessor :unreachable
@@ -1638,6 +1640,16 @@ module Google
1638
1640
  class MongodbProfile
1639
1641
  include Google::Apis::Core::Hashable
1640
1642
 
1643
+ # Optional. Specifies additional options for the MongoDB connection. The options
1644
+ # should be sent as key-value pairs, for example: `additional_options = `"
1645
+ # serverSelectionTimeoutMS": "10000", "directConnection": "true"``. Keys are
1646
+ # case-sensitive and should match the official MongoDB connection string options:
1647
+ # https://www.mongodb.com/docs/manual/reference/connection-string-options/ The
1648
+ # server will not modify the values provided by the user.
1649
+ # Corresponds to the JSON property `additionalOptions`
1650
+ # @return [Hash<String,String>]
1651
+ attr_accessor :additional_options
1652
+
1641
1653
  # Required. List of host addresses for a MongoDB cluster. For SRV connection
1642
1654
  # format, this list must contain exactly one DNS host without a port. For
1643
1655
  # Standard connection format, this list must contain all the required hosts in
@@ -1691,6 +1703,7 @@ module Google
1691
1703
 
1692
1704
  # Update properties of this object
1693
1705
  def update!(**args)
1706
+ @additional_options = args[:additional_options] if args.key?(:additional_options)
1694
1707
  @host_addresses = args[:host_addresses] if args.key?(:host_addresses)
1695
1708
  @password = args[:password] if args.key?(:password)
1696
1709
  @replica_set = args[:replica_set] if args.key?(:replica_set)
@@ -4129,8 +4142,10 @@ module Google
4129
4142
  class StandardConnectionFormat
4130
4143
  include Google::Apis::Core::Hashable
4131
4144
 
4132
- # Optional. Specifies whether the client connects directly to the host[:port] in
4133
- # the connection URI.
4145
+ # Optional. Deprecated: Use the `additional_options` map to specify the `
4146
+ # directConnection` parameter instead. For example: `additional_options = `"
4147
+ # directConnection": "true"``. Specifies whether the client connects directly to
4148
+ # the host[:port] in the connection URI.
4134
4149
  # Corresponds to the JSON property `directConnection`
4135
4150
  # @return [Boolean]
4136
4151
  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.59.0"
19
+ GEM_VERSION = "0.61.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 = "20251112"
25
+ REVISION = "20251231"
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'
@@ -56,10 +56,10 @@ module Google
56
56
  # Required. The resource name for the location for which static IPs should be
57
57
  # returned. Must be in the format `projects/*/locations/*`.
58
58
  # @param [Fixnum] page_size
59
- # Maximum number of Ips to return, will likely not be specified.
59
+ # Optional. Maximum number of Ips to return, will likely not be specified.
60
60
  # @param [String] page_token
61
- # A page token, received from a previous `ListStaticIps` call. will likely not
62
- # be specified.
61
+ # Optional. A page token, received from a previous `ListStaticIps` call. will
62
+ # likely not be specified.
63
63
  # @param [String] fields
64
64
  # Selector specifying which fields to include in a partial response.
65
65
  # @param [String] quota_user
@@ -334,18 +334,18 @@ module Google
334
334
  # @param [String] parent
335
335
  # Required. The parent that owns the collection of connection profiles.
336
336
  # @param [String] filter
337
- # Filter request.
337
+ # Optional. Filter request.
338
338
  # @param [String] order_by
339
- # Order by fields for the result.
339
+ # Optional. Order by fields for the result.
340
340
  # @param [Fixnum] page_size
341
- # Maximum number of connection profiles to return. If unspecified, at most 50
342
- # connection profiles will be returned. The maximum value is 1000; values above
343
- # 1000 will be coerced to 1000.
341
+ # Optional. Maximum number of connection profiles to return. If unspecified, at
342
+ # most 50 connection profiles will be returned. The maximum value is 1000;
343
+ # values above 1000 will be coerced to 1000.
344
344
  # @param [String] page_token
345
- # Page token received from a previous `ListConnectionProfiles` call. Provide
346
- # this to retrieve the subsequent page. When paginating, all other parameters
347
- # provided to `ListConnectionProfiles` must match the call that provided the
348
- # page token.
345
+ # Optional. Page token received from a previous `ListConnectionProfiles` call.
346
+ # Provide this to retrieve the subsequent page. When paginating, all other
347
+ # parameters provided to `ListConnectionProfiles` must match the call that
348
+ # provided the page token.
349
349
  # @param [String] fields
350
350
  # Selector specifying which fields to include in a partial response.
351
351
  # @param [String] quota_user
@@ -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 [ListOperationsResponse.
556
- # unreachable] field. This can only be `true` when reading across collections e.
557
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
558
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
559
- # explicitly documented otherwise in service or product specific documentation.
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
@@ -726,18 +727,18 @@ module Google
726
727
  # Required. The parent that owns the collection of private connectivity
727
728
  # configurations.
728
729
  # @param [String] filter
729
- # Filter request.
730
+ # Optional. Filter request.
730
731
  # @param [String] order_by
731
- # Order by fields for the result.
732
+ # Optional. Order by fields for the result.
732
733
  # @param [Fixnum] page_size
733
734
  # Maximum number of private connectivity configurations to return. If
734
735
  # unspecified, at most 50 private connectivity configurations that will be
735
736
  # returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
736
737
  # @param [String] page_token
737
- # Page token received from a previous `ListPrivateConnections` call. Provide
738
- # this to retrieve the subsequent page. When paginating, all other parameters
739
- # provided to `ListPrivateConnections` must match the call that provided the
740
- # page token.
738
+ # Optional. Page token received from a previous `ListPrivateConnections` call.
739
+ # Provide this to retrieve the subsequent page. When paginating, all other
740
+ # parameters provided to `ListPrivateConnections` must match the call that
741
+ # provided the page token.
741
742
  # @param [String] fields
742
743
  # Selector specifying which fields to include in a partial response.
743
744
  # @param [String] quota_user
@@ -895,17 +896,17 @@ module Google
895
896
  # @param [String] parent
896
897
  # Required. The parent that owns the collection of Routess.
897
898
  # @param [String] filter
898
- # Filter request.
899
+ # Optional. Filter request.
899
900
  # @param [String] order_by
900
- # Order by fields for the result.
901
+ # Optional. Order by fields for the result.
901
902
  # @param [Fixnum] page_size
902
- # Maximum number of Routes to return. The service may return fewer than this
903
- # value. If unspecified, at most 50 Routes will be returned. The maximum value
904
- # is 1000; values above 1000 will be coerced to 1000.
903
+ # Optional. Maximum number of Routes to return. The service may return fewer
904
+ # than this value. If unspecified, at most 50 Routes will be returned. The
905
+ # maximum value is 1000; values above 1000 will be coerced to 1000.
905
906
  # @param [String] page_token
906
- # Page token received from a previous `ListRoutes` call. Provide this to
907
- # retrieve the subsequent page. When paginating, all other parameters provided
908
- # to `ListRoutes` must match the call that provided the page token.
907
+ # Optional. Page token received from a previous `ListRoutes` call. Provide this
908
+ # to retrieve the subsequent page. When paginating, all other parameters
909
+ # provided to `ListRoutes` must match the call that provided the page token.
909
910
  # @param [String] fields
910
911
  # Selector specifying which fields to include in a partial response.
911
912
  # @param [String] quota_user
@@ -1068,17 +1069,17 @@ module Google
1068
1069
  # @param [String] parent
1069
1070
  # Required. The parent that owns the collection of streams.
1070
1071
  # @param [String] filter
1071
- # Filter request.
1072
+ # Optional. Filter request.
1072
1073
  # @param [String] order_by
1073
- # Order by fields for the result.
1074
+ # Optional. Order by fields for the result.
1074
1075
  # @param [Fixnum] page_size
1075
- # Maximum number of streams to return. If unspecified, at most 50 streams will
1076
- # be returned. The maximum value is 1000; values above 1000 will be coerced to
1077
- # 1000.
1076
+ # Optional. Maximum number of streams to return. If unspecified, at most 50
1077
+ # streams will be returned. The maximum value is 1000; values above 1000 will be
1078
+ # coerced to 1000.
1078
1079
  # @param [String] page_token
1079
- # Page token received from a previous `ListStreams` call. Provide this to
1080
- # retrieve the subsequent page. When paginating, all other parameters provided
1081
- # to `ListStreams` must match the call that provided the page token.
1080
+ # Optional. Page token received from a previous `ListStreams` call. Provide this
1081
+ # to retrieve the subsequent page. When paginating, all other parameters
1082
+ # provided to `ListStreams` must match the call that provided the page token.
1082
1083
  # @param [String] fields
1083
1084
  # Selector specifying which fields to include in a partial response.
1084
1085
  # @param [String] quota_user
@@ -1238,13 +1239,13 @@ module Google
1238
1239
  # @param [String] parent
1239
1240
  # Required. The parent stream that owns the collection of objects.
1240
1241
  # @param [Fixnum] page_size
1241
- # Maximum number of objects to return. Default is 50. The maximum value is 1000;
1242
- # values above 1000 will be coerced to 1000.
1242
+ # Optional. Maximum number of objects to return. Default is 50. The maximum
1243
+ # value is 1000; values above 1000 will be coerced to 1000.
1243
1244
  # @param [String] page_token
1244
- # Page token received from a previous `ListStreamObjectsRequest` call. Provide
1245
- # this to retrieve the subsequent page. When paginating, all other parameters
1246
- # provided to `ListStreamObjectsRequest` must match the call that provided the
1247
- # page token.
1245
+ # Optional. Page token received from a previous `ListStreamObjectsRequest` call.
1246
+ # Provide this to retrieve the subsequent page. When paginating, all other
1247
+ # parameters provided to `ListStreamObjectsRequest` must match the call that
1248
+ # provided the page token.
1248
1249
  # @param [String] fields
1249
1250
  # Selector specifying which fields to include in a partial response.
1250
1251
  # @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.59.0
4
+ version: 0.61.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.59.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.61.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: