class Google::Apis::TpuV1::Symptom

A Symptom instance.

Attributes

create_time[RW]

Timestamp when the Symptom is created. Corresponds to the JSON property `createTime` @return [String]

details[RW]

Detailed information of the current Symptom. Corresponds to the JSON property `details` @return [String]

symptom_type[RW]

Type of the Symptom. Corresponds to the JSON property `symptomType` @return [String]

worker_id[RW]

A string used to uniquely distinguish a worker within a TPU node. Corresponds to the JSON property `workerId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/tpu_v1/classes.rb, line 686
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/tpu_v1/classes.rb, line 691
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @details = args[:details] if args.key?(:details)
  @symptom_type = args[:symptom_type] if args.key?(:symptom_type)
  @worker_id = args[:worker_id] if args.key?(:worker_id)
end