Enum SsmErrorCode
- java.lang.Object
-
- java.lang.Enum<SsmErrorCode>
-
- com.tencentcloudapi.ssm.v20190923.SsmErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<SsmErrorCode>
public enum SsmErrorCode extends Enum<SsmErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static SsmErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static SsmErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final SsmErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final SsmErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final SsmErrorCode FAILEDOPERATION
-
FAILEDOPERATION_ACCESSKMSERROR
public static final SsmErrorCode FAILEDOPERATION_ACCESSKMSERROR
-
FAILEDOPERATION_ROTATIONFORBIDDEN
public static final SsmErrorCode FAILEDOPERATION_ROTATIONFORBIDDEN
-
INTERNALERROR
public static final SsmErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final SsmErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final SsmErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_TAGKEYSDUPLICATED
public static final SsmErrorCode INVALIDPARAMETERVALUE_TAGKEYSDUPLICATED
-
INVALIDPARAMETERVALUE_TAGSNOTEXISTED
public static final SsmErrorCode INVALIDPARAMETERVALUE_TAGSNOTEXISTED
-
LIMITEXCEEDED
public static final SsmErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final SsmErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final SsmErrorCode OPERATIONDENIED
-
OPERATIONDENIED_ACCESSKEYOVERLIMIT
public static final SsmErrorCode OPERATIONDENIED_ACCESSKEYOVERLIMIT
-
OPERATIONDENIED_AUTOROTATEDRESOURCE
public static final SsmErrorCode OPERATIONDENIED_AUTOROTATEDRESOURCE
-
OPERATIONDENIED_ROLENOTEXIST
public static final SsmErrorCode OPERATIONDENIED_ROLENOTEXIST
-
OPERATIONDENIED_UINNOTMATCH
public static final SsmErrorCode OPERATIONDENIED_UINNOTMATCH
-
REQUESTLIMITEXCEEDED
public static final SsmErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final SsmErrorCode RESOURCEINUSE
-
RESOURCEINUSE_SECRETEXISTS
public static final SsmErrorCode RESOURCEINUSE_SECRETEXISTS
-
RESOURCEINUSE_VERSIONIDEXISTS
public static final SsmErrorCode RESOURCEINUSE_VERSIONIDEXISTS
-
RESOURCEINSUFFICIENT
public static final SsmErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final SsmErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_SECRETNOTEXIST
public static final SsmErrorCode RESOURCENOTFOUND_SECRETNOTEXIST
-
RESOURCEUNAVAILABLE
public static final SsmErrorCode RESOURCEUNAVAILABLE
-
RESOURCEUNAVAILABLE_NOTPURCHASED
public static final SsmErrorCode RESOURCEUNAVAILABLE_NOTPURCHASED
-
RESOURCEUNAVAILABLE_RESOURCEDISABLED
public static final SsmErrorCode RESOURCEUNAVAILABLE_RESOURCEDISABLED
-
RESOURCEUNAVAILABLE_RESOURCEPENDINGDELETED
public static final SsmErrorCode RESOURCEUNAVAILABLE_RESOURCEPENDINGDELETED
-
RESOURCEUNAVAILABLE_RESOURCEUNINITIALIZED
public static final SsmErrorCode RESOURCEUNAVAILABLE_RESOURCEUNINITIALIZED
-
RESOURCESSOLDOUT
public static final SsmErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final SsmErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_ACCESSKMSERROR
public static final SsmErrorCode UNAUTHORIZEDOPERATION_ACCESSKMSERROR
-
UNKNOWNPARAMETER
public static final SsmErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final SsmErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static SsmErrorCode[] 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 (SsmErrorCode c : SsmErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SsmErrorCode 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
-
-