Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p6beta1BatchOperationMetadata

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

Overview

Metadata for the batch operations such as the current state. This is included in the metadata field of the Operation returned by the GetOperation call of the google::longrunning::Operations service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVisionV1p6beta1BatchOperationMetadata

Returns a new instance of GoogleCloudVisionV1p6beta1BatchOperationMetadata



11109
11110
11111
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 11109

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

Instance Attribute Details

#end_timeString

The time when the batch request is finished and google.longrunning.Operation.done is set to true. Corresponds to the JSON property endTime

Returns:

  • (String)


11097
11098
11099
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 11097

def end_time
  @end_time
end

#stateString

The current state of the batch operation. Corresponds to the JSON property state

Returns:

  • (String)


11102
11103
11104
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 11102

def state
  @state
end

#submit_timeString

The time when the batch request was submitted to the server. Corresponds to the JSON property submitTime

Returns:

  • (String)


11107
11108
11109
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 11107

def submit_time
  @submit_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11114
11115
11116
11117
11118
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 11114

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @state = args[:state] if args.key?(:state)
  @submit_time = args[:submit_time] if args.key?(:submit_time)
end