Enum RceErrorCode
- java.lang.Object
-
- java.lang.Enum<RceErrorCode>
-
- com.tencentcloudapi.rce.v20201103.RceErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<RceErrorCode>
public enum RceErrorCode extends Enum<RceErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static RceErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static RceErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final RceErrorCode AUTHFAILURE
-
AUTHFAILURE_CAPSIGERROR
public static final RceErrorCode AUTHFAILURE_CAPSIGERROR
-
AUTHFAILURE_EXPIRED
public static final RceErrorCode AUTHFAILURE_EXPIRED
-
DRYRUNOPERATION
public static final RceErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final RceErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final RceErrorCode INTERNALERROR
-
INTERNALERROR_BACKENDLOGICERROR
public static final RceErrorCode INTERNALERROR_BACKENDLOGICERROR
-
INTERNALERROR_CONNECTDBTIMEOUT
public static final RceErrorCode INTERNALERROR_CONNECTDBTIMEOUT
-
INTERNALERROR_SIGNBACKENDERROR
public static final RceErrorCode INTERNALERROR_SIGNBACKENDERROR
-
INVALIDPARAMETER
public static final RceErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_CAPSIGERROR
public static final RceErrorCode INVALIDPARAMETER_CAPSIGERROR
-
INVALIDPARAMETER_PARAMERROR
public static final RceErrorCode INVALIDPARAMETER_PARAMERROR
-
INVALIDPARAMETER_URLERROR
public static final RceErrorCode INVALIDPARAMETER_URLERROR
-
INVALIDPARAMETER_VERSIONERROR
public static final RceErrorCode INVALIDPARAMETER_VERSIONERROR
-
INVALIDPARAMETERVALUE
public static final RceErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_BADBODY
public static final RceErrorCode INVALIDPARAMETERVALUE_BADBODY
-
INVALIDPARAMETERVALUE_BODYTOOLARGE
public static final RceErrorCode INVALIDPARAMETERVALUE_BODYTOOLARGE
-
INVALIDPARAMETERVALUE_CAPMISMATCH
public static final RceErrorCode INVALIDPARAMETERVALUE_CAPMISMATCH
-
INVALIDPARAMETERVALUE_HTTPMETHODERROR
public static final RceErrorCode INVALIDPARAMETERVALUE_HTTPMETHODERROR
-
INVALIDPARAMETERVALUE_INVALIDDATE
public static final RceErrorCode INVALIDPARAMETERVALUE_INVALIDDATE
-
INVALIDPARAMETERVALUE_INVALIDLIMIT
public static final RceErrorCode INVALIDPARAMETERVALUE_INVALIDLIMIT
-
INVALIDPARAMETERVALUE_INVALIDNUM
public static final RceErrorCode INVALIDPARAMETERVALUE_INVALIDNUM
-
INVALIDPARAMETERVALUE_INVALIDSRVID
public static final RceErrorCode INVALIDPARAMETERVALUE_INVALIDSRVID
-
INVALIDPARAMETERVALUE_INVALIDSTRIDE
public static final RceErrorCode INVALIDPARAMETERVALUE_INVALIDSTRIDE
-
LIMITEXCEEDED
public static final RceErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_FREQCNT
public static final RceErrorCode LIMITEXCEEDED_FREQCNT
-
LIMITEXCEEDED_IPFREQCNT
public static final RceErrorCode LIMITEXCEEDED_IPFREQCNT
-
LIMITEXCEEDED_KEYFREQCNT
public static final RceErrorCode LIMITEXCEEDED_KEYFREQCNT
-
LIMITEXCEEDED_REPLAYATTACK
public static final RceErrorCode LIMITEXCEEDED_REPLAYATTACK
-
MISSINGPARAMETER
public static final RceErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final RceErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final RceErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final RceErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final RceErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final RceErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_INTERFACENOTFOUND
public static final RceErrorCode RESOURCENOTFOUND_INTERFACENOTFOUND
-
RESOURCEUNAVAILABLE
public static final RceErrorCode RESOURCEUNAVAILABLE
-
RESOURCEUNAVAILABLE_PERMISSIONDENIED
public static final RceErrorCode RESOURCEUNAVAILABLE_PERMISSIONDENIED
-
RESOURCESSOLDOUT
public static final RceErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final RceErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_AUTHFAILED
public static final RceErrorCode UNAUTHORIZEDOPERATION_AUTHFAILED
-
UNKNOWNPARAMETER
public static final RceErrorCode UNKNOWNPARAMETER
-
UNKNOWNPARAMETER_SECRETIDNOTEXISTS
public static final RceErrorCode UNKNOWNPARAMETER_SECRETIDNOTEXISTS
-
UNSUPPORTEDOPERATION
public static final RceErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static RceErrorCode[] 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 (RceErrorCode c : RceErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RceErrorCode 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
-
-