Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.cloudscheduler/v1beta1.Job
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a job.
Create Job Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Job(name: string, args?: JobArgs, opts?: CustomResourceOptions);@overload
def Job(resource_name: str,
        args: Optional[JobArgs] = None,
        opts: Optional[ResourceOptions] = None)
@overload
def Job(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        app_engine_http_target: Optional[AppEngineHttpTargetArgs] = None,
        attempt_deadline: Optional[str] = None,
        description: Optional[str] = None,
        http_target: Optional[HttpTargetArgs] = None,
        legacy_app_engine_cron: Optional[bool] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        pubsub_target: Optional[PubsubTargetArgs] = None,
        retry_config: Optional[RetryConfigArgs] = None,
        schedule: Optional[str] = None,
        time_zone: Optional[str] = None)func NewJob(ctx *Context, name string, args *JobArgs, opts ...ResourceOption) (*Job, error)public Job(string name, JobArgs? args = null, CustomResourceOptions? opts = null)type: google-native:cloudscheduler/v1beta1:Job
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplejobResourceResourceFromCloudschedulerv1beta1 = new GoogleNative.CloudScheduler.V1Beta1.Job("examplejobResourceResourceFromCloudschedulerv1beta1", new()
{
    AppEngineHttpTarget = new GoogleNative.CloudScheduler.V1Beta1.Inputs.AppEngineHttpTargetArgs
    {
        AppEngineRouting = new GoogleNative.CloudScheduler.V1Beta1.Inputs.AppEngineRoutingArgs
        {
            Instance = "string",
            Service = "string",
            Version = "string",
        },
        Body = "string",
        Headers = 
        {
            { "string", "string" },
        },
        HttpMethod = GoogleNative.CloudScheduler.V1Beta1.AppEngineHttpTargetHttpMethod.HttpMethodUnspecified,
        RelativeUri = "string",
    },
    AttemptDeadline = "string",
    Description = "string",
    HttpTarget = new GoogleNative.CloudScheduler.V1Beta1.Inputs.HttpTargetArgs
    {
        Uri = "string",
        Body = "string",
        Headers = 
        {
            { "string", "string" },
        },
        HttpMethod = GoogleNative.CloudScheduler.V1Beta1.HttpTargetHttpMethod.HttpMethodUnspecified,
        OauthToken = new GoogleNative.CloudScheduler.V1Beta1.Inputs.OAuthTokenArgs
        {
            Scope = "string",
            ServiceAccountEmail = "string",
        },
        OidcToken = new GoogleNative.CloudScheduler.V1Beta1.Inputs.OidcTokenArgs
        {
            Audience = "string",
            ServiceAccountEmail = "string",
        },
    },
    LegacyAppEngineCron = false,
    Location = "string",
    Name = "string",
    Project = "string",
    PubsubTarget = new GoogleNative.CloudScheduler.V1Beta1.Inputs.PubsubTargetArgs
    {
        TopicName = "string",
        Attributes = 
        {
            { "string", "string" },
        },
        Data = "string",
    },
    RetryConfig = new GoogleNative.CloudScheduler.V1Beta1.Inputs.RetryConfigArgs
    {
        MaxBackoffDuration = "string",
        MaxDoublings = 0,
        MaxRetryDuration = "string",
        MinBackoffDuration = "string",
        RetryCount = 0,
    },
    Schedule = "string",
    TimeZone = "string",
});
example, err := cloudschedulerv1beta1.NewJob(ctx, "examplejobResourceResourceFromCloudschedulerv1beta1", &cloudschedulerv1beta1.JobArgs{
	AppEngineHttpTarget: &cloudscheduler.AppEngineHttpTargetArgs{
		AppEngineRouting: &cloudscheduler.AppEngineRoutingArgs{
			Instance: pulumi.String("string"),
			Service:  pulumi.String("string"),
			Version:  pulumi.String("string"),
		},
		Body: pulumi.String("string"),
		Headers: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		HttpMethod:  cloudschedulerv1beta1.AppEngineHttpTargetHttpMethodHttpMethodUnspecified,
		RelativeUri: pulumi.String("string"),
	},
	AttemptDeadline: pulumi.String("string"),
	Description:     pulumi.String("string"),
	HttpTarget: &cloudscheduler.HttpTargetArgs{
		Uri:  pulumi.String("string"),
		Body: pulumi.String("string"),
		Headers: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		HttpMethod: cloudschedulerv1beta1.HttpTargetHttpMethodHttpMethodUnspecified,
		OauthToken: &cloudscheduler.OAuthTokenArgs{
			Scope:               pulumi.String("string"),
			ServiceAccountEmail: pulumi.String("string"),
		},
		OidcToken: &cloudscheduler.OidcTokenArgs{
			Audience:            pulumi.String("string"),
			ServiceAccountEmail: pulumi.String("string"),
		},
	},
	LegacyAppEngineCron: pulumi.Bool(false),
	Location:            pulumi.String("string"),
	Name:                pulumi.String("string"),
	Project:             pulumi.String("string"),
	PubsubTarget: &cloudscheduler.PubsubTargetArgs{
		TopicName: pulumi.String("string"),
		Attributes: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		Data: pulumi.String("string"),
	},
	RetryConfig: &cloudscheduler.RetryConfigArgs{
		MaxBackoffDuration: pulumi.String("string"),
		MaxDoublings:       pulumi.Int(0),
		MaxRetryDuration:   pulumi.String("string"),
		MinBackoffDuration: pulumi.String("string"),
		RetryCount:         pulumi.Int(0),
	},
	Schedule: pulumi.String("string"),
	TimeZone: pulumi.String("string"),
})
var examplejobResourceResourceFromCloudschedulerv1beta1 = new Job("examplejobResourceResourceFromCloudschedulerv1beta1", JobArgs.builder()
    .appEngineHttpTarget(AppEngineHttpTargetArgs.builder()
        .appEngineRouting(AppEngineRoutingArgs.builder()
            .instance("string")
            .service("string")
            .version("string")
            .build())
        .body("string")
        .headers(Map.of("string", "string"))
        .httpMethod("HTTP_METHOD_UNSPECIFIED")
        .relativeUri("string")
        .build())
    .attemptDeadline("string")
    .description("string")
    .httpTarget(HttpTargetArgs.builder()
        .uri("string")
        .body("string")
        .headers(Map.of("string", "string"))
        .httpMethod("HTTP_METHOD_UNSPECIFIED")
        .oauthToken(OAuthTokenArgs.builder()
            .scope("string")
            .serviceAccountEmail("string")
            .build())
        .oidcToken(OidcTokenArgs.builder()
            .audience("string")
            .serviceAccountEmail("string")
            .build())
        .build())
    .legacyAppEngineCron(false)
    .location("string")
    .name("string")
    .project("string")
    .pubsubTarget(PubsubTargetArgs.builder()
        .topicName("string")
        .attributes(Map.of("string", "string"))
        .data("string")
        .build())
    .retryConfig(RetryConfigArgs.builder()
        .maxBackoffDuration("string")
        .maxDoublings(0)
        .maxRetryDuration("string")
        .minBackoffDuration("string")
        .retryCount(0)
        .build())
    .schedule("string")
    .timeZone("string")
    .build());
examplejob_resource_resource_from_cloudschedulerv1beta1 = google_native.cloudscheduler.v1beta1.Job("examplejobResourceResourceFromCloudschedulerv1beta1",
    app_engine_http_target={
        "app_engine_routing": {
            "instance": "string",
            "service": "string",
            "version": "string",
        },
        "body": "string",
        "headers": {
            "string": "string",
        },
        "http_method": google_native.cloudscheduler.v1beta1.AppEngineHttpTargetHttpMethod.HTTP_METHOD_UNSPECIFIED,
        "relative_uri": "string",
    },
    attempt_deadline="string",
    description="string",
    http_target={
        "uri": "string",
        "body": "string",
        "headers": {
            "string": "string",
        },
        "http_method": google_native.cloudscheduler.v1beta1.HttpTargetHttpMethod.HTTP_METHOD_UNSPECIFIED,
        "oauth_token": {
            "scope": "string",
            "service_account_email": "string",
        },
        "oidc_token": {
            "audience": "string",
            "service_account_email": "string",
        },
    },
    legacy_app_engine_cron=False,
    location="string",
    name="string",
    project="string",
    pubsub_target={
        "topic_name": "string",
        "attributes": {
            "string": "string",
        },
        "data": "string",
    },
    retry_config={
        "max_backoff_duration": "string",
        "max_doublings": 0,
        "max_retry_duration": "string",
        "min_backoff_duration": "string",
        "retry_count": 0,
    },
    schedule="string",
    time_zone="string")
const examplejobResourceResourceFromCloudschedulerv1beta1 = new google_native.cloudscheduler.v1beta1.Job("examplejobResourceResourceFromCloudschedulerv1beta1", {
    appEngineHttpTarget: {
        appEngineRouting: {
            instance: "string",
            service: "string",
            version: "string",
        },
        body: "string",
        headers: {
            string: "string",
        },
        httpMethod: google_native.cloudscheduler.v1beta1.AppEngineHttpTargetHttpMethod.HttpMethodUnspecified,
        relativeUri: "string",
    },
    attemptDeadline: "string",
    description: "string",
    httpTarget: {
        uri: "string",
        body: "string",
        headers: {
            string: "string",
        },
        httpMethod: google_native.cloudscheduler.v1beta1.HttpTargetHttpMethod.HttpMethodUnspecified,
        oauthToken: {
            scope: "string",
            serviceAccountEmail: "string",
        },
        oidcToken: {
            audience: "string",
            serviceAccountEmail: "string",
        },
    },
    legacyAppEngineCron: false,
    location: "string",
    name: "string",
    project: "string",
    pubsubTarget: {
        topicName: "string",
        attributes: {
            string: "string",
        },
        data: "string",
    },
    retryConfig: {
        maxBackoffDuration: "string",
        maxDoublings: 0,
        maxRetryDuration: "string",
        minBackoffDuration: "string",
        retryCount: 0,
    },
    schedule: "string",
    timeZone: "string",
});
type: google-native:cloudscheduler/v1beta1:Job
properties:
    appEngineHttpTarget:
        appEngineRouting:
            instance: string
            service: string
            version: string
        body: string
        headers:
            string: string
        httpMethod: HTTP_METHOD_UNSPECIFIED
        relativeUri: string
    attemptDeadline: string
    description: string
    httpTarget:
        body: string
        headers:
            string: string
        httpMethod: HTTP_METHOD_UNSPECIFIED
        oauthToken:
            scope: string
            serviceAccountEmail: string
        oidcToken:
            audience: string
            serviceAccountEmail: string
        uri: string
    legacyAppEngineCron: false
    location: string
    name: string
    project: string
    pubsubTarget:
        attributes:
            string: string
        data: string
        topicName: string
    retryConfig:
        maxBackoffDuration: string
        maxDoublings: 0
        maxRetryDuration: string
        minBackoffDuration: string
        retryCount: 0
    schedule: string
    timeZone: string
Job Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Job resource accepts the following input properties:
- AppEngine Pulumi.Http Target Google Native. Cloud Scheduler. V1Beta1. Inputs. App Engine Http Target 
- App Engine HTTP target.
- AttemptDeadline string
- 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 DEADLINE_EXCEEDEDfailure. The failed attempt can be viewed in execution logs. Cloud Scheduler will retry the job according to the RetryConfig. The default and the allowed values depend on the type of target: * For HTTP targets, the default is 3 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine HTTP targets, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. * For Pub/Sub targets, this field is ignored.
- 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.
- HttpTarget Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. Http Target 
- HTTP target.
- LegacyApp boolEngine Cron 
- Immutable. This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the job will be considered a legacy job. Note that App Engine Cron jobs have fewer features than Cloud Scheduler jobs, e.g., are only limited to App Engine targets.
- Location string
- Name string
- Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example: projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID. *PROJECT_IDcan contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projects *LOCATION_IDis the canonical ID for the job's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. *JOB_IDcan contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
- Project string
- PubsubTarget Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. Pubsub Target 
- Pub/Sub target.
- RetryConfig Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. Retry Config 
- Settings that determine the retry behavior.
- 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: * Crontab * English-like schedule As a general rule, execution n + 1of a job will not begin until executionnhas finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if then+1th execution is scheduled to run at 16:00 but thenth execution takes until 16:15, then+1th execution will not start until16:15. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. 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. 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.
- 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).
- AppEngine AppHttp Target Engine Http Target Args 
- App Engine HTTP target.
- AttemptDeadline string
- 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 DEADLINE_EXCEEDEDfailure. The failed attempt can be viewed in execution logs. Cloud Scheduler will retry the job according to the RetryConfig. The default and the allowed values depend on the type of target: * For HTTP targets, the default is 3 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine HTTP targets, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. * For Pub/Sub targets, this field is ignored.
- 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.
- HttpTarget HttpTarget Args 
- HTTP target.
- LegacyApp boolEngine Cron 
- Immutable. This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the job will be considered a legacy job. Note that App Engine Cron jobs have fewer features than Cloud Scheduler jobs, e.g., are only limited to App Engine targets.
- Location string
- Name string
- Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example: projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID. *PROJECT_IDcan contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projects *LOCATION_IDis the canonical ID for the job's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. *JOB_IDcan contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
- Project string
- PubsubTarget PubsubTarget Args 
- Pub/Sub target.
- RetryConfig RetryConfig Args 
- Settings that determine the retry behavior.
- 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: * Crontab * English-like schedule As a general rule, execution n + 1of a job will not begin until executionnhas finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if then+1th execution is scheduled to run at 16:00 but thenth execution takes until 16:15, then+1th execution will not start until16:15. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. 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. 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.
- 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).
- appEngine AppHttp Target Engine Http Target 
- App Engine HTTP target.
- attemptDeadline String
- 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 DEADLINE_EXCEEDEDfailure. The failed attempt can be viewed in execution logs. Cloud Scheduler will retry the job according to the RetryConfig. The default and the allowed values depend on the type of target: * For HTTP targets, the default is 3 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine HTTP targets, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. * For Pub/Sub targets, this field is ignored.
- 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.
- httpTarget HttpTarget 
- HTTP target.
- legacyApp BooleanEngine Cron 
- Immutable. This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the job will be considered a legacy job. Note that App Engine Cron jobs have fewer features than Cloud Scheduler jobs, e.g., are only limited to App Engine targets.
- location String
- name String
- Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example: projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID. *PROJECT_IDcan contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projects *LOCATION_IDis the canonical ID for the job's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. *JOB_IDcan contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
- project String
- pubsubTarget PubsubTarget 
- Pub/Sub target.
- retryConfig RetryConfig 
- Settings that determine the retry behavior.
- 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: * Crontab * English-like schedule As a general rule, execution n + 1of a job will not begin until executionnhas finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if then+1th execution is scheduled to run at 16:00 but thenth execution takes until 16:15, then+1th execution will not start until16:15. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. 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. 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.
- 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).
- appEngine AppHttp Target Engine Http Target 
- App Engine HTTP target.
- attemptDeadline string
- 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 DEADLINE_EXCEEDEDfailure. The failed attempt can be viewed in execution logs. Cloud Scheduler will retry the job according to the RetryConfig. The default and the allowed values depend on the type of target: * For HTTP targets, the default is 3 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine HTTP targets, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. * For Pub/Sub targets, this field is ignored.
- 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.
- httpTarget HttpTarget 
- HTTP target.
- legacyApp booleanEngine Cron 
- Immutable. This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the job will be considered a legacy job. Note that App Engine Cron jobs have fewer features than Cloud Scheduler jobs, e.g., are only limited to App Engine targets.
- location string
- name string
- Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example: projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID. *PROJECT_IDcan contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projects *LOCATION_IDis the canonical ID for the job's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. *JOB_IDcan contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
- project string
- pubsubTarget PubsubTarget 
- Pub/Sub target.
- retryConfig RetryConfig 
- Settings that determine the retry behavior.
- 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: * Crontab * English-like schedule As a general rule, execution n + 1of a job will not begin until executionnhas finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if then+1th execution is scheduled to run at 16:00 but thenth execution takes until 16:15, then+1th execution will not start until16:15. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. 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. 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.
- 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).
- app_engine_ Apphttp_ target Engine Http Target Args 
- App Engine HTTP target.
- attempt_deadline str
- 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 DEADLINE_EXCEEDEDfailure. The failed attempt can be viewed in execution logs. Cloud Scheduler will retry the job according to the RetryConfig. The default and the allowed values depend on the type of target: * For HTTP targets, the default is 3 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine HTTP targets, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. * For Pub/Sub targets, this field is ignored.
- description str
- Optionally caller-specified in CreateJob or UpdateJob. A human-readable description for the job. This string must not contain more than 500 characters.
- http_target HttpTarget Args 
- HTTP target.
- legacy_app_ boolengine_ cron 
- Immutable. This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the job will be considered a legacy job. Note that App Engine Cron jobs have fewer features than Cloud Scheduler jobs, e.g., are only limited to App Engine targets.
- location str
- name str
- Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example: projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID. *PROJECT_IDcan contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projects *LOCATION_IDis the canonical ID for the job's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. *JOB_IDcan contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
- project str
- pubsub_target PubsubTarget Args 
- Pub/Sub target.
- retry_config RetryConfig Args 
- Settings that determine the retry behavior.
- schedule str
- 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: * Crontab * English-like schedule As a general rule, execution n + 1of a job will not begin until executionnhas finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if then+1th execution is scheduled to run at 16:00 but thenth execution takes until 16:15, then+1th execution will not start until16:15. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. 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. 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.
- time_zone str
- 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).
- appEngine Property MapHttp Target 
- App Engine HTTP target.
- attemptDeadline String
- 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 DEADLINE_EXCEEDEDfailure. The failed attempt can be viewed in execution logs. Cloud Scheduler will retry the job according to the RetryConfig. The default and the allowed values depend on the type of target: * For HTTP targets, the default is 3 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine HTTP targets, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. * For Pub/Sub targets, this field is ignored.
- 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.
- httpTarget Property Map
- HTTP target.
- legacyApp BooleanEngine Cron 
- Immutable. This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the job will be considered a legacy job. Note that App Engine Cron jobs have fewer features than Cloud Scheduler jobs, e.g., are only limited to App Engine targets.
- location String
- name String
- Optionally caller-specified in CreateJob, after which it becomes output only. The job name. For example: projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID. *PROJECT_IDcan contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projects *LOCATION_IDis the canonical ID for the job's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. *JOB_IDcan contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
- project String
- pubsubTarget Property Map
- Pub/Sub target.
- retryConfig Property Map
- Settings that determine the retry behavior.
- 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: * Crontab * English-like schedule As a general rule, execution n + 1of a job will not begin until executionnhas finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if then+1th execution is scheduled to run at 16:00 but thenth execution takes until 16:15, then+1th execution will not start until16:15. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. 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. 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.
- 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).
Outputs
All input properties are implicitly available as output properties. Additionally, the Job resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- LastAttempt stringTime 
- The time the last job attempt started.
- ScheduleTime string
- 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.
- State string
- State of the job.
- Status
Pulumi.Google Native. Cloud Scheduler. V1Beta1. Outputs. Status Response 
- The response from the target for the last attempted execution.
- UserUpdate stringTime 
- The creation time of the job.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastAttempt stringTime 
- The time the last job attempt started.
- ScheduleTime string
- 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.
- State string
- State of the job.
- Status
StatusResponse 
- The response from the target for the last attempted execution.
- UserUpdate stringTime 
- The creation time of the job.
- id String
- The provider-assigned unique ID for this managed resource.
- lastAttempt StringTime 
- The time the last job attempt started.
- scheduleTime String
- 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.
- state String
- State of the job.
- status
StatusResponse 
- The response from the target for the last attempted execution.
- userUpdate StringTime 
- The creation time of the job.
- id string
- The provider-assigned unique ID for this managed resource.
- lastAttempt stringTime 
- The time the last job attempt started.
- scheduleTime string
- 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.
- state string
- State of the job.
- status
StatusResponse 
- The response from the target for the last attempted execution.
- userUpdate stringTime 
- The creation time of the job.
- id str
- The provider-assigned unique ID for this managed resource.
- last_attempt_ strtime 
- The time the last job attempt started.
- schedule_time str
- 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.
- state str
- State of the job.
- status
StatusResponse 
- The response from the target for the last attempted execution.
- user_update_ strtime 
- The creation time of the job.
- id String
- The provider-assigned unique ID for this managed resource.
- lastAttempt StringTime 
- The time the last job attempt started.
- scheduleTime String
- 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.
- state String
- State of the job.
- status Property Map
- The response from the target for the last attempted execution.
- userUpdate StringTime 
- The creation time of the job.
Supporting Types
AppEngineHttpTarget, AppEngineHttpTargetArgs        
- AppEngine Pulumi.Routing Google Native. Cloud Scheduler. V1Beta1. Inputs. App Engine Routing 
- App Engine Routing setting for the job.
- 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.
- Headers Dictionary<string, string>
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- HttpMethod Pulumi.Google Native. Cloud Scheduler. V1Beta1. App Engine Http Target Http Method 
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- AppEngine AppRouting Engine Routing 
- App Engine Routing setting for the job.
- 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.
- Headers map[string]string
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- HttpMethod AppEngine Http Target Http Method 
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- appEngine AppRouting Engine Routing 
- App Engine Routing setting for the job.
- 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.
- headers Map<String,String>
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- httpMethod AppEngine Http Target Http Method 
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- appEngine AppRouting Engine Routing 
- App Engine Routing setting for the job.
- 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.
- headers {[key: string]: string}
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- httpMethod AppEngine Http Target Http Method 
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- app_engine_ Approuting Engine Routing 
- App Engine Routing setting for the job.
- body str
- 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.
- headers Mapping[str, str]
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- http_method AppEngine Http Target Http Method 
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- relative_uri str
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- appEngine Property MapRouting 
- App Engine Routing setting for the job.
- 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.
- headers Map<String>
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- httpMethod "HTTP_METHOD_UNSPECIFIED" | "POST" | "GET" | "HEAD" | "PUT" | "DELETE" | "PATCH" | "OPTIONS"
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
AppEngineHttpTargetHttpMethod, AppEngineHttpTargetHttpMethodArgs            
- HttpMethod Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- Post
- POSTHTTP POST
- Get
- GETHTTP GET
- Head
- HEADHTTP HEAD
- Put
- PUTHTTP PUT
- Delete
- DELETEHTTP DELETE
- Patch
- PATCHHTTP PATCH
- Options
- OPTIONSHTTP OPTIONS
- AppEngine Http Target Http Method Http Method Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- AppEngine Http Target Http Method Post 
- POSTHTTP POST
- AppEngine Http Target Http Method Get 
- GETHTTP GET
- AppEngine Http Target Http Method Head 
- HEADHTTP HEAD
- AppEngine Http Target Http Method Put 
- PUTHTTP PUT
- AppEngine Http Target Http Method Delete 
- DELETEHTTP DELETE
- AppEngine Http Target Http Method Patch 
- PATCHHTTP PATCH
- AppEngine Http Target Http Method Options 
- OPTIONSHTTP OPTIONS
- HttpMethod Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- Post
- POSTHTTP POST
- Get
- GETHTTP GET
- Head
- HEADHTTP HEAD
- Put
- PUTHTTP PUT
- Delete
- DELETEHTTP DELETE
- Patch
- PATCHHTTP PATCH
- Options
- OPTIONSHTTP OPTIONS
- HttpMethod Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- Post
- POSTHTTP POST
- Get
- GETHTTP GET
- Head
- HEADHTTP HEAD
- Put
- PUTHTTP PUT
- Delete
- DELETEHTTP DELETE
- Patch
- PATCHHTTP PATCH
- Options
- OPTIONSHTTP OPTIONS
- HTTP_METHOD_UNSPECIFIED
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- POST
- POSTHTTP POST
- GET
- GETHTTP GET
- HEAD
- HEADHTTP HEAD
- PUT
- PUTHTTP PUT
- DELETE
- DELETEHTTP DELETE
- PATCH
- PATCHHTTP PATCH
- OPTIONS
- OPTIONSHTTP OPTIONS
- "HTTP_METHOD_UNSPECIFIED"
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- "POST"
- POSTHTTP POST
- "GET"
- GETHTTP GET
- "HEAD"
- HEADHTTP HEAD
- "PUT"
- PUTHTTP PUT
- "DELETE"
- DELETEHTTP DELETE
- "PATCH"
- PATCHHTTP PATCH
- "OPTIONS"
- OPTIONSHTTP OPTIONS
AppEngineHttpTargetResponse, AppEngineHttpTargetResponseArgs          
- AppEngine Pulumi.Routing Google Native. Cloud Scheduler. V1Beta1. Inputs. App Engine Routing Response 
- App Engine Routing setting for the job.
- 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.
- Headers Dictionary<string, string>
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- HttpMethod string
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- AppEngine AppRouting Engine Routing Response 
- App Engine Routing setting for the job.
- 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.
- Headers map[string]string
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- HttpMethod string
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- appEngine AppRouting Engine Routing Response 
- App Engine Routing setting for the job.
- 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.
- headers Map<String,String>
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- httpMethod String
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- appEngine AppRouting Engine Routing Response 
- App Engine Routing setting for the job.
- 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.
- headers {[key: string]: string}
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- httpMethod string
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- app_engine_ Approuting Engine Routing Response 
- App Engine Routing setting for the job.
- body str
- 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.
- headers Mapping[str, str]
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- http_method str
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- relative_uri str
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
- appEngine Property MapRouting 
- App Engine Routing setting for the job.
- 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.
- headers Map<String>
- 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: * User-Agent: By default, this header is"AppEngine-Google; (+http://code.google.com/appengine)". This header can be modified, but Cloud Scheduler will append"AppEngine-Google; (+http://code.google.com/appengine)"to the modifiedUser-Agent. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The headers below are output only. They cannot be set or overridden: *Content-Length: This is computed by Cloud Scheduler. *X-Google-*: For Google internal use only. *X-AppEngine-*: For Google internal use only. In addition, some App Engine headers, which contain job-specific information, are also be sent to the job handler.
- httpMethod String
- The HTTP method to use for the request. PATCH and OPTIONS are not permitted.
- 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 #fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
AppEngineRouting, AppEngineRoutingArgs      
- 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.
- 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.
- 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.
- 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.
- 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 str
- 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.
- service str
- App service. By default, the job is sent to the service which is the default service when the job is attempted.
- version str
- 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.
- 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.
AppEngineRoutingResponse, AppEngineRoutingResponseArgs        
- Host string
- 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: * host = [application_domain_name]| [service] + '.' + [application_domain_name]| [version] + '.' + [application_domain_name]| [version_dot_service]+ '.' + [application_domain_name]| [instance] + '.' + [application_domain_name]| [instance_dot_service] + '.' + [application_domain_name]| [instance_dot_version] + '.' + [application_domain_name]| [instance_dot_version_dot_service] + '.' + [application_domain_name]*application_domain_name= The domain name of the app, for example .appspot.com, which is associated with the job's project ID. *service =service *version =version *version_dot_service =version+ '.' +service *instance =instance *instance_dot_service =instance+ '.' +service *instance_dot_version =instance+ '.' +version *instance_dot_version_dot_service =instance+ '.' +version+ '.' +service 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.
- 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.
- 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.
- Host string
- 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: * host = [application_domain_name]| [service] + '.' + [application_domain_name]| [version] + '.' + [application_domain_name]| [version_dot_service]+ '.' + [application_domain_name]| [instance] + '.' + [application_domain_name]| [instance_dot_service] + '.' + [application_domain_name]| [instance_dot_version] + '.' + [application_domain_name]| [instance_dot_version_dot_service] + '.' + [application_domain_name]*application_domain_name= The domain name of the app, for example .appspot.com, which is associated with the job's project ID. *service =service *version =version *version_dot_service =version+ '.' +service *instance =instance *instance_dot_service =instance+ '.' +service *instance_dot_version =instance+ '.' +version *instance_dot_version_dot_service =instance+ '.' +version+ '.' +service 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.
- 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.
- 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.
- host String
- 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: * host = [application_domain_name]| [service] + '.' + [application_domain_name]| [version] + '.' + [application_domain_name]| [version_dot_service]+ '.' + [application_domain_name]| [instance] + '.' + [application_domain_name]| [instance_dot_service] + '.' + [application_domain_name]| [instance_dot_version] + '.' + [application_domain_name]| [instance_dot_version_dot_service] + '.' + [application_domain_name]*application_domain_name= The domain name of the app, for example .appspot.com, which is associated with the job's project ID. *service =service *version =version *version_dot_service =version+ '.' +service *instance =instance *instance_dot_service =instance+ '.' +service *instance_dot_version =instance+ '.' +version *instance_dot_version_dot_service =instance+ '.' +version+ '.' +service 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.
- 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.
- 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.
- host string
- 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: * host = [application_domain_name]| [service] + '.' + [application_domain_name]| [version] + '.' + [application_domain_name]| [version_dot_service]+ '.' + [application_domain_name]| [instance] + '.' + [application_domain_name]| [instance_dot_service] + '.' + [application_domain_name]| [instance_dot_version] + '.' + [application_domain_name]| [instance_dot_version_dot_service] + '.' + [application_domain_name]*application_domain_name= The domain name of the app, for example .appspot.com, which is associated with the job's project ID. *service =service *version =version *version_dot_service =version+ '.' +service *instance =instance *instance_dot_service =instance+ '.' +service *instance_dot_version =instance+ '.' +version *instance_dot_version_dot_service =instance+ '.' +version+ '.' +service 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.
- 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.
- 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.
- host str
- 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: * host = [application_domain_name]| [service] + '.' + [application_domain_name]| [version] + '.' + [application_domain_name]| [version_dot_service]+ '.' + [application_domain_name]| [instance] + '.' + [application_domain_name]| [instance_dot_service] + '.' + [application_domain_name]| [instance_dot_version] + '.' + [application_domain_name]| [instance_dot_version_dot_service] + '.' + [application_domain_name]*application_domain_name= The domain name of the app, for example .appspot.com, which is associated with the job's project ID. *service =service *version =version *version_dot_service =version+ '.' +service *instance =instance *instance_dot_service =instance+ '.' +service *instance_dot_version =instance+ '.' +version *instance_dot_version_dot_service =instance+ '.' +version+ '.' +service 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.
- instance str
- 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.
- service str
- App service. By default, the job is sent to the service which is the default service when the job is attempted.
- version str
- App version. By default, the job is sent to the version which is the default version when the job is attempted.
- host String
- 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: * host = [application_domain_name]| [service] + '.' + [application_domain_name]| [version] + '.' + [application_domain_name]| [version_dot_service]+ '.' + [application_domain_name]| [instance] + '.' + [application_domain_name]| [instance_dot_service] + '.' + [application_domain_name]| [instance_dot_version] + '.' + [application_domain_name]| [instance_dot_version_dot_service] + '.' + [application_domain_name]*application_domain_name= The domain name of the app, for example .appspot.com, which is associated with the job's project ID. *service =service *version =version *version_dot_service =version+ '.' +service *instance =instance *instance_dot_service =instance+ '.' +service *instance_dot_version =instance+ '.' +version *instance_dot_version_dot_service =instance+ '.' +version+ '.' +service 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.
- 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.
- 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.
HttpTarget, HttpTargetArgs    
- Uri string
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- Headers Dictionary<string, string>
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- HttpMethod Pulumi.Google Native. Cloud Scheduler. V1Beta1. Http Target Http Method 
- Which HTTP method to use for the request.
- OauthToken Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. OAuth Token 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- OidcToken Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. Oidc Token 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- Uri string
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- Headers map[string]string
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- HttpMethod HttpTarget Http Method 
- Which HTTP method to use for the request.
- OauthToken OAuthToken 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- OidcToken OidcToken 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri String
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- headers Map<String,String>
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- httpMethod HttpTarget Http Method 
- Which HTTP method to use for the request.
- oauthToken OAuthToken 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidcToken OidcToken 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri string
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- headers {[key: string]: string}
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- httpMethod HttpTarget Http Method 
- Which HTTP method to use for the request.
- oauthToken OAuthToken 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidcToken OidcToken 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri str
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- body str
- 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.
- headers Mapping[str, str]
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- http_method HttpTarget Http Method 
- Which HTTP method to use for the request.
- oauth_token OAuthToken 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidc_token OidcToken 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri String
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- headers Map<String>
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- httpMethod "HTTP_METHOD_UNSPECIFIED" | "POST" | "GET" | "HEAD" | "PUT" | "DELETE" | "PATCH" | "OPTIONS"
- Which HTTP method to use for the request.
- oauthToken Property Map
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidcToken Property Map
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
HttpTargetHttpMethod, HttpTargetHttpMethodArgs        
- HttpMethod Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- Post
- POSTHTTP POST
- Get
- GETHTTP GET
- Head
- HEADHTTP HEAD
- Put
- PUTHTTP PUT
- Delete
- DELETEHTTP DELETE
- Patch
- PATCHHTTP PATCH
- Options
- OPTIONSHTTP OPTIONS
- HttpTarget Http Method Http Method Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- HttpTarget Http Method Post 
- POSTHTTP POST
- HttpTarget Http Method Get 
- GETHTTP GET
- HttpTarget Http Method Head 
- HEADHTTP HEAD
- HttpTarget Http Method Put 
- PUTHTTP PUT
- HttpTarget Http Method Delete 
- DELETEHTTP DELETE
- HttpTarget Http Method Patch 
- PATCHHTTP PATCH
- HttpTarget Http Method Options 
- OPTIONSHTTP OPTIONS
- HttpMethod Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- Post
- POSTHTTP POST
- Get
- GETHTTP GET
- Head
- HEADHTTP HEAD
- Put
- PUTHTTP PUT
- Delete
- DELETEHTTP DELETE
- Patch
- PATCHHTTP PATCH
- Options
- OPTIONSHTTP OPTIONS
- HttpMethod Unspecified 
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- Post
- POSTHTTP POST
- Get
- GETHTTP GET
- Head
- HEADHTTP HEAD
- Put
- PUTHTTP PUT
- Delete
- DELETEHTTP DELETE
- Patch
- PATCHHTTP PATCH
- Options
- OPTIONSHTTP OPTIONS
- HTTP_METHOD_UNSPECIFIED
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- POST
- POSTHTTP POST
- GET
- GETHTTP GET
- HEAD
- HEADHTTP HEAD
- PUT
- PUTHTTP PUT
- DELETE
- DELETEHTTP DELETE
- PATCH
- PATCHHTTP PATCH
- OPTIONS
- OPTIONSHTTP OPTIONS
- "HTTP_METHOD_UNSPECIFIED"
- HTTP_METHOD_UNSPECIFIEDHTTP method unspecified. Defaults to POST.
- "POST"
- POSTHTTP POST
- "GET"
- GETHTTP GET
- "HEAD"
- HEADHTTP HEAD
- "PUT"
- PUTHTTP PUT
- "DELETE"
- DELETEHTTP DELETE
- "PATCH"
- PATCHHTTP PATCH
- "OPTIONS"
- OPTIONSHTTP OPTIONS
HttpTargetResponse, HttpTargetResponseArgs      
- 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.
- Headers Dictionary<string, string>
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- HttpMethod string
- Which HTTP method to use for the request.
- OauthToken Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. OAuth Token Response 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- OidcToken Pulumi.Google Native. Cloud Scheduler. V1Beta1. Inputs. Oidc Token Response 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- Uri string
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- Headers map[string]string
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- HttpMethod string
- Which HTTP method to use for the request.
- OauthToken OAuthToken Response 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- OidcToken OidcToken Response 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- Uri string
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- headers Map<String,String>
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- httpMethod String
- Which HTTP method to use for the request.
- oauthToken OAuthToken Response 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidcToken OidcToken Response 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri String
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- headers {[key: string]: string}
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- httpMethod string
- Which HTTP method to use for the request.
- oauthToken OAuthToken Response 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidcToken OidcToken Response 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri string
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- body str
- 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.
- headers Mapping[str, str]
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- http_method str
- Which HTTP method to use for the request.
- oauth_token OAuthToken Response 
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidc_token OidcToken Response 
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri str
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
- 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.
- headers Map<String>
- 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: * Host: This will be computed by Cloud Scheduler and derived from uri. * Content-Length: This will be computed by Cloud Scheduler. *User-Agent: This will be set to"Google-Cloud-Scheduler". *X-Google-*: Google internal use only. *X-AppEngine-*: Google internal use only. *X-CloudScheduler: This header will be set to true. *X-CloudScheduler-JobName: This header will contain the job name. *X-CloudScheduler-ScheduleTime: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule time in RFC3339 UTC "Zulu" format. If the job has a body and the following headers are not set by the user, Cloud Scheduler sets default values: *Content-Type: This will be set to"application/octet-stream". You can override this default by explicitly settingContent-Typeto a particular media type when creating the job. For example, you can setContent-Typeto"application/json". The total size of headers must be less than 80KB.
- httpMethod String
- Which HTTP method to use for the request.
- oauthToken Property Map
- If specified, an OAuth token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
- oidcToken Property Map
- If specified, an OIDC token will be generated and attached as an Authorizationheader in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
- uri String
- 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: http://acme.comandhttps://acme.com/sales:8080. Cloud Scheduler will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding.
OAuthToken, OAuthTokenArgs    
- 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.
- ServiceAccount stringEmail 
- 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.
- ServiceAccount stringEmail 
- 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.
- serviceAccount StringEmail 
- 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.
- serviceAccount stringEmail 
- 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 str
- OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
- service_account_ stremail 
- 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.
- serviceAccount StringEmail 
- 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.
OAuthTokenResponse, OAuthTokenResponseArgs      
- 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.
- ServiceAccount stringEmail 
- 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.
- ServiceAccount stringEmail 
- 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.
- serviceAccount StringEmail 
- 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.
- serviceAccount stringEmail 
- 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 str
- OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
- service_account_ stremail 
- 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.
- serviceAccount StringEmail 
- 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.
OidcToken, OidcTokenArgs    
- Audience string
- Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
- ServiceAccount stringEmail 
- 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.
- ServiceAccount stringEmail 
- 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.
- serviceAccount StringEmail 
- 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.
- serviceAccount stringEmail 
- 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 str
- Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
- service_account_ stremail 
- 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.
- serviceAccount StringEmail 
- 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.
OidcTokenResponse, OidcTokenResponseArgs      
- Audience string
- Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
- ServiceAccount stringEmail 
- 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.
- ServiceAccount stringEmail 
- 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.
- serviceAccount StringEmail 
- 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.
- serviceAccount stringEmail 
- 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 str
- Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
- service_account_ stremail 
- 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.
- serviceAccount StringEmail 
- 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.
PubsubTarget, PubsubTargetArgs    
- TopicName string
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- Attributes Dictionary<string, string>
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- Data string
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- TopicName string
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- Attributes map[string]string
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- Data string
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topicName String
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes Map<String,String>
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data String
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topicName string
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes {[key: string]: string}
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data string
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topic_name str
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes Mapping[str, str]
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data str
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topicName String
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes Map<String>
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data String
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
PubsubTargetResponse, PubsubTargetResponseArgs      
- Attributes Dictionary<string, string>
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- Data string
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- TopicName string
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- Attributes map[string]string
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- Data string
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- TopicName string
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes Map<String,String>
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data String
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topicName String
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes {[key: string]: string}
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data string
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topicName string
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes Mapping[str, str]
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data str
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topic_name str
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
- attributes Map<String>
- Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- data String
- The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.
- topicName String
- 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 projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.
RetryConfig, RetryConfigArgs    
- MaxBackoff stringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- MaxDoublings int
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- MaxRetry stringDuration 
- 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.
- MinBackoff stringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- RetryCount int
- 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 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.
- MaxBackoff stringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- MaxDoublings int
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- MaxRetry stringDuration 
- 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.
- MinBackoff stringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- RetryCount int
- 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 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.
- maxBackoff StringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- maxDoublings Integer
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- maxRetry StringDuration 
- 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.
- minBackoff StringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- retryCount Integer
- 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 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.
- maxBackoff stringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- maxDoublings number
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- maxRetry stringDuration 
- 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.
- minBackoff stringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- 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 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_backoff_ strduration 
- 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 int
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- max_retry_ strduration 
- 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.
- min_backoff_ strduration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- retry_count int
- 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 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.
- maxBackoff StringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- maxDoublings Number
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- maxRetry StringDuration 
- 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.
- minBackoff StringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- 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 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.
RetryConfigResponse, RetryConfigResponseArgs      
- MaxBackoff stringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- MaxDoublings int
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- MaxRetry stringDuration 
- 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.
- MinBackoff stringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- RetryCount int
- 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 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.
- MaxBackoff stringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- MaxDoublings int
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- MaxRetry stringDuration 
- 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.
- MinBackoff stringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- RetryCount int
- 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 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.
- maxBackoff StringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- maxDoublings Integer
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- maxRetry StringDuration 
- 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.
- minBackoff StringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- retryCount Integer
- 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 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.
- maxBackoff stringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- maxDoublings number
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- maxRetry stringDuration 
- 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.
- minBackoff stringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- 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 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_backoff_ strduration 
- 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 int
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- max_retry_ strduration 
- 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.
- min_backoff_ strduration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- retry_count int
- 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 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.
- maxBackoff StringDuration 
- The maximum amount of time to wait before retrying a job after it fails. The default value of this field is 1 hour.
- maxDoublings Number
- The time between retries will double max_doublingstimes. A job's retry interval starts at min_backoff_duration, then doublesmax_doublingstimes, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, andmax_doublingsis 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
- maxRetry StringDuration 
- 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.
- minBackoff StringDuration 
- The minimum amount of time to wait before retrying a job after it fails. The default value of this field is 5 seconds.
- 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 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.
StatusResponse, StatusResponseArgs    
- Code int
- The status code, which should be an enum value of google.rpc.Code.
- Details
List<ImmutableDictionary<string, string>> 
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- Message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- Code int
- The status code, which should be an enum value of google.rpc.Code.
- Details []map[string]string
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- Message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code Integer
- The status code, which should be an enum value of google.rpc.Code.
- details List<Map<String,String>>
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message String
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code number
- The status code, which should be an enum value of google.rpc.Code.
- details {[key: string]: string}[]
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code int
- The status code, which should be an enum value of google.rpc.Code.
- details Sequence[Mapping[str, str]]
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message str
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code Number
- The status code, which should be an enum value of google.rpc.Code.
- details List<Map<String>>
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message String
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.