Class: Google::Apis::AppengineV1::OperationMetadataV1Beta5
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::OperationMetadataV1Beta5
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/representations.rb
Overview
Metadata for the given google.longrunning.Operation.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Timestamp that this operation completed.@OutputOnly Corresponds to the JSON property
endTime. -
#insert_time ⇒ String
Timestamp that this operation was created.@OutputOnly Corresponds to the JSON property
insertTime. -
#method_prop ⇒ String
API method name 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) ⇒ OperationMetadataV1Beta5
constructor
A new instance of OperationMetadataV1Beta5.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationMetadataV1Beta5
Returns a new instance of OperationMetadataV1Beta5
1118 1119 1120 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1118 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
1105 1106 1107 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1105 def end_time @end_time end |
#insert_time ⇒ String
Timestamp that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
1100 1101 1102 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1100 def insert_time @insert_time end |
#method_prop ⇒ String
API method name that initiated this operation. Example: google.appengine.
v1beta5.Version.CreateVersion.@OutputOnly
Corresponds to the JSON property method
1095 1096 1097 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1095 def method_prop @method_prop end |
#target ⇒ String
Name of the resource that this operation is acting on. Example: apps/myapp/
services/default.@OutputOnly
Corresponds to the JSON property target
1116 1117 1118 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1116 def target @target end |
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
1110 1111 1112 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1110 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1123 1124 1125 1126 1127 1128 1129 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1123 def update!(**args) @method_prop = args[:method_prop] if args.key?(:method_prop) @insert_time = args[:insert_time] if args.key?(:insert_time) @end_time = args[:end_time] if args.key?(:end_time) @user = args[:user] if args.key?(:user) @target = args[:target] if args.key?(:target) end |