Class: Google::Apis::AppengineV1beta5::OperationMetadataV1Beta5
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta5::OperationMetadataV1Beta5
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta5/classes.rb,
generated/google/apis/appengine_v1beta5/representations.rb,
generated/google/apis/appengine_v1beta5/representations.rb
Overview
Metadata for the given google.longrunning.Operation.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Timestamp that this operation completed.
-
#insert_time ⇒ String
Timestamp that this operation was created.
-
#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.
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.
1732 1733 1734 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1732 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation completed. @OutputOnly
Corresponds to the JSON property endTime
1719 1720 1721 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1719 def end_time @end_time end |
#insert_time ⇒ String
Timestamp that this operation was created. @OutputOnly
Corresponds to the JSON property insertTime
1714 1715 1716 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1714 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
1709 1710 1711 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1709 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
1730 1731 1732 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1730 def target @target end |
#user ⇒ String
User who requested this operation. @OutputOnly
Corresponds to the JSON property user
1724 1725 1726 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1724 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1737 1738 1739 1740 1741 1742 1743 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1737 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 |