Enum SsaErrorCode
- java.lang.Object
-
- java.lang.Enum<SsaErrorCode>
-
- com.tencentcloudapi.ssa.v20180608.SsaErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<SsaErrorCode>
public enum SsaErrorCode extends Enum<SsaErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static SsaErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static SsaErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final SsaErrorCode AUTHFAILURE
-
AUTHFAILURE_AUTHMODULEFAILED
public static final SsaErrorCode AUTHFAILURE_AUTHMODULEFAILED
-
DRYRUNOPERATION
public static final SsaErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final SsaErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final SsaErrorCode INTERNALERROR
-
INTERNALERROR_DBERROR
public static final SsaErrorCode INTERNALERROR_DBERROR
-
INTERNALERROR_PARAMERROR
public static final SsaErrorCode INTERNALERROR_PARAMERROR
-
INVALIDPARAMETER
public static final SsaErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final SsaErrorCode INVALIDPARAMETERVALUE
-
LIMITEXCEEDED
public static final SsaErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final SsaErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final SsaErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final SsaErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final SsaErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final SsaErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final SsaErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final SsaErrorCode RESOURCEUNAVAILABLE
-
RESOURCESSOLDOUT
public static final SsaErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final SsaErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_SUBACCOUNTUNAUTHORIZED
public static final SsaErrorCode UNAUTHORIZEDOPERATION_SUBACCOUNTUNAUTHORIZED
-
UNKNOWNPARAMETER
public static final SsaErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final SsaErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static SsaErrorCode[] 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 (SsaErrorCode c : SsaErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SsaErrorCode 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
-
-