Class: Google::Apis::ComputeV1::InterconnectDiagnosticsLinkLacpStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InterconnectDiagnosticsLinkLacpStatus
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#google_system_id ⇒ String
System ID of the port on Google?s side of the LACP exchange.
-
#neighbor_system_id ⇒ String
System ID of the port on the neighbor?s side of the LACP exchange.
-
#state ⇒ String
Corresponds to the JSON property
state
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectDiagnosticsLinkLacpStatus
constructor
A new instance of InterconnectDiagnosticsLinkLacpStatus.
-
#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) ⇒ InterconnectDiagnosticsLinkLacpStatus
Returns a new instance of InterconnectDiagnosticsLinkLacpStatus
10721 10722 10723 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10721 def initialize(**args) update!(**args) end |
Instance Attribute Details
#google_system_id ⇒ String
System ID of the port on Google?s side of the LACP exchange.
Corresponds to the JSON property googleSystemId
10709 10710 10711 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10709 def google_system_id @google_system_id end |
#neighbor_system_id ⇒ String
System ID of the port on the neighbor?s side of the LACP exchange.
Corresponds to the JSON property neighborSystemId
10714 10715 10716 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10714 def neighbor_system_id @neighbor_system_id end |
#state ⇒ String
Corresponds to the JSON property state
10719 10720 10721 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10719 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10726 10727 10728 10729 10730 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10726 def update!(**args) @google_system_id = args[:google_system_id] if args.key?(:google_system_id) @neighbor_system_id = args[:neighbor_system_id] if args.key?(:neighbor_system_id) @state = args[:state] if args.key?(:state) end |