Enum CdcErrorCode
- java.lang.Object
-
- java.lang.Enum<CdcErrorCode>
-
- com.tencentcloudapi.cdc.v20201214.CdcErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<CdcErrorCode>
public enum CdcErrorCode extends Enum<CdcErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static CdcErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static CdcErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILEDOPERATION_CDCBINDVPCFAIL
public static final CdcErrorCode FAILEDOPERATION_CDCBINDVPCFAIL
-
FAILEDOPERATION_FAILDELETESITE
public static final CdcErrorCode FAILEDOPERATION_FAILDELETESITE
-
INVALIDPARAMETER_INSTANCETYPENOTSUPPORT
public static final CdcErrorCode INVALIDPARAMETER_INSTANCETYPENOTSUPPORT
-
INVALIDPARAMETERVALUE
public static final CdcErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_INVALIDAPPIDFORMAT
public static final CdcErrorCode INVALIDPARAMETERVALUE_INVALIDAPPIDFORMAT
-
INVALIDPARAMETERVALUE_INVALIDVALUEDEDICATEDCLUSTERCOSSIZE
public static final CdcErrorCode INVALIDPARAMETERVALUE_INVALIDVALUEDEDICATEDCLUSTERCOSSIZE
-
INVALIDPARAMETERVALUE_INVALIDVALUEDEDICATEDCLUSTERDATASTEPSIZE
public static final CdcErrorCode INVALIDPARAMETERVALUE_INVALIDVALUEDEDICATEDCLUSTERDATASTEPSIZE
-
INVALIDPARAMETERVALUE_INVALIDVALUEREGION
public static final CdcErrorCode INVALIDPARAMETERVALUE_INVALIDVALUEREGION
-
INVALIDPARAMETERVALUE_LIMITEXCEEDED
public static final CdcErrorCode INVALIDPARAMETERVALUE_LIMITEXCEEDED
-
INVALIDPARAMETERVALUE_REGION
public static final CdcErrorCode INVALIDPARAMETERVALUE_REGION
-
INVALIDPARAMETERVALUE_TOOLONG
public static final CdcErrorCode INVALIDPARAMETERVALUE_TOOLONG
-
INVALIDPARAMETERVALUE_ZONEMISMATCHREGION
public static final CdcErrorCode INVALIDPARAMETERVALUE_ZONEMISMATCHREGION
-
INVALIDPARAMETERVALUE_ZONENOTSUPPORTED
public static final CdcErrorCode INVALIDPARAMETERVALUE_ZONENOTSUPPORTED
-
MISSINGPARAMETER
public static final CdcErrorCode MISSINGPARAMETER
-
MISSINGPARAMETER_ATLEASTONE
public static final CdcErrorCode MISSINGPARAMETER_ATLEASTONE
-
RESOURCEINSUFFICIENT_CLOUDDISKUNAVAILABLE
public static final CdcErrorCode RESOURCEINSUFFICIENT_CLOUDDISKUNAVAILABLE
-
RESOURCENOTFOUND_INVALIDDEDICATEDCLUSTERID
public static final CdcErrorCode RESOURCENOTFOUND_INVALIDDEDICATEDCLUSTERID
-
RESOURCENOTFOUND_INVALIDDEDICATEDCLUSTERORDERID
public static final CdcErrorCode RESOURCENOTFOUND_INVALIDDEDICATEDCLUSTERORDERID
-
RESOURCENOTFOUND_INVALIDDEDICATEDCLUSTERTYPEID
public static final CdcErrorCode RESOURCENOTFOUND_INVALIDDEDICATEDCLUSTERTYPEID
-
RESOURCENOTFOUND_INVALIDSITEID
public static final CdcErrorCode RESOURCENOTFOUND_INVALIDSITEID
-
UNSUPPORTEDOPERATION_NONCUSTOMERAPPIDNOTSUPPORT
public static final CdcErrorCode UNSUPPORTEDOPERATION_NONCUSTOMERAPPIDNOTSUPPORT
-
-
Method Detail
-
values
public static CdcErrorCode[] 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 (CdcErrorCode c : CdcErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CdcErrorCode 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
-
-