com.tencentcloudapi.cfw.v20190904.CfwErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
package com.tencentcloudapi.cfw.v20190904;
public enum CfwErrorCode {
// CAM signature/authentication error.
AUTHFAILURE("AuthFailure"),
// DryRun operation, which means the DryRun parameter is passed in yet the request will still be successful.
DRYRUNOPERATION("DryRunOperation"),
// Operation failed.
FAILEDOPERATION("FailedOperation"),
// Internal error.
INTERNALERROR("InternalError"),
// Invalid parameter.
INVALIDPARAMETER("InvalidParameter"),
// Invalid parameter value.
INVALIDPARAMETERVALUE("InvalidParameterValue"),
// The quota limit has been reached.
LIMITEXCEEDED("LimitExceeded"),
// Missing parameter.
MISSINGPARAMETER("MissingParameter"),
// Operation denied.
OPERATIONDENIED("OperationDenied"),
// The number of requests exceeds the frequency limit.
REQUESTLIMITEXCEEDED("RequestLimitExceeded"),
// The resource is occupied.
RESOURCEINUSE("ResourceInUse"),
// Insufficient resource.
RESOURCEINSUFFICIENT("ResourceInsufficient"),
// The resource does not exist.
RESOURCENOTFOUND("ResourceNotFound"),
// The resource is unavailable.
RESOURCEUNAVAILABLE("ResourceUnavailable"),
// The resources have been sold out.
RESOURCESSOLDOUT("ResourcesSoldOut"),
// Unauthorized operation.
UNAUTHORIZEDOPERATION("UnauthorizedOperation"),
// Unknown parameter error.
UNKNOWNPARAMETER("UnknownParameter"),
// Unsupported operation.
UNSUPPORTEDOPERATION("UnsupportedOperation");
private String value;
private CfwErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}