Class: Google::Apis::ServicecontrolV1::Peer
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::Peer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb
Overview
This message defines attributes for a node that handles a network request.
The node can be either a service or an application that sends, forwards,
or receives the request. Service peers should fill in the service
,
principal
, and labels
as appropriate.
Instance Attribute Summary collapse
-
#ip ⇒ String
The IP address of the peer.
-
#labels ⇒ Hash<String,String>
The labels associated with the peer.
-
#port ⇒ Fixnum
The network port of the peer.
-
#principal ⇒ String
The identity of this peer.
-
#region_code ⇒ String
The CLDR country/region code associated with the above IP address.
-
#service ⇒ String
The canonical service name of the peer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Peer
constructor
A new instance of Peer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Peer
Returns a new instance of Peer
1472 1473 1474 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1472 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip ⇒ String
The IP address of the peer.
Corresponds to the JSON property ip
1440 1441 1442 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1440 def ip @ip end |
#labels ⇒ Hash<String,String>
The labels associated with the peer.
Corresponds to the JSON property labels
1445 1446 1447 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1445 def labels @labels end |
#port ⇒ Fixnum
The network port of the peer.
Corresponds to the JSON property port
1450 1451 1452 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1450 def port @port end |
#principal ⇒ String
The identity of this peer. Similar to Request.auth.principal
, but
relative to the peer instead of the request. For example, the
idenity associated with a load balancer that forwared the request.
Corresponds to the JSON property principal
1457 1458 1459 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1457 def principal @principal end |
#region_code ⇒ String
The CLDR country/region code associated with the above IP address.
If the IP address is private, the region_code
should reflect the
physical location where this peer is running.
Corresponds to the JSON property regionCode
1464 1465 1466 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1464 def region_code @region_code end |
#service ⇒ String
The canonical service name of the peer.
NOTE: different systems may have different service naming schemes.
Corresponds to the JSON property service
1470 1471 1472 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1470 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1477 1478 1479 1480 1481 1482 1483 1484 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1477 def update!(**args) @ip = args[:ip] if args.key?(:ip) @labels = args[:labels] if args.key?(:labels) @port = args[:port] if args.key?(:port) @principal = args[:principal] if args.key?(:principal) @region_code = args[:region_code] if args.key?(:region_code) @service = args[:service] if args.key?(:service) end |