google-apis-core 0.11.0 → 0.11.1

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: 71c124a4dcd20721ab799ef44f376ff25ce4e62bd47daa58bc0fe82db014050a
4
- data.tar.gz: a8193eaf12051d6606818efb527f62ff79d340cad2456d7e0f970938682a4d28
3
+ metadata.gz: 6804723717d153998f2c650ebb87d20fe252f392fbf89b0d203eb3b47f9f3d33
4
+ data.tar.gz: cbacd271161cd800b834494e06a00f5d169e59f791edd54355c894ea5231ee9f
5
5
  SHA512:
6
- metadata.gz: 50753e39de39a704e10cecefaecf5f19fa215a90d1f74abfc2aa898ff77cbaabb33484e948f001a91f56cbf438f1cf0a687663baf367103a22e99c156cfedd6f
7
- data.tar.gz: 694e22ff849afc427eea55310876929fd39b4fa70b4dff350caaa3d4ecaac6e1e8c41239403fd3b759b5ed374eb09cc0440445123e7ea6802f398ddd6739099c
6
+ metadata.gz: e66de0597c6c9b248594760f4678c907ec46fa211dc116a85ab4b498d8e6e5bb6ad4771712cfbd2b548b7ee50ace25325db62ab3c15354c7283081dcdd3f9825
7
+ data.tar.gz: 73ac45bed40cebe9d0271e92162f291c4c611e18a4fcd2291c0b6e8cb52d6167271357c9755498d2109bd082a028c812b7bf92b18a962e4ec549a5b2e550540d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.11.1 (2023-07-20)
4
+
5
+ #### Documentation
6
+
7
+ * Document send_timeout_sec and fix up some types ([#14907](https://github.com/googleapis/google-api-ruby-client/issues/14907))
8
+
3
9
  ### 0.11.0 (2023-02-08)
4
10
 
5
11
  #### Features
@@ -16,7 +16,7 @@ module Google
16
16
  module Apis
17
17
  module Core
18
18
  # Core version
19
- VERSION = "0.11.0".freeze
19
+ VERSION = "0.11.1".freeze
20
20
  end
21
21
  end
22
22
  end
@@ -54,9 +54,11 @@ module Google
54
54
  # @!attribute [rw] log_http_requests
55
55
  # @return [Boolean] True if raw HTTP requests should be logged
56
56
  # @!attribute [rw] open_timeout_sec
57
- # @return [Fixnum] How long, in seconds, before failed connections time out
57
+ # @return [Integer] How long, in seconds, before failed connections time out
58
+ # @!attribute [rw] send_timeout_sec
59
+ # @return [Integer] How long, in seconds, before sending data times out
58
60
  # @!attribute [rw] read_timeout_sec
59
- # @return [Fixnum] How long, in seconds, before requests time out
61
+ # @return [Integer] How long, in seconds, before receiving data times out
60
62
  # @!attribute [rw] transparent_gzip_decompression
61
63
  # @return [Boolean] True if gzip compression needs to be enabled
62
64
  # Get the default options
@@ -71,15 +73,15 @@ module Google
71
73
  # @!attribute [rw] authorization
72
74
  # @return [Signet::OAuth2::Client, #apply(Hash)] OAuth2 credentials.
73
75
  # @!attribute [rw] retries
74
- # @return [Fixnum] Number of times to retry requests on server error.
76
+ # @return [Integer] Number of times to retry requests on server error.
75
77
  # @!attribute [rw] max_elapsed_time
76
- # @return [Fixnum] Total time in seconds that requests are allowed to keep being retried.
78
+ # @return [Integer] Total time in seconds that requests are allowed to keep being retried.
77
79
  # @!attribute [rw] base_interval
78
80
  # @return [Float] The initial interval in seconds between tries.
79
81
  # @!attribute [rw] max_interval
80
- # @return [Fixnum] The maximum interval in seconds that any individual retry can reach.
82
+ # @return [Integer] The maximum interval in seconds that any individual retry can reach.
81
83
  # @!attribute [rw] multiplier
82
- # @return [rw] Each successive interval grows by this factor. A multipler of 1.5 means the next interval
84
+ # @return [Numeric] Each successive interval grows by this factor. A multipler of 1.5 means the next interval
83
85
  # will be 1.5x the current interval.
84
86
  # @!attribute [rw] header
85
87
  # @return [Hash<String,String>] Additional HTTP headers to include in requests.
@@ -90,7 +92,7 @@ module Google
90
92
  # @!attribute [rw] skip_deserialization
91
93
  # @return [Boolean] True if response should be returned in raw form instead of deserialized.
92
94
  # @!attribute [rw] api_format_version
93
- # @return [Fixnum] Version of the error format to request/expect.
95
+ # @return [Integer] Version of the error format to request/expect.
94
96
  # @!attribute [rw] use_opencensus
95
97
  # @return [Boolean] Whether OpenCensus spans should be generated for requests. Default is true.
96
98
  # @!attribute [rw] quota_project
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-08 00:00:00.000000000 Z
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: representable
@@ -186,7 +186,7 @@ licenses:
186
186
  metadata:
187
187
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
188
188
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core/CHANGELOG.md
189
- documentation_uri: https://googleapis.dev/ruby/google-apis-core/v0.11.0
189
+ documentation_uri: https://googleapis.dev/ruby/google-apis-core/v0.11.1
190
190
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core
191
191
  post_install_message:
192
192
  rdoc_options: []