File: //lib/mysqlsh/lib/python3.8/site-packages/oci/load_balancer/models/work_request_error.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class WorkRequestError(object):
"""
An object returned in the event of a work request error.
"""
#: A constant which can be used with the error_code property of a WorkRequestError.
#: This constant has a value of "BAD_INPUT"
ERROR_CODE_BAD_INPUT = "BAD_INPUT"
#: A constant which can be used with the error_code property of a WorkRequestError.
#: This constant has a value of "INTERNAL_ERROR"
ERROR_CODE_INTERNAL_ERROR = "INTERNAL_ERROR"
def __init__(self, **kwargs):
"""
Initializes a new WorkRequestError object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param error_code:
The value to assign to the error_code property of this WorkRequestError.
Allowed values for this property are: "BAD_INPUT", "INTERNAL_ERROR", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type error_code: str
:param message:
The value to assign to the message property of this WorkRequestError.
:type message: str
"""
self.swagger_types = {
'error_code': 'str',
'message': 'str'
}
self.attribute_map = {
'error_code': 'errorCode',
'message': 'message'
}
self._error_code = None
self._message = None
@property
def error_code(self):
"""
**[Required]** Gets the error_code of this WorkRequestError.
Allowed values for this property are: "BAD_INPUT", "INTERNAL_ERROR", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:return: The error_code of this WorkRequestError.
:rtype: str
"""
return self._error_code
@error_code.setter
def error_code(self, error_code):
"""
Sets the error_code of this WorkRequestError.
:param error_code: The error_code of this WorkRequestError.
:type: str
"""
allowed_values = ["BAD_INPUT", "INTERNAL_ERROR"]
if not value_allowed_none_or_none_sentinel(error_code, allowed_values):
error_code = 'UNKNOWN_ENUM_VALUE'
self._error_code = error_code
@property
def message(self):
"""
**[Required]** Gets the message of this WorkRequestError.
A human-readable error string.
:return: The message of this WorkRequestError.
:rtype: str
"""
return self._message
@message.setter
def message(self, message):
"""
Sets the message of this WorkRequestError.
A human-readable error string.
:param message: The message of this WorkRequestError.
:type: str
"""
self._message = message
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other