@@ -53,6 +53,7 @@ public struct TCCvmError: TCCvmErrorType {
5353 case failedOperation_TagKeyReserved = " FailedOperation.TagKeyReserved "
5454 case failedOperation_TatAgentNotSupport = " FailedOperation.TatAgentNotSupport "
5555 case failedOperation_Unreturnable = " FailedOperation.Unreturnable "
56+ case failedOperation_ZoneInconsistent = " FailedOperation.ZoneInconsistent "
5657 case imageQuotaLimitExceeded = " ImageQuotaLimitExceeded "
5758 case instancesQuotaLimitExceeded = " InstancesQuotaLimitExceeded "
5859 case internalError = " InternalError "
@@ -256,6 +257,7 @@ public struct TCCvmError: TCCvmErrorType {
256257 case resourceInUse_DiskRollbacking = " ResourceInUse.DiskRollbacking "
257258 case resourceInUse_HpcCluster = " ResourceInUse.HpcCluster "
258259 case resourceInsufficient_AvailabilityZoneSoldOut = " ResourceInsufficient.AvailabilityZoneSoldOut "
260+ case resourceInsufficient_CidrBlock = " ResourceInsufficient.CidrBlock "
259261 case resourceInsufficient_CloudDiskSoldOut = " ResourceInsufficient.CloudDiskSoldOut "
260262 case resourceInsufficient_CloudDiskUnavailable = " ResourceInsufficient.CloudDiskUnavailable "
261263 case resourceInsufficient_DisasterRecoverGroupCvmQuota = " ResourceInsufficient.DisasterRecoverGroupCvmQuota "
@@ -577,6 +579,11 @@ public struct TCCvmError: TCCvmErrorType {
577579 TCCvmError ( . failedOperation_Unreturnable)
578580 }
579581
582+ /// 给定实例所在可用区不相同,请给定相同可用区的实例。
583+ public static var failedOperation_ZoneInconsistent : TCCvmError {
584+ TCCvmError ( . failedOperation_ZoneInconsistent)
585+ }
586+
580587 /// 镜像配额超过了限制。
581588 public static var imageQuotaLimitExceeded : TCCvmError {
582589 TCCvmError ( . imageQuotaLimitExceeded)
@@ -1605,6 +1612,11 @@ public struct TCCvmError: TCCvmErrorType {
16051612 TCCvmError ( . resourceInsufficient_AvailabilityZoneSoldOut)
16061613 }
16071614
1615+ /// 网段资源不足。
1616+ public static var resourceInsufficient_CidrBlock : TCCvmError {
1617+ TCCvmError ( . resourceInsufficient_CidrBlock)
1618+ }
1619+
16081620 /// 指定的云盘规格已售罄
16091621 public static var resourceInsufficient_CloudDiskSoldOut : TCCvmError {
16101622 TCCvmError ( . resourceInsufficient_CloudDiskSoldOut)
0 commit comments