Show / Hide Table of Contents

Class Options

Options allows customized resource handling by Deployment Manager.

Inheritance
System.Object
Options
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 Options : IDirectResponseSchema

Properties

AsyncOptions

Options regarding how to thread async requests.

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

ETag

The ETag of the item.

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

InputMappings

The mappings that apply for requests.

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

NameProperty

The json path to the field in the resource JSON body into which the resource name should be mapped. Leaving this empty indicates that there should be no mapping performed.

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

ValidationOptions

Options for how to validate and process properties on a resource.

Declaration
[JsonProperty("validationOptions")]
public virtual ValidationOptions ValidationOptions { get; set; }
Property Value
Type Description
ValidationOptions

Implements

IDirectResponseSchema
Back to top