Class: Google::Apis::CloudsearchV1::ProcessingError

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProcessingError

Returns a new instance of ProcessingError.



2849
2850
2851
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2849

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#codeString

Error code indicating the nature of the error. Corresponds to the JSON property code

Returns:

  • (String)


2836
2837
2838
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2836

def code
  @code
end

#error_messageString

Description of the error. Corresponds to the JSON property errorMessage

Returns:

  • (String)


2841
2842
2843
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2841

def error_message
  @error_message
end

#field_violationsArray<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



2847
2848
2849
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2847

def field_violations
  @field_violations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2854
2855
2856
2857
2858
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 2854

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