Enum TcssErrorCode
- java.lang.Object
-
- java.lang.Enum<TcssErrorCode>
-
- com.tencentcloudapi.tcss.v20201101.TcssErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<TcssErrorCode>
public enum TcssErrorCode extends Enum<TcssErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static TcssErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static TcssErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final TcssErrorCode AUTHFAILURE
-
FAILEDOPERATION
public static final TcssErrorCode FAILEDOPERATION
-
FAILEDOPERATION_AGENTOFFLINE
public static final TcssErrorCode FAILEDOPERATION_AGENTOFFLINE
-
FAILEDOPERATION_AUTHORIZEDNOTENOUGH
public static final TcssErrorCode FAILEDOPERATION_AUTHORIZEDNOTENOUGH
-
FAILEDOPERATION_DATAVALUENOTCORRECT
public static final TcssErrorCode FAILEDOPERATION_DATAVALUENOTCORRECT
-
FAILEDOPERATION_ERRALREADYSCANNING
public static final TcssErrorCode FAILEDOPERATION_ERRALREADYSCANNING
-
FAILEDOPERATION_ERRRULENOTFIND
public static final TcssErrorCode FAILEDOPERATION_ERRRULENOTFIND
-
FAILEDOPERATION_NOTIFYPOLICYCHANGEFAILED
public static final TcssErrorCode FAILEDOPERATION_NOTIFYPOLICYCHANGEFAILED
-
FAILEDOPERATION_RULECONFIGTOOMANY
public static final TcssErrorCode FAILEDOPERATION_RULECONFIGTOOMANY
-
FAILEDOPERATION_RULEINFOREPEAT
public static final TcssErrorCode FAILEDOPERATION_RULEINFOREPEAT
-
FAILEDOPERATION_RULENAMEREPEAT
public static final TcssErrorCode FAILEDOPERATION_RULENAMEREPEAT
-
FAILEDOPERATION_RULENOTFIND
public static final TcssErrorCode FAILEDOPERATION_RULENOTFIND
-
FAILEDOPERATION_RULESELECTIMAGEOUTRANGE
public static final TcssErrorCode FAILEDOPERATION_RULESELECTIMAGEOUTRANGE
-
INTERNALERROR
public static final TcssErrorCode INTERNALERROR
-
INTERNALERROR_ERRROLENOTEXIST
public static final TcssErrorCode INTERNALERROR_ERRROLENOTEXIST
-
INTERNALERROR_MAINDBFAIL
public static final TcssErrorCode INTERNALERROR_MAINDBFAIL
-
INVALIDPARAMETER
public static final TcssErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_ERRIPNOVALID
public static final TcssErrorCode INVALIDPARAMETER_ERRIPNOVALID
-
INVALIDPARAMETER_INVALIDFORMAT
public static final TcssErrorCode INVALIDPARAMETER_INVALIDFORMAT
-
INVALIDPARAMETER_MISSINGPARAMETER
public static final TcssErrorCode INVALIDPARAMETER_MISSINGPARAMETER
-
INVALIDPARAMETER_PARSINGERROR
public static final TcssErrorCode INVALIDPARAMETER_PARSINGERROR
-
INVALIDPARAMETER_PORTNOVALID
public static final TcssErrorCode INVALIDPARAMETER_PORTNOVALID
-
INVALIDPARAMETER_REVERSHELLKEYFIELDALLEMPTY
public static final TcssErrorCode INVALIDPARAMETER_REVERSHELLKEYFIELDALLEMPTY
-
INVALIDPARAMETER_RULEINFOINVALID
public static final TcssErrorCode INVALIDPARAMETER_RULEINFOINVALID
-
INVALIDPARAMETERVALUE
public static final TcssErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_DATANOTFOUND
public static final TcssErrorCode INVALIDPARAMETERVALUE_DATANOTFOUND
-
INVALIDPARAMETERVALUE_DATARANGE
public static final TcssErrorCode INVALIDPARAMETERVALUE_DATARANGE
-
INVALIDPARAMETERVALUE_LENGTHLIMIT
public static final TcssErrorCode INVALIDPARAMETERVALUE_LENGTHLIMIT
-
LIMITEXCEEDED
public static final TcssErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final TcssErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final TcssErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final TcssErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final TcssErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final TcssErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final TcssErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final TcssErrorCode RESOURCEUNAVAILABLE
-
UNAUTHORIZEDOPERATION
public static final TcssErrorCode UNAUTHORIZEDOPERATION
-
UNKNOWNPARAMETER
public static final TcssErrorCode UNKNOWNPARAMETER
-
-
Method Detail
-
values
public static TcssErrorCode[] 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 (TcssErrorCode c : TcssErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TcssErrorCode 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
-
-