Class: Google::Apis::TpuV1alpha1::NetworkEndpoint
- Inherits:
-
Object
- Object
- Google::Apis::TpuV1alpha1::NetworkEndpoint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tpu_v1alpha1/classes.rb,
generated/google/apis/tpu_v1alpha1/representations.rb,
generated/google/apis/tpu_v1alpha1/representations.rb
Overview
A network endpoint over which a TPU worker can be reached.
Instance Attribute Summary collapse
-
#ip_address ⇒ String
The IP address of this network endpoint.
-
#port ⇒ Fixnum
The port of this network endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkEndpoint
constructor
A new instance of NetworkEndpoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ NetworkEndpoint
Returns a new instance of NetworkEndpoint
255 256 257 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_address ⇒ String
The IP address of this network endpoint.
Corresponds to the JSON property ipAddress
248 249 250 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 248 def ip_address @ip_address end |
#port ⇒ Fixnum
The port of this network endpoint.
Corresponds to the JSON property port
253 254 255 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 253 def port @port end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
260 261 262 263 |
# File 'generated/google/apis/tpu_v1alpha1/classes.rb', line 260 def update!(**args) @ip_address = args[:ip_address] if args.key?(:ip_address) @port = args[:port] if args.key?(:port) end |