Class: Google::Apis::HealthcareV1beta1::OperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::OperationMetadata
- 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
-
#api_method_name ⇒ String
The name of the API method that initiated the operation.
-
#counter ⇒ Google::Apis::HealthcareV1beta1::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.
2198 2199 2200 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2198 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
2181 2182 2183 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2181 def api_method_name @api_method_name end |
#counter ⇒ Google::Apis::HealthcareV1beta1::ProgressCounter
ProgressCounter provides counters to describe an operation's progress.
Corresponds to the JSON property counter
2186 2187 2188 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2186 def counter @counter end |
#create_time ⇒ String
The time at which the operation was created by the API.
Corresponds to the JSON property createTime
2191 2192 2193 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2191 def create_time @create_time end |
#end_time ⇒ String
The time at which execution was completed.
Corresponds to the JSON property endTime
2196 2197 2198 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2196 def end_time @end_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2203 2204 2205 2206 2207 2208 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2203 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 |