Class: Google::Apis::ComputeAlpha::NetworkEndpointGroupPscData
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::NetworkEndpointGroupPscData
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
All data that is specifically relevant to only network endpoint groups of type PRIVATE_SERVICE_CONNECT.
Instance Attribute Summary collapse
-
#consumer_psc_address ⇒ String
[Output Only] Address allocated from given subnetwork for PSC.
-
#psc_connection_id ⇒ Fixnum
[Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer.
-
#psc_connection_status ⇒ String
[Output Only] The connection status of the PSC Forwarding Rule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkEndpointGroupPscData
constructor
A new instance of NetworkEndpointGroupPscData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkEndpointGroupPscData
Returns a new instance of NetworkEndpointGroupPscData.
27006 27007 27008 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27006 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_psc_address ⇒ String
[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
26994 26995 26996 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26994 def consumer_psc_address @consumer_psc_address end |
#psc_connection_id ⇒ Fixnum
[Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer.
Corresponds to the JSON property pscConnectionId
26999 27000 27001 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26999 def psc_connection_id @psc_connection_id end |
#psc_connection_status ⇒ String
[Output Only] The connection status of the PSC Forwarding Rule.
Corresponds to the JSON property pscConnectionStatus
27004 27005 27006 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27004 def psc_connection_status @psc_connection_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27011 27012 27013 27014 27015 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 27011 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 |