Class: Google::Apis::LanguageV2::TpuMetric

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TpuMetric

Returns a new instance of TpuMetric.



989
990
991
# File 'lib/google/apis/language_v2/classes.rb', line 989

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

Instance Attribute Details

#tpu_secFixnum

Required. Seconds of TPU usage, e.g. 3600. Corresponds to the JSON property tpuSec

Returns:

  • (Fixnum)


982
983
984
# File 'lib/google/apis/language_v2/classes.rb', line 982

def tpu_sec
  @tpu_sec
end

#tpu_typeString

Required. Type of TPU, e.g. TPU_V2, TPU_V3_POD. Corresponds to the JSON property tpuType

Returns:

  • (String)


987
988
989
# File 'lib/google/apis/language_v2/classes.rb', line 987

def tpu_type
  @tpu_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



994
995
996
997
# File 'lib/google/apis/language_v2/classes.rb', line 994

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