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
2235 2236 2237 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2235 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
2218 2219 2220 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2218 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
2223 2224 2225 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2223 def counter @counter end |
#create_time ⇒ String
The time at which the operation was created by the API.
Corresponds to the JSON property createTime
2228 2229 2230 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2228 def create_time @create_time end |
#end_time ⇒ String
The time at which execution was completed.
Corresponds to the JSON property endTime
2233 2234 2235 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2233 def end_time @end_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2240 2241 2242 2243 2244 2245 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2240 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 |