Class: Google::Apis::RedisV1::OperationError
- Inherits:
-
Object
- Object
- Google::Apis::RedisV1::OperationError
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb
Overview
An error that occurred during a backup creation operation.
Instance Attribute Summary collapse
-
#code ⇒ String
Identifies the specific error that occurred.
-
#error_type ⇒ String
Corresponds to the JSON property
errorType
. -
#message ⇒ String
Additional information about the error encountered.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationError
constructor
A new instance of OperationError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OperationError
Returns a new instance of OperationError.
2219 2220 2221 |
# File 'lib/google/apis/redis_v1/classes.rb', line 2219 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
Identifies the specific error that occurred. REQUIRED
Corresponds to the JSON property code
2207 2208 2209 |
# File 'lib/google/apis/redis_v1/classes.rb', line 2207 def code @code end |
#error_type ⇒ String
Corresponds to the JSON property errorType
2212 2213 2214 |
# File 'lib/google/apis/redis_v1/classes.rb', line 2212 def error_type @error_type end |
#message ⇒ String
Additional information about the error encountered. REQUIRED
Corresponds to the JSON property message
2217 2218 2219 |
# File 'lib/google/apis/redis_v1/classes.rb', line 2217 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2224 2225 2226 2227 2228 |
# File 'lib/google/apis/redis_v1/classes.rb', line 2224 def update!(**args) @code = args[:code] if args.key?(:code) @error_type = args[:error_type] if args.key?(:error_type) @message = args[:message] if args.key?(:message) end |