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.@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
1936 1937 1938 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1936 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
1923 1924 1925 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1923 def end_time @end_time end |
#insert_time ⇒ String
Timestamp that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
1918 1919 1920 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1918 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
1913 1914 1915 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1913 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
1934 1935 1936 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1934 def target @target end |
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
1928 1929 1930 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1928 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1941 1942 1943 1944 1945 1946 1947 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1941 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 |