Class: Google::Apis::MigrationcenterV1::ExecutionReport
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::ExecutionReport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
A resource that reports result of the import job execution.
Instance Attribute Summary collapse
-
#execution_errors ⇒ Google::Apis::MigrationcenterV1::ValidationReport
A resource that aggregates errors across import job files.
-
#frames_reported ⇒ Fixnum
Total number of asset frames reported for the import job.
-
#total_rows_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExecutionReport
constructor
A new instance of ExecutionReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExecutionReport
Returns a new instance of ExecutionReport.
1470 1471 1472 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1470 def initialize(**args) update!(**args) end |
Instance Attribute Details
#execution_errors ⇒ Google::Apis::MigrationcenterV1::ValidationReport
A resource that aggregates errors across import job files.
Corresponds to the JSON property executionErrors
1458 1459 1460 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1458 def execution_errors @execution_errors end |
#frames_reported ⇒ Fixnum
Total number of asset frames reported for the import job.
Corresponds to the JSON property framesReported
1463 1464 1465 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1463 def frames_reported @frames_reported end |
#total_rows_count ⇒ Fixnum
Output only. Total number of rows in the import job.
Corresponds to the JSON property totalRowsCount
1468 1469 1470 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1468 def total_rows_count @total_rows_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1475 1476 1477 1478 1479 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1475 def update!(**args) @execution_errors = args[:execution_errors] if args.key?(:execution_errors) @frames_reported = args[:frames_reported] if args.key?(:frames_reported) @total_rows_count = args[:total_rows_count] if args.key?(:total_rows_count) end |