Class: UntitledApi::InternalDevicesUpgradeRequest1

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/untitled_api/models/internal_devices_upgrade_request1.rb

Overview

InternalDevicesUpgradeRequest1 Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(channel = SKIP, distro = SKIP, device_type = SKIP, strategy = SKIP, device_ids = SKIP, max_failure_percentage = SKIP) ⇒ InternalDevicesUpgradeRequest1

Returns a new instance of InternalDevicesUpgradeRequest1.



65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 65

def initialize(channel = SKIP,
               distro = SKIP,
               device_type = SKIP,
               strategy = SKIP,
               device_ids = SKIP,
               max_failure_percentage = SKIP)
  @channel = channel unless channel == SKIP
  @distro = distro unless distro == SKIP
  @device_type = device_type unless device_type == SKIP
  @strategy = strategy unless strategy == SKIP
  @device_ids = device_ids unless device_ids == SKIP
  @max_failure_percentage = max_failure_percentage unless max_failure_percentage == SKIP
end

Instance Attribute Details

#channelString

TODO: Write general description for this method

Returns:

  • (String)


14
15
16
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 14

def channel
  @channel
end

#device_idsObject

TODO: Write general description for this method

Returns:

  • (Object)


30
31
32
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 30

def device_ids
  @device_ids
end

#device_typeString

TODO: Write general description for this method

Returns:

  • (String)


22
23
24
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 22

def device_type
  @device_type
end

#distroString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 18

def distro
  @distro
end

#max_failure_percentageObject

TODO: Write general description for this method

Returns:

  • (Object)


34
35
36
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 34

def max_failure_percentage
  @max_failure_percentage
end

#strategyString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 26

def strategy
  @strategy
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 80

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  channel = hash.key?('channel') ? hash['channel'] : SKIP
  distro = hash.key?('distro') ? hash['distro'] : SKIP
  device_type = hash.key?('device_type') ? hash['device_type'] : SKIP
  strategy = hash.key?('strategy') ? hash['strategy'] : SKIP
  device_ids = hash.key?('device_ids') ? hash['device_ids'] : SKIP
  max_failure_percentage =
    hash.key?('max_failure_percentage') ? hash['max_failure_percentage'] : SKIP

  # Create object from extracted values.
  InternalDevicesUpgradeRequest1.new(channel,
                                     distro,
                                     device_type,
                                     strategy,
                                     device_ids,
                                     max_failure_percentage)
end

.namesObject

A mapping from model property names to API property names.



37
38
39
40
41
42
43
44
45
46
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 37

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['channel'] = 'channel'
  @_hash['distro'] = 'distro'
  @_hash['device_type'] = 'device_type'
  @_hash['strategy'] = 'strategy'
  @_hash['device_ids'] = 'device_ids'
  @_hash['max_failure_percentage'] = 'max_failure_percentage'
  @_hash
end

.nullablesObject

An array for nullable fields



61
62
63
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 61

def self.nullables
  []
end

.optionalsObject

An array for optional fields



49
50
51
52
53
54
55
56
57
58
# File 'lib/untitled_api/models/internal_devices_upgrade_request1.rb', line 49

def self.optionals
  %w[
    channel
    distro
    device_type
    strategy
    device_ids
    max_failure_percentage
  ]
end