class Google::Apis::ServicemanagementV1::OperationMetadata
The metadata associated with a long running operation resource.
Attributes
progress_percentage[RW]
Percentage of completion of this operation, ranging from 0 to 100. Corresponds to the JSON property `progressPercentage` @return [Fixnum]
resource_names[RW]
The full name of the resources that this operation is directly associated with. Corresponds to the JSON property `resourceNames` @return [Array<String>]
start_time[RW]
The start time of the operation. Corresponds to the JSON property `startTime` @return [String]
steps[RW]
Detailed status information for each step. The order is undetermined. Corresponds to the JSON property `steps` @return [Array<Google::Apis::ServicemanagementV1::Step>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 2726 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicemanagement_v1/classes.rb, line 2731 def update!(**args) @progress_percentage = args[:progress_percentage] if args.key?(:progress_percentage) @resource_names = args[:resource_names] if args.key?(:resource_names) @start_time = args[:start_time] if args.key?(:start_time) @steps = args[:steps] if args.key?(:steps) end