Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationMetadataProgress
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationMetadataProgress
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb 
Overview
Information about operation progress.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Description of the operation's progress.
 - 
  
    
      #details  ⇒ Hash<String,Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The additional details of the progress.
 - 
  
    
      #percent_done  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The percentage of the operation progress.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
State of the operation.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1OperationMetadataProgress 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1OperationMetadataProgress.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1OperationMetadataProgress
Returns a new instance of GoogleCloudApigeeV1OperationMetadataProgress.
      6945 6946 6947  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6945 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#description ⇒ String
Description of the operation's progress.
Corresponds to the JSON property description
      6928 6929 6930  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6928 def description @description end  | 
  
#details ⇒ Hash<String,Object>
The additional details of the progress.
Corresponds to the JSON property details
      6933 6934 6935  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6933 def details @details end  | 
  
#percent_done ⇒ Fixnum
The percentage of the operation progress.
Corresponds to the JSON property percentDone
      6938 6939 6940  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6938 def percent_done @percent_done end  | 
  
#state ⇒ String
State of the operation.
Corresponds to the JSON property state
      6943 6944 6945  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6943 def state @state end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6950 6951 6952 6953 6954 6955  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6950 def update!(**args) @description = args[:description] if args.key?(:description) @details = args[:details] if args.key?(:details) @percent_done = args[:percent_done] if args.key?(:percent_done) @state = args[:state] if args.key?(:state) end  |