Class: Google::Apis::MigrationcenterV1alpha1::ImportError
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ImportError
- 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 the errors encountered while processing an import job.
Instance Attribute Summary collapse
-
#error_details ⇒ String
The error information.
-
#severity ⇒ String
The severity of the error.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImportError
constructor
A new instance of ImportError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImportError
Returns a new instance of ImportError.
3418 3419 3420 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3418 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_details ⇒ String
The error information.
Corresponds to the JSON property errorDetails
3411 3412 3413 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3411 def error_details @error_details end |
#severity ⇒ String
The severity of the error.
Corresponds to the JSON property severity
3416 3417 3418 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3416 def severity @severity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3423 3424 3425 3426 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3423 def update!(**args) @error_details = args[:error_details] if args.key?(:error_details) @severity = args[:severity] if args.key?(:severity) end |