class Google::Apis::ComputeV1::NetworkEndpointGroupPscData

All data that is specifically relevant to only network endpoint groups of type PRIVATE_SERVICE_CONNECT.

Attributes

consumer_psc_address[RW]
Output Only

Address allocated from given subnetwork for PSC. This IP address

acts as a VIP for a PSC NEG, allowing it to act as an endpoint in L7 PSC-XLB. Corresponds to the JSON property `consumerPscAddress` @return [String]

psc_connection_id[RW]
Output Only

The PSC connection id of the PSC Network Endpoint Group Consumer.

Corresponds to the JSON property `pscConnectionId` @return [Fixnum]

psc_connection_status[RW]
Output Only

The connection status of the PSC Forwarding Rule.

Corresponds to the JSON property `pscConnectionStatus` @return [String]

Public Class Methods

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