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



1867
1868
1869
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1867

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)


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

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



1855
1856
1857
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1855

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)


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

def create_time
  @create_time
end

#end_timeString

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

Returns:

  • (String)


1865
1866
1867
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1865

def end_time
  @end_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1872
1873
1874
1875
1876
1877
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1872

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