chore: Update discovery artifacts (#1195)

* chore(accesscontextmanager): update the api
* chore(adexchangebuyer2): update the api
* chore(admin): update the api
* chore(alertcenter): update the api
* chore(analyticsadmin): update the api
* chore(analyticsdata): update the api
* chore(androidmanagement): update the api
* chore(apigateway): update the api
* chore(apigee): update the api
* chore(appengine): update the api
* chore(area120tables): update the api
* chore(artifactregistry): update the api
* chore(bigquery): update the api
* chore(bigqueryconnection): update the api
* chore(bigqueryreservation): update the api
* chore(billingbudgets): update the api
* chore(binaryauthorization): update the api
* chore(blogger): update the api
* chore(calendar): update the api
* chore(chat): update the api
* chore(cloudasset): update the api
* chore(cloudbuild): update the api
* chore(cloudfunctions): update the api
* chore(cloudidentity): update the api
* chore(cloudkms): update the api
* chore(cloudresourcemanager): update the api
* chore(cloudscheduler): update the api
* chore(cloudtasks): update the api
* chore(composer): update the api
* chore(compute): update the api
* chore(container): update the api
* chore(containeranalysis): update the api
* chore(content): update the api
* chore(datacatalog): update the api
* chore(dataflow): update the api
* chore(datafusion): update the api
* chore(datamigration): update the api
* chore(dataproc): update the api
* chore(deploymentmanager): update the api
* chore(dialogflow): update the api
* chore(displayvideo): update the api
* chore(dlp): update the api
* chore(dns): update the api
* chore(documentai): update the api
* chore(eventarc): update the api
* chore(file): update the api
* chore(firebaseml): update the api
* chore(games): update the api
* chore(gameservices): update the api
* chore(genomics): update the api
* chore(healthcare): update the api
* chore(homegraph): update the api
* chore(iam): update the api
* chore(iap): update the api
* chore(jobs): update the api
* chore(lifesciences): update the api
* chore(localservices): update the api
* chore(managedidentities): update the api
* chore(manufacturers): update the api
* chore(memcache): update the api
* chore(ml): update the api
* chore(monitoring): update the api
* chore(notebooks): update the api
* chore(osconfig): update the api
* chore(pagespeedonline): update the api
* chore(people): update the api
* chore(privateca): update the api
* chore(prod_tt_sasportal): update the api
* chore(pubsub): update the api
* chore(pubsublite): update the api
* chore(recommender): update the api
* chore(remotebuildexecution): update the api
* chore(reseller): update the api
* chore(run): update the api
* chore(safebrowsing): update the api
* chore(sasportal): update the api
* chore(searchconsole): update the api
* chore(secretmanager): update the api
* chore(securitycenter): update the api
* chore(serviceconsumermanagement): update the api
* chore(servicecontrol): update the api
* chore(servicenetworking): update the api
* chore(serviceusage): update the api
* chore(sheets): update the api
* chore(slides): update the api
* chore(spanner): update the api
* chore(speech): update the api
* chore(sqladmin): update the api
* chore(storage): update the api
* chore(storagetransfer): update the api
* chore(sts): update the api
* chore(tagmanager): update the api
* chore(testing): update the api
* chore(toolresults): update the api
* chore(transcoder): update the api
* chore(vectortile): update the api
* chore(videointelligence): update the api
* chore(vision): update the api
* chore(webmasters): update the api
* chore(workflowexecutions): update the api
* chore(youtube): update the api
diff --git a/docs/dyn/cloudtasks_v2beta2.projects.locations.queues.html b/docs/dyn/cloudtasks_v2beta2.projects.locations.queues.html
index d0dcda6..0553d11 100644
--- a/docs/dyn/cloudtasks_v2beta2.projects.locations.queues.html
+++ b/docs/dyn/cloudtasks_v2beta2.projects.locations.queues.html
@@ -160,6 +160,15 @@
     "unlimitedAttempts": True or False, # If true, then the number of attempts is unlimited.
   },
   "state": "A String", # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  "stats": { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    "concurrentDispatchesCount": "A String", # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    "effectiveExecutionRate": 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    "executedLastMinuteCount": "A String", # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    "oldestEstimatedArrivalTime": "A String", # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    "tasksCount": "A String", # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  "taskTtl": "A 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  "tombstoneTtl": "A 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.
 }
 
   x__xgafv: string, V1 error format.
@@ -197,6 +206,15 @@
     "unlimitedAttempts": True or False, # If true, then the number of attempts is unlimited.
   },
   "state": "A String", # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  "stats": { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    "concurrentDispatchesCount": "A String", # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    "effectiveExecutionRate": 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    "executedLastMinuteCount": "A String", # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    "oldestEstimatedArrivalTime": "A String", # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    "tasksCount": "A String", # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  "taskTtl": "A 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  "tombstoneTtl": "A 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.
 }</pre>
 </div>
 
@@ -224,7 +242,7 @@
 
 Args:
   name: string, Required. The resource name of the queue. For example: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` (required)
-  readMask: string, Optional. Read mask is used for a more granular control over what the API returns. If the mask is not present all fields will be returned except [Queue.stats], if the mask is set to &quot;*&quot; all fields including [Queue.stats] will be returned, otherwise only the fields explicitly specified in the mask will be returned.
+  readMask: string, Optional. Read mask is used for a more granular control over what the API returns. If the mask is not present all fields will be returned except [Queue.stats]. [Queue.stats] will be returned only if it was explicitly specified in the mask.
   x__xgafv: string, V1 error format.
     Allowed values
       1 - v1 error format
@@ -260,6 +278,15 @@
     &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
   },
   &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
 }</pre>
 </div>
 
@@ -315,7 +342,7 @@
   filter: string, `filter` can be used to specify a subset of queues. Any Queue field can be used as a filter and several operators as supported. For example: `&lt;=, &lt;, &gt;=, &gt;, !=, =, :`. The filter syntax is the same as described in [Stackdriver&#x27;s Advanced Logs Filters](https://cloud.google.com/logging/docs/view/advanced_filters). Sample filter &quot;app_engine_http_target: *&quot;. Note that using filters might cause fewer queues than the requested_page size to be returned.
   pageSize: integer, Requested page size. The maximum page size is 9800. If unspecified, the page size will be the maximum. Fewer queues than requested might be returned, even if more queues exist; use the next_page_token in the response to determine if more queues exist.
   pageToken: string, A token identifying the page of results to return. To request the first page results, page_token must be empty. To request the next page of results, page_token must be the value of next_page_token returned from the previous call to ListQueues method. It is an error to switch the value of the filter while iterating through pages.
-  readMask: string, Optional. Read mask is used for a more granular control over what the API returns. If the mask is not present all fields will be returned except [Queue.stats], if the mask is set to &quot;*&quot; all fields including [Queue.stats] will be returned, otherwise only the fields explicitly specified in the mask will be returned.
+  readMask: string, Optional. Read mask is used for a more granular control over what the API returns. If the mask is not present all fields will be returned except [Queue.stats]. [Queue.stats] will be returned only if it was explicitly specified in the mask.
   x__xgafv: string, V1 error format.
     Allowed values
       1 - v1 error format
@@ -354,6 +381,15 @@
         &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
       },
       &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+      &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+        &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+        &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+        &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+        &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+        &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+      },
+      &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+      &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
     },
   ],
 }</pre>
@@ -409,6 +445,15 @@
     &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
   },
   &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
 }
 
   updateMask: string, A mask used to specify which fields of the queue are being updated. If empty, then all fields will be updated.
@@ -447,6 +492,15 @@
     &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
   },
   &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
 }</pre>
 </div>
 
@@ -497,6 +551,15 @@
     &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
   },
   &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
 }</pre>
 </div>
 
@@ -547,6 +610,15 @@
     &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
   },
   &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
 }</pre>
 </div>
 
@@ -597,6 +669,15 @@
     &quot;unlimitedAttempts&quot;: True or False, # If true, then the number of attempts is unlimited.
   },
   &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
+  &quot;stats&quot;: { # Statistics for a queue. # Output only. The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
+    &quot;concurrentDispatchesCount&quot;: &quot;A String&quot;, # Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
+    &quot;effectiveExecutionRate&quot;: 3.14, # Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
+    &quot;executedLastMinuteCount&quot;: &quot;A String&quot;, # Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
+    &quot;oldestEstimatedArrivalTime&quot;: &quot;A String&quot;, # Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
+    &quot;tasksCount&quot;: &quot;A String&quot;, # Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven&#x27;t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
+  },
+  &quot;taskTtl&quot;: &quot;A String&quot;, # 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](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
+  &quot;tombstoneTtl&quot;: &quot;A String&quot;, # The task tombstone time to live (TTL). After a task is deleted or completed, the task&#x27;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&#x27;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.
 }</pre>
 </div>