Show / Hide Table of Contents

Class PollingOptions

Inheritance
System.Object
PollingOptions
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.DeploymentManagerAlpha.alpha.Data
Assembly: Google.Apis.DeploymentManagerAlpha.alpha.dll
Syntax
public class PollingOptions : IDirectResponseSchema

Properties

Diagnostics

An array of diagnostics to be collected by Deployment Manager, these diagnostics will be displayed to the user.

Declaration
[JsonProperty("diagnostics")]
public virtual IList<Diagnostic> Diagnostics { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Diagnostic>

ETag

The ETag of the item.

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

FailCondition

JsonPath expression that determines if the request failed.

Declaration
[JsonProperty("failCondition")]
public virtual string FailCondition { get; set; }
Property Value
Type Description
System.String

FinishCondition

JsonPath expression that determines if the request is completed.

Declaration
[JsonProperty("finishCondition")]
public virtual string FinishCondition { get; set; }
Property Value
Type Description
System.String

PollingLink

JsonPath expression that evaluates to string, it indicates where to poll.

Declaration
[JsonProperty("pollingLink")]
public virtual string PollingLink { get; set; }
Property Value
Type Description
System.String

TargetLink

JsonPath expression, after polling is completed, indicates where to fetch the resource.

Declaration
[JsonProperty("targetLink")]
public virtual string TargetLink { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top