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.
2963 2964 2965 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2963 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
2950 2951 2952 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2950 def code @code end |
#error_message ⇒ String
Description of the error.
Corresponds to the JSON property errorMessage
2955 2956 2957 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2955 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
2961 2962 2963 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2961 def field_violations @field_violations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2968 2969 2970 2971 2972 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2968 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 |