Cloud Tasks allows developers to manage the execution of background work in their applications. v2beta2
Package
@google-cloud/tasksConstructors
(constructor)(opts, gaxInstance)
constructor
(
opts
?:
ClientOptions
,
gaxInstance
?:
typeof
gax
|
typeof
gax
.
fallback
);
Construct an instance of CloudTasksClient.
opts
ClientOptions
gaxInstance
typeof gax
| typeof fallback
: loaded instance of google-gax
. Useful if you need to avoid loading the default gRPC version and want to use the fallback HTTP implementation. Load only fallback version and pass it to the constructor: ``` const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC const client = new CloudTasksClient({fallback: 'rest'}, gax); ```
Properties
apiEndpoint
get
apiEndpoint
()
:
string
;
The DNS address for this API service.
apiEndpoint
static
get
apiEndpoint
()
:
string
;
The DNS address for this API service - same as servicePath, exists for compatibility reasons.
auth
auth
:
gax
.
GoogleAuth
;
cloudTasksStub
cloudTasksStub
?:
Promise
< {
[
name
:
string
]
:
Function
;
}>;
descriptors
descriptors
:
Descriptors
;
innerApiCalls
innerApiCalls
:
{
[
name
:
string
]
:
Function
;
};
locationsClient
locationsClient
:
LocationsClient
;
pathTemplates
pathTemplates
:
{
[
name
:
string
]
:
gax
.
PathTemplate
;
};
port
static
get
port
()
:
number
;
The port for this API service.
scopes
static
get
scopes
()
:
string
[];
The scopes needed to make gRPC calls for every method defined in this service.
servicePath
static
get
servicePath
()
:
string
;
The DNS address for this API service.
universeDomain
get
universeDomain
()
:
string
;
warn
warn
:
(
code
:
string
,
message
:
string
,
warnType
?:
string
)
=
>
void
;
Methods
acknowledgeTask(request, options)
acknowledgeTask
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IAcknowledgeTaskRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IAcknowledgeTaskRequest
|
undefined
,
{}
|
undefined
]>;
Acknowledges a pull task.
The worker, that is, the entity that this task must call this method to indicate that the work associated with the task has finished.
The worker must acknowledge a task within the or the lease will expire and the task will become available to be leased again. After the task is acknowledged, it will not be returned by a later , , or .
request
options
Promise
<[ protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IAcknowledgeTaskRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing Empty . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The task name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
*/
// const name = 'abc123'
/**
* Required. The task's current schedule time, available in the
* schedule_time google.cloud.tasks.v2beta2.Task.schedule_time returned by
* LeaseTasks google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks response or
* RenewLease google.cloud.tasks.v2beta2.CloudTasks.RenewLease response.
* This restriction is to ensure that your worker currently holds the lease.
*/
// const scheduleTime = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callAcknowledgeTask
()
{
// Construct request
const
request
=
{
name
,
scheduleTime
,
};
// Run request
const
response
=
await
tasksClient
.
acknowledgeTask
(
request
);
console
.
log
(
response
);
}
callAcknowledgeTask
();
acknowledgeTask(request, options, callback)
acknowledgeTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IAcknowledgeTaskRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IAcknowledgeTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IAcknowledgeTaskRequest
| null | undefined, {} | null | undefined>
void
acknowledgeTask(request, callback)
acknowledgeTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IAcknowledgeTaskRequest
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IAcknowledgeTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IAcknowledgeTaskRequest
| null | undefined, {} | null | undefined>
void
cancelLease(request, options)
cancelLease
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICancelLeaseRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICancelLeaseRequest
|
undefined
,
{}
|
undefined
]>;
Cancel a pull task's lease.
The worker can use this method to cancel a task's lease by setting its to now. This will make the task available to be leased to the next caller of .
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.ICancelLeaseRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The task name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
*/
// const name = 'abc123'
/**
* Required. The task's current schedule time, available in the
* schedule_time google.cloud.tasks.v2beta2.Task.schedule_time returned by
* LeaseTasks google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks response or
* RenewLease google.cloud.tasks.v2beta2.CloudTasks.RenewLease response.
* This restriction is to ensure that your worker currently holds the lease.
*/
// const scheduleTime = {}
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callCancelLease
()
{
// Construct request
const
request
=
{
name
,
scheduleTime
,
};
// Run request
const
response
=
await
tasksClient
.
cancelLease
(
request
);
console
.
log
(
response
);
}
callCancelLease
();
cancelLease(request, options, callback)
cancelLease
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICancelLeaseRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICancelLeaseRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.ICancelLeaseRequest
| null | undefined, {} | null | undefined>
void
cancelLease(request, callback)
cancelLease
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICancelLeaseRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICancelLeaseRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.ICancelLeaseRequest
| null | undefined, {} | null | undefined>
void
close()
close
()
:
Promise<void>
;
Terminate the gRPC channel and close the client.
The client will no longer be usable and all future behavior is undefined.
Promise
<void>
{Promise} A promise that resolves when the client is closed.
createQueue(request, options)
createQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateQueueRequest
|
undefined
,
{}
|
undefined
]>;
Creates a queue.
Queues created with this method allow tasks to live for a maximum of 31 days. After a task is 31 days old, the task will be deleted regardless of whether it was dispatched or not.
WARNING: Using this method may have unintended 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 queue.yaml]( https://cloud.google.com/tasks/docs/queue-yaml
) before using this method.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.ICreateQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The location name in which the queue will be created.
* For example: `projects/PROJECT_ID/locations/LOCATION_ID`
* The list of allowed locations can be obtained by calling Cloud
* Tasks' implementation of
* ListLocations google.cloud.location.Locations.ListLocations.
*/
// const parent = 'abc123'
/**
* Required. The queue to create.
* Queue's name google.cloud.tasks.v2beta2.Queue.name cannot be the same as
* an existing queue.
*/
// const queue = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callCreateQueue
()
{
// Construct request
const
request
=
{
parent
,
queue
,
};
// Run request
const
response
=
await
tasksClient
.
createQueue
(
request
);
console
.
log
(
response
);
}
callCreateQueue
();
createQueue(request, options, callback)
createQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.ICreateQueueRequest
| null | undefined, {} | null | undefined>
void
createQueue(request, callback)
createQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateQueueRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.ICreateQueueRequest
| null | undefined, {} | null | undefined>
void
createTask(request, options)
createTask
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateTaskRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateTaskRequest
|
undefined
,
{}
|
undefined
]>;
Creates a task and adds it to a queue.
Tasks cannot be updated after creation; there is no UpdateTask command.
* For App Engine queues , the maximum task size is 100KB. * For pull queues , the maximum task size is 1MB.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.ICreateTaskRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID`
* The queue must already exist.
*/
// const parent = 'abc123'
/**
* Required. The task to add.
* Task names have the following format:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`.
* The user can optionally specify a task
* name google.cloud.tasks.v2beta2.Task.name. If a name is not specified
* then the system will generate a random unique task id, which will be set in
* the task returned in the response google.cloud.tasks.v2beta2.Task.name.
* If schedule_time google.cloud.tasks.v2beta2.Task.schedule_time is not
* set or is in the past then Cloud Tasks will set it to the current time.
* Task De-duplication:
* Explicitly specifying a task ID enables task de-duplication. If
* a task's ID is identical to that of an existing task or a task
* that was deleted or completed recently then the call will fail
* with ALREADY_EXISTS google.rpc.Code.ALREADY_EXISTS.
* If the task's queue was created using Cloud Tasks, then another task with
* the same name can't be created for ~1 hour after the original task was
* deleted or completed. If the task's queue was created using queue.yaml or
* queue.xml, then another task with the same name can't be created
* for ~9 days after the original task was deleted or completed.
* Because there is an extra lookup cost to identify duplicate task
* names, these CreateTask google.cloud.tasks.v2beta2.CloudTasks.CreateTask
* calls have significantly increased latency. Using hashed strings for the
* task id or for the prefix of the task id is recommended. Choosing task ids
* that are sequential or have sequential prefixes, for example using a
* timestamp, causes an increase in latency and error rates in all
* task commands. The infrastructure relies on an approximately
* uniform distribution of task ids to store and serve tasks
* efficiently.
*/
// const task = {}
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callCreateTask
()
{
// Construct request
const
request
=
{
parent
,
task
,
};
// Run request
const
response
=
await
tasksClient
.
createTask
(
request
);
console
.
log
(
response
);
}
callCreateTask
();
createTask(request, options, callback)
createTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateTaskRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.ICreateTaskRequest
| null | undefined, {} | null | undefined>
void
createTask(request, callback)
createTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateTaskRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ICreateTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.ICreateTaskRequest
| null | undefined, {} | null | undefined>
void
deleteQueue(request, options)
deleteQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteQueueRequest
|
undefined
,
{}
|
undefined
]>;
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 can't be created for 7 days.
WARNING: Using this method may have unintended 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 queue.yaml]( https://cloud.google.com/tasks/docs/queue-yaml
) before using this method.
request
options
Promise
<[ protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IDeleteQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing Empty . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID`
*/
// const name = 'abc123'
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callDeleteQueue
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
deleteQueue
(
request
);
console
.
log
(
response
);
}
callDeleteQueue
();
deleteQueue(request, options, callback)
deleteQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IDeleteQueueRequest
| null | undefined, {} | null | undefined>
void
deleteQueue(request, callback)
deleteQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteQueueRequest
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IDeleteQueueRequest
| null | undefined, {} | null | undefined>
void
deleteTask(request, options)
deleteTask
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteTaskRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteTaskRequest
|
undefined
,
{}
|
undefined
]>;
Deletes a task.
A task can be deleted if it is scheduled or dispatched. A task cannot be deleted if it has completed successfully or permanently failed.
request
options
Promise
<[ protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IDeleteTaskRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing Empty . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The task name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
*/
// const name = 'abc123'
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callDeleteTask
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
deleteTask
(
request
);
console
.
log
(
response
);
}
callDeleteTask
();
deleteTask(request, options, callback)
deleteTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteTaskRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IDeleteTaskRequest
| null | undefined, {} | null | undefined>
void
deleteTask(request, callback)
deleteTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteTaskRequest
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IDeleteTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IDeleteTaskRequest
| null | undefined, {} | null | undefined>
void
getIamPolicy(request, options)
getIamPolicy
(
request
?:
protos
.
google
.
iam
.
v1
.
IGetIamPolicyRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
iam
.
v1
.
IPolicy
,
protos
.
google
.
iam
.
v1
.
IGetIamPolicyRequest
|
undefined
,
{}
|
undefined
]>;
Gets the access control policy for a . Returns an empty policy if the resource exists and does not have a policy set.
Authorization requires the following [Google IAM]( https://cloud.google.com/iam ) permission on the specified resource parent:
* cloudtasks.queues.getIamPolicy
request
options
Promise
<[ protos.google.iam.v1.IPolicy
, protos.google.iam.v1.IGetIamPolicyRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing Policy . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* REQUIRED: The resource for which the policy is being requested.
* See the operation documentation for the appropriate value for this field.
*/
// const resource = 'abc123'
/**
* OPTIONAL: A `GetPolicyOptions` object for specifying options to
* `GetIamPolicy`.
*/
// const options = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callGetIamPolicy
()
{
// Construct request
const
request
=
{
resource
,
};
// Run request
const
response
=
await
tasksClient
.
getIamPolicy
(
request
);
console
.
log
(
response
);
}
callGetIamPolicy
();
getIamPolicy(request, options, callback)
getIamPolicy
(
request
:
protos
.
google
.
iam
.
v1
.
IGetIamPolicyRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
iam
.
v1
.
IPolicy
,
protos
.
google
.
iam
.
v1
.
IGetIamPolicyRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.iam.v1.IPolicy
, protos.google.iam.v1.IGetIamPolicyRequest
| null | undefined, {} | null | undefined>
void
getIamPolicy(request, callback)
getIamPolicy
(
request
:
protos
.
google
.
iam
.
v1
.
IGetIamPolicyRequest
,
callback
:
Callback<protos
.
google
.
iam
.
v1
.
IPolicy
,
protos
.
google
.
iam
.
v1
.
IGetIamPolicyRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.iam.v1.IPolicy
, protos.google.iam.v1.IGetIamPolicyRequest
| null | undefined, {} | null | undefined>
void
getLocation(request, options, callback)
getLocation
(
request
:
LocationProtos
.
google
.
cloud
.
location
.
IGetLocationRequest
,
options
?:
gax
.
CallOptions
|
Callback<LocationProtos
.
google
.
cloud
.
location
.
ILocation
,
LocationProtos
.
google
.
cloud
.
location
.
IGetLocationRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> ,
callback
?:
Callback<LocationProtos
.
google
.
cloud
.
location
.
ILocation
,
LocationProtos
.
google
.
cloud
.
location
.
IGetLocationRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
Promise<LocationProtos
.
google
.
cloud
.
location
.
ILocation
> ;
Gets information about a location.
request
LocationProtos.google.cloud.location.IGetLocationRequest
The request object that will be sent.
options
CallOptions
| Callback
< google.cloud.location.ILocation
, google.cloud.location.IGetLocationRequest
| null | undefined, {} | null | undefined>
Call options. See CallOptions for more details.
callback
Callback
< google.cloud.location.ILocation
, google.cloud.location.IGetLocationRequest
| null | undefined, {} | null | undefined>
Promise
< google.cloud.location.ILocation
>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
const
[
response
]
=
await
client
.
getLocation
(
request
);
getProjectId()
getProjectId
()
:
Promise<string>
;
Promise
<string>
getProjectId(callback)
getProjectId
(
callback
:
Callback<string
,
undefined
,
undefined
> )
:
void
;
callback
Callback
<string, undefined, undefined>
void
getQueue(request, options)
getQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetQueueRequest
|
undefined
,
{}
|
undefined
]>;
Gets a queue.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IGetQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The resource name of the queue. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID`
*/
// const name = 'abc123'
/**
* 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.
*/
// const readMask = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callGetQueue
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
getQueue
(
request
);
console
.
log
(
response
);
}
callGetQueue
();
getQueue(request, options, callback)
getQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IGetQueueRequest
| null | undefined, {} | null | undefined>
void
getQueue(request, callback)
getQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetQueueRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IGetQueueRequest
| null | undefined, {} | null | undefined>
void
getTask(request, options)
getTask
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetTaskRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetTaskRequest
|
undefined
,
{}
|
undefined
]>;
Gets a task.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IGetTaskRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The task name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
*/
// const name = 'abc123'
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callGetTask
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
getTask
(
request
);
console
.
log
(
response
);
}
callGetTask
();
getTask(request, options, callback)
getTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetTaskRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IGetTaskRequest
| null | undefined, {} | null | undefined>
void
getTask(request, callback)
getTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetTaskRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IGetTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IGetTaskRequest
| null | undefined, {} | null | undefined>
void
initialize()
initialize
()
:
Promise
< {
[
name
:
string
]
:
Function
;
}>;
Initialize the client. Performs asynchronous operations (such as authentication) and prepares the client. This function will be called automatically when any class method is called for the first time, but if you need to initialize it before calling an actual method, feel free to call initialize() directly.
You can await on this method if you want to make sure the client is initialized.
Promise
<{
[name: string]: Function
;
}>
{Promise} A promise that resolves to an authenticated service stub.
leaseTasks(request, options)
leaseTasks
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksResponse
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksRequest
|
undefined
,
{}
|
undefined
]>;
Leases tasks from a pull queue for .
This method is invoked by the worker to obtain a lease. The worker must acknowledge the task via after they have performed the work associated with the task.
The payload is intended to store data that the worker needs to perform the work associated with the task. To return the payloads in the response , set to .
A maximum of 10 qps of requests are allowed per queue. is returned when this limit is exceeded. is also returned when is exceeded.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ILeaseTasksResponse
, protos.google.cloud.tasks.v2beta2.ILeaseTasksRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing LeaseTasksResponse . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID`
*/
// const parent = 'abc123'
/**
* The maximum number of tasks to lease.
* The system will make a best effort to return as close to as
* `max_tasks` as possible.
* The largest that `max_tasks` can be is 1000.
* The maximum total size of a lease tasks
* response google.cloud.tasks.v2beta2.LeaseTasksResponse is 32 MB. If the
* sum of all task sizes requested reaches this limit, fewer tasks than
* requested are returned.
*/
// const maxTasks = 1234
/**
* Required. The duration of the lease.
* Each task returned in the
* response google.cloud.tasks.v2beta2.LeaseTasksResponse will have its
* schedule_time google.cloud.tasks.v2beta2.Task.schedule_time set to the
* current time plus the `lease_duration`. The task is leased until its
* schedule_time google.cloud.tasks.v2beta2.Task.schedule_time; thus, the
* task will not be returned to another
* LeaseTasks google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks call before
* its schedule_time google.cloud.tasks.v2beta2.Task.schedule_time.
* After the worker has successfully finished the work associated
* with the task, the worker must call via
* AcknowledgeTask google.cloud.tasks.v2beta2.CloudTasks.AcknowledgeTask
* before the schedule_time google.cloud.tasks.v2beta2.Task.schedule_time.
* Otherwise the task will be returned to a later
* LeaseTasks google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks call so that
* another worker can retry it.
* The maximum lease duration is 1 week.
* `lease_duration` will be truncated to the nearest second.
*/
// const leaseDuration = {}
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
/**
*
`filter`
can
be
used
to
specify
a
subset
of
tasks
to
lease
.
*
When
`filter`
is
set
to
`tag=
leaseTasks(request, options, callback)
leaseTasks
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksResponse
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.ILeaseTasksResponse
, protos.google.cloud.tasks.v2beta2.ILeaseTasksRequest
| null | undefined, {} | null | undefined>
void
leaseTasks(request, callback)
leaseTasks
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksResponse
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ILeaseTasksRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.ILeaseTasksResponse
, protos.google.cloud.tasks.v2beta2.ILeaseTasksRequest
| null | undefined, {} | null | undefined>
void
listLocationsAsync(request, options)
listLocationsAsync
(
request
:
LocationProtos
.
google
.
cloud
.
location
.
IListLocationsRequest
,
options
?:
CallOptions
)
:
AsyncIterable<LocationProtos
.
google
.
cloud
.
location
.
ILocation
> ;
Lists information about the supported locations for this service. Returns an iterable object.
for
- await
- of
syntax is used with the iterable to get response elements on-demand.
request
LocationProtos.google.cloud.location.IListLocationsRequest
The request object that will be sent.
options
AsyncIterable
< google.cloud.location.ILocation
>
{Object} An iterable Object that allows async iteration . When you iterate the returned iterable, each element will be an object representing . The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples.
const
iterable
=
client
.
listLocationsAsync
(
request
);
for
await
(
const
response
of
iterable
)
{
// process response
}
listQueues(request, options)
listQueues
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
[],
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
|
null
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesResponse
]>;
Lists queues.
Queues are returned in lexicographical order.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
[], protos.google.cloud.tasks.v2beta2.IListQueuesRequest
| null, protos.google.cloud.tasks.v2beta2.IListQueuesResponse
]>
{Promise} - The promise which resolves to an array. The first element of the array is Array of . The client library will perform auto-pagination by default: it will call the API as many times as needed and will merge results from all the pages into this array. Note that it can affect your quota. We recommend using listQueuesAsync()
method described below for async iteration which you can stop as needed. Please see the documentation
for more details and examples.
listQueues(request, options, callback)
listQueues
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
options
:
CallOptions
,
callback
:
PaginationCallback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesResponse
|
null
|
undefined
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
> )
:
void
;
request
options
CallOptions
callback
PaginationCallback
< protos.google.cloud.tasks.v2beta2.IListQueuesRequest
, protos.google.cloud.tasks.v2beta2.IListQueuesResponse
| null | undefined, protos.google.cloud.tasks.v2beta2.IQueue
>
void
listQueues(request, callback)
listQueues
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
callback
:
PaginationCallback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesResponse
|
null
|
undefined
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
> )
:
void
;
request
callback
PaginationCallback
< protos.google.cloud.tasks.v2beta2.IListQueuesRequest
, protos.google.cloud.tasks.v2beta2.IListQueuesResponse
| null | undefined, protos.google.cloud.tasks.v2beta2.IQueue
>
void
listQueuesAsync(request, options)
listQueuesAsync
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
options
?:
CallOptions
)
:
AsyncIterable<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
> ;
Equivalent to listQueues
, but returns an iterable object.
for
- await
- of
syntax is used with the iterable to get response elements on-demand.
request
options
AsyncIterable
< protos.google.cloud.tasks.v2beta2.IQueue
>
{Object} An iterable Object that allows async iteration . When you iterate the returned iterable, each element will be an object representing . The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The location name.
* For example: `projects/PROJECT_ID/locations/LOCATION_ID`
*/
// const parent = 'abc123'
/**
* `filter` can be used to specify a subset of queues. Any
* Queue google.cloud.tasks.v2beta2.Queue field can be used as a filter and
* several operators as supported. For example: `<=,><,>=, >, !=, =, :`. The
* filter syntax is the same as described in Stackdriver's Advanced Logs
* Filters (https://cloud.google.com/logging/docs/view/advanced_filters).
* Sample filter "app_engine_http_target: *".
* Note that using filters might cause fewer queues than the
* requested_page size to be returned.
*/
// const filter = 'abc123'
/**
* 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 google.cloud.tasks.v2beta2.ListQueuesResponse.next_page_token
* in the response to determine if more queues exist.
*/
// const pageSize = 1234
/**
* 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 google.cloud.tasks.v2beta2.ListQueuesResponse.next_page_token
* returned from the previous call to
* ListQueues google.cloud.tasks.v2beta2.CloudTasks.ListQueues method. It
* is an error to switch the value of the
* filter google.cloud.tasks.v2beta2.ListQueuesRequest.filter while
* iterating through pages.
*/
// const pageToken = 'abc123'
/**
* 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.
*/
// const readMask = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callListQueues
()
{
// Construct request
const
request
=
{
parent
,
};
// Run request
const
iterable
=
tasksClient
.
listQueuesAsync
(
request
);
for
await
(
const
response
of
iterable
)
{
console
.
log
(
response
);
}
}
callListQueues
();
listQueuesStream(request, options)
listQueuesStream
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListQueuesRequest
,
options
?:
CallOptions
)
:
Transform
;
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
request
options
Transform
{Stream} An object stream which emits an object representing on 'data' event. The client library will perform auto-pagination by default: it will call the API as many times as needed. Note that it can affect your quota. We recommend using listQueuesAsync()
method described below for async iteration which you can stop as needed. Please see the documentation
for more details and examples.
listTasks(request, options)
listTasks
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
[],
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
|
null
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksResponse
]>;
Lists the tasks in a queue.
By default, only the view is retrieved due to performance considerations; controls the subset of information which is returned.
The tasks may be returned in any order. The ordering may change at any time.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ITask
[], protos.google.cloud.tasks.v2beta2.IListTasksRequest
| null, protos.google.cloud.tasks.v2beta2.IListTasksResponse
]>
{Promise} - The promise which resolves to an array. The first element of the array is Array of . The client library will perform auto-pagination by default: it will call the API as many times as needed and will merge results from all the pages into this array. Note that it can affect your quota. We recommend using listTasksAsync()
method described below for async iteration which you can stop as needed. Please see the documentation
for more details and examples.
listTasks(request, options, callback)
listTasks
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
options
:
CallOptions
,
callback
:
PaginationCallback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksResponse
|
null
|
undefined
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
> )
:
void
;
request
options
CallOptions
callback
PaginationCallback
< protos.google.cloud.tasks.v2beta2.IListTasksRequest
, protos.google.cloud.tasks.v2beta2.IListTasksResponse
| null | undefined, protos.google.cloud.tasks.v2beta2.ITask
>
void
listTasks(request, callback)
listTasks
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
callback
:
PaginationCallback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksResponse
|
null
|
undefined
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
> )
:
void
;
request
callback
PaginationCallback
< protos.google.cloud.tasks.v2beta2.IListTasksRequest
, protos.google.cloud.tasks.v2beta2.IListTasksResponse
| null | undefined, protos.google.cloud.tasks.v2beta2.ITask
>
void
listTasksAsync(request, options)
listTasksAsync
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
options
?:
CallOptions
)
:
AsyncIterable<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
> ;
Equivalent to listTasks
, but returns an iterable object.
for
- await
- of
syntax is used with the iterable to get response elements on-demand.
request
options
AsyncIterable
< protos.google.cloud.tasks.v2beta2.ITask
>
{Object} An iterable Object that allows async iteration . When you iterate the returned iterable, each element will be an object representing . The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID`
*/
// const parent = 'abc123'
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
/**
* Maximum page size.
* Fewer tasks than requested might be returned, even if more tasks exist; use
* next_page_token google.cloud.tasks.v2beta2.ListTasksResponse.next_page_token
* in the response to determine if more tasks exist.
* The maximum page size is 1000. If unspecified, the page size will be the
* maximum.
*/
// const pageSize = 1234
/**
* 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 google.cloud.tasks.v2beta2.ListTasksResponse.next_page_token
* returned from the previous call to
* ListTasks google.cloud.tasks.v2beta2.CloudTasks.ListTasks method.
* The page token is valid for only 2 hours.
*/
// const pageToken = 'abc123'
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callListTasks
()
{
// Construct request
const
request
=
{
parent
,
};
// Run request
const
iterable
=
tasksClient
.
listTasksAsync
(
request
);
for
await
(
const
response
of
iterable
)
{
console
.
log
(
response
);
}
}
callListTasks
();
listTasksStream(request, options)
listTasksStream
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IListTasksRequest
,
options
?:
CallOptions
)
:
Transform
;
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
request
options
Transform
{Stream} An object stream which emits an object representing on 'data' event. The client library will perform auto-pagination by default: it will call the API as many times as needed. Note that it can affect your quota. We recommend using listTasksAsync()
method described below for async iteration which you can stop as needed. Please see the documentation
for more details and examples.
locationPath(project, location)
locationPath
(
project
:
string
,
location
:
string
)
:
string
;
Return a fully-qualified location resource name string.
project
string
location
string
string
{string} Resource name string.
matchLocationFromLocationName(locationName)
matchLocationFromLocationName
(
locationName
:
string
)
:
string
|
number
;
Parse the location from Location resource.
locationName
string
A fully-qualified path representing Location resource.
string | number
{string} A string representing the location.
matchLocationFromQueueName(queueName)
matchLocationFromQueueName
(
queueName
:
string
)
:
string
|
number
;
Parse the location from Queue resource.
queueName
string
A fully-qualified path representing Queue resource.
string | number
{string} A string representing the location.
matchLocationFromTaskName(taskName)
matchLocationFromTaskName
(
taskName
:
string
)
:
string
|
number
;
Parse the location from Task resource.
taskName
string
A fully-qualified path representing Task resource.
string | number
{string} A string representing the location.
matchProjectFromLocationName(locationName)
matchProjectFromLocationName
(
locationName
:
string
)
:
string
|
number
;
Parse the project from Location resource.
locationName
string
A fully-qualified path representing Location resource.
string | number
{string} A string representing the project.
matchProjectFromProjectName(projectName)
matchProjectFromProjectName
(
projectName
:
string
)
:
string
|
number
;
Parse the project from Project resource.
projectName
string
A fully-qualified path representing Project resource.
string | number
{string} A string representing the project.
matchProjectFromQueueName(queueName)
matchProjectFromQueueName
(
queueName
:
string
)
:
string
|
number
;
Parse the project from Queue resource.
queueName
string
A fully-qualified path representing Queue resource.
string | number
{string} A string representing the project.
matchProjectFromTaskName(taskName)
matchProjectFromTaskName
(
taskName
:
string
)
:
string
|
number
;
Parse the project from Task resource.
taskName
string
A fully-qualified path representing Task resource.
string | number
{string} A string representing the project.
matchQueueFromQueueName(queueName)
matchQueueFromQueueName
(
queueName
:
string
)
:
string
|
number
;
Parse the queue from Queue resource.
queueName
string
A fully-qualified path representing Queue resource.
string | number
{string} A string representing the queue.
matchQueueFromTaskName(taskName)
matchQueueFromTaskName
(
taskName
:
string
)
:
string
|
number
;
Parse the queue from Task resource.
taskName
string
A fully-qualified path representing Task resource.
string | number
{string} A string representing the queue.
matchTaskFromTaskName(taskName)
matchTaskFromTaskName
(
taskName
:
string
)
:
string
|
number
;
Parse the task from Task resource.
taskName
string
A fully-qualified path representing Task resource.
string | number
{string} A string representing the task.
pauseQueue(request, options)
pauseQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPauseQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPauseQueueRequest
|
undefined
,
{}
|
undefined
]>;
Pauses the queue.
If a queue is paused then the system will stop dispatching tasks until the queue is resumed via . Tasks can still be added when the queue is paused. A queue is paused if its is .
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IPauseQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID`
*/
// const name = 'abc123'
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callPauseQueue
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
pauseQueue
(
request
);
console
.
log
(
response
);
}
callPauseQueue
();
pauseQueue(request, options, callback)
pauseQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPauseQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPauseQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IPauseQueueRequest
| null | undefined, {} | null | undefined>
void
pauseQueue(request, callback)
pauseQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPauseQueueRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPauseQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IPauseQueueRequest
| null | undefined, {} | null | undefined>
void
projectPath(project)
projectPath
(
project
:
string
)
:
string
;
Return a fully-qualified project resource name string.
project
string
string
{string} Resource name string.
purgeQueue(request, options)
purgeQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPurgeQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPurgeQueueRequest
|
undefined
,
{}
|
undefined
]>;
Purges a queue by deleting all of its tasks.
All tasks created before this method is called are permanently deleted.
Purge operations can take up to one minute to take effect. Tasks might be dispatched before the purge takes effect. A purge is irreversible.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IPurgeQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID`
*/
// const name = 'abc123'
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callPurgeQueue
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
purgeQueue
(
request
);
console
.
log
(
response
);
}
callPurgeQueue
();
purgeQueue(request, options, callback)
purgeQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPurgeQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPurgeQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IPurgeQueueRequest
| null | undefined, {} | null | undefined>
void
purgeQueue(request, callback)
purgeQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPurgeQueueRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IPurgeQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IPurgeQueueRequest
| null | undefined, {} | null | undefined>
void
queuePath(project, location, queue)
queuePath
(
project
:
string
,
location
:
string
,
queue
:
string
)
:
string
;
Return a fully-qualified queue resource name string.
project
string
location
string
queue
string
string
{string} Resource name string.
renewLease(request, options)
renewLease
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRenewLeaseRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRenewLeaseRequest
|
undefined
,
{}
|
undefined
]>;
Renew the current lease of a pull task.
The worker can use this method to extend the lease by a new duration, starting from now. The new task lease will be returned in the task's .
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IRenewLeaseRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The task name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
*/
// const name = 'abc123'
/**
* Required. The task's current schedule time, available in the
* schedule_time google.cloud.tasks.v2beta2.Task.schedule_time returned by
* LeaseTasks google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks response or
* RenewLease google.cloud.tasks.v2beta2.CloudTasks.RenewLease response.
* This restriction is to ensure that your worker currently holds the lease.
*/
// const scheduleTime = {}
/**
* Required. The desired new lease duration, starting from now.
* The maximum lease duration is 1 week.
* `lease_duration` will be truncated to the nearest second.
*/
// const leaseDuration = {}
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callRenewLease
()
{
// Construct request
const
request
=
{
name
,
scheduleTime
,
leaseDuration
,
};
// Run request
const
response
=
await
tasksClient
.
renewLease
(
request
);
console
.
log
(
response
);
}
callRenewLease
();
renewLease(request, options, callback)
renewLease
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRenewLeaseRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRenewLeaseRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IRenewLeaseRequest
| null | undefined, {} | null | undefined>
void
renewLease(request, callback)
renewLease
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRenewLeaseRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRenewLeaseRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IRenewLeaseRequest
| null | undefined, {} | null | undefined>
void
resumeQueue(request, options)
resumeQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IResumeQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IResumeQueueRequest
|
undefined
,
{}
|
undefined
]>;
Resume a queue.
This method resumes a queue after it has been or . The state of a queue is stored in the queue's ; after calling this method it will be set to .
WARNING: Resuming many high-QPS queues at the same time can lead to target overloading. If you are resuming high-QPS queues, follow the 500/50/5 pattern described in [Managing Cloud Tasks Scaling Risks]( https://cloud.google.com/tasks/docs/manage-cloud-task-scaling ).
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IResumeQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue name. For example:
* `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID`
*/
// const name = 'abc123'
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callResumeQueue
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
resumeQueue
(
request
);
console
.
log
(
response
);
}
callResumeQueue
();
resumeQueue(request, options, callback)
resumeQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IResumeQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IResumeQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IResumeQueueRequest
| null | undefined, {} | null | undefined>
void
resumeQueue(request, callback)
resumeQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IResumeQueueRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IResumeQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IResumeQueueRequest
| null | undefined, {} | null | undefined>
void
runTask(request, options)
runTask
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRunTaskRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRunTaskRequest
|
undefined
,
{}
|
undefined
]>;
Forces a task to run now.
When this method is called, Cloud Tasks will dispatch the task, even if the task is already running, the queue has reached its RateLimits or is .
This command is meant to be used for manual debugging. For example, can be used to retry a failed task after a fix has been made or to manually force a task to be dispatched now.
The dispatched task is returned. That is, the task that is returned contains the after the task is dispatched but before the task is received by its target.
If Cloud Tasks receives a successful response from the task's target, then the task will be deleted; otherwise the task's will be reset to the time that was called plus the retry delay specified in the queue's RetryConfig .
returns when it is called on a task that has already succeeded or permanently failed.
cannot be called on a pull task .
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IRunTaskRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The task name. For example:
* `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`
*/
// const name = 'abc123'
/**
* The response_view specifies which subset of the
* Task google.cloud.tasks.v2beta2.Task will be returned.
* By default response_view is
* BASIC google.cloud.tasks.v2beta2.Task.View.BASIC; not all information is
* retrieved by default because some data, such as payloads, might be
* desirable to return only when needed because of its large size or because
* of the sensitivity of data that it contains.
* Authorization for FULL google.cloud.tasks.v2beta2.Task.View.FULL
* requires `cloudtasks.tasks.fullView` Google
* IAM (https://cloud.google.com/iam/) permission on the
* Task google.cloud.tasks.v2beta2.Task resource.
*/
// const responseView = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callRunTask
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
tasksClient
.
runTask
(
request
);
console
.
log
(
response
);
}
callRunTask
();
runTask(request, options, callback)
runTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRunTaskRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRunTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IRunTaskRequest
| null | undefined, {} | null | undefined>
void
runTask(request, callback)
runTask
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRunTaskRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
ITask
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IRunTaskRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.ITask
, protos.google.cloud.tasks.v2beta2.IRunTaskRequest
| null | undefined, {} | null | undefined>
void
setIamPolicy(request, options)
setIamPolicy
(
request
?:
protos
.
google
.
iam
.
v1
.
ISetIamPolicyRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
iam
.
v1
.
IPolicy
,
protos
.
google
.
iam
.
v1
.
ISetIamPolicyRequest
|
undefined
,
{}
|
undefined
]>;
Sets the access control policy for a . Replaces any existing policy.
Note: The Cloud Console does not check queue-level IAM permissions yet. Project-level permissions are required to use the Cloud Console.
Authorization requires the following [Google IAM]( https://cloud.google.com/iam ) permission on the specified resource parent:
* cloudtasks.queues.setIamPolicy
request
options
Promise
<[ protos.google.iam.v1.IPolicy
, protos.google.iam.v1.ISetIamPolicyRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing Policy . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* REQUIRED: The resource for which the policy is being specified.
* See the operation documentation for the appropriate value for this field.
*/
// const resource = 'abc123'
/**
* REQUIRED: The complete policy to be applied to the `resource`. The size of
* the policy is limited to a few 10s of KB. An empty policy is a
* valid policy but certain Cloud Platform services (such as Projects)
* might reject them.
*/
// const policy = {}
/**
* OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only
* the fields in the mask will be modified. If no mask is provided, the
* following default mask is used:
* `paths: "bindings, etag"`
*/
// const updateMask = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callSetIamPolicy
()
{
// Construct request
const
request
=
{
resource
,
policy
,
};
// Run request
const
response
=
await
tasksClient
.
setIamPolicy
(
request
);
console
.
log
(
response
);
}
callSetIamPolicy
();
setIamPolicy(request, options, callback)
setIamPolicy
(
request
:
protos
.
google
.
iam
.
v1
.
ISetIamPolicyRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
iam
.
v1
.
IPolicy
,
protos
.
google
.
iam
.
v1
.
ISetIamPolicyRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.iam.v1.IPolicy
, protos.google.iam.v1.ISetIamPolicyRequest
| null | undefined, {} | null | undefined>
void
setIamPolicy(request, callback)
setIamPolicy
(
request
:
protos
.
google
.
iam
.
v1
.
ISetIamPolicyRequest
,
callback
:
Callback<protos
.
google
.
iam
.
v1
.
IPolicy
,
protos
.
google
.
iam
.
v1
.
ISetIamPolicyRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.iam.v1.IPolicy
, protos.google.iam.v1.ISetIamPolicyRequest
| null | undefined, {} | null | undefined>
void
taskPath(project, location, queue, task)
taskPath
(
project
:
string
,
location
:
string
,
queue
:
string
,
task
:
string
)
:
string
;
Return a fully-qualified task resource name string.
project
string
location
string
queue
string
task
string
string
{string} Resource name string.
testIamPermissions(request, options)
testIamPermissions
(
request
?:
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsResponse
,
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsRequest
|
undefined
,
{}
|
undefined
]>;
Returns permissions that a caller has on a . If the resource does not exist, this will return an empty set of permissions, not a error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
request
options
Promise
<[ protos.google.iam.v1.ITestIamPermissionsResponse
, protos.google.iam.v1.ITestIamPermissionsRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing TestIamPermissionsResponse . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* REQUIRED: The resource for which the policy detail is being requested.
* See the operation documentation for the appropriate value for this field.
*/
// const resource = 'abc123'
/**
* The set of permissions to check for the `resource`. Permissions with
* wildcards (such as '*' or 'storage.*') are not allowed. For more
* information see
* IAM Overview (https://cloud.google.com/iam/docs/overview#permissions).
*/
// const permissions = ['abc','def']
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callTestIamPermissions
()
{
// Construct request
const
request
=
{
resource
,
permissions
,
};
// Run request
const
response
=
await
tasksClient
.
testIamPermissions
(
request
);
console
.
log
(
response
);
}
callTestIamPermissions
();
testIamPermissions(request, options, callback)
testIamPermissions
(
request
:
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
iam
.
v1
.
ITestIamPermissionsResponse
,
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.iam.v1.ITestIamPermissionsResponse
, protos.google.iam.v1.ITestIamPermissionsRequest
| null | undefined, {} | null | undefined>
void
testIamPermissions(request, callback)
testIamPermissions
(
request
:
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsRequest
,
callback
:
Callback<protos
.
google
.
iam
.
v1
.
ITestIamPermissionsResponse
,
protos
.
google
.
iam
.
v1
.
ITestIamPermissionsRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.iam.v1.ITestIamPermissionsResponse
, protos.google.iam.v1.ITestIamPermissionsRequest
| null | undefined, {} | null | undefined>
void
updateQueue(request, options)
updateQueue
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUpdateQueueRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUpdateQueueRequest
|
undefined
,
{}
|
undefined
]>;
Updates a queue.
This method creates the queue if it does not exist and updates the queue if it does exist.
Queues created with this method allow tasks to live for a maximum of 31 days. After a task is 31 days old, the task will be deleted regardless of whether it was dispatched or not.
WARNING: Using this method may have unintended 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 queue.yaml]( https://cloud.google.com/tasks/docs/queue-yaml
) before using this method.
request
options
Promise
<[ protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IUpdateQueueRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The queue to create or update.
* The queue's name google.cloud.tasks.v2beta2.Queue.name must be
* specified.
* Output only fields cannot be modified using UpdateQueue.
* Any value specified for an output only field will be ignored.
* The queue's name google.cloud.tasks.v2beta2.Queue.name cannot be
* changed.
*/
// const queue = {}
/**
* A mask used to specify which fields of the queue are being updated.
* If empty, then all fields will be updated.
*/
// const updateMask = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callUpdateQueue
()
{
// Construct request
const
request
=
{
queue
,
};
// Run request
const
response
=
await
tasksClient
.
updateQueue
(
request
);
console
.
log
(
response
);
}
callUpdateQueue
();
updateQueue(request, options, callback)
updateQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUpdateQueueRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUpdateQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IUpdateQueueRequest
| null | undefined, {} | null | undefined>
void
updateQueue(request, callback)
updateQueue
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUpdateQueueRequest
,
callback
:
Callback<protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IQueue
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUpdateQueueRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.cloud.tasks.v2beta2.IQueue
, protos.google.cloud.tasks.v2beta2.IUpdateQueueRequest
| null | undefined, {} | null | undefined>
void
uploadQueueYaml(request, options)
uploadQueueYaml
(
request
?:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUploadQueueYamlRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUploadQueueYamlRequest
|
undefined
,
{}
|
undefined
]>;
Update queue list by uploading a queue.yaml file.
The queue.yaml file is supplied in the request body as a YAML encoded string. This method was added to support gcloud clients versions before 322.0.0. New clients should use CreateQueue instead of this method.
request
options
Promise
<[ protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IUploadQueueYamlRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing Empty . Please see the documentation for more details and examples.
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The App ID is supplied as an HTTP parameter. Unlike internal
* usage of App ID, it does not include a region prefix. Rather, the App ID
* represents the Project ID against which to make the request.
*/
// const appId = 'abc123'
/**
* The http body contains the queue.yaml file which used to update queue lists
*/
// const httpBody = {}
// Imports the Tasks library
const
{
CloudTasksClient
}
=
require
(
' @google-cloud/tasks
'
).
v2beta2
;
// Instantiates a client
const
tasksClient
=
new
CloudTasksClient
();
async
function
callUploadQueueYaml
()
{
// Construct request
const
request
=
{
appId
,
};
// Run request
const
response
=
await
tasksClient
.
uploadQueueYaml
(
request
);
console
.
log
(
response
);
}
callUploadQueueYaml
();
uploadQueueYaml(request, options, callback)
uploadQueueYaml
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUploadQueueYamlRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUploadQueueYamlRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IUploadQueueYamlRequest
| null | undefined, {} | null | undefined>
void
uploadQueueYaml(request, callback)
uploadQueueYaml
(
request
:
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUploadQueueYamlRequest
,
callback
:
Callback<protos
.
google
.
protobuf
.
IEmpty
,
protos
.
google
.
cloud
.
tasks
.
v2beta2
.
IUploadQueueYamlRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.protobuf.IEmpty
, protos.google.cloud.tasks.v2beta2.IUploadQueueYamlRequest
| null | undefined, {} | null | undefined>
void