class Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationMetadataProgress
Information about operation progress.
Attributes
description[RW]
Description of the operation's progress. Corresponds to the JSON property `description` @return [String]
details[RW]
The additional details of the progress. Corresponds to the JSON property `details` @return [Hash<String,Object>]
percent_done[RW]
The percentage of the operation progress. Corresponds to the JSON property `percentDone` @return [Fixnum]
state[RW]
State of the operation. Corresponds to the JSON property `state` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4856 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 4861 def update!(**args) @description = args[:description] if args.key?(:description) @details = args[:details] if args.key?(:details) @percent_done = args[:percent_done] if args.key?(:percent_done) @state = args[:state] if args.key?(:state) end