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
2094 2095 2096 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2094 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
2077 2078 2079 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2077 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
2082 2083 2084 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2082 def counter @counter end |
#create_time ⇒ String
The time at which the operation was created by the API.
Corresponds to the JSON property createTime
2087 2088 2089 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2087 def create_time @create_time end |
#end_time ⇒ String
The time at which execution was completed.
Corresponds to the JSON property endTime
2092 2093 2094 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2092 def end_time @end_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2099 2100 2101 2102 2103 2104 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2099 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 |