Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb 
Overview
Results from a metadata import job.
Instance Attribute Summary collapse
- 
  
    
      #created_entries  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #deleted_entries  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #recreated_entries  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #unchanged_entries  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #updated_entries  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1MetadataJobImportJobResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1MetadataJobImportJobResult.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobImportJobResult
Returns a new instance of GoogleCloudDataplexV1MetadataJobImportJobResult.
      5864 5865 5866  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5864 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#created_entries ⇒ Fixnum
Output only. The total number of entries that were created.
Corresponds to the JSON property createdEntries
      5837 5838 5839  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5837 def created_entries @created_entries end  | 
  
#deleted_entries ⇒ Fixnum
Output only. The total number of entries that were deleted.
Corresponds to the JSON property deletedEntries
      5842 5843 5844  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5842 def deleted_entries @deleted_entries end  | 
  
#recreated_entries ⇒ Fixnum
Output only. The total number of entries that were recreated.
Corresponds to the JSON property recreatedEntries
      5847 5848 5849  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5847 def recreated_entries @recreated_entries end  | 
  
#unchanged_entries ⇒ Fixnum
Output only. The total number of entries that were unchanged.
Corresponds to the JSON property unchangedEntries
      5852 5853 5854  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5852 def unchanged_entries @unchanged_entries end  | 
  
#update_time ⇒ String
Output only. The time when the status was updated.
Corresponds to the JSON property updateTime
      5857 5858 5859  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5857 def update_time @update_time end  | 
  
#updated_entries ⇒ Fixnum
Output only. The total number of entries that were updated.
Corresponds to the JSON property updatedEntries
      5862 5863 5864  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5862 def updated_entries @updated_entries end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5869 5870 5871 5872 5873 5874 5875 5876  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5869 def update!(**args) @created_entries = args[:created_entries] if args.key?(:created_entries) @deleted_entries = args[:deleted_entries] if args.key?(:deleted_entries) @recreated_entries = args[:recreated_entries] if args.key?(:recreated_entries) @unchanged_entries = args[:unchanged_entries] if args.key?(:unchanged_entries) @update_time = args[:update_time] if args.key?(:update_time) @updated_entries = args[:updated_entries] if args.key?(:updated_entries) end  |