Class: Google::Apis::TpuV1::NetworkEndpoint

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ NetworkEndpoint

Returns a new instance of NetworkEndpoint.



273
274
275
# File 'generated/google/apis/tpu_v1/classes.rb', line 273

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)


266
267
268
# File 'generated/google/apis/tpu_v1/classes.rb', line 266

def ip_address
  @ip_address
end

#portFixnum

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

Returns:

  • (Fixnum)


271
272
273
# File 'generated/google/apis/tpu_v1/classes.rb', line 271

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



278
279
280
281
# File 'generated/google/apis/tpu_v1/classes.rb', line 278

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