Class: Google::Apis::ComposerV1::OperationMetadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComposerV1::OperationMetadata
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1/classes.rb,
 lib/google/apis/composer_v1/representations.rb,
 lib/google/apis/composer_v1/representations.rb
Overview
Metadata describing an operation.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #operation_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #resource_uuid  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperationMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OperationMetadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ OperationMetadata
Returns a new instance of OperationMetadata.
| 917 918 919 | # File 'lib/google/apis/composer_v1/classes.rb', line 917 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#create_time ⇒ String
Output only. The time the operation was submitted to the server.
Corresponds to the JSON property createTime
| 888 889 890 | # File 'lib/google/apis/composer_v1/classes.rb', line 888 def create_time @create_time end | 
#end_time ⇒ String
Output only. The time when the operation terminated, regardless of its success.
This field is unset if the operation is still ongoing.
Corresponds to the JSON property endTime
| 894 895 896 | # File 'lib/google/apis/composer_v1/classes.rb', line 894 def end_time @end_time end | 
#operation_type ⇒ String
Output only. The type of operation being performed.
Corresponds to the JSON property operationType
| 899 900 901 | # File 'lib/google/apis/composer_v1/classes.rb', line 899 def operation_type @operation_type end | 
#resource ⇒ String
Output only. The resource being operated on, as a relative resource name.
Corresponds to the JSON property resource
| 905 906 907 | # File 'lib/google/apis/composer_v1/classes.rb', line 905 def resource @resource end | 
#resource_uuid ⇒ String
Output only. The UUID of the resource being operated on.
Corresponds to the JSON property resourceUuid
| 910 911 912 | # File 'lib/google/apis/composer_v1/classes.rb', line 910 def resource_uuid @resource_uuid end | 
#state ⇒ String
Output only. The current operation state.
Corresponds to the JSON property state
| 915 916 917 | # File 'lib/google/apis/composer_v1/classes.rb', line 915 def state @state end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 922 923 924 925 926 927 928 929 | # File 'lib/google/apis/composer_v1/classes.rb', line 922 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @end_time = args[:end_time] if args.key?(:end_time) @operation_type = args[:operation_type] if args.key?(:operation_type) @resource = args[:resource] if args.key?(:resource) @resource_uuid = args[:resource_uuid] if args.key?(:resource_uuid) @state = args[:state] if args.key?(:state) end |