Class: Google::Apis::ComputeBeta::InterconnectDiagnosticsLinkOpticalPower

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterconnectDiagnosticsLinkOpticalPower

Returns a new instance of InterconnectDiagnosticsLinkOpticalPower.



16543
16544
16545
# File 'generated/google/apis/compute_beta/classes.rb', line 16543

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#stateString

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

Returns:

  • (String)


16533
16534
16535
# File 'generated/google/apis/compute_beta/classes.rb', line 16533

def state
  @state
end

#valueFloat

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

Returns:

  • (Float)


16541
16542
16543
# File 'generated/google/apis/compute_beta/classes.rb', line 16541

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16548
16549
16550
16551
# File 'generated/google/apis/compute_beta/classes.rb', line 16548

def update!(**args)
  @state = args[:state] if args.key?(:state)
  @value = args[:value] if args.key?(:value)
end