Class: Google::Apis::TpuV2::Symptom
- Inherits:
-
Object
- Object
- Google::Apis::TpuV2::Symptom
- 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 Symptom instance.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Timestamp when the Symptom is created.
-
#details ⇒ String
Detailed information of the current Symptom.
-
#symptom_type ⇒ String
Type of the Symptom.
-
#worker_id ⇒ String
A string used to uniquely distinguish a worker within a TPU node.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Symptom
constructor
A new instance of Symptom.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Symptom
Returns a new instance of Symptom.
1007 1008 1009 |
# File 'lib/google/apis/tpu_v2/classes.rb', line 1007 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Timestamp when the Symptom is created.
Corresponds to the JSON property createTime
990 991 992 |
# File 'lib/google/apis/tpu_v2/classes.rb', line 990 def create_time @create_time end |
#details ⇒ String
Detailed information of the current Symptom.
Corresponds to the JSON property details
995 996 997 |
# File 'lib/google/apis/tpu_v2/classes.rb', line 995 def details @details end |
#symptom_type ⇒ String
Type of the Symptom.
Corresponds to the JSON property symptomType
1000 1001 1002 |
# File 'lib/google/apis/tpu_v2/classes.rb', line 1000 def symptom_type @symptom_type end |
#worker_id ⇒ String
A string used to uniquely distinguish a worker within a TPU node.
Corresponds to the JSON property workerId
1005 1006 1007 |
# File 'lib/google/apis/tpu_v2/classes.rb', line 1005 def worker_id @worker_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1012 1013 1014 1015 1016 1017 |
# File 'lib/google/apis/tpu_v2/classes.rb', line 1012 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 |