class Google::Apis::ComputeV1::ServiceAttachmentConnectedEndpoint

Output Only

A connection connected to this service attachment.

Attributes

endpoint[RW]

The url of a connected endpoint. Corresponds to the JSON property `endpoint` @return [String]

psc_connection_id[RW]

The PSC connection id of the connected endpoint. Corresponds to the JSON property `pscConnectionId` @return [Fixnum]

status[RW]

The status of a connected endpoint to this service attachment. Corresponds to the JSON property `status` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 29842
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 29847
def update!(**args)
  @endpoint = args[:endpoint] if args.key?(:endpoint)
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
  @status = args[:status] if args.key?(:status)
end