Class: Google::Apis::AppengineV1beta4::OperationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1beta4/classes.rb,
generated/google/apis/appengine_v1beta4/representations.rb,
generated/google/apis/appengine_v1beta4/representations.rb

Overview

Metadata for the given google.longrunning.Operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OperationMetadata

Returns a new instance of OperationMetadata



1201
1202
1203
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1201

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

Timestamp that this operation completed.@OutputOnly Corresponds to the JSON property endTime

Returns:

  • (String)


1171
1172
1173
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1171

def end_time
  @end_time
end

#insert_timeString

Timestamp that this operation was created.@OutputOnly Corresponds to the JSON property insertTime

Returns:

  • (String)


1176
1177
1178
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1176

def insert_time
  @insert_time
end

#method_propString

API method that initiated this operation. Example: google.appengine.v1beta4. Version.CreateVersion.@OutputOnly Corresponds to the JSON property method

Returns:

  • (String)


1182
1183
1184
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1182

def method_prop
  @method_prop
end

#operation_typeString

Type of this operation. Deprecated, use method field instead. Example: " create_version".@OutputOnly Corresponds to the JSON property operationType

Returns:

  • (String)


1188
1189
1190
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1188

def operation_type
  @operation_type
end

#targetString

Name of the resource that this operation is acting on. Example: apps/myapp/ modules/default.@OutputOnly Corresponds to the JSON property target

Returns:

  • (String)


1194
1195
1196
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1194

def target
  @target
end

#userString

User who requested this operation.@OutputOnly Corresponds to the JSON property user

Returns:

  • (String)


1199
1200
1201
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1199

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1206
1207
1208
1209
1210
1211
1212
1213
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1206

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)
  @operation_type = args[:operation_type] if args.key?(:operation_type)
  @target = args[:target] if args.key?(:target)
  @user = args[:user] if args.key?(:user)
end