class Google::Apis::CloudsearchV1::RepositoryError
Errors when the connector is communicating to the source repository.
Attributes
error_message[RW]
Message that describes the error. The maximum allowable length of the message is 8192 characters. Corresponds to the JSON property `errorMessage` @return [String]
http_status_code[RW]
Error codes. Matches the definition of HTTP status codes. Corresponds to the JSON property `httpStatusCode` @return [Fixnum]
type[RW]
Type of error. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudsearch_v1/classes.rb, line 3573 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudsearch_v1/classes.rb, line 3578 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @http_status_code = args[:http_status_code] if args.key?(:http_status_code) @type = args[:type] if args.key?(:type) end