class Google::Apis::AppengineV1beta5::OperationMetadataV1Beta5
Metadata for the given google.longrunning.Operation.
Attributes
Timestamp that this operation completed.@OutputOnly Corresponds to the JSON property `endTime` @return [String]
Timestamp that this operation was created.@OutputOnly Corresponds to the JSON property `insertTime` @return [String]
API method name that initiated this operation. Example: google.appengine. OutputOnly at v1beta5.Version.CreateVersion.
Corresponds to the JSON property `method` @return [String]
Name of the resource that this operation is acting on. Example: apps/myapp/ OutputOnly at services/default.
Corresponds to the JSON property `target` @return [String]
User who requested this operation.@OutputOnly Corresponds to the JSON property `user` @return [String]
Public Class Methods
# File lib/google/apis/appengine_v1beta5/classes.rb, line 1543 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/appengine_v1beta5/classes.rb, line 1548 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @insert_time = args[:insert_time] if args.key?(:insert_time) @method_prop = args[:method_prop] if args.key?(:method_prop) @target = args[:target] if args.key?(:target) @user = args[:user] if args.key?(:user) end