Class: Google::Apis::CloudsearchV1::OsVersion
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::OsVersion
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#major_version ⇒ Fixnum
Corresponds to the JSON property
majorVersion
. -
#minor_version ⇒ Fixnum
Corresponds to the JSON property
minorVersion
. -
#tertiary_version ⇒ Fixnum
Corresponds to the JSON property
tertiaryVersion
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OsVersion
constructor
A new instance of OsVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OsVersion
Returns a new instance of OsVersion.
15071 15072 15073 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15071 def initialize(**args) update!(**args) end |
Instance Attribute Details
#major_version ⇒ Fixnum
Corresponds to the JSON property majorVersion
15059 15060 15061 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15059 def major_version @major_version end |
#minor_version ⇒ Fixnum
Corresponds to the JSON property minorVersion
15064 15065 15066 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15064 def minor_version @minor_version end |
#tertiary_version ⇒ Fixnum
Corresponds to the JSON property tertiaryVersion
15069 15070 15071 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15069 def tertiary_version @tertiary_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15076 15077 15078 15079 15080 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15076 def update!(**args) @major_version = args[:major_version] if args.key?(:major_version) @minor_version = args[:minor_version] if args.key?(:minor_version) @tertiary_version = args[:tertiary_version] if args.key?(:tertiary_version) end |