Class: Nodeum::TapeDrive
- Inherits:
-
TapeDriveDevice
- Object
- TapeDriveDevice
- Nodeum::TapeDrive
- Defined in:
- lib/nodeum_sdk/models/tape_drive.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#acs ⇒ Object
Returns the value of attribute acs.
-
#bandwidth ⇒ Object
Returns the value of attribute bandwidth.
-
#barcode ⇒ Object
Returns the value of attribute barcode.
-
#comment ⇒ Object
Returns the value of attribute comment.
-
#full ⇒ Object
Returns the value of attribute full.
-
#id ⇒ Object
Returns the value of attribute id.
-
#libso ⇒ Object
Returns the value of attribute libso.
-
#lsm ⇒ Object
Returns the value of attribute lsm.
-
#mount_count ⇒ Object
Returns the value of attribute mount_count.
-
#name ⇒ Object
Returns the value of attribute name.
-
#panel ⇒ Object
Returns the value of attribute panel.
-
#status ⇒ Object
Returns the value of attribute status.
-
#tape_library_id ⇒ Object
Returns the value of attribute tape_library_id.
-
#task_id ⇒ Object
Returns the value of attribute task_id.
-
#transport ⇒ Object
Returns the value of attribute transport.
-
#use_by ⇒ Object
Returns the value of attribute use_by.
-
#use_file_name_processed ⇒ Object
Returns the value of attribute use_file_name_processed.
-
#use_file_processed_size ⇒ Object
Returns the value of attribute use_file_processed_size.
-
#use_file_size_to_process ⇒ Object
Returns the value of attribute use_file_size_to_process.
-
#use_to ⇒ Object
Returns the value of attribute use_to.
Attributes inherited from TapeDriveDevice
#device, #firmware, #product, #scsi_address, #serial, #sgdevice, #vendor
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3).
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ TapeDrive
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ TapeDrive
Initializes the object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 147 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Nodeum::TapeDrive` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `Nodeum::TapeDrive`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } # call parent's initialize super(attributes) if attributes.key?(:'id') self.id = attributes[:'id'] end if attributes.key?(:'tape_library_id') self.tape_library_id = attributes[:'tape_library_id'] end if attributes.key?(:'name') self.name = attributes[:'name'] end if attributes.key?(:'comment') self.comment = attributes[:'comment'] end if attributes.key?(:'libso') self.libso = attributes[:'libso'] end if attributes.key?(:'acs') self.acs = attributes[:'acs'] end if attributes.key?(:'lsm') self.lsm = attributes[:'lsm'] end if attributes.key?(:'panel') self.panel = attributes[:'panel'] end if attributes.key?(:'transport') self.transport = attributes[:'transport'] end if attributes.key?(:'status') self.status = attributes[:'status'] end if attributes.key?(:'full') self.full = attributes[:'full'] end if attributes.key?(:'mount_count') self.mount_count = attributes[:'mount_count'] end if attributes.key?(:'use_to') self.use_to = attributes[:'use_to'] end if attributes.key?(:'use_by') self.use_by = attributes[:'use_by'] end if attributes.key?(:'barcode') self. = attributes[:'barcode'] end if attributes.key?(:'task_id') self.task_id = attributes[:'task_id'] end if attributes.key?(:'use_file_processed_size') self.use_file_processed_size = attributes[:'use_file_processed_size'] end if attributes.key?(:'use_file_size_to_process') self.use_file_size_to_process = attributes[:'use_file_size_to_process'] end if attributes.key?(:'use_file_name_processed') self.use_file_name_processed = attributes[:'use_file_name_processed'] end if attributes.key?(:'bandwidth') self.bandwidth = attributes[:'bandwidth'] end end |
Instance Attribute Details
#acs ⇒ Object
Returns the value of attribute acs.
27 28 29 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 27 def acs @acs end |
#bandwidth ⇒ Object
Returns the value of attribute bandwidth.
55 56 57 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 55 def bandwidth @bandwidth end |
#barcode ⇒ Object
Returns the value of attribute barcode.
45 46 47 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 45 def end |
#comment ⇒ Object
Returns the value of attribute comment.
23 24 25 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 23 def comment @comment end |
#full ⇒ Object
Returns the value of attribute full.
37 38 39 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 37 def full @full end |
#id ⇒ Object
Returns the value of attribute id.
17 18 19 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 17 def id @id end |
#libso ⇒ Object
Returns the value of attribute libso.
25 26 27 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 25 def libso @libso end |
#lsm ⇒ Object
Returns the value of attribute lsm.
29 30 31 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 29 def lsm @lsm end |
#mount_count ⇒ Object
Returns the value of attribute mount_count.
39 40 41 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 39 def mount_count @mount_count end |
#name ⇒ Object
Returns the value of attribute name.
21 22 23 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 21 def name @name end |
#panel ⇒ Object
Returns the value of attribute panel.
31 32 33 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 31 def panel @panel end |
#status ⇒ Object
Returns the value of attribute status.
35 36 37 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 35 def status @status end |
#tape_library_id ⇒ Object
Returns the value of attribute tape_library_id.
19 20 21 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 19 def tape_library_id @tape_library_id end |
#task_id ⇒ Object
Returns the value of attribute task_id.
47 48 49 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 47 def task_id @task_id end |
#transport ⇒ Object
Returns the value of attribute transport.
33 34 35 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 33 def transport @transport end |
#use_by ⇒ Object
Returns the value of attribute use_by.
43 44 45 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 43 def use_by @use_by end |
#use_file_name_processed ⇒ Object
Returns the value of attribute use_file_name_processed.
53 54 55 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 53 def use_file_name_processed @use_file_name_processed end |
#use_file_processed_size ⇒ Object
Returns the value of attribute use_file_processed_size.
49 50 51 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 49 def use_file_processed_size @use_file_processed_size end |
#use_file_size_to_process ⇒ Object
Returns the value of attribute use_file_size_to_process.
51 52 53 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 51 def use_file_size_to_process @use_file_size_to_process end |
#use_to ⇒ Object
Returns the value of attribute use_to.
41 42 43 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 41 def use_to @use_to end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 80 def self.attribute_map { :'id' => :'id', :'tape_library_id' => :'tape_library_id', :'name' => :'name', :'comment' => :'comment', :'libso' => :'libso', :'acs' => :'acs', :'lsm' => :'lsm', :'panel' => :'panel', :'transport' => :'transport', :'status' => :'status', :'full' => :'full', :'mount_count' => :'mount_count', :'use_to' => :'use_to', :'use_by' => :'use_by', :'barcode' => :'barcode', :'task_id' => :'task_id', :'use_file_processed_size' => :'use_file_processed_size', :'use_file_size_to_process' => :'use_file_size_to_process', :'use_file_name_processed' => :'use_file_name_processed', :'bandwidth' => :'bandwidth' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
311 312 313 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 311 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3)
138 139 140 141 142 143 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 138 def self.openapi_all_of [ :'TapeDriveAllOf', :'TapeDriveDevice' ] end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
132 133 134 135 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 132 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 106 def self.openapi_types { :'id' => :'Integer', :'tape_library_id' => :'Integer', :'name' => :'String', :'comment' => :'String', :'libso' => :'String', :'acs' => :'Integer', :'lsm' => :'Integer', :'panel' => :'Integer', :'transport' => :'Integer', :'status' => :'String', :'full' => :'Integer', :'mount_count' => :'Integer', :'use_to' => :'String', :'use_by' => :'String', :'barcode' => :'String', :'task_id' => :'Integer', :'use_file_processed_size' => :'Integer', :'use_file_size_to_process' => :'Integer', :'use_file_name_processed' => :'String', :'bandwidth' => :'Integer' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 271 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && tape_library_id == o.tape_library_id && name == o.name && comment == o.comment && libso == o.libso && acs == o.acs && lsm == o.lsm && panel == o.panel && transport == o.transport && status == o.status && full == o.full && mount_count == o.mount_count && use_to == o.use_to && use_by == o.use_by && == o. && task_id == o.task_id && use_file_processed_size == o.use_file_processed_size && use_file_size_to_process == o.use_file_size_to_process && use_file_name_processed == o.use_file_name_processed && bandwidth == o.bandwidth && super(o) end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 340 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model Nodeum.const_get(type).build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
409 410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 409 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 318 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) super(attributes) self.class.openapi_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
298 299 300 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 298 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
304 305 306 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 304 def hash [id, tape_library_id, name, comment, libso, acs, lsm, panel, transport, status, full, mount_count, use_to, use_by, , task_id, use_file_processed_size, use_file_size_to_process, use_file_name_processed, bandwidth].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
246 247 248 249 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 246 def list_invalid_properties invalid_properties = super invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
385 386 387 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 385 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
391 392 393 394 395 396 397 398 399 400 401 402 403 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 391 def to_hash hash = super self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
379 380 381 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 379 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
253 254 255 256 257 |
# File 'lib/nodeum_sdk/models/tape_drive.rb', line 253 def valid? status_validator = EnumAttributeValidator.new('String', ["offline", "online"]) return false unless status_validator.valid?(@status) true && super end |