Class: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkOpticalPower
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkOpticalPower
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#state ⇒ String
The status of the current value when compared to the warning and alarm levels for the receiving or transmitting transceiver.
-
#value ⇒ Float
Value of the current receiving or transmitting optical power, read in dBm.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectDiagnosticsLinkOpticalPower
constructor
A new instance of InterconnectDiagnosticsLinkOpticalPower.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectDiagnosticsLinkOpticalPower
Returns a new instance of InterconnectDiagnosticsLinkOpticalPower.
21399 21400 21401 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21399 def initialize(**args) update!(**args) end |
Instance Attribute Details
#state ⇒ String
The status of the current value when compared to the warning and alarm levels
for the receiving or transmitting transceiver. Possible states include: - OK:
The value has not crossed a warning threshold. - LOW_WARNING: The value has
crossed below the low warning threshold. - HIGH_WARNING: The value has crossed
above the high warning threshold. - LOW_ALARM: The value has crossed below the
low alarm threshold. - HIGH_ALARM: The value has crossed above the high alarm
threshold.
Corresponds to the JSON property state
21389 21390 21391 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21389 def state @state end |
#value ⇒ Float
Value of the current receiving or transmitting optical power, read in dBm.
Take a known good optical value, give it a 10% margin and trigger warnings
relative to that value. In general, a -7dBm warning and a -11dBm alarm are
good optical value estimates for most links.
Corresponds to the JSON property value
21397 21398 21399 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21397 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21404 21405 21406 21407 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21404 def update!(**args) @state = args[:state] if args.key?(:state) @value = args[:value] if args.key?(:value) end |