Class: Google::Apis::TpuV2::NetworkEndpoint

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/tpu_v2/classes.rb,
lib/google/apis/tpu_v2/representations.rb,
lib/google/apis/tpu_v2/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.



745
746
747
# File 'lib/google/apis/tpu_v2/classes.rb', line 745

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

Instance Attribute Details

#access_configGoogle::Apis::TpuV2::AccessConfig

An access config attached to the TPU worker. Corresponds to the JSON property accessConfig



733
734
735
# File 'lib/google/apis/tpu_v2/classes.rb', line 733

def access_config
  @access_config
end

#ip_addressString

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

Returns:

  • (String)


738
739
740
# File 'lib/google/apis/tpu_v2/classes.rb', line 738

def ip_address
  @ip_address
end

#portFixnum

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

Returns:

  • (Fixnum)


743
744
745
# File 'lib/google/apis/tpu_v2/classes.rb', line 743

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



750
751
752
753
754
# File 'lib/google/apis/tpu_v2/classes.rb', line 750

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