Class SemanticVersion
Envoy uses SemVer (https://semver.org/). Major/minor versions indicate expected behaviors and APIs, the patch
version field is used only for security fixes and can be generally ignored.
Inheritance
SemanticVersion
Assembly: Google.Apis.TrafficDirectorService.v3.dll
Syntax
public class SemanticVersion : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
MajorNumber
Declaration
[JsonProperty("majorNumber")]
public virtual long? MajorNumber { get; set; }
Property Value
MinorNumber
Declaration
[JsonProperty("minorNumber")]
public virtual long? MinorNumber { get; set; }
Property Value
Patch
Declaration
[JsonProperty("patch")]
public virtual long? Patch { get; set; }
Property Value
Implements