class Google::Apis::ComputeV1::InterconnectDiagnosticsLinkLacpStatus

Attributes

google_system_id[RW]

System ID of the port on Google's side of the LACP exchange. Corresponds to the JSON property `googleSystemId` @return [String]

neighbor_system_id[RW]

System ID of the port on the neighbor's side of the LACP exchange. Corresponds to the JSON property `neighborSystemId` @return [String]

state[RW]

The state of a LACP link, which can take one of the following values: - ACTIVE: The link is configured and active within the bundle. - DETACHED: The link is not configured within the bundle. This means that the rest of the object should be empty. Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 17287
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 17292
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