Enum ThpcErrorCode
- java.lang.Object
-
- java.lang.Enum<ThpcErrorCode>
-
- com.tencentcloudapi.thpc.v20230321.ThpcErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<ThpcErrorCode>
public enum ThpcErrorCode extends Enum<ThpcErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static ThpcErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static ThpcErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final ThpcErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final ThpcErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final ThpcErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final ThpcErrorCode INTERNALERROR
-
INTERNALERROR_CALLCVM
public static final ThpcErrorCode INTERNALERROR_CALLCVM
-
INVALIDPARAMETER
public static final ThpcErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_MALFORMED
public static final ThpcErrorCode INVALIDPARAMETER_MALFORMED
-
INVALIDPARAMETERVALUE
public static final ThpcErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_INVALIDFILTERNOTSUPPORTEDNAME
public static final ThpcErrorCode INVALIDPARAMETERVALUE_INVALIDFILTERNOTSUPPORTEDNAME
-
INVALIDPARAMETERVALUE_LIMITEXCEEDED
public static final ThpcErrorCode INVALIDPARAMETERVALUE_LIMITEXCEEDED
-
INVALIDPARAMETERVALUE_NOTSUPPORTED
public static final ThpcErrorCode INVALIDPARAMETERVALUE_NOTSUPPORTED
-
INVALIDPARAMETERVALUE_PARAMETERSNOTSUPPORTED
public static final ThpcErrorCode INVALIDPARAMETERVALUE_PARAMETERSNOTSUPPORTED
-
INVALIDPARAMETERVALUE_TOOLARGE
public static final ThpcErrorCode INVALIDPARAMETERVALUE_TOOLARGE
-
INVALIDPARAMETERVALUE_TOOLONG
public static final ThpcErrorCode INVALIDPARAMETERVALUE_TOOLONG
-
INVALIDPARAMETERVALUE_TOOSHORT
public static final ThpcErrorCode INVALIDPARAMETERVALUE_TOOSHORT
-
INVALIDPARAMETERVALUE_TOOSMALL
public static final ThpcErrorCode INVALIDPARAMETERVALUE_TOOSMALL
-
INVALIDPARAMETERVALUE_VALUEDUPLICATED
public static final ThpcErrorCode INVALIDPARAMETERVALUE_VALUEDUPLICATED
-
LIMITEXCEEDED
public static final ThpcErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_QUEUENUMLIMIT
public static final ThpcErrorCode LIMITEXCEEDED_QUEUENUMLIMIT
-
MISSINGPARAMETER
public static final ThpcErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final ThpcErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final ThpcErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final ThpcErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final ThpcErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final ThpcErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_CLUSTERID
public static final ThpcErrorCode RESOURCENOTFOUND_CLUSTERID
-
RESOURCENOTFOUND_IMAGEID
public static final ThpcErrorCode RESOURCENOTFOUND_IMAGEID
-
RESOURCENOTFOUND_LOCALPATH
public static final ThpcErrorCode RESOURCENOTFOUND_LOCALPATH
-
RESOURCENOTFOUND_NODEID
public static final ThpcErrorCode RESOURCENOTFOUND_NODEID
-
RESOURCENOTFOUND_QUEUE
public static final ThpcErrorCode RESOURCENOTFOUND_QUEUE
-
UNAUTHORIZEDOPERATION
public static final ThpcErrorCode UNAUTHORIZEDOPERATION
-
UNKNOWNPARAMETER
public static final ThpcErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final ThpcErrorCode UNSUPPORTEDOPERATION
-
UNSUPPORTEDOPERATION_AUTOSCALINGTYPE
public static final ThpcErrorCode UNSUPPORTEDOPERATION_AUTOSCALINGTYPE
-
UNSUPPORTEDOPERATION_CLUSTERACCEPTOTHERREQUEST
public static final ThpcErrorCode UNSUPPORTEDOPERATION_CLUSTERACCEPTOTHERREQUEST
-
UNSUPPORTEDOPERATION_CLUSTERSTATUSNOTSUPPORT
public static final ThpcErrorCode UNSUPPORTEDOPERATION_CLUSTERSTATUSNOTSUPPORT
-
UNSUPPORTEDOPERATION_INVALIDNODEROLE
public static final ThpcErrorCode UNSUPPORTEDOPERATION_INVALIDNODEROLE
-
UNSUPPORTEDOPERATION_NODESTATUSNOTSUPPORT
public static final ThpcErrorCode UNSUPPORTEDOPERATION_NODESTATUSNOTSUPPORT
-
UNSUPPORTEDOPERATION_PARAMETERTOOLARGE
public static final ThpcErrorCode UNSUPPORTEDOPERATION_PARAMETERTOOLARGE
-
UNSUPPORTEDOPERATION_PARAMETERTOOSMALL
public static final ThpcErrorCode UNSUPPORTEDOPERATION_PARAMETERTOOSMALL
-
UNSUPPORTEDOPERATION_QUEUENOTEMPTY
public static final ThpcErrorCode UNSUPPORTEDOPERATION_QUEUENOTEMPTY
-
UNSUPPORTEDOPERATION_VPCIDCONFLICT
public static final ThpcErrorCode UNSUPPORTEDOPERATION_VPCIDCONFLICT
-
-
Method Detail
-
values
public static ThpcErrorCode[] 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 (ThpcErrorCode c : ThpcErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThpcErrorCode 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
-
-