Class: MistApi::DiscoveredSwitchMetricAp

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/mist_api/models/discovered_switch_metric_ap.rb

Overview

DiscoveredSwitchMetricAp Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json

Constructor Details

#initialize(hostname = SKIP, mac = SKIP, poe_status = SKIP, port = SKIP, port_id = SKIP, power_draw = SKIP, mwhen = SKIP) ⇒ DiscoveredSwitchMetricAp

Returns a new instance of DiscoveredSwitchMetricAp.



71
72
73
74
75
76
77
78
79
80
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 71

def initialize(hostname = SKIP, mac = SKIP, poe_status = SKIP, port = SKIP,
               port_id = SKIP, power_draw = SKIP, mwhen = SKIP)
  @hostname = hostname unless hostname == SKIP
  @mac = mac unless mac == SKIP
  @poe_status = poe_status unless poe_status == SKIP
  @port = port unless port == SKIP
  @port_id = port_id unless port_id == SKIP
  @power_draw = power_draw unless power_draw == SKIP
  @mwhen = mwhen unless mwhen == SKIP
end

Instance Attribute Details

#hostnameString

TODO: Write general description for this method

Returns:

  • (String)


14
15
16
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 14

def hostname
  @hostname
end

#macString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 18

def mac
  @mac
end

#mwhenString

TODO: Write general description for this method

Returns:

  • (String)


38
39
40
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 38

def mwhen
  @mwhen
end

#poe_statusTrueClass | FalseClass

TODO: Write general description for this method

Returns:

  • (TrueClass | FalseClass)


22
23
24
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 22

def poe_status
  @poe_status
end

#portString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 26

def port
  @port
end

#port_idString

TODO: Write general description for this method

Returns:

  • (String)


30
31
32
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 30

def port_id
  @port_id
end

#power_drawInteger

TODO: Write general description for this method

Returns:

  • (Integer)


34
35
36
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 34

def power_draw
  @power_draw
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 83

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  hostname = hash.key?('hostname') ? hash['hostname'] : SKIP
  mac = hash.key?('mac') ? hash['mac'] : SKIP
  poe_status = hash.key?('poe_status') ? hash['poe_status'] : SKIP
  port = hash.key?('port') ? hash['port'] : SKIP
  port_id = hash.key?('port_id') ? hash['port_id'] : SKIP
  power_draw = hash.key?('power_draw') ? hash['power_draw'] : SKIP
  mwhen = hash.key?('when') ? hash['when'] : SKIP

  # Create object from extracted values.
  DiscoveredSwitchMetricAp.new(hostname,
                               mac,
                               poe_status,
                               port,
                               port_id,
                               power_draw,
                               mwhen)
end

.namesObject

A mapping from model property names to API property names.



41
42
43
44
45
46
47
48
49
50
51
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 41

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['hostname'] = 'hostname'
  @_hash['mac'] = 'mac'
  @_hash['poe_status'] = 'poe_status'
  @_hash['port'] = 'port'
  @_hash['port_id'] = 'port_id'
  @_hash['power_draw'] = 'power_draw'
  @_hash['mwhen'] = 'when'
  @_hash
end

.nullablesObject

An array for nullable fields



67
68
69
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 67

def self.nullables
  []
end

.optionalsObject

An array for optional fields



54
55
56
57
58
59
60
61
62
63
64
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 54

def self.optionals
  %w[
    hostname
    mac
    poe_status
    port
    port_id
    power_draw
    mwhen
  ]
end

Instance Method Details

#inspectObject

Provides a debugging-friendly string with detailed object information.



113
114
115
116
117
118
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 113

def inspect
  class_name = self.class.name.split('::').last
  "<#{class_name} hostname: #{@hostname.inspect}, mac: #{@mac.inspect}, poe_status:"\
  " #{@poe_status.inspect}, port: #{@port.inspect}, port_id: #{@port_id.inspect}, power_draw:"\
  " #{@power_draw.inspect}, mwhen: #{@mwhen.inspect}>"
end

#to_sObject

Provides a human-readable string representation of the object.



106
107
108
109
110
# File 'lib/mist_api/models/discovered_switch_metric_ap.rb', line 106

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} hostname: #{@hostname}, mac: #{@mac}, poe_status: #{@poe_status}, port:"\
  " #{@port}, port_id: #{@port_id}, power_draw: #{@power_draw}, mwhen: #{@mwhen}>"
end