Show / Hide Table of Contents

Class BuildVersion

BuildVersion combines SemVer version of extension with free-form build information (i.e. 'alpha', 'private-build') as a set of strings.

Inheritance
System.Object
BuildVersion
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.TrafficDirectorService.v2.Data
Assembly: Google.Apis.TrafficDirectorService.v2.dll
Syntax
public class BuildVersion : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Metadata

Free-form build information. Envoy defines several well known keys in the source/common/version/version.h file

Declaration
[JsonProperty("metadata")]
public virtual IDictionary<string, object> Metadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

Version

SemVer version of extension.

Declaration
[JsonProperty("version")]
public virtual SemanticVersion Version { get; set; }
Property Value
Type Description
SemanticVersion

Implements

IDirectResponseSchema
In This Article
Back to top