Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions generated/google-apis-cloudtasks_v2beta3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-cloudtasks_v2beta3

### v0.46.0 (2025-09-28)

* Regenerated from discovery document revision 20250914
* Regenerated using generator version 0.18.0

### v0.45.0 (2025-05-04)

* Regenerated using generator version 0.17.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1973,9 +1973,10 @@ class UriOverride
attr_accessor :path_override

# Port override. When specified, replaces the port part of the task URI. For
# instance, for a URI http://www.google.com/foo and port=123, the overridden URI
# becomes http://www.google.com:123/foo. Note that the port value must be a
# positive integer. Setting the port to 0 (Zero) clears the URI port.
# instance, for a URI "https://www.example.com/example" and port=123, the
# overridden URI becomes "https://www.example.com:123/example". Note that the
# port value must be a positive integer. Setting the port to 0 (Zero) clears the
# URI port.
# Corresponds to the JSON property `port`
# @return [Fixnum]
attr_accessor :port
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module CloudtasksV2beta3
# Version of the google-apis-cloudtasks_v2beta3 gem
GEM_VERSION = "0.45.0"
GEM_VERSION = "0.46.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.17.0"
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250411"
REVISION = "20250914"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def get_project_location_cmek_config(name, fields: nil, quota_user: nil, options
# @param [String] name
# The resource that owns the locations collection, if applicable.
# @param [Array<String>, String] extra_location_types
# Optional. A list of extra location types that should be used as conditions for
# controlling the visibility of the locations.
# Optional. Unless explicitly documented otherwise, don't use this unsupported
# field which is primarily intended for internal usage.
# @param [String] filter
# A filter to narrow down results to a preferred subset. The filtering language
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
Expand Down Expand Up @@ -772,7 +772,9 @@ def delete_project_location_queue_task(name, fields: nil, quota_user: nil, optio
execute_or_queue_command(command, &block)
end

# Gets a task.
# Gets a task. After a task is successfully executed or has exhausted its retry
# attempts, the task is deleted. A `GetTask` request for a deleted task returns
# a `NOT_FOUND` error.
# @param [String] name
# Required. The task name. For example: `projects/PROJECT_ID/locations/
# LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
Expand Down
Loading