Class: Google::Apis::LanguageV1beta2::TpuMetric

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TpuMetric

Returns a new instance of TpuMetric.



1289
1290
1291
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1289

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)


1282
1283
1284
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1282

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)


1287
1288
1289
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1287

def tpu_type
  @tpu_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1294
1295
1296
1297
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1294

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