Class: Google::Apis::SasportalV1alpha1::SasPortalDeviceModel
- Inherits:
-
Object
- Object
- Google::Apis::SasportalV1alpha1::SasPortalDeviceModel
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sasportal_v1alpha1/classes.rb,
lib/google/apis/sasportal_v1alpha1/representations.rb,
lib/google/apis/sasportal_v1alpha1/representations.rb
Overview
Information about the model of the device.
Instance Attribute Summary collapse
-
#firmware_version ⇒ String
The firmware version of the device.
-
#hardware_version ⇒ String
The hardware version of the device.
-
#name ⇒ String
The name of the device model.
-
#software_version ⇒ String
The software version of the device.
-
#vendor ⇒ String
The name of the device vendor.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SasPortalDeviceModel
constructor
A new instance of SasPortalDeviceModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SasPortalDeviceModel
Returns a new instance of SasPortalDeviceModel.
505 506 507 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 505 def initialize(**args) update!(**args) end |
Instance Attribute Details
#firmware_version ⇒ String
The firmware version of the device.
Corresponds to the JSON property firmwareVersion
483 484 485 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 483 def firmware_version @firmware_version end |
#hardware_version ⇒ String
The hardware version of the device.
Corresponds to the JSON property hardwareVersion
488 489 490 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 488 def hardware_version @hardware_version end |
#name ⇒ String
The name of the device model.
Corresponds to the JSON property name
493 494 495 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 493 def name @name end |
#software_version ⇒ String
The software version of the device.
Corresponds to the JSON property softwareVersion
498 499 500 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 498 def software_version @software_version end |
#vendor ⇒ String
The name of the device vendor.
Corresponds to the JSON property vendor
503 504 505 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 503 def vendor @vendor end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
510 511 512 513 514 515 516 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 510 def update!(**args) @firmware_version = args[:firmware_version] if args.key?(:firmware_version) @hardware_version = args[:hardware_version] if args.key?(:hardware_version) @name = args[:name] if args.key?(:name) @software_version = args[:software_version] if args.key?(:software_version) @vendor = args[:vendor] if args.key?(:vendor) end |