Class: Google::Apis::HealthcareV1alpha2::OperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::OperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb
Overview
OperationMetadata provides information about the operation execution. Returned in the long-running operation's metadata field.
Instance Attribute Summary collapse
-
#api_method_name ⇒ String
The name of the API method that initiated the operation.
-
#counter ⇒ Google::Apis::HealthcareV1alpha2::ProgressCounter
ProgressCounter provides counters to describe an operation's progress.
-
#create_time ⇒ String
The time at which the operation was created by the API.
-
#end_time ⇒ String
The time at which execution was completed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationMetadata
constructor
A new instance of OperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationMetadata
Returns a new instance of OperationMetadata
2225 2226 2227 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2225 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_method_name ⇒ String
The name of the API method that initiated the operation.
Corresponds to the JSON property apiMethodName
2208 2209 2210 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2208 def api_method_name @api_method_name end |
#counter ⇒ Google::Apis::HealthcareV1alpha2::ProgressCounter
ProgressCounter provides counters to describe an operation's progress.
Corresponds to the JSON property counter
2213 2214 2215 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2213 def counter @counter end |
#create_time ⇒ String
The time at which the operation was created by the API.
Corresponds to the JSON property createTime
2218 2219 2220 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2218 def create_time @create_time end |
#end_time ⇒ String
The time at which execution was completed.
Corresponds to the JSON property endTime
2223 2224 2225 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2223 def end_time @end_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2230 2231 2232 2233 2234 2235 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2230 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 |