Class: Google::Apis::TpuV1alpha1::NetworkEndpoint

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/tpu_v1alpha1/classes.rb,
lib/google/apis/tpu_v1alpha1/representations.rb,
lib/google/apis/tpu_v1alpha1/representations.rb

Overview

A network endpoint over which a TPU worker can be reached.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NetworkEndpoint

Returns a new instance of NetworkEndpoint.



270
271
272
# File 'lib/google/apis/tpu_v1alpha1/classes.rb', line 270

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ip_addressString

The IP address of this network endpoint. Corresponds to the JSON property ipAddress

Returns:

  • (String)


263
264
265
# File 'lib/google/apis/tpu_v1alpha1/classes.rb', line 263

def ip_address
  @ip_address
end

#portFixnum

The port of this network endpoint. Corresponds to the JSON property port

Returns:

  • (Fixnum)


268
269
270
# File 'lib/google/apis/tpu_v1alpha1/classes.rb', line 268

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



275
276
277
278
# File 'lib/google/apis/tpu_v1alpha1/classes.rb', line 275

def update!(**args)
  @ip_address = args[:ip_address] if args.key?(:ip_address)
  @port = args[:port] if args.key?(:port)
end