Class: Google::Apis::CloudsearchV1::ProcessingError
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ProcessingError
- Defined in:
- generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProcessingError
Returns a new instance of ProcessingError
3011 3012 3013 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3011 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
2998 2999 3000 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2998 def code @code end |
#error_message ⇒ String
Description of the error.
Corresponds to the JSON property errorMessage
3003 3004 3005 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3003 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
3009 3010 3011 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3009 def field_violations @field_violations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3016 3017 3018 3019 3020 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3016 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 |