Class: Google::Apis::CloudtasksV2beta3::Attempt

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudtasks_v2beta3/classes.rb,
generated/google/apis/cloudtasks_v2beta3/representations.rb,
generated/google/apis/cloudtasks_v2beta3/representations.rb

Overview

The status of a task attempt.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Attempt

Returns a new instance of Attempt.



362
363
364
# File 'generated/google/apis/cloudtasks_v2beta3/classes.rb', line 362

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

Instance Attribute Details

#dispatch_timeString

Output only. The time that this attempt was dispatched. dispatch_time will be truncated to the nearest microsecond. Corresponds to the JSON property dispatchTime

Returns:

  • (String)


338
339
340
# File 'generated/google/apis/cloudtasks_v2beta3/classes.rb', line 338

def dispatch_time
  @dispatch_time
end

#response_statusGoogle::Apis::CloudtasksV2beta3::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



348
349
350
# File 'generated/google/apis/cloudtasks_v2beta3/classes.rb', line 348

def response_status
  @response_status
end

#response_timeString

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

Returns:

  • (String)


354
355
356
# File 'generated/google/apis/cloudtasks_v2beta3/classes.rb', line 354

def response_time
  @response_time
end

#schedule_timeString

Output only. The time that this attempt was scheduled. schedule_time will be truncated to the nearest microsecond. Corresponds to the JSON property scheduleTime

Returns:

  • (String)


360
361
362
# File 'generated/google/apis/cloudtasks_v2beta3/classes.rb', line 360

def schedule_time
  @schedule_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



367
368
369
370
371
372
# File 'generated/google/apis/cloudtasks_v2beta3/classes.rb', line 367

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