Class JobRetryConfig
Inheritance
Inherited Members
Namespace: Pulumi.Gcp.CloudScheduler.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobRetryConfig
Fields
View SourceMaxBackoffDuration
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 readonly string MaxBackoffDuration
Field Value
| Type | Description |
|---|---|
| System.String |
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 readonly int? MaxDoublings
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
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 readonly string MaxRetryDuration
Field Value
| Type | Description |
|---|---|
| System.String |
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 readonly string MinBackoffDuration
Field Value
| Type | Description |
|---|---|
| System.String |
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 readonly int? RetryCount
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |