google-apis-datastream_v1 0.60.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c98da9db2b09e73af8d8282717195df544c6c4da97da8776ab3eccaff0e1ca57
|
|
4
|
+
data.tar.gz: d98411827730fdfe658d795b78a2e253a4abd563230d61898d33839bc37cbcd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad95a5bda2fd1e90328e2a88abd8afd48cd067a8a8a0edc941f564354dc0833ed7e0c0c4c57e91de639a8c98b171d5715d86b03385c2d09b2c352eca02286ca2
|
|
7
|
+
data.tar.gz: b0c008b7ae6522639bd35e00b4ef3d2b54f6eb4093581285895f3a2dc1c4f7105e1743ebf9c2c232df9bc5f4d32e3db8c6c28a6bf2005f9acea74d5f26747511
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
@@ -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.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 = "
|
|
25
|
+
REVISION = "20251231"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -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
|
|
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
|
|
342
|
-
# connection profiles will be returned. The maximum value is 1000;
|
|
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.
|
|
346
|
-
# this to retrieve the subsequent page. When paginating, all other
|
|
347
|
-
# provided to `ListConnectionProfiles` must match the call that
|
|
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
|
|
@@ -727,18 +727,18 @@ module Google
|
|
|
727
727
|
# Required. The parent that owns the collection of private connectivity
|
|
728
728
|
# configurations.
|
|
729
729
|
# @param [String] filter
|
|
730
|
-
# Filter request.
|
|
730
|
+
# Optional. Filter request.
|
|
731
731
|
# @param [String] order_by
|
|
732
|
-
# Order by fields for the result.
|
|
732
|
+
# Optional. Order by fields for the result.
|
|
733
733
|
# @param [Fixnum] page_size
|
|
734
734
|
# Maximum number of private connectivity configurations to return. If
|
|
735
735
|
# unspecified, at most 50 private connectivity configurations that will be
|
|
736
736
|
# returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
737
737
|
# @param [String] page_token
|
|
738
|
-
# Page token received from a previous `ListPrivateConnections` call.
|
|
739
|
-
# this to retrieve the subsequent page. When paginating, all other
|
|
740
|
-
# provided to `ListPrivateConnections` must match the call that
|
|
741
|
-
# 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.
|
|
742
742
|
# @param [String] fields
|
|
743
743
|
# Selector specifying which fields to include in a partial response.
|
|
744
744
|
# @param [String] quota_user
|
|
@@ -896,17 +896,17 @@ module Google
|
|
|
896
896
|
# @param [String] parent
|
|
897
897
|
# Required. The parent that owns the collection of Routess.
|
|
898
898
|
# @param [String] filter
|
|
899
|
-
# Filter request.
|
|
899
|
+
# Optional. Filter request.
|
|
900
900
|
# @param [String] order_by
|
|
901
|
-
# Order by fields for the result.
|
|
901
|
+
# Optional. Order by fields for the result.
|
|
902
902
|
# @param [Fixnum] page_size
|
|
903
|
-
# Maximum number of Routes to return. The service may return fewer
|
|
904
|
-
# value. If unspecified, at most 50 Routes will be returned. The
|
|
905
|
-
# 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.
|
|
906
906
|
# @param [String] page_token
|
|
907
|
-
# Page token received from a previous `ListRoutes` call. Provide this
|
|
908
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
|
909
|
-
# 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.
|
|
910
910
|
# @param [String] fields
|
|
911
911
|
# Selector specifying which fields to include in a partial response.
|
|
912
912
|
# @param [String] quota_user
|
|
@@ -1069,17 +1069,17 @@ module Google
|
|
|
1069
1069
|
# @param [String] parent
|
|
1070
1070
|
# Required. The parent that owns the collection of streams.
|
|
1071
1071
|
# @param [String] filter
|
|
1072
|
-
# Filter request.
|
|
1072
|
+
# Optional. Filter request.
|
|
1073
1073
|
# @param [String] order_by
|
|
1074
|
-
# Order by fields for the result.
|
|
1074
|
+
# Optional. Order by fields for the result.
|
|
1075
1075
|
# @param [Fixnum] page_size
|
|
1076
|
-
# Maximum number of streams to return. If unspecified, at most 50
|
|
1077
|
-
# be returned. The maximum value is 1000; values above 1000 will be
|
|
1078
|
-
# 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.
|
|
1079
1079
|
# @param [String] page_token
|
|
1080
|
-
# Page token received from a previous `ListStreams` call. Provide this
|
|
1081
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
|
1082
|
-
# 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.
|
|
1083
1083
|
# @param [String] fields
|
|
1084
1084
|
# Selector specifying which fields to include in a partial response.
|
|
1085
1085
|
# @param [String] quota_user
|
|
@@ -1239,13 +1239,13 @@ module Google
|
|
|
1239
1239
|
# @param [String] parent
|
|
1240
1240
|
# Required. The parent stream that owns the collection of objects.
|
|
1241
1241
|
# @param [Fixnum] page_size
|
|
1242
|
-
# Maximum number of objects to return. Default is 50. The maximum
|
|
1243
|
-
# 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.
|
|
1244
1244
|
# @param [String] page_token
|
|
1245
|
-
# Page token received from a previous `ListStreamObjectsRequest` call.
|
|
1246
|
-
# this to retrieve the subsequent page. When paginating, all other
|
|
1247
|
-
# provided to `ListStreamObjectsRequest` must match the call that
|
|
1248
|
-
# 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.
|
|
1249
1249
|
# @param [String] fields
|
|
1250
1250
|
# Selector specifying which fields to include in a partial response.
|
|
1251
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.
|
|
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.
|
|
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:
|