Class: Google::Apis::MigrationcenterV1alpha1::ExecutionReport

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecutionReport

Returns a new instance of ExecutionReport.



1612
1613
1614
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1612

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

Instance Attribute Details

#execution_errorsGoogle::Apis::MigrationcenterV1alpha1::ValidationReport

A resource that aggregates errors across import job files. Corresponds to the JSON property executionErrors



1594
1595
1596
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1594

def execution_errors
  @execution_errors
end

#frames_reportedFixnum

Total number of asset frames reported for the import job. Corresponds to the JSON property framesReported

Returns:

  • (Fixnum)


1599
1600
1601
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1599

def frames_reported
  @frames_reported
end

#job_errorsArray<Google::Apis::MigrationcenterV1alpha1::ImportError>

List of job-level errors. Deprecated, use the job errors under execution_errors instead. Corresponds to the JSON property jobErrors



1605
1606
1607
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1605

def job_errors
  @job_errors
end

#total_rows_countFixnum

Total number of rows in the import job. Corresponds to the JSON property totalRowsCount

Returns:

  • (Fixnum)


1610
1611
1612
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1610

def total_rows_count
  @total_rows_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1617
1618
1619
1620
1621
1622
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1617

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