Show / Hide Table of Contents

Class InputMapping

InputMapping creates a 'virtual' property that will be injected into the properties before sending the request to the underlying API.

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

Properties

ETag

The ETag of the item.

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

FieldName

The name of the field that is going to be injected.

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

Location

The location where this mapping applies.

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

MethodMatch

Regex to evaluate on method to decide if input applies.

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

Value

A jsonPath expression to select an element.

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

Implements

IDirectResponseSchema
Back to top