Class: Google::Apis::CloudsearchV1::ProcessingError
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ProcessingError
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#code ⇒ String
Error code indicating the nature of the error.
-
#error_message ⇒ String
Description of the error.
-
#field_violations ⇒ Array<Google::Apis::CloudsearchV1::FieldViolation>
In case the item fields are invalid, this field contains the details about the validation errors.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProcessingError
constructor
A new instance of ProcessingError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProcessingError
Returns a new instance of ProcessingError.
3264 3265 3266 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
Error code indicating the nature of the error.
Corresponds to the JSON property code
3251 3252 3253 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3251 def code @code end |
#error_message ⇒ String
Description of the error.
Corresponds to the JSON property errorMessage
3256 3257 3258 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3256 def @error_message end |
#field_violations ⇒ Array<Google::Apis::CloudsearchV1::FieldViolation>
In case the item fields are invalid, this field contains the details about the
validation errors.
Corresponds to the JSON property fieldViolations
3262 3263 3264 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3262 def field_violations @field_violations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3269 3270 3271 3272 3273 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3269 def update!(**args) @code = args[:code] if args.key?(:code) @error_message = args[:error_message] if args.key?(:error_message) @field_violations = args[:field_violations] if args.key?(:field_violations) end |