Show / Hide Table of Contents

Class HttpFaultDelay

Specifies the delay introduced by Loadbalancer before forwarding the request to the backend service as part of fault injection.

Inheritance
System.Object
HttpFaultDelay
Implements
IDirectResponseSchema
Inherited Members
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: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class HttpFaultDelay : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

FixedDelay

Specifies the value of the fixed delay interval.

Declaration
[JsonProperty("fixedDelay")]
public virtual Duration FixedDelay { get; set; }
Property Value
Type Description
Duration

Percentage

The percentage of traffic (connections/operations/requests) on which delay will be introduced as part of fault injection. The value must be between 0.0 and 100.0 inclusive.

Declaration
[JsonProperty("percentage")]
public virtual double? Percentage { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
In This Article
Back to top