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



1853
1854
1855
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1853

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)


1836
1837
1838
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1836

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



1841
1842
1843
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1841

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)


1846
1847
1848
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1846

def create_time
  @create_time
end

#end_timeString

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

Returns:

  • (String)


1851
1852
1853
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1851

def end_time
  @end_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1858
1859
1860
1861
1862
1863
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1858

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