Class: Google::Apis::AppengineV1::OperationMetadataV1
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::OperationMetadataV1
- 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
Time that this operation completed.@OutputOnly Corresponds to the JSON property
endTime
. -
#ephemeral_message ⇒ String
Ephemeral message that may change every time the operation is polled.
-
#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
. -
#warning ⇒ Array<String>
Durable messages that persist on every operation poll.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationMetadataV1
constructor
A new instance of OperationMetadataV1.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationMetadataV1
Returns a new instance of OperationMetadataV1
98 99 100 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 98 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Time that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
86 87 88 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 86 def end_time @end_time end |
#ephemeral_message ⇒ String
Ephemeral message that may change every time the operation is polled. @
OutputOnly
Corresponds to the JSON property ephemeralMessage
75 76 77 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 75 def @ephemeral_message end |
#insert_time ⇒ String
Time that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
96 97 98 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 96 def insert_time @insert_time end |
#method_prop ⇒ String
API method that initiated this operation. Example: google.appengine.v1.
Versions.CreateVersion.@OutputOnly
Corresponds to the JSON property method
81 82 83 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 81 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
64 65 66 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 64 def target @target end |
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
69 70 71 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 69 def user @user end |
#warning ⇒ Array<String>
Durable messages that persist on every operation poll. @OutputOnly
Corresponds to the JSON property warning
91 92 93 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 91 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
103 104 105 106 107 108 109 110 111 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 103 def update!(**args) @target = args[:target] if args.key?(:target) @user = args[:user] if args.key?(:user) @ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message) @method_prop = args[:method_prop] if args.key?(:method_prop) @end_time = args[:end_time] if args.key?(:end_time) @warning = args[:warning] if args.key?(:warning) @insert_time = args[:insert_time] if args.key?(:insert_time) end |