google-cloud-service_control 1.6.0 → 1.7.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/service_control/version.rb +1 -1
- data/lib/google/cloud/service_control.rb +5 -3
- data/lib/google-cloud-service_control.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e198f6b65dfa3153f3942d7c1ee3553a4058f203aa3370390e553abe706c5e93
|
|
4
|
+
data.tar.gz: 704a33b14c4aed50630e942e48137413bbbc0da381f0130f52fd5da41d2c014e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5d50fc8e5f8ddb6e590f7886aa924f3936c39f3729f20e13b59c8d9a93b5fc9b758f0849d9aaeb179c9b097fbfeddd1341470f58c5bbc7f988f2b4ae58930df
|
|
7
|
+
data.tar.gz: 21577a588cacd755742221bd7ff01724989f8bf17dd346700cc569992a6cc07eecb7722190770ce933332bd6ad04dbf881ca3e253b7bfa5de69aba265d1b16eb
|
data/README.md
CHANGED
|
@@ -74,7 +74,7 @@ working, try updating the versioned clients in your bundle or installed gems:
|
|
|
74
74
|
|
|
75
75
|
## Supported Ruby Versions
|
|
76
76
|
|
|
77
|
-
This library is supported on Ruby 3.
|
|
77
|
+
This library is supported on Ruby 3.2+.
|
|
78
78
|
|
|
79
79
|
Google provides official support for Ruby versions that are actively supported
|
|
80
80
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright
|
|
3
|
+
# Copyright 2026 Google LLC
|
|
4
4
|
#
|
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
# you may not use this file except in compliance with the License.
|
|
@@ -65,7 +65,7 @@ module Google
|
|
|
65
65
|
#
|
|
66
66
|
# ## About QuotaController
|
|
67
67
|
#
|
|
68
|
-
# [Google Quota Control API](/service-control/overview)
|
|
68
|
+
# [Google Quota Control API](https://cloud.google.com/service-control/overview)
|
|
69
69
|
#
|
|
70
70
|
# Allows clients to allocate and release quota against a [managed
|
|
71
71
|
# service](https://cloud.google.com/service-management/reference/rpc/google.api/servicemanagement.v1#google.api.servicemanagement.v1.ManagedService).
|
|
@@ -138,7 +138,8 @@ module Google
|
|
|
138
138
|
#
|
|
139
139
|
# ## About ServiceController
|
|
140
140
|
#
|
|
141
|
-
# [Google Service Control
|
|
141
|
+
# [Google Service Control
|
|
142
|
+
# API](https://cloud.google.com/service-control/overview)
|
|
142
143
|
#
|
|
143
144
|
# Lets clients check and report operations against a [managed
|
|
144
145
|
# service](https://cloud.google.com/service-management/reference/rpc/google.api/servicemanagement.v1#google.api.servicemanagement.v1.ManagedService).
|
|
@@ -214,6 +215,7 @@ module Google
|
|
|
214
215
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
215
216
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
216
217
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
218
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
217
219
|
# * `:retry_codes` (*type:* `Array<String>`) -
|
|
218
220
|
# The error codes that should trigger a retry.
|
|
219
221
|
#
|