Class: Google::Apis::AppengineV1beta4::OperationMetadataV1Beta5
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1beta4::OperationMetadataV1Beta5
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- 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 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
      1563 1564 1565  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1563 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
      1539 1540 1541  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1539 def end_time @end_time end  | 
  
#insert_time ⇒ String
Timestamp that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
      1544 1545 1546  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1544 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
      1550 1551 1552  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1550 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
      1556 1557 1558  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1556 def target @target end  | 
  
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
      1561 1562 1563  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1561 def user @user end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1568 1569 1570 1571 1572 1573 1574  | 
    
      # File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1568 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @insert_time = args[:insert_time] if args.key?(:insert_time) @method_prop = args[:method_prop] if args.key?(:method_prop) @target = args[:target] if args.key?(:target) @user = args[:user] if args.key?(:user) end  |