Class: IbmCloudPower::PVMInstanceReference
- Inherits:
-
Object
- Object
- IbmCloudPower::PVMInstanceReference
- Defined in:
- lib/ibm_cloud_power/models/pvm_instance_reference.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#addresses ⇒ Object
(deprecated - replaced by networks) The list of addresses and their network information.
-
#creation_date ⇒ Object
Date/Time of PVM creation.
-
#disk_size ⇒ Object
Size of allocated disk (in GB).
-
#fault ⇒ Object
Returns the value of attribute fault.
-
#health ⇒ Object
Returns the value of attribute health.
-
#href ⇒ Object
Link to Cloud Instance resource.
-
#image_id ⇒ Object
The ImageID used by the server.
-
#maxmem ⇒ Object
Maximum amount of memory that can be allocated (in GB, for resize).
-
#maxproc ⇒ Object
Maximum number of processors that can be allocated (for resize).
-
#memory ⇒ Object
Amount of memory allocated (in GB).
-
#minmem ⇒ Object
Minimum amount of memory that can be allocated (in GB, for resize).
-
#minproc ⇒ Object
Minimum number of processors that can be allocated (for resize).
-
#networks ⇒ Object
The list of addresses and their network information.
-
#operating_system ⇒ Object
OS system information (usually version and build).
-
#os_type ⇒ Object
Type of the OS [aix, ibmi, rhel, sles].
-
#pin_policy ⇒ Object
VM pinning policy to use [none, soft, hard].
-
#proc_type ⇒ Object
Processor type (dedicated, shared, capped).
-
#processors ⇒ Object
Number of processors allocated.
-
#progress ⇒ Object
The progress of an operation.
-
#pvm_instance_id ⇒ Object
PCloud PVM Instance ID.
-
#sap_profile ⇒ Object
Returns the value of attribute sap_profile.
-
#server_name ⇒ Object
Name of the server.
-
#software_licenses ⇒ Object
Returns the value of attribute software_licenses.
-
#srcs ⇒ Object
The pvm instance SRC lists.
-
#status ⇒ Object
The status of the instance.
-
#storage_pool ⇒ Object
Storage Pool where server is deployed.
-
#storage_pool_affinity ⇒ Object
Indicates if all volumes attached to the server must reside in the same storage pool.
-
#storage_type ⇒ Object
Storage type of the deployment storage pool.
-
#sys_type ⇒ Object
System type used to host the instance.
-
#updated_date ⇒ Object
Date/Time of PVM last update.
-
#virtual_cores ⇒ Object
Returns the value of attribute virtual_cores.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.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 = {}) ⇒ PVMInstanceReference
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 = {}) ⇒ PVMInstanceReference
Initializes the object
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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 215 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `IbmCloudPower::PVMInstanceReference` 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 `IbmCloudPower::PVMInstanceReference`. 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 } if attributes.key?(:'pvm_instance_id') self.pvm_instance_id = attributes[:'pvm_instance_id'] end if attributes.key?(:'server_name') self.server_name = attributes[:'server_name'] end if attributes.key?(:'image_id') self.image_id = attributes[:'image_id'] end if attributes.key?(:'processors') self.processors = attributes[:'processors'] end if attributes.key?(:'minproc') self.minproc = attributes[:'minproc'] end if attributes.key?(:'maxproc') self.maxproc = attributes[:'maxproc'] end if attributes.key?(:'proc_type') self.proc_type = attributes[:'proc_type'] else self.proc_type = 'dedicated' end if attributes.key?(:'memory') self.memory = attributes[:'memory'] end if attributes.key?(:'minmem') self.minmem = attributes[:'minmem'] end if attributes.key?(:'maxmem') self.maxmem = attributes[:'maxmem'] end if attributes.key?(:'disk_size') self.disk_size = attributes[:'disk_size'] end if attributes.key?(:'addresses') if (value = attributes[:'addresses']).is_a?(Array) self.addresses = value end end if attributes.key?(:'networks') if (value = attributes[:'networks']).is_a?(Array) self.networks = value end end if attributes.key?(:'status') self.status = attributes[:'status'] end if attributes.key?(:'progress') self.progress = attributes[:'progress'] end if attributes.key?(:'fault') self.fault = attributes[:'fault'] end if attributes.key?(:'creation_date') self.creation_date = attributes[:'creation_date'] end if attributes.key?(:'updated_date') self.updated_date = attributes[:'updated_date'] end if attributes.key?(:'storage_pool') self.storage_pool = attributes[:'storage_pool'] end if attributes.key?(:'storage_pool_affinity') self.storage_pool_affinity = attributes[:'storage_pool_affinity'] else self.storage_pool_affinity = true end if attributes.key?(:'storage_type') self.storage_type = attributes[:'storage_type'] end if attributes.key?(:'sys_type') self.sys_type = attributes[:'sys_type'] end if attributes.key?(:'health') self.health = attributes[:'health'] end if attributes.key?(:'href') self.href = attributes[:'href'] end if attributes.key?(:'software_licenses') self.software_licenses = attributes[:'software_licenses'] end if attributes.key?(:'srcs') if (value = attributes[:'srcs']).is_a?(Array) self.srcs = value end end if attributes.key?(:'pin_policy') self.pin_policy = attributes[:'pin_policy'] end if attributes.key?(:'os_type') self.os_type = attributes[:'os_type'] end if attributes.key?(:'operating_system') self. = attributes[:'operating_system'] end if attributes.key?(:'sap_profile') self.sap_profile = attributes[:'sap_profile'] end if attributes.key?(:'virtual_cores') self.virtual_cores = attributes[:'virtual_cores'] end end |
Instance Attribute Details
#addresses ⇒ Object
(deprecated - replaced by networks) The list of addresses and their network information
52 53 54 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 52 def addresses @addresses end |
#creation_date ⇒ Object
Date/Time of PVM creation
66 67 68 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 66 def creation_date @creation_date end |
#disk_size ⇒ Object
Size of allocated disk (in GB)
49 50 51 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 49 def disk_size @disk_size end |
#fault ⇒ Object
Returns the value of attribute fault.
63 64 65 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 63 def fault @fault end |
#health ⇒ Object
Returns the value of attribute health.
83 84 85 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 83 def health @health end |
#href ⇒ Object
Link to Cloud Instance resource
86 87 88 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 86 def href @href end |
#image_id ⇒ Object
The ImageID used by the server
25 26 27 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 25 def image_id @image_id end |
#maxmem ⇒ Object
Maximum amount of memory that can be allocated (in GB, for resize)
46 47 48 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 46 def maxmem @maxmem end |
#maxproc ⇒ Object
Maximum number of processors that can be allocated (for resize)
34 35 36 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 34 def maxproc @maxproc end |
#memory ⇒ Object
Amount of memory allocated (in GB)
40 41 42 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 40 def memory @memory end |
#minmem ⇒ Object
Minimum amount of memory that can be allocated (in GB, for resize)
43 44 45 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 43 def minmem @minmem end |
#minproc ⇒ Object
Minimum number of processors that can be allocated (for resize)
31 32 33 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 31 def minproc @minproc end |
#networks ⇒ Object
The list of addresses and their network information
55 56 57 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 55 def networks @networks end |
#operating_system ⇒ Object
OS system information (usually version and build)
100 101 102 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 100 def end |
#os_type ⇒ Object
Type of the OS [aix, ibmi, rhel, sles]
97 98 99 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 97 def os_type @os_type end |
#pin_policy ⇒ Object
VM pinning policy to use [none, soft, hard]
94 95 96 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 94 def pin_policy @pin_policy end |
#proc_type ⇒ Object
Processor type (dedicated, shared, capped)
37 38 39 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 37 def proc_type @proc_type end |
#processors ⇒ Object
Number of processors allocated
28 29 30 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 28 def processors @processors end |
#progress ⇒ Object
The progress of an operation
61 62 63 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 61 def progress @progress end |
#pvm_instance_id ⇒ Object
PCloud PVM Instance ID
19 20 21 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 19 def pvm_instance_id @pvm_instance_id end |
#sap_profile ⇒ Object
Returns the value of attribute sap_profile.
102 103 104 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 102 def sap_profile @sap_profile end |
#server_name ⇒ Object
Name of the server
22 23 24 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 22 def server_name @server_name end |
#software_licenses ⇒ Object
Returns the value of attribute software_licenses.
88 89 90 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 88 def software_licenses @software_licenses end |
#srcs ⇒ Object
The pvm instance SRC lists
91 92 93 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 91 def srcs @srcs end |
#status ⇒ Object
The status of the instance
58 59 60 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 58 def status @status end |
#storage_pool ⇒ Object
Storage Pool where server is deployed
72 73 74 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 72 def storage_pool @storage_pool end |
#storage_pool_affinity ⇒ Object
Indicates if all volumes attached to the server must reside in the same storage pool
75 76 77 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 75 def storage_pool_affinity @storage_pool_affinity end |
#storage_type ⇒ Object
Storage type of the deployment storage pool
78 79 80 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 78 def storage_type @storage_type end |
#sys_type ⇒ Object
System type used to host the instance
81 82 83 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 81 def sys_type @sys_type end |
#updated_date ⇒ Object
Date/Time of PVM last update
69 70 71 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 69 def updated_date @updated_date end |
#virtual_cores ⇒ Object
Returns the value of attribute virtual_cores.
104 105 106 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 104 def virtual_cores @virtual_cores end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
166 167 168 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 166 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 129 def self.attribute_map { :'pvm_instance_id' => :'pvmInstanceID', :'server_name' => :'serverName', :'image_id' => :'imageID', :'processors' => :'processors', :'minproc' => :'minproc', :'maxproc' => :'maxproc', :'proc_type' => :'procType', :'memory' => :'memory', :'minmem' => :'minmem', :'maxmem' => :'maxmem', :'disk_size' => :'diskSize', :'addresses' => :'addresses', :'networks' => :'networks', :'status' => :'status', :'progress' => :'progress', :'fault' => :'fault', :'creation_date' => :'creationDate', :'updated_date' => :'updatedDate', :'storage_pool' => :'storagePool', :'storage_pool_affinity' => :'storagePoolAffinity', :'storage_type' => :'storageType', :'sys_type' => :'sysType', :'health' => :'health', :'href' => :'href', :'software_licenses' => :'softwareLicenses', :'srcs' => :'srcs', :'pin_policy' => :'pinPolicy', :'os_type' => :'osType', :'operating_system' => :'operatingSystem', :'sap_profile' => :'sapProfile', :'virtual_cores' => :'virtualCores' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
491 492 493 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 491 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
208 209 210 211 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 208 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 171 def self.openapi_types { :'pvm_instance_id' => :'String', :'server_name' => :'String', :'image_id' => :'String', :'processors' => :'Float', :'minproc' => :'Float', :'maxproc' => :'Float', :'proc_type' => :'String', :'memory' => :'Float', :'minmem' => :'Float', :'maxmem' => :'Float', :'disk_size' => :'Float', :'addresses' => :'Array<PVMInstanceNetwork>', :'networks' => :'Array<PVMInstanceNetwork>', :'status' => :'String', :'progress' => :'Float', :'fault' => :'PVMInstanceFault', :'creation_date' => :'Time', :'updated_date' => :'Time', :'storage_pool' => :'String', :'storage_pool_affinity' => :'Boolean', :'storage_type' => :'String', :'sys_type' => :'String', :'health' => :'PVMInstanceHealth', :'href' => :'String', :'software_licenses' => :'SoftwareLicenses', :'srcs' => :'Array<Array<SRC>>', :'pin_policy' => :'String', :'os_type' => :'String', :'operating_system' => :'String', :'sap_profile' => :'SAPProfileReference', :'virtual_cores' => :'VirtualCores' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 440 def ==(o) return true if self.equal?(o) self.class == o.class && pvm_instance_id == o.pvm_instance_id && server_name == o.server_name && image_id == o.image_id && processors == o.processors && minproc == o.minproc && maxproc == o.maxproc && proc_type == o.proc_type && memory == o.memory && minmem == o.minmem && maxmem == o.maxmem && disk_size == o.disk_size && addresses == o.addresses && networks == o.networks && status == o.status && progress == o.progress && fault == o.fault && creation_date == o.creation_date && updated_date == o.updated_date && storage_pool == o.storage_pool && storage_pool_affinity == o.storage_pool_affinity && storage_type == o.storage_type && sys_type == o.sys_type && health == o.health && href == o.href && software_licenses == o.software_licenses && srcs == o.srcs && pin_policy == o.pin_policy && os_type == o.os_type && == o. && sap_profile == o.sap_profile && virtual_cores == o.virtual_cores end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 522 def _deserialize(type, value) case type.to_sym when :Time Time.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 # models (e.g. Pet) or oneOf klass = IbmCloudPower.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.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
593 594 595 596 597 598 599 600 601 602 603 604 605 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 593 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
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 498 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif 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 end self end |
#eql?(o) ⇒ Boolean
478 479 480 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 478 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
484 485 486 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 484 def hash [pvm_instance_id, server_name, image_id, processors, minproc, maxproc, proc_type, memory, minmem, maxmem, disk_size, addresses, networks, status, progress, fault, creation_date, updated_date, storage_pool, storage_pool_affinity, storage_type, sys_type, health, href, software_licenses, srcs, pin_policy, os_type, , sap_profile, virtual_cores].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 365 def list_invalid_properties invalid_properties = Array.new if @pvm_instance_id.nil? invalid_properties.push('invalid value for "pvm_instance_id", pvm_instance_id cannot be nil.') end if @server_name.nil? invalid_properties.push('invalid value for "server_name", server_name cannot be nil.') end if @image_id.nil? invalid_properties.push('invalid value for "image_id", image_id cannot be nil.') end if @processors.nil? invalid_properties.push('invalid value for "processors", processors cannot be nil.') end if @proc_type.nil? invalid_properties.push('invalid value for "proc_type", proc_type cannot be nil.') end if @memory.nil? invalid_properties.push('invalid value for "memory", memory cannot be nil.') end if @disk_size.nil? invalid_properties.push('invalid value for "disk_size", disk_size cannot be nil.') end if @status.nil? invalid_properties.push('invalid value for "status", status cannot be nil.') end if @href.nil? invalid_properties.push('invalid value for "href", href cannot be nil.') end if @os_type.nil? invalid_properties.push('invalid value for "os_type", os_type cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
569 570 571 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 569 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
575 576 577 578 579 580 581 582 583 584 585 586 587 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 575 def to_hash hash = {} 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
563 564 565 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 563 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/ibm_cloud_power/models/pvm_instance_reference.rb', line 412 def valid? return false if @pvm_instance_id.nil? return false if @server_name.nil? return false if @image_id.nil? return false if @processors.nil? return false if @proc_type.nil? proc_type_validator = EnumAttributeValidator.new('String', ["dedicated", "shared", "capped", ""]) return false unless proc_type_validator.valid?(@proc_type) return false if @memory.nil? return false if @disk_size.nil? return false if @status.nil? return false if @href.nil? return false if @os_type.nil? true end |