Class: Google::Apis::AppengineV1beta5::OperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta5::OperationMetadata
- 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.@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 that initiated this operation.
-
#operation_type ⇒ String
Type of 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) ⇒ OperationMetadata
constructor
A new instance of OperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationMetadata
Returns a new instance of OperationMetadata
1890 1891 1892 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1890 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
1871 1872 1873 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1871 def end_time @end_time end |
#insert_time ⇒ String
Timestamp that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
1866 1867 1868 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1866 def insert_time @insert_time end |
#method_prop ⇒ String
API method that initiated this operation. Example: google.appengine.v1beta4.
Version.CreateVersion.@OutputOnly
Corresponds to the JSON property method
1888 1889 1890 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1888 def method_prop @method_prop end |
#operation_type ⇒ String
Type of this operation. Deprecated, use method field instead. Example: "
create_version".@OutputOnly
Corresponds to the JSON property operationType
1861 1862 1863 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1861 def operation_type @operation_type end |
#target ⇒ String
Name of the resource that this operation is acting on. Example: apps/myapp/
modules/default.@OutputOnly
Corresponds to the JSON property target
1882 1883 1884 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1882 def target @target end |
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
1876 1877 1878 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1876 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1895 1896 1897 1898 1899 1900 1901 1902 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1895 def update!(**args) @operation_type = args[:operation_type] if args.key?(:operation_type) @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) @method_prop = args[:method_prop] if args.key?(:method_prop) end |