class Hpe3parSdk::Task
Attributes
name[RW]
- type - String
-
Task
name.
status[RW]
- type - Number
-
Task
Status.
task_id[RW]
- type - Number
-
Task
ID.
type[RW]
- type - Number
-
Task
type.
Public Class Methods
new(object_hash)
click to toggle source
# File lib/Hpe3parSdk/models.rb, line 1836 def initialize(object_hash) if object_hash == nil return end self.task_id = object_hash['id'] self.status = object_hash['status'] self.name = object_hash['name'] self.type = object_hash['type'] end