
com.tencentcloudapi.es.v20180416.EsErrorCode Maven / Gradle / Ivy
package com.tencentcloudapi.es.v20180416;
public enum EsErrorCode {
// CAM signature/authentication error
AUTHFAILURE("AuthFailure"),
// Unauthorized operation.
AUTHFAILURE_UNAUTHORIZEDOPERATION("AuthFailure.UnAuthorizedOperation"),
// Operation failed.
FAILEDOPERATION("FailedOperation"),
// An error occurred with the cluster resource quota limit.
FAILEDOPERATION_CLUSTERRESOURCELIMITERROR("FailedOperation.ClusterResourceLimitError"),
// Failed to query the number of disks of the node
FAILEDOPERATION_DISKCOUNTPARAMERROR("FailedOperation.DiskCountParamError"),
// Incorrect cluster status
FAILEDOPERATION_ERRORCLUSTERSTATE("FailedOperation.ErrorClusterState"),
// No replicas for indexes in the cluster.
FAILEDOPERATION_ERRORCLUSTERSTATENOREPLICATION("FailedOperation.ErrorClusterStateNoReplication"),
// The cluster is unhealthy.
FAILEDOPERATION_ERRORCLUSTERSTATEUNHEALTH("FailedOperation.ErrorClusterStateUnhealth"),
// No credit card or PayPal account is linked to the current account. Unable to make a payment.
FAILEDOPERATION_NOPAYMENT("FailedOperation.NoPayment"),
// Unverified user.
FAILEDOPERATION_NOTAUTHENTICATED("FailedOperation.NotAuthenticated"),
// Cannot increase the number of disks during rolling restart of scaled-out compute resources.
FAILEDOPERATION_UNSUPPORTRESETNODETYPEANDSCALEOUTDISK("FailedOperation.UnsupportResetNodeTypeAndScaleoutDisk"),
// The disk capacity can’t be modified during rolling restart of scaled-in compute resources.
FAILEDOPERATION_UNSUPPORTRESETSCALEDOWNANDMODIFYDISK("FailedOperation.UnsupportResetScaledownAndModifyDisk"),
// Cannot adjust the node configuration and disk capacity reversely.
FAILEDOPERATION_UNSUPPORTREVERSEREGULATIONNODETYPEANDDISK("FailedOperation.UnsupportReverseRegulationNodeTypeAndDisk"),
// Internal error.
INTERNALERROR("InternalError"),
// Invalid parameter.
INVALIDPARAMETER("InvalidParameter"),
// Incorrect parameter value.
INVALIDPARAMETERVALUE("InvalidParameterValue"),
// Missing parameter.
MISSINGPARAMETER("MissingParameter"),
// The number of requests exceeds the frequency limit.
REQUESTLIMITEXCEEDED("RequestLimitExceeded"),
// Resource is in use.
RESOURCEINUSE("ResourceInUse"),
// Insufficient resource.
RESOURCEINSUFFICIENT("ResourceInsufficient"),
// Insufficient account balance.
RESOURCEINSUFFICIENT_BALANCE("ResourceInsufficient.Balance"),
// Dedicated master node resources in the hidden availability zone are insufficient.
RESOURCEINSUFFICIENT_HIDDENZONE("ResourceInsufficient.HiddenZone"),
// Insufficient number of remaining subnet IPs.
RESOURCEINSUFFICIENT_SUBNET("ResourceInsufficient.Subnet"),
// The resource does not exist.
RESOURCENOTFOUND("ResourceNotFound"),
// Unauthorized operation.
UNAUTHORIZEDOPERATION("UnauthorizedOperation"),
// Unknown parameter error.
UNKNOWNPARAMETER("UnknownParameter"),
// Unsupported operation.
UNSUPPORTEDOPERATION("UnsupportedOperation");
private String value;
private EsErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy