Class: Google::Apis::HealthcareV1beta1::OperationMetadata

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

Overview

OperationMetadata provides information about the operation execution. Returned in the long-running operation's metadata field.

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) ⇒ OperationMetadata

Returns a new instance of OperationMetadata.



2194
2195
2196
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2194

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

Instance Attribute Details

#api_method_nameString

The name of the API method that initiated the operation. Corresponds to the JSON property apiMethodName

Returns:

  • (String)


2177
2178
2179
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2177

def api_method_name
  @api_method_name
end

#counterGoogle::Apis::HealthcareV1beta1::ProgressCounter

ProgressCounter provides counters to describe an operation's progress. Corresponds to the JSON property counter



2182
2183
2184
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2182

def counter
  @counter
end

#create_timeString

The time at which the operation was created by the API. Corresponds to the JSON property createTime

Returns:

  • (String)


2187
2188
2189
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2187

def create_time
  @create_time
end

#end_timeString

The time at which execution was completed. Corresponds to the JSON property endTime

Returns:

  • (String)


2192
2193
2194
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2192

def end_time
  @end_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2199
2200
2201
2202
2203
2204
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2199

def update!(**args)
  @api_method_name = args[:api_method_name] if args.key?(:api_method_name)
  @counter = args[:counter] if args.key?(:counter)
  @create_time = args[:create_time] if args.key?(:create_time)
  @end_time = args[:end_time] if args.key?(:end_time)
end