Class: Google::Apis::AppengineV1::OperationMetadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1::OperationMetadata
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1/classes.rb,
 generated/google/apis/appengine_v1/representations.rb,
 generated/google/apis/appengine_v1/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
| 1820 1821 1822 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1820 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#end_time ⇒ String
Timestamp that this operation completed.@OutputOnly
Corresponds to the JSON property endTime
| 1790 1791 1792 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1790 def end_time @end_time end | 
#insert_time ⇒ String
Timestamp that this operation was created.@OutputOnly
Corresponds to the JSON property insertTime
| 1795 1796 1797 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1795 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
| 1801 1802 1803 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1801 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
| 1807 1808 1809 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1807 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
| 1813 1814 1815 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1813 def target @target end | 
#user ⇒ String
User who requested this operation.@OutputOnly
Corresponds to the JSON property user
| 1818 1819 1820 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1818 def user @user end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1825 1826 1827 1828 1829 1830 1831 1832 | # File 'generated/google/apis/appengine_v1/classes.rb', line 1825 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) @operation_type = args[:operation_type] if args.key?(:operation_type) @target = args[:target] if args.key?(:target) @user = args[:user] if args.key?(:user) end |