Show / Hide Table of Contents

Class JobRetryConfigArgs

Inheritance
System.Object
InputArgs
ResourceArgs
JobRetryConfigArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.CloudScheduler.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobRetryConfigArgs : ResourceArgs

Constructors

View Source

JobRetryConfigArgs()

Declaration
public JobRetryConfigArgs()

Properties

View Source

MaxBackoffDuration

The maximum amount of time to wait before retrying a job after it fails. A duration in seconds with up to nine fractional digits, terminated by 's'.

Declaration
public Input<string> MaxBackoffDuration { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaxDoublings

The time between retries will double maxDoublings times. A job's retry interval starts at minBackoffDuration, then doubles maxDoublings times, then increases linearly, and finally retries retries at intervals of maxBackoffDuration up to retryCount times.

Declaration
public Input<int> MaxDoublings { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MaxRetryDuration

The time limit for retrying a failed job, measured from time when an execution was first attempted. If specified with retryCount, the job will be retried until both limits are reached. A duration in seconds with up to nine fractional digits, terminated by 's'.

Declaration
public Input<string> MaxRetryDuration { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MinBackoffDuration

The minimum amount of time to wait before retrying a job after it fails. A duration in seconds with up to nine fractional digits, terminated by 's'.

Declaration
public Input<string> MinBackoffDuration { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RetryCount

The number of attempts that the system will make to run a job using the exponential backoff procedure described by maxDoublings. Values greater than 5 and negative values are not allowed.

Declaration
public Input<int> RetryCount { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.