google-apis-cloudtasks_v2 0.43.0 → 0.44.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: 1c2de1875e81088a3df7a48321cdf54fa7f075de9b76ca1e07f5f2ab6d81d481
4
- data.tar.gz: 8ad4b4d602b1153ed54da3fbeab31e8ca3ef6b3fabd52e20e2f883aa5c8e1262
3
+ metadata.gz: e4d081d59070bdc44d21f4249c2a6732606277cc0cde78de9b32bd26022ce98e
4
+ data.tar.gz: 141c9c237bf95a9a83e3c1cbdf0cf8e2f46d88c07674464e64fa00f80d6a05ec
5
5
  SHA512:
6
- metadata.gz: 72f024c67a711e653b12e7936857a719ca278f322c8d4422404daea143307dfb9de868f5d4750c6e857f1b2ed2e18c826fe72eb17252af30ac29d7b1658ca2a3
7
- data.tar.gz: b63213c11a31c658ad3a6d02f7bb96858b9bc4827e5a54b4f40b64d2241f40ad2b5e257fada8a448d1c8709e8ceb46513c503232a8adba34cb19ed9f016427da
6
+ metadata.gz: 6586f687665078f3d0a07c8c69f318123bfa85466aebc21c8a6f5ae1d2666de091cd0f0b313e21de3fc7357e7d8b754e3b5268e238ed51b6bc722c69b0e8d83d
7
+ data.tar.gz: 8da49c7556268e398c412e781abbc36858d666f55e3d881617cc11eabfaaef815fac62be1bad81534b38874f427c397de7791afe10718c401df4e4f423d30189
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudtasks_v2
2
2
 
3
+ ### v0.44.0 (2026-03-15)
4
+
5
+ * Regenerated from discovery document revision 20260306
6
+
3
7
  ### v0.43.0 (2025-11-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20251021
@@ -1300,15 +1300,18 @@ module Google
1300
1300
  # Each queue has a token bucket that holds tokens, up to the maximum specified
1301
1301
  # by `max_burst_size`. Each time a task is dispatched, a token is removed from
1302
1302
  # the bucket. Tasks will be dispatched until the queue's bucket runs out of
1303
- # tokens. The bucket will be continuously refilled with new tokens based on
1304
- # max_dispatches_per_second. Cloud Tasks will pick the value of `max_burst_size`
1305
- # based on the value of max_dispatches_per_second. For queues that were created
1306
- # or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](
1307
- # https://cloud.google.com/appengine/docs/standard/python/config/queueref#
1308
- # bucket_size). Since `max_burst_size` is output only, if UpdateQueue is called
1309
- # on a queue created by `queue.yaml/xml`, `max_burst_size` will be reset based
1310
- # on the value of max_dispatches_per_second, regardless of whether
1311
- # max_dispatches_per_second is updated.
1303
+ # tokens. The bucket will be continuously refilled with new tokens based on `
1304
+ # max_dispatches_per_second`. Cloud Tasks automatically sets an appropriate `
1305
+ # max_burst_size` based on the value of `max_dispatches_per_second`. The value
1306
+ # is dynamically optimized to ensure queue stability and throughput. It is
1307
+ # generally at least equal to `max_dispatches_per_second` but might be higher to
1308
+ # accommodate bursts of traffic. For queues that were created or updated using `
1309
+ # queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.
1310
+ # google.com/appengine/docs/standard/python/config/queueref#bucket_size). Since `
1311
+ # max_burst_size` is output only, if UpdateQueue is called on a queue created by
1312
+ # `queue.yaml/xml`, `max_burst_size` will be reset based on the value of `
1313
+ # max_dispatches_per_second`, regardless of whether `max_dispatches_per_second`
1314
+ # is updated.
1312
1315
  # Corresponds to the JSON property `maxBurstSize`
1313
1316
  # @return [Fixnum]
1314
1317
  attr_accessor :max_burst_size
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudtasksV2
18
18
  # Version of the google-apis-cloudtasks_v2 gem
19
- GEM_VERSION = "0.43.0"
19
+ GEM_VERSION = "0.44.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 = "20251021"
25
+ REVISION = "20260306"
26
26
  end
27
27
  end
28
28
  end
@@ -113,7 +113,11 @@ module Google
113
113
  execute_or_queue_command(command, &block)
114
114
  end
115
115
 
116
- # Lists information about the supported locations for this service.
116
+ # Lists information about the supported locations for this service. This method
117
+ # can be called in two ways: * **List all public locations:** Use the path `GET /
118
+ # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
119
+ # projects/`project_id`/locations`. This may include public locations as well as
120
+ # private or other locations specifically visible to the project.
117
121
  # @param [String] name
118
122
  # The resource that owns the locations collection, if applicable.
119
123
  # @param [Array<String>, String] extra_location_types
@@ -161,7 +165,7 @@ module Google
161
165
  end
162
166
 
163
167
  # Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key
164
- # assotiated with the Cloud Tasks location (Creates if the key does not already
168
+ # associated with the Cloud Tasks location (Creates if the key does not already
165
169
  # exist). All new tasks created in the location will be encrypted at-rest with
166
170
  # the KMS-key provided in the config.
167
171
  # @param [String] name
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudtasks_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.44.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-cloudtasks_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.44.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2
62
62
  rdoc_options: []
63
63
  require_paths: