google.cloud.scheduler. v1
Source: index.
Properties
Properties
HttpMethod number
The HTTP method used to execute the job.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
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 |
State number
State of the job.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
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. |
Abstract types
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.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
httpMethod |
number |
|
The HTTP method to use for the request. PATCH and OPTIONS are not permitted. The number should be among the values of HttpMethod |
|
appEngineRouting |
Object |
|
App Engine Routing setting for the job. This object should have the same structure as AppEngineRouting |
|
relativeUri |
string |
|
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 |
Object with string properties |
|
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 an body, Cloud Scheduler sets the following headers:
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 |
string |
|
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 HttpMethod. |
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.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
service |
string |
|
App service. By default, the job is sent to the service which is the default service when the job is attempted. |
|
version |
string |
|
App version. By default, the job is sent to the version which is the default version when the job is attempted. |
|
instance |
string |
|
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 |
string |
|
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 service is empty, then the job will be sent to the service which is the default service when the job is attempted. If version is empty, then the job will be sent to the version which is the default version when the job is attempted. If instance is empty, then the job will be sent to an instance which is available when the job is attempted. If service, version, or instance is invalid, then the job will be sent to the default version of the default service when the job is attempted. |
CreateJobRequest
Request message for CreateJob.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
parent |
string |
|
Required. The location name. For example:
|
|
job |
Object |
|
Required. The job to add. The user can optionally specify a name for the job in name. name cannot be the same as an existing job. If a name is not specified then the system will generate a random unique name that will be returned (name) in the response. This object should have the same structure as Job |
DeleteJobRequest
Request message for deleting a job using DeleteJob.
Property
| Name | Type | Optional | Description |
|---|---|---|---|
|
name |
string |
|
Required. The job name. For example:
|
GetJobRequest
Request message for GetJob.
Property
| Name | Type | Optional | Description |
|---|---|---|---|
|
name |
string |
|
Required. The job name. For example:
|
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.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
uri |
string |
|
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 uri are:
|
|
httpMethod |
number |
|
Which HTTP method to use for the request. The number should be among the values of HttpMethod |
|
headers |
Object with string properties |
|
The user can specify HTTP request headers to send with the job's HTTP request. This map contains the header field names and values. Repeated headers are not supported, but a header value can contain commas. These headers represent a subset of the headers that will accompany the job's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is below:
The total size of headers must be less than 80KB. |
|
body |
string |
|
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 HttpMethod. |
|
oauthToken |
Object |
|
If specified, an
OAuth token
will be generated and attached as an This type of authorization should be used when sending requests to a GCP endpoint. This object should have the same structure as OAuthToken |
|
oidcToken |
Object |
|
If specified, an
OIDC
token will be generated and attached as an This type of authorization should be used when sending requests to third party endpoints or Cloud Run. This object should have the same structure as OidcToken |
Job
Configuration for a job. The maximum allowed size for a job is 100KB.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
name |
string |
|
Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example:
|
|
description |
string |
|
Optionally caller-specified in CreateJob or UpdateJob. A human-readable description for the job. This string must not contain more than 500 characters. |
|
pubsubTarget |
Object |
|
Pub/Sub target. This object should have the same structure as PubsubTarget |
|
appEngineHttpTarget |
Object |
|
App Engine HTTP target. This object should have the same structure as AppEngineHttpTarget |
|
httpTarget |
Object |
|
HTTP target. This object should have the same structure as HttpTarget |
|
schedule |
string |
|
Required, except when used with UpdateJob. 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 retry_count > 0 and a job attempt fails, the job will be tried a total of retry_count times, with exponential backoff, until the next scheduled start time. |
|
timeZone |
string |
|
Specifies the time zone to be used in interpreting schedule. The value of this field must be a time zone name from the tz database. 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). |
|
userUpdateTime |
Object |
|
Output only. The creation time of the job. This object should have the same structure as Timestamp |
|
state |
number |
|
Output only. State of the job. The number should be among the values of State |
|
status |
Object |
|
Output only. The response from the target for the last attempted execution. This object should have the same structure as Status |
|
scheduleTime |
Object |
|
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. This object should have the same structure as Timestamp |
|
lastAttemptTime |
Object |
|
Output only. The time the last job attempt started. This object should have the same structure as Timestamp |
|
retryConfig |
Object |
|
Settings that determine the retry behavior. This object should have the same structure as RetryConfig |
|
attemptDeadline |
Object |
|
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 allowed duration for this deadline is:
This object should have the same structure as Duration |
ListJobsRequest
Request message for listing jobs using ListJobs.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
parent |
string |
|
Required. The location name. For example:
|
|
pageSize |
number |
|
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. |
|
pageToken |
string |
|
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 next_page_token returned from the previous call to ListJobs. It is an error to switch the value of filter or order_by while iterating through pages. |
ListJobsResponse
Response message for listing jobs using ListJobs.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
jobs |
Array of Object |
|
The list of jobs. This object should have the same structure as Job |
|
nextPageToken |
string |
|
A token to retrieve next page of results. Pass this value in the page_token field in the subsequent call to ListJobs to retrieve the next page of results. If this is empty it indicates that there are no more results through which to paginate. The page token is valid for only 2 hours. |
OAuthToken
Contains information needed for generating an OAuth token. This type of authorization should be used when sending requests to a GCP endpoint.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
serviceAccountEmail |
string |
|
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 |
string |
|
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 should be used when sending requests to third party endpoints or Cloud Run.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
serviceAccountEmail |
string |
|
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 |
string |
|
Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used. |
PauseJobRequest
Request message for PauseJob.
Property
| Name | Type | Optional | Description |
|---|---|---|---|
|
name |
string |
|
Required. The job name. For example:
|
PubsubTarget
Pub/Sub target. The job will be delivered by publishing a message to the given Pub/Sub topic.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
topicName |
string |
|
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 PubSub's
PublishRequest.name,
for example The topic must be in the same project as the Cloud Scheduler job. |
|
data |
string |
|
The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute. |
|
attributes |
Object with string properties |
|
Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute. |
ResumeJobRequest
Request message for ResumeJob.
Property
| Name | Type | Optional | Description |
|---|---|---|---|
|
name |
string |
|
Required. The job name. For example:
|
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.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
retryCount |
number |
|
The number of attempts that the system will make to run a job using the exponential backoff procedure described by max_doublings. The default value of retry_count is zero. If retry_count is zero, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will wait for the next scheduled execution time. 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. |
|
maxRetryDuration |
Object |
|
The time limit for retrying a failed job, measured from time when an execution was first attempted. If specified with retry_count, the job will be retried until both limits are reached. The default value for max_retry_duration is zero, which means retry duration is unlimited. This object should have the same structure as Duration |
|
minBackoffDuration |
Object |
|
The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds. This object should have the same structure as Duration |
|
maxBackoffDuration |
Object |
|
The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour. This object should have the same structure as Duration |
|
maxDoublings |
number |
|
The time between retries will double A job's retry interval starts at
min_backoff_duration, then doubles
For example, if min_backoff_duration is
10s, max_backoff_duration is 300s, and
The default value of this field is 5. |
RunJobRequest
Request message for forcing a job to run now using RunJob.
Property
| Name | Type | Optional | Description |
|---|---|---|---|
|
name |
string |
|
Required. The job name. For example:
|
UpdateJobRequest
Request message for UpdateJob.
Properties
| Name | Type | Optional | Description |
|---|---|---|---|
|
job |
Object |
|
Required. The new job properties. name must be specified. Output only fields cannot be modified using UpdateJob. Any value specified for an output only field will be ignored. This object should have the same structure as Job |
|
updateMask |
Object |
|
A mask used to specify which fields of the job are being updated. This object should have the same structure as FieldMask |