Class: Google::Apis::CloudsearchV1::RepositoryError
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::RepositoryError
- 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
Overview
Errors when the connector is communicating to the source repository.
Instance Attribute Summary collapse
-
#error_message ⇒ String
Message that describes the error.
-
#http_status_code ⇒ Fixnum
Error codes.
-
#type ⇒ String
Type of error.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RepositoryError
constructor
A new instance of RepositoryError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RepositoryError
Returns a new instance of RepositoryError.
3875 3876 3877 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3875 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_message ⇒ String
Message that describes the error. The maximum allowable length of the message
is 8192 characters.
Corresponds to the JSON property errorMessage
3863 3864 3865 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3863 def @error_message end |
#http_status_code ⇒ Fixnum
Error codes. Matches the definition of HTTP status codes.
Corresponds to the JSON property httpStatusCode
3868 3869 3870 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3868 def http_status_code @http_status_code end |
#type ⇒ String
Type of error.
Corresponds to the JSON property type
3873 3874 3875 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3873 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3880 3881 3882 3883 3884 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3880 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 |