Class: Google::Apis::CloudtasksV2beta2::Queue
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta2::Queue
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2beta2/classes.rb,
lib/google/apis/cloudtasks_v2beta2/representations.rb,
lib/google/apis/cloudtasks_v2beta2/representations.rb
Overview
A queue is a container of related tasks. Queues are configured to manage how those tasks are dispatched. Configurable properties include rate limits, retry options, target types, and others.
Instance Attribute Summary collapse
-
#app_engine_http_target ⇒ Google::Apis::CloudtasksV2beta2::AppEngineHttpTarget
App Engine HTTP target.
-
#http_target ⇒ Google::Apis::CloudtasksV2beta2::HttpTarget
HTTP target.
-
#name ⇒ String
Caller-specified and required in CreateQueue, after which it becomes output only.
-
#pull_target ⇒ Google::Apis::CloudtasksV2beta2::PullTarget
Pull target.
-
#purge_time ⇒ String
Output only.
-
#rate_limits ⇒ Google::Apis::CloudtasksV2beta2::RateLimits
Rate limits.
-
#retry_config ⇒ Google::Apis::CloudtasksV2beta2::RetryConfig
Retry config.
-
#state ⇒ String
Output only.
-
#stats ⇒ Google::Apis::CloudtasksV2beta2::QueueStats
Statistics for a queue.
-
#task_ttl ⇒ String
The maximum amount of time that a task will be retained in this queue.
-
#tombstone_ttl ⇒ String
The task tombstone time to live (TTL).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Queue
constructor
A new instance of Queue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Queue
Returns a new instance of Queue.
1417 1418 1419 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1417 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_engine_http_target ⇒ Google::Apis::CloudtasksV2beta2::AppEngineHttpTarget
App Engine HTTP target. The task will be delivered to the App Engine
application hostname specified by its AppEngineHttpTarget and
AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how
the task's host URL is constructed. Using AppEngineHttpTarget requires
appengine.applications.get Google IAM permission for the project and the following scope:
https://www.googleapis.com/auth/cloud-platform
Corresponds to the JSON property appEngineHttpTarget
1331 1332 1333 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1331 def app_engine_http_target @app_engine_http_target end |
#http_target ⇒ Google::Apis::CloudtasksV2beta2::HttpTarget
HTTP target. When specified as a Queue, all the tasks with [HttpRequest] will
be overridden according to the target.
Corresponds to the JSON property httpTarget
1337 1338 1339 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1337 def http_target @http_target end |
#name ⇒ String
Caller-specified and required in CreateQueue, after which it becomes output
only. The queue name. The queue name must have the following format: projects/
PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID * PROJECT_ID can contain
letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.).
For more information, see Identifying projects *
LOCATION_ID is the canonical ID for the queue's location. The list of
available locations can be obtained by calling ListLocations. For more
information, see https://cloud.google.com/about/locations/. * QUEUE_ID can
contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum
length is 100 characters.
Corresponds to the JSON property name
1352 1353 1354 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1352 def name @name end |
#pull_target ⇒ Google::Apis::CloudtasksV2beta2::PullTarget
Pull target.
Corresponds to the JSON property pullTarget
1357 1358 1359 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1357 def pull_target @pull_target end |
#purge_time ⇒ String
Output only. The last time this queue was purged. All tasks that were created
before this time were purged. A queue can be purged using PurgeQueue, the App
Engine Task Queue SDK, or the Cloud Console. Purge time will be truncated to the nearest
microsecond. Purge time will be unset if the queue has never been purged.
Corresponds to the JSON property purgeTime
1367 1368 1369 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1367 def purge_time @purge_time end |
#rate_limits ⇒ Google::Apis::CloudtasksV2beta2::RateLimits
Rate limits. This message determines the maximum rate that tasks can be
dispatched by a queue, regardless of whether the dispatch is a first task
attempt or a retry. Note: The debugging command, RunTask, will run a task even
if the queue has reached its RateLimits.
Corresponds to the JSON property rateLimits
1375 1376 1377 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1375 def rate_limits @rate_limits end |
#retry_config ⇒ Google::Apis::CloudtasksV2beta2::RetryConfig
Retry config. These settings determine how a failed task attempt is retried.
Corresponds to the JSON property retryConfig
1380 1381 1382 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1380 def retry_config @retry_config end |
#state ⇒ String
Output only. The state of the queue. state can only be changed by called
PauseQueue, ResumeQueue, or uploading queue.yaml/xml. UpdateQueue cannot be used to
change state.
Corresponds to the JSON property state
1388 1389 1390 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1388 def state @state end |
#stats ⇒ Google::Apis::CloudtasksV2beta2::QueueStats
Statistics for a queue.
Corresponds to the JSON property stats
1393 1394 1395 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1393 def stats @stats end |
#task_ttl ⇒ String
The maximum amount of time that a task will be retained in this queue. Queues
created by Cloud Tasks have a default task_ttl of 31 days. After a task has
lived for task_ttl, the task will be deleted regardless of whether it was
dispatched or not. The task_ttl for queues created via queue.yaml/xml is
equal to the maximum duration because there is a storage quota for these queues. To view the maximum
valid duration, see the documentation for Duration.
Corresponds to the JSON property taskTtl
1404 1405 1406 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1404 def task_ttl @task_ttl end |
#tombstone_ttl ⇒ String
The task tombstone time to live (TTL). After a task is deleted or completed,
the task's tombstone is retained for the length of time specified by
tombstone_ttl. The tombstone is used by task de-duplication; another task
with the same name can't be created until the tombstone has expired. For more
information about task de-duplication, see the documentation for
CreateTaskRequest. Queues created by Cloud Tasks have a default tombstone_ttl
of 1 hour.
Corresponds to the JSON property tombstoneTtl
1415 1416 1417 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1415 def tombstone_ttl @tombstone_ttl end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 1422 def update!(**args) @app_engine_http_target = args[:app_engine_http_target] if args.key?(:app_engine_http_target) @http_target = args[:http_target] if args.key?(:http_target) @name = args[:name] if args.key?(:name) @pull_target = args[:pull_target] if args.key?(:pull_target) @purge_time = args[:purge_time] if args.key?(:purge_time) @rate_limits = args[:rate_limits] if args.key?(:rate_limits) @retry_config = args[:retry_config] if args.key?(:retry_config) @state = args[:state] if args.key?(:state) @stats = args[:stats] if args.key?(:stats) @task_ttl = args[:task_ttl] if args.key?(:task_ttl) @tombstone_ttl = args[:tombstone_ttl] if args.key?(:tombstone_ttl) end |