Index
CloudScheduler
(interface)AppEngineHttpTarget
(message)AppEngineRouting
(message)CreateJobRequest
(message)DeleteJobRequest
(message)GetJobRequest
(message)HttpMethod
(enum)HttpTarget
(message)Job
(message)Job.State
(enum)ListJobsRequest
(message)ListJobsResponse
(message)OAuthToken
(message)OidcToken
(message)PauseJobRequest
(message)PubsubTarget
(message)ResumeJobRequest
(message)RetryConfig
(message)RunJobRequest
(message)UpdateJobRequest
(message)
CloudScheduler
The Cloud Scheduler API allows external entities to reliably schedule asynchronous jobs.
CreateJob |
---|
Creates a job.
|
DeleteJob |
---|
Deletes a job.
|
GetJob |
---|
Gets a job.
|
ListJobs |
---|
Lists jobs.
|
PauseJob |
---|
Pauses a job. If a job is paused then the system will stop executing the job until it is re-enabled via
|
ResumeJob |
---|
Resume a job. This method reenables a job after it has been
|
RunJob |
---|
Forces a job to run now. When this method is called, Cloud Scheduler will dispatch the job, even if the job is already running.
|
UpdateJob |
---|
Updates a job. If successful, the updated If UpdateJob does not successfully return, it is possible for the job to be in an
|
AppEngineHttpTarget
App Engine target. The job will be pushed to a job handler by means of an HTTP request via an http_method
such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an HTTP response code in the range [200 - 299]. Error 503 is considered an App Engine system error instead of an application error. Requests returning error 503 will be retried regardless of retry configuration and not counted against retry counts. Any other response code, or a failure to receive a response before the deadline, constitutes a failed attempt.
Fields | |
---|---|
http_method |
The HTTP method to use for the request. PATCH and OPTIONS are not permitted. |
app_engine_routing |
App Engine Routing setting for the job. |
relative_uri |
The relative URI. The relative URL must begin with "/" and must be a valid HTTP relative URL. It can contain a path, query string arguments, and |
headers |
HTTP request headers. This map contains the header field names and values. Headers can be set when the job is created. Cloud Scheduler sets some headers to default values:
If the job has a
The headers below are output only. They cannot be set or overridden:
In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler. |
body |
Body. HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It will result in invalid argument error to set a body on a job with an incompatible |
AppEngineRouting
App Engine Routing.
For more information about services, versions, and instances see An Overview of App Engine, Microservices Architecture on Google App Engine, App Engine Standard request routing, and App Engine Flex request routing.
Fields | |
---|---|
service |
App service. By default, the job is sent to the service which is the default service when the job is attempted. |
version |
App version. By default, the job is sent to the version which is the default version when the job is attempted. |
instance |
App instance. By default, the job is sent to an instance which is available when the job is attempted. Requests can only be sent to a specific instance if manual scaling is used in App Engine Standard. App Engine Flex does not support instances. For more information, see App Engine Standard request routing and App Engine Flex request routing. |
host |
Output only. The host that the job is sent to. For more information about how App Engine requests are routed, see here. The host is constructed as:
If If If If |
CreateJobRequest
Request message for CreateJob
.
Fields | |
---|---|
parent |
Required. The location name. For example: Authorization requires the following IAM permission on the specified resource
|
job |
Required. The job to add. The user can optionally specify a name for the job in |
DeleteJobRequest
Request message for deleting a job using DeleteJob
.
Fields | |
---|---|
name |
Required. The job name. For example: Authorization requires the following IAM permission on the specified resource
|
GetJobRequest
Request message for GetJob
.
Fields | |
---|---|
name |
Required. The job name. For example: Authorization requires the following IAM permission on the specified resource
|
HttpMethod
The HTTP method used to execute the job.
Enums | |
---|---|
HTTP_METHOD_UNSPECIFIED |
HTTP method unspecified. Defaults to POST. |
POST |
HTTP POST |
GET |
HTTP GET |
HEAD |
HTTP HEAD |
PUT |
HTTP PUT |
DELETE |
HTTP DELETE |
PATCH |
HTTP PATCH |
OPTIONS |
HTTP OPTIONS |
HttpTarget
Http target. The job will be pushed to the job handler by means of an HTTP request via an http_method
such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an HTTP response code in the range [200 - 299]. A failure to receive a response constitutes a failed execution. For a redirected request, the response returned by the redirected request is considered.
Fields | |
---|---|
uri |
Required. The full URI path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples of valid values for |
http_method |
Which HTTP method to use for the request. |
headers |
HTTP request headers. This map contains the header field names and values. The user can specify HTTP request headers to send with the job's HTTP request. Repeated headers are not supported, but a header value can contain commas. The following headers represent a subset of the headers that accompany the job's HTTP request. Some HTTP request headers are ignored or replaced. A partial list of headers that are ignored or replaced is below:
If the job has a
The total size of headers must be less than 80KB. |
body |
HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a job with an incompatible |
Union field If specified, all |
|
oauth_token |
If specified, an OAuth token will be generated and attached as an This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com. |
oidc_token |
If specified, an OIDC token will be generated and attached as an This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself. |
Job
Configuration for a job. The maximum allowed size for a job is 1MB.
Fields | |
---|---|
name |
Optionally caller-specified in The job name. For example:
|
description |
Optionally caller-specified in A human-readable description for the job. This string must not contain more than 500 characters. |
schedule |
Required, except when used with Describes the schedule on which the job will be executed. The schedule can be either of the following types: As a general rule, execution If |
time_zone |
Specifies the time zone to be used in interpreting Note that some time zones include a provision for daylight savings time. The rules for daylight saving time are determined by the chosen tz. For UTC use the string "utc". If a time zone is not specified, the default will be in UTC (also known as GMT). |
user_update_time |
Output only. The creation time of the job. |
state |
Output only. State of the job. |
status |
Output only. The response from the target for the last attempted execution. |
schedule_time |
Output only. The next time the job is scheduled. Note that this may be a retry of a previously failed attempt or the next execution time according to the schedule. |
last_attempt_time |
Output only. The time the last job attempt started. |
retry_config |
Settings that determine the retry behavior. |
attempt_deadline |
The deadline for job attempts. If the request handler does not respond by this deadline then the request is cancelled and the attempt is marked as a The default and the allowed values depend on the type of target:
|
Union field Delivery settings containing destination and parameters. |
|
pubsub_target |
Pub/Sub target. |
app_engine_http_target |
App Engine HTTP target. |
http_target |
HTTP target. |
State
State of the job.
Enums | |
---|---|
STATE_UNSPECIFIED |
Unspecified state. |
ENABLED |
The job is executing normally. |
PAUSED |
The job is paused by the user. It will not execute. A user can intentionally pause the job using PauseJobRequest . |
DISABLED |
The job is disabled by the system due to error. The user cannot directly set a job to be disabled. |
UPDATE_FAILED |
The job state resulting from a failed CloudScheduler.UpdateJob operation. To recover a job from this state, retry CloudScheduler.UpdateJob until a successful response is received. |
ListJobsRequest
Request message for listing jobs using ListJobs
.
Fields | |
---|---|
parent |
Required. The location name. For example: Authorization requires the following IAM permission on the specified resource
|
page_size |
Requested page size. The maximum page size is 500. If unspecified, the page size will be the maximum. Fewer jobs than requested might be returned, even if more jobs exist; use next_page_token to determine if more jobs exist. |
page_token |
A token identifying a page of results the server will 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 |
ListJobsResponse
Response message for listing jobs using ListJobs
.
Fields | |
---|---|
jobs[] |
The list of jobs. |
next_page_token |
A token to retrieve next page of results. Pass this value in the The page token is valid for only 2 hours. |
OAuthToken
Contains information needed for generating an OAuth token. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
Fields | |
---|---|
service_account_email |
Service account email to be used for generating OAuth token. The service account must be within the same project as the job. The caller must have iam.serviceAccounts.actAs permission for the service account. |
scope |
OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used. |
OidcToken
Contains information needed for generating an OpenID Connect token. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
Fields | |
---|---|
service_account_email |
Service account email to be used for generating OIDC token. The service account must be within the same project as the job. The caller must have iam.serviceAccounts.actAs permission for the service account. |
audience |
Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used. |
PauseJobRequest
Request message for PauseJob
.
Fields | |
---|---|
name |
Required. The job name. For example: Authorization requires the following IAM permission on the specified resource
|
PubsubTarget
Pub/Sub target. The job will be delivered by publishing a message to the given Pub/Sub topic.
Fields | |
---|---|
topic_name |
Required. The name of the Cloud Pub/Sub topic to which messages will be published when a job is delivered. The topic name must be in the same format as required by Pub/Sub's PublishRequest.name, for example The topic must be in the same project as the Cloud Scheduler job. |
data |
The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute. |
attributes |
Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute. |
ResumeJobRequest
Request message for ResumeJob
.
Fields | |
---|---|
name |
Required. The job name. For example: Authorization requires the following IAM permission on the specified resource
|
RetryConfig
Settings that determine the retry behavior.
By default, if a job does not complete successfully (meaning that an acknowledgement is not received from the handler, then it will be retried with exponential backoff according to the settings in RetryConfig
.
Fields | |
---|---|
retry_count |
The number of attempts that the system will make to run a job using the exponential backoff procedure described by The default value of retry_count is zero. If retry_count is 0, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will wait for the next scheduled execution time. Setting retry_count to 0 does not prevent failed jobs from running according to schedule after the failure. If retry_count is set to a non-zero number then Cloud Scheduler will retry failed attempts, using exponential backoff, retry_count times, or until the next scheduled execution time, whichever comes first. Values greater than 5 and negative values are not allowed. |
max_retry_duration |
The time limit for retrying a failed job, measured from time when an execution was first attempted. If specified with The default value for max_retry_duration is zero, which means retry duration is unlimited. |
min_backoff_duration |
The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds. |
max_backoff_duration |
The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour. |
max_doublings |
The time between retries will double A job's retry interval starts at For example, if The default value of this field is 5. |
RunJobRequest
Request message for forcing a job to run now using RunJob
.
Fields | |
---|---|
name |
Required. The job name. For example: Authorization requires the following IAM permission on the specified resource
|
UpdateJobRequest
Request message for UpdateJob
.
Fields | |
---|---|
job |
Required. The new job properties. Output only fields cannot be modified using UpdateJob. Any value specified for an output only field will be ignored. Authorization requires the following IAM permission on the specified resource
|
update_mask |
A mask used to specify which fields of the job are being updated. |