Show / Hide Table of Contents

Class GoogleCloudEventarcV1PipelineRetryPolicy

The retry policy configuration for the Pipeline. The pipeline exponentially backs off in case the destination is non responsive or returns a retryable error code. The default semantics are as follows: The backoff starts with a 5 second delay and doubles the delay after each failed attempt (10 seconds, 20 seconds, 40 seconds, etc.). The delay is capped at 60 seconds by default. Please note that if you set the min_retry_delay and max_retry_delay fields to the same value this will make the duration between retries constant.

Inheritance
object
GoogleCloudEventarcV1PipelineRetryPolicy
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Eventarc.v1.Data
Assembly: Google.Apis.Eventarc.v1.dll
Syntax
public class GoogleCloudEventarcV1PipelineRetryPolicy : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

MaxAttempts

Optional. The maximum number of delivery attempts for any message. The value must be between 1 and 100. The default value for this field is 5.

Declaration
[JsonProperty("maxAttempts")]
public virtual int? MaxAttempts { get; set; }
Property Value
Type Description
int?

MaxRetryDelay

Optional. The maximum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 60.

Declaration
[JsonProperty("maxRetryDelay")]
public virtual object MaxRetryDelay { get; set; }
Property Value
Type Description
object

MinRetryDelay

Optional. The minimum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 5.

Declaration
[JsonProperty("minRetryDelay")]
public virtual object MinRetryDelay { get; set; }
Property Value
Type Description
object

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX