Class: Google::Apis::MigrationcenterV1alpha1::ExecutionReport
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ExecutionReport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
A resource that reports result of the import job execution.
Instance Attribute Summary collapse
-
#execution_errors ⇒ Google::Apis::MigrationcenterV1alpha1::ValidationReport
A resource that aggregates errors across import job files.
-
#frames_reported ⇒ Fixnum
Total number of asset frames reported for the import job.
-
#job_errors ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ImportError>
List of job-level errors.
-
#total_rows_count ⇒ Fixnum
Total number of rows in the import job.
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.
1428 1429 1430 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1428 def initialize(**args) update!(**args) end |
Instance Attribute Details
#execution_errors ⇒ Google::Apis::MigrationcenterV1alpha1::ValidationReport
A resource that aggregates errors across import job files.
Corresponds to the JSON property executionErrors
1410 1411 1412 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1410 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
1415 1416 1417 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1415 def frames_reported @frames_reported end |
#job_errors ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ImportError>
List of job-level errors. Deprecated, use the job errors under
execution_errors instead.
Corresponds to the JSON property jobErrors
1421 1422 1423 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1421 def job_errors @job_errors end |
#total_rows_count ⇒ Fixnum
Total number of rows in the import job.
Corresponds to the JSON property totalRowsCount
1426 1427 1428 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1426 def total_rows_count @total_rows_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1433 1434 1435 1436 1437 1438 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1433 def update!(**args) @execution_errors = args[:execution_errors] if args.key?(:execution_errors) @frames_reported = args[:frames_reported] if args.key?(:frames_reported) @job_errors = args[:job_errors] if args.key?(:job_errors) @total_rows_count = args[:total_rows_count] if args.key?(:total_rows_count) end |