Class: Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/remotebuildexecution_v2/classes.rb,
lib/google/apis/remotebuildexecution_v2/representations.rb,
lib/google/apis/remotebuildexecution_v2/representations.rb

Overview

The full version of a given tool.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BuildBazelSemverSemVer

Returns a new instance of BuildBazelSemverSemVer.



2144
2145
2146
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2144

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#majorFixnum

The major version, e.g 10 for 10.2.3. Corresponds to the JSON property major

Returns:

  • (Fixnum)


2125
2126
2127
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2125

def major
  @major
end

#minorFixnum

The minor version, e.g. 2 for 10.2.3. Corresponds to the JSON property minor

Returns:

  • (Fixnum)


2130
2131
2132
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2130

def minor
  @minor
end

#patchFixnum

The patch version, e.g 3 for 10.2.3. Corresponds to the JSON property patch

Returns:

  • (Fixnum)


2135
2136
2137
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2135

def patch
  @patch
end

#prereleaseString

The pre-release version. Either this field or major/minor/patch fields must be filled. They are mutually exclusive. Pre-release versions are assumed to be earlier than any released versions. Corresponds to the JSON property prerelease

Returns:

  • (String)


2142
2143
2144
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2142

def prerelease
  @prerelease
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2149
2150
2151
2152
2153
2154
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2149

def update!(**args)
  @major = args[:major] if args.key?(:major)
  @minor = args[:minor] if args.key?(:minor)
  @patch = args[:patch] if args.key?(:patch)
  @prerelease = args[:prerelease] if args.key?(:prerelease)
end