Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobImportJobResult

Returns a new instance of GoogleCloudDataplexV1MetadataJobImportJobResult.



6240
6241
6242
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6240

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#created_entriesFixnum

Output only. The total number of entries that were created. Corresponds to the JSON property createdEntries

Returns:

  • (Fixnum)


6213
6214
6215
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6213

def created_entries
  @created_entries
end

#deleted_entriesFixnum

Output only. The total number of entries that were deleted. Corresponds to the JSON property deletedEntries

Returns:

  • (Fixnum)


6218
6219
6220
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6218

def deleted_entries
  @deleted_entries
end

#recreated_entriesFixnum

Output only. The total number of entries that were recreated. Corresponds to the JSON property recreatedEntries

Returns:

  • (Fixnum)


6223
6224
6225
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6223

def recreated_entries
  @recreated_entries
end

#unchanged_entriesFixnum

Output only. The total number of entries that were unchanged. Corresponds to the JSON property unchangedEntries

Returns:

  • (Fixnum)


6228
6229
6230
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6228

def unchanged_entries
  @unchanged_entries
end

#update_timeString

Output only. The time when the status was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


6233
6234
6235
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6233

def update_time
  @update_time
end

#updated_entriesFixnum

Output only. The total number of entries that were updated. Corresponds to the JSON property updatedEntries

Returns:

  • (Fixnum)


6238
6239
6240
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6238

def updated_entries
  @updated_entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6245
6246
6247
6248
6249
6250
6251
6252
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6245

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