Class: Google::Apis::VaultV1::ExportStats
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VaultV1::ExportStats
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/google/apis/vault_v1/representations.rb 
Overview
Stats of an export.
Instance Attribute Summary collapse
- 
  
    
      #exported_artifact_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of documents already processed by the export.
 - 
  
    
      #size_in_bytes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The size of export in bytes.
 - 
  
    
      #total_artifact_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of documents to be exported.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExportStats 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ExportStats.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExportStats
Returns a new instance of ExportStats
      521 522 523  | 
    
      # File 'generated/google/apis/vault_v1/classes.rb', line 521 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#exported_artifact_count ⇒ Fixnum
The number of documents already processed by the export.
Corresponds to the JSON property exportedArtifactCount
      509 510 511  | 
    
      # File 'generated/google/apis/vault_v1/classes.rb', line 509 def exported_artifact_count @exported_artifact_count end  | 
  
#size_in_bytes ⇒ Fixnum
The size of export in bytes.
Corresponds to the JSON property sizeInBytes
      514 515 516  | 
    
      # File 'generated/google/apis/vault_v1/classes.rb', line 514 def size_in_bytes @size_in_bytes end  | 
  
#total_artifact_count ⇒ Fixnum
The number of documents to be exported.
Corresponds to the JSON property totalArtifactCount
      519 520 521  | 
    
      # File 'generated/google/apis/vault_v1/classes.rb', line 519 def total_artifact_count @total_artifact_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      526 527 528 529 530  | 
    
      # File 'generated/google/apis/vault_v1/classes.rb', line 526 def update!(**args) @exported_artifact_count = args[:exported_artifact_count] if args.key?(:exported_artifact_count) @size_in_bytes = args[:size_in_bytes] if args.key?(:size_in_bytes) @total_artifact_count = args[:total_artifact_count] if args.key?(:total_artifact_count) end  |