com.tencentcloudapi.antiddos.v20200309.AntiddosErrorCode 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.antiddos.v20200309;
public enum AntiddosErrorCode {
// CAM signature/authentication error.
AUTHFAILURE("AuthFailure"),
// The DryRun operation means that the request will be successful, but an extra DryRun parameter is passed.
DRYRUNOPERATION("DryRunOperation"),
// Operation failed.
FAILEDOPERATION("FailedOperation"),
// Internal error. Please try again later.
INTERNALERROR("InternalError"),
// Parameter error.
INVALIDPARAMETER("InvalidParameter"),
// Invalid parameter value.
INVALIDPARAMETERVALUE("InvalidParameterValue"),
// The quota limit should not be exceeded.
LIMITEXCEEDED("LimitExceeded"),
// Missing parameters. Please check and try again.
MISSINGPARAMETER("MissingParameter"),
// Operation denied.
OPERATIONDENIED("OperationDenied"),
// The number of requests should not exceed the frequency limit.
REQUESTLIMITEXCEEDED("RequestLimitExceeded"),
// The resource is occupied.
RESOURCEINUSE("ResourceInUse"),
// Insufficient resource.
RESOURCEINSUFFICIENT("ResourceInsufficient"),
// The resource does not exist. Please try again later.
RESOURCENOTFOUND("ResourceNotFound"),
// The resource is unavailable.
RESOURCEUNAVAILABLE("ResourceUnavailable"),
// The resources have been sold out.
RESOURCESSOLDOUT("ResourcesSoldOut"),
// The operation is unauthorized.
UNAUTHORIZEDOPERATION("UnauthorizedOperation"),
// Unknown parameter error. Please check and try again.
UNKNOWNPARAMETER("UnknownParameter"),
// Unsupported operation.
UNSUPPORTEDOPERATION("UnsupportedOperation");
private String value;
private AntiddosErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy