@maxim_mazurok/gapi.client.cloudtasks-v2 0.0.20230929 → 0.0.20231018
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.
- package/index.d.ts +6 -3
- package/package.json +1 -1
- package/tests.ts +6 -3
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://cloudtasks.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231018
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -985,8 +985,11 @@ declare namespace gapi.client {
|
|
|
985
985
|
},
|
|
986
986
|
body: Queue): Request<Queue>;
|
|
987
987
|
/**
|
|
988
|
-
* Deletes a queue. This command will delete the queue even if it has tasks in it. Note: If you delete a queue, a queue with the same name
|
|
989
|
-
*
|
|
988
|
+
* Deletes a queue. This command will delete the queue even if it has tasks in it. Note: If you delete a queue, you may be prevented from creating a new queue with the same name as the
|
|
989
|
+
* deleted queue for a tombstone window of up to 3 days. During this window, the CreateQueue operation may appear to recreate the queue, but this can be misleading. If you attempt to
|
|
990
|
+
* create a queue with the same name as one that is in the tombstone window, run GetQueue to confirm that the queue creation was successful. If GetQueue returns 200 response code, your
|
|
991
|
+
* queue was successfully created with the name of the previously deleted queue. Otherwise, your queue did not successfully recreate. WARNING: Using this method may have unintended
|
|
992
|
+
* side effects if you are using an App Engine `queue.yaml` or `queue.xml` file to manage your queues. Read [Overview of Queue Management and
|
|
990
993
|
* queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml) before using this method.
|
|
991
994
|
*/
|
|
992
995
|
delete(request?: {
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20231018
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -89,8 +89,11 @@ gapi.load('client', async () => {
|
|
|
89
89
|
state: "Test string",
|
|
90
90
|
});
|
|
91
91
|
/**
|
|
92
|
-
* Deletes a queue. This command will delete the queue even if it has tasks in it. Note: If you delete a queue,
|
|
93
|
-
*
|
|
92
|
+
* Deletes a queue. This command will delete the queue even if it has tasks in it. Note: If you delete a queue, you may be prevented from creating a new queue with the same name as the
|
|
93
|
+
* deleted queue for a tombstone window of up to 3 days. During this window, the CreateQueue operation may appear to recreate the queue, but this can be misleading. If you attempt to
|
|
94
|
+
* create a queue with the same name as one that is in the tombstone window, run GetQueue to confirm that the queue creation was successful. If GetQueue returns 200 response code, your
|
|
95
|
+
* queue was successfully created with the name of the previously deleted queue. Otherwise, your queue did not successfully recreate. WARNING: Using this method may have unintended side
|
|
96
|
+
* effects if you are using an App Engine `queue.yaml` or `queue.xml` file to manage your queues. Read [Overview of Queue Management and
|
|
94
97
|
* queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml) before using this method.
|
|
95
98
|
*/
|
|
96
99
|
await gapi.client.cloudtasks.projects.locations.queues.delete({
|