Enum TcaplusdbErrorCode
- java.lang.Object
-
- java.lang.Enum<TcaplusdbErrorCode>
-
- com.tencentcloudapi.tcaplusdb.v20190823.TcaplusdbErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<TcaplusdbErrorCode>
public enum TcaplusdbErrorCode extends Enum<TcaplusdbErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static TcaplusdbErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static TcaplusdbErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final TcaplusdbErrorCode AUTHFAILURE
-
AUTHFAILURE_UNAUTHORIZEDOPERATION
public static final TcaplusdbErrorCode AUTHFAILURE_UNAUTHORIZEDOPERATION
-
FAILEDOPERATION
public static final TcaplusdbErrorCode FAILEDOPERATION
-
FAILEDOPERATION_OLDPASSWORDHASEXPIRED
public static final TcaplusdbErrorCode FAILEDOPERATION_OLDPASSWORDHASEXPIRED
-
FAILEDOPERATION_OLDPASSWORDINUSE
public static final TcaplusdbErrorCode FAILEDOPERATION_OLDPASSWORDINUSE
-
FAILEDOPERATION_PASSWORDFAILURE
public static final TcaplusdbErrorCode FAILEDOPERATION_PASSWORDFAILURE
-
FAILEDOPERATION_REGIONMISMATCH
public static final TcaplusdbErrorCode FAILEDOPERATION_REGIONMISMATCH
-
INTERNALERROR
public static final TcaplusdbErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final TcaplusdbErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_INVALIDAPPNAME
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE_INVALIDAPPNAME
-
INVALIDPARAMETERVALUE_INVALIDCLUSTERNAME
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE_INVALIDCLUSTERNAME
-
INVALIDPARAMETERVALUE_INVALIDTABLEGROUPNAME
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE_INVALIDTABLEGROUPNAME
-
INVALIDPARAMETERVALUE_INVALIDTIMEVALUE
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE_INVALIDTIMEVALUE
-
INVALIDPARAMETERVALUE_INVALIDZONENAME
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE_INVALIDZONENAME
-
INVALIDPARAMETERVALUE_UNSUPPORTIDLTYPE
public static final TcaplusdbErrorCode INVALIDPARAMETERVALUE_UNSUPPORTIDLTYPE
-
LIMITEXCEEDED
public static final TcaplusdbErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final TcaplusdbErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final TcaplusdbErrorCode OPERATIONDENIED
-
RESOURCEINUSE
public static final TcaplusdbErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final TcaplusdbErrorCode RESOURCEINSUFFICIENT
-
RESOURCEINSUFFICIENT_BALANCEERROR
public static final TcaplusdbErrorCode RESOURCEINSUFFICIENT_BALANCEERROR
-
RESOURCEINSUFFICIENT_NOAVAILABLEAPP
public static final TcaplusdbErrorCode RESOURCEINSUFFICIENT_NOAVAILABLEAPP
-
RESOURCEINSUFFICIENT_NOAVAILABLECLUSTER
public static final TcaplusdbErrorCode RESOURCEINSUFFICIENT_NOAVAILABLECLUSTER
-
RESOURCEINSUFFICIENT_NOENOUGHVIPINVPC
public static final TcaplusdbErrorCode RESOURCEINSUFFICIENT_NOENOUGHVIPINVPC
-
RESOURCENOTFOUND
public static final TcaplusdbErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final TcaplusdbErrorCode RESOURCEUNAVAILABLE
-
RESOURCEUNAVAILABLE_DUPLICATECLUSTERNAME
public static final TcaplusdbErrorCode RESOURCEUNAVAILABLE_DUPLICATECLUSTERNAME
-
RESOURCEUNAVAILABLE_DUPLICATETABLEGROUPINFO
public static final TcaplusdbErrorCode RESOURCEUNAVAILABLE_DUPLICATETABLEGROUPINFO
-
RESOURCEUNAVAILABLE_DUPLICATETABLEGROUPNAME
public static final TcaplusdbErrorCode RESOURCEUNAVAILABLE_DUPLICATETABLEGROUPNAME
-
RESOURCEUNAVAILABLE_NOAVAILABLETABLEGROUP
public static final TcaplusdbErrorCode RESOURCEUNAVAILABLE_NOAVAILABLETABLEGROUP
-
UNAUTHORIZEDOPERATION
public static final TcaplusdbErrorCode UNAUTHORIZEDOPERATION
-
UNSUPPORTEDOPERATION
public static final TcaplusdbErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static TcaplusdbErrorCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TcaplusdbErrorCode c : TcaplusdbErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TcaplusdbErrorCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
- Returns:
- errorcode value
-
-