Class: Google::Apis::ComputeBeta::InterconnectDiagnosticsLinkLacpStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InterconnectDiagnosticsLinkLacpStatus
- 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
-
#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
11267 11268 11269 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11267 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
11255 11256 11257 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11255 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
11260 11261 11262 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11260 def neighbor_system_id @neighbor_system_id end |
#state ⇒ String
Corresponds to the JSON property state
11265 11266 11267 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11265 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11272 11273 11274 11275 11276 |
# File 'generated/google/apis/compute_beta/classes.rb', line 11272 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 |