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.
14368 14369 14370 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14368 def initialize(**args) update!(**args) end |
Instance Attribute Details
#major_version ⇒ Fixnum
Corresponds to the JSON property majorVersion
14356 14357 14358 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14356 def major_version @major_version end |
#minor_version ⇒ Fixnum
Corresponds to the JSON property minorVersion
14361 14362 14363 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14361 def minor_version @minor_version end |
#tertiary_version ⇒ Fixnum
Corresponds to the JSON property tertiaryVersion
14366 14367 14368 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14366 def tertiary_version @tertiary_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14373 14374 14375 14376 14377 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14373 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 |