Class: Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::BuildBazelSemverSemVer
- 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
-
#major ⇒ Fixnum
The major version, e.g 10 for 10.2.3.
-
#minor ⇒ Fixnum
The minor version, e.g.
-
#patch ⇒ Fixnum
The patch version, e.g 3 for 10.2.3.
-
#prerelease ⇒ String
The pre-release version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildBazelSemverSemVer
constructor
A new instance of BuildBazelSemverSemVer.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#major ⇒ Fixnum
The major version, e.g 10 for 10.2.3.
Corresponds to the JSON property major
2125 2126 2127 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2125 def major @major end |
#minor ⇒ Fixnum
The minor version, e.g. 2 for 10.2.3.
Corresponds to the JSON property minor
2130 2131 2132 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2130 def minor @minor end |
#patch ⇒ Fixnum
The patch version, e.g 3 for 10.2.3.
Corresponds to the JSON property patch
2135 2136 2137 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2135 def patch @patch end |
#prerelease ⇒ String
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
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 |