Class: Google::Apis::AppengineV1beta4::OperationMetadataExperimental
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta4::OperationMetadataExperimental
- 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
-
#end_time ⇒ String
Time that this operation completed.@OutputOnly Corresponds to the JSON property
endTime
. -
#insert_time ⇒ String
Time that this operation was created.@OutputOnly Corresponds to the JSON property
insertTime
. -
#method_prop ⇒ String
API method that initiated this operation.
-
#target ⇒ String
Name of the resource that this operation is acting on.
-
#user ⇒ String
User who requested this operation.@OutputOnly Corresponds to the JSON property
user
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationMetadataExperimental
constructor
A new instance of OperationMetadataExperimental.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationMetadataExperimental
Returns a new instance of OperationMetadataExperimental
1247 1248 1249 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Time that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
1223 1224 1225 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1223 def end_time @end_time end |
#insert_time ⇒ String
Time that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
1228 1229 1230 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1228 def insert_time @insert_time end |
#method_prop ⇒ String
API method that initiated this operation. Example: google.appengine.
experimental.CustomDomains.CreateCustomDomain.@OutputOnly
Corresponds to the JSON property method
1234 1235 1236 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1234 def method_prop @method_prop end |
#target ⇒ String
Name of the resource that this operation is acting on. Example: apps/myapp/
customDomains/example.com.@OutputOnly
Corresponds to the JSON property target
1240 1241 1242 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1240 def target @target end |
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
1245 1246 1247 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1245 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1252 1253 1254 1255 1256 1257 1258 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1252 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 |