Class: Google::Apis::AppengineV1beta4::OperationMetadataV1Beta5
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta4::OperationMetadataV1Beta5
- Includes:
- Core::Hashable
- 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
Timestamp that this operation was completed.
-
#insert_time ⇒ String
Timestamp that this operation was received.
-
#method_prop ⇒ String
API method name that initiated the operation.
-
#target ⇒ String
Resource that this operation is acting on.
-
#user ⇒ String
The user who requested this operation.
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::Hashable
Constructor Details
#initialize(**args) ⇒ OperationMetadataV1Beta5
Returns a new instance of OperationMetadataV1Beta5.
1570 1571 1572 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation was completed. (Not present if the operation is
still in progress.) @OutputOnly
Corresponds to the JSON property endTime
1557 1558 1559 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1557 def end_time @end_time end |
#insert_time ⇒ String
Timestamp that this operation was received. @OutputOnly
Corresponds to the JSON property insertTime
1551 1552 1553 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1551 def insert_time @insert_time end |
#method_prop ⇒ String
API method name that initiated the operation. Example: "google.appengine.
v1beta5.Version.CreateVersion". @OutputOnly
Corresponds to the JSON property method
1546 1547 1548 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1546 def method_prop @method_prop end |
#target ⇒ String
Resource that this operation is acting on. Example: "apps/myapp/services/
default". @OutputOnly
Corresponds to the JSON property target
1568 1569 1570 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1568 def target @target end |
#user ⇒ String
The user who requested this operation. @OutputOnly
Corresponds to the JSON property user
1562 1563 1564 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1562 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1575 1576 1577 1578 1579 1580 1581 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1575 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 |