Class: Google::Apis::CloudtasksV2::Attempt
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2::Attempt
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2/classes.rb,
lib/google/apis/cloudtasks_v2/representations.rb,
lib/google/apis/cloudtasks_v2/representations.rb
Overview
The status of a task attempt.
Instance Attribute Summary collapse
-
#dispatch_time ⇒ String
Output only.
-
#response_status ⇒ Google::Apis::CloudtasksV2::Status
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#response_time ⇒ String
Output only.
-
#schedule_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Attempt
constructor
A new instance of Attempt.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Attempt
Returns a new instance of Attempt.
248 249 250 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 248 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dispatch_time ⇒ String
Output only. The time that this attempt was dispatched. dispatch_time
will
be truncated to the nearest microsecond.
Corresponds to the JSON property dispatchTime
224 225 226 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 224 def dispatch_time @dispatch_time end |
#response_status ⇒ Google::Apis::CloudtasksV2::Status
The Status
type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status
message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property responseStatus
234 235 236 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 234 def response_status @response_status end |
#response_time ⇒ String
Output only. The time that this attempt response was received. response_time
will be truncated to the nearest microsecond.
Corresponds to the JSON property responseTime
240 241 242 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 240 def response_time @response_time end |
#schedule_time ⇒ String
Output only. The time that this attempt was scheduled. schedule_time
will be
truncated to the nearest microsecond.
Corresponds to the JSON property scheduleTime
246 247 248 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 246 def schedule_time @schedule_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
253 254 255 256 257 258 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 253 def update!(**args) @dispatch_time = args[:dispatch_time] if args.key?(:dispatch_time) @response_status = args[:response_status] if args.key?(:response_status) @response_time = args[:response_time] if args.key?(:response_time) @schedule_time = args[:schedule_time] if args.key?(:schedule_time) end |