Enum ApmErrorCode
- java.lang.Object
-
- java.lang.Enum<ApmErrorCode>
-
- com.tencentcloudapi.apm.v20210622.ApmErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<ApmErrorCode>
public enum ApmErrorCode extends Enum<ApmErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static ApmErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static ApmErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final ApmErrorCode AUTHFAILURE
-
AUTHFAILURE_UNAUTHORIZEDOPERATION
public static final ApmErrorCode AUTHFAILURE_UNAUTHORIZEDOPERATION
-
DRYRUNOPERATION
public static final ApmErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final ApmErrorCode FAILEDOPERATION
-
FAILEDOPERATION_ACCESSTAGFAIL
public static final ApmErrorCode FAILEDOPERATION_ACCESSTAGFAIL
-
FAILEDOPERATION_APPIDNOTMATCHINSTANCEINFO
public static final ApmErrorCode FAILEDOPERATION_APPIDNOTMATCHINSTANCEINFO
-
FAILEDOPERATION_DEMOINSTANCENOTALLOWMODIFIED
public static final ApmErrorCode FAILEDOPERATION_DEMOINSTANCENOTALLOWMODIFIED
-
FAILEDOPERATION_INSTANCEIDISEMPTY
public static final ApmErrorCode FAILEDOPERATION_INSTANCEIDISEMPTY
-
FAILEDOPERATION_INSTANCENOTFOUND
public static final ApmErrorCode FAILEDOPERATION_INSTANCENOTFOUND
-
FAILEDOPERATION_INVALIDINSTANCEID
public static final ApmErrorCode FAILEDOPERATION_INVALIDINSTANCEID
-
FAILEDOPERATION_METRICFILTERSLACKPARAMS
public static final ApmErrorCode FAILEDOPERATION_METRICFILTERSLACKPARAMS
-
FAILEDOPERATION_NOTINNERVPC
public static final ApmErrorCode FAILEDOPERATION_NOTINNERVPC
-
FAILEDOPERATION_QUERYTIMEINTERVALISNOTSUPPORTED
public static final ApmErrorCode FAILEDOPERATION_QUERYTIMEINTERVALISNOTSUPPORTED
-
FAILEDOPERATION_REGIONNOTSUPPORT
public static final ApmErrorCode FAILEDOPERATION_REGIONNOTSUPPORT
-
FAILEDOPERATION_SENDREQUEST
public static final ApmErrorCode FAILEDOPERATION_SENDREQUEST
-
FAILEDOPERATION_VIEWNAMENOTEXISTORILLEGAL
public static final ApmErrorCode FAILEDOPERATION_VIEWNAMENOTEXISTORILLEGAL
-
INTERNALERROR
public static final ApmErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final ApmErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_FILTERSFIELDSNOTEXISTORILLEGAL
public static final ApmErrorCode INVALIDPARAMETER_FILTERSFIELDSNOTEXISTORILLEGAL
-
INVALIDPARAMETER_GROUPBYFIELDSNOTEXISTORILLEGAL
public static final ApmErrorCode INVALIDPARAMETER_GROUPBYFIELDSNOTEXISTORILLEGAL
-
INVALIDPARAMETER_METRICFILTERSLACKPARAMS
public static final ApmErrorCode INVALIDPARAMETER_METRICFILTERSLACKPARAMS
-
INVALIDPARAMETER_METRICSFIELDNOTEXISTORILLEGAL
public static final ApmErrorCode INVALIDPARAMETER_METRICSFIELDNOTEXISTORILLEGAL
-
INVALIDPARAMETER_METRICSFIELDSNOTALLOWEMPTY
public static final ApmErrorCode INVALIDPARAMETER_METRICSFIELDSNOTALLOWEMPTY
-
INVALIDPARAMETER_PERIODISILLEGAL
public static final ApmErrorCode INVALIDPARAMETER_PERIODISILLEGAL
-
INVALIDPARAMETER_QUERYTIMEINTERVALISNOTSUPPORTED
public static final ApmErrorCode INVALIDPARAMETER_QUERYTIMEINTERVALISNOTSUPPORTED
-
INVALIDPARAMETER_VIEWNAMENOTEXISTORILLEGAL
public static final ApmErrorCode INVALIDPARAMETER_VIEWNAMENOTEXISTORILLEGAL
-
-
Method Detail
-
values
public static ApmErrorCode[] 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 (ApmErrorCode c : ApmErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApmErrorCode 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
-
-