class Google::Apis::DatamigrationV1::MigrationJobVerificationError
Error message of a verification Migration job.
Attributes
error_code[RW]
Output only. An instance of ErrorCode specifying the error that occurred. Corresponds to the JSON property `errorCode` @return [String]
error_detail_message[RW]
Output only. A specific detailed error message, if supplied by the engine. Corresponds to the JSON property `errorDetailMessage` @return [String]
error_message[RW]
Output only. A formatted message with further details about the error and a CTA. Corresponds to the JSON property `errorMessage` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datamigration_v1/classes.rb, line 963 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datamigration_v1/classes.rb, line 968 def update!(**args) @error_code = args[:error_code] if args.key?(:error_code) @error_detail_message = args[:error_detail_message] if args.key?(:error_detail_message) @error_message = args[:error_message] if args.key?(:error_message) end