Class: Google::Apis::ComputeBeta::InterconnectDiagnosticsLinkOpticalPower
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InterconnectDiagnosticsLinkOpticalPower
- 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
-
#state ⇒ String
Corresponds to the JSON property
state
. -
#value ⇒ Float
Value of the current 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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InterconnectDiagnosticsLinkOpticalPower
Returns a new instance of InterconnectDiagnosticsLinkOpticalPower
12243 12244 12245 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12243 def initialize(**args) update!(**args) end |
Instance Attribute Details
#state ⇒ String
Corresponds to the JSON property state
12233 12234 12235 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12233 def state @state end |
#value ⇒ Float
Value of the current 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
12241 12242 12243 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12241 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12248 12249 12250 12251 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12248 def update!(**args) @state = args[:state] if args.key?(:state) @value = args[:value] if args.key?(:value) end |