CHANGELOG 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911
  1. 2020-02-26 Version: 1.36.290
  2. - Generated 2015-01-01 for `R-kvstore`.
  3. - Add VpcCloudInstanceId for DescribeInstanceAttribute.
  4. 2020-02-26 Version: 1.36.289
  5. - Add InitFaceVerify and DescribeFaceVerify API.
  6. 2020-02-25 Version: 1.36.288
  7. - Fix ListWorkFlowTemplates, ListWorkFlowNodes API Go SDK build error.
  8. 2020-02-25 Version: 1.36.287
  9. - Update backupsetDownloadset fun.
  10. 2020-02-24 Version: 1.36.286
  11. - ImmediateDelete.
  12. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  13. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  14. - DescribeIpWhitelist Groups GroupName.
  15. - CreateCluster.
  16. 2020-02-24 Version: 1.36.285
  17. - Release Ft SDK.
  18. 2020-02-24 Version: 1.36.284
  19. - Release Ft SDK.
  20. 2020-02-24 Version 1.36.283
  21. - Add tag of list instance parameters.
  22. 2020-02-24 Version 1.36.282
  23. - Generated 2018-06-12 for `VoiceNavigator`.
  24. 2020-02-24 Version 1.36.281
  25. - Generated 2019-12-26 for `OutboundBot`.
  26. 2020-02-24 Version 1.36.280
  27. - Generated 2019-12-26 for `OutboundBot`.
  28. 2020-02-24 Version 1.36.279
  29. - Generated 2019-12-26 for `OutboundBot`.
  30. 2020-02-21 Version 1.36.278
  31. - Support TAG API.
  32. 2020-02-20 Version 1.36.277
  33. - Generated 2019-09-28 for `reid`.
  34. 2020-02-20 Version 1.36.276
  35. - Add new interface ListMaskDetectionResults to support to pull mask detection results.
  36. 2020-02-15 Version 1.36.275
  37. - Add DescribeDBClusterSSL.
  38. - Add ModifyDBClusterSSL.
  39. 2020-02-14 Version 1.36.274
  40. - Update default endpoints.
  41. 2020-02-14 Version 1.36.273
  42. - Add callback params to StartExecution API.
  43. - Support ListExecutions with Status API.
  44. 2020-02-14 Version 1.36.272
  45. - Update default endpoints.
  46. 2020-02-13 Version 1.36.271
  47. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  48. - DescribeNetworkInterfaces support QueueNumber.
  49. 2020-02-13 Version 1.36.270
  50. - Add Staging apis.
  51. 2020-02-13 Version 1.36.269
  52. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  53. - DescribeNetworkInterfaces support QueueNumber.
  54. 2020-02-13 Version 1.36.268
  55. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  56. - DescribeNetworkInterfaces support QueueNumber.
  57. 2020-02-13 Version 1.36.267
  58. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  59. - DescribeNetworkInterfaces support QueueNumber.
  60. 2020-02-13 Version 1.36.266
  61. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  62. - DescribeNetworkInterfaces support QueueNumber.
  63. 2020-02-13 Version 1.36.265
  64. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  65. - DescribeNetworkInterfaces support QueueNumber.
  66. 2020-02-13 Version 1.36.264
  67. - Add Staging apis.
  68. 2020-02-13 Version 1.36.263
  69. - Add Staging apis.
  70. 2020-02-13 Version 1.36.262
  71. - Add Staging apis.
  72. 2020-02-13 Version 1.36.261
  73. - Add Staging apis.
  74. 2020-02-13 Version 1.36.260
  75. - Add Staging apis.
  76. 2020-02-13 Version 1.36.259
  77. - Init MQTT SDK .
  78. 2020-02-12 Version 1.36.258
  79. - Support to create, describe and expire demo access token.
  80. 2020-02-12 Version 1.36.257
  81. - Update Full showStorageTyp.
  82. 2020-02-12 Version 1.36.256
  83. - Add Full showStorageTyp.
  84. 2020-02-12 Version 1.36.255
  85. - Support mau.
  86. 2020-02-11 Version 1.36.254
  87. - Return `VpcInstanceId ` for DescribeDBClusterEndpoints.
  88. - Add DescribeBackupLogs.
  89. 2020-02-11 Version 1.36.253
  90. - Support ModifyInstanceAttributes for SecurityGroupIds.
  91. 2020-02-11 Version 1.36.252
  92. - Update default endpoints.
  93. 2020-02-10 Version 1.36.251
  94. - Supported address for GetMediaMeta.
  95. 2020-02-07 Version 1.36.250
  96. - Fix bug for DescribeZoneInfo, delete return result of reionId.
  97. - Fix bug for DeleteZone, parameter zoneId change to compulsory.
  98. - Fix bug for SetProxyPattern, parameter zoneId change to compulsory.
  99. 2020-02-05 Version 1.36.249
  100. - Supported GetOfficePreviewURL.
  101. - Supported RefreshOfficePreviewToken.
  102. 2020-02-04 Version 1.36.248
  103. - Update default endpoints.
  104. 2020-01-20 Version 1.36.247
  105. - Release on full language support.
  106. 2020-01-17 Version 1.36.246
  107. - Supported Add the history event signature function.
  108. 2020-01-16 Version 1.36.245
  109. - Fix the result value of DeleteSiteMonitors.
  110. 2020-01-16 Version 1.36.244
  111. - Generated 2015-01-01 for `R-kvstore`.
  112. - Update DescribeAvailableResource.
  113. 2020-01-16 Version 1.36.243
  114. - Add fields faceComparisonScore for DescribeVerifyResult and VerifyMaterials interface.
  115. 2020-01-15 Version 1.36.242
  116. - Fix parameter issues for label synchronization group.
  117. 2020-01-15 Version 1.36.241
  118. - Fix parameter issues for label synchronization group.
  119. 2020-01-13 Version 1.36.240
  120. - New API DescribeAvailableResource.
  121. 2020-01-13 Version 1.36.239
  122. - Add Dynamic Tag API.
  123. 2020-01-13 Version 1.36.238
  124. - Supported InstanceMaintenanceAtrributes for maintening the attributes of instances.
  125. - Deleted MaintenanceProperty.
  126. - Supported RedeployDedicatedHost for redeploying dedicated host in under-assessment status.
  127. 2020-01-10 Version 1.36.237
  128. - Return `ConsistentTime` for DescribeBackups.
  129. - Return `DBNodeIds` for CreateDBNodes.
  130. 2020-01-09 Version 1.36.236
  131. - Support DAILY report in QueryInstanBill.
  132. 2020-01-08 Version 1.36.235
  133. - Add TagLevel to ListSetTags.
  134. 2020-01-07 Version 1.36.234
  135. - Modify desribeInstance return dict item.
  136. 2020-01-07 Version 1.36.233
  137. - Generated 2014-05-26 for `Ecs`.
  138. 2020-01-03 Version 1.36.232
  139. - Add GWS serie apis.
  140. - Add QueryReport.
  141. - Fix ListJobs.
  142. - Etc.
  143. 2020-01-03 Version 1.36.231
  144. - New API DescribeAvailableResource.
  145. 2020-01-03 Version 1.36.230
  146. - ImmediateDelete.
  147. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  148. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  149. - DescribeIpWhitelist Groups GroupName.
  150. 2019-12-31 Version 1.36.229
  151. - Supported SQL SERVER support delete backup set according to time range.
  152. 2019-12-31 Version 1.36.228
  153. - Support asymmetric keys.
  154. 2019-12-31 Version 1.36.227
  155. - Add request parameter groupType for OnsGroupCreate.
  156. 2019-12-31 Version 1.36.226
  157. - Supported image for process.
  158. 2019-12-31 Version 1.36.225
  159. - Generated 2019-09-28 for `reid`.
  160. 2019-12-31 Version 1.36.224
  161. - Support DeleteDBCluster.
  162. - Support ModifyDBCluster.
  163. - Support DescribeAvailableResource.
  164. 2019-12-27 Version 1.36.223
  165. - Update DescribeTrails Response.
  166. 2019-12-26 Version 1.36.222
  167. - NlpAutoml add async api.
  168. 2019-12-26 Version 1.36.221
  169. - Modify CreateRestoreTask.
  170. 2019-12-20 Version 1.36.220
  171. - Supported Search stream predict task list use modelId for IVISION.
  172. 2019-12-20 Version 1.36.219
  173. - Add result value for OnsConsumerStatus.
  174. 2019-12-19 Version 1.36.218
  175. - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
  176. 2019-12-19 Version 1.36.217
  177. - Generated 2019-09-28 for `reid`.
  178. 2019-12-19 Version 1.36.216
  179. - DescribeNetworkInterfaces Supports NextToken.
  180. 2019-12-16 Version 1.36.215
  181. - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
  182. 2019-12-14 Version 1.36.214
  183. - Generated 2015-01-01 for `R-kvstore`.
  184. 2019-12-14 Version 1.36.213
  185. - Update DescribeAvailableResource.
  186. 2019-12-14 Version 1.36.212
  187. - Update DescribeAvailableResource.
  188. 2019-12-12 Version 1.36.211
  189. - Generated 2019-06-10 for `et-industry-openapi`.
  190. 2019-12-11 Version 1.36.210
  191. - Supported Sync predict for Image.
  192. - Supported Set Frame Frequency for Stream Predict.
  193. - Fixed Errore Code For APIs.
  194. 2019-12-11 Version 1.36.209
  195. - Add tag API.
  196. - Add group process monitoring API.
  197. - Add API for batch setting alarm rules.
  198. 2019-12-05 Version 1.36.208
  199. - Add api QueryMetric.
  200. 2019-12-04 Version 1.36.207
  201. - Generated 2019-01-01 for `HBase`.
  202. 2019-12-04 Version 1.36.206
  203. - Supported ModifyDBInstanceSpec for Direction param.
  204. 2019-12-02 Version 1.36.205
  205. - Remove QuerySmsProdStatus OpenAPI.
  206. 2019-11-29 Version 1.36.204
  207. - Add RenewInstance.
  208. - Add RenewLogstash.
  209. - Add UpdateInstanceChargeType.
  210. - Add UpdateLogstashChargeType.
  211. 2019-11-28 Version 1.36.203
  212. - Supported API GetTxtRecordForVerify.
  213. - Supported API RetrieveDomain.
  214. 2019-11-28 Version 1.36.202
  215. - Supported dash for compress.
  216. 2019-11-28 Version 1.36.201
  217. - Eni Supports Multi-SecurityGroup.
  218. 2019-11-27 Version 1.36.200
  219. - CreateReplicationJob API supports the specified instance type.
  220. 2019-11-26 Version 1.36.199
  221. - Modify QueryBill, add SubOrderId in item of response.
  222. 2019-11-26 Version 1.36.198
  223. - Supported API BindInstanceDomains.
  224. - Supported API UnbindInstanceDomains.
  225. - Supported API AddCustomLine.
  226. - Supported API UpdateCustomLine.
  227. - Supported API DeleteCustomLines.
  228. - Supported API DescribeCustomLine.
  229. - Supported API DescribeCustomLines.
  230. 2019-11-25 Version 1.36.197
  231. - Generated 2019-10-30 for `aliyuncvc`.
  232. 2019-11-25 Version 1.36.196
  233. - One or more people can be subscribed when creating tasks.
  234. 2019-11-21 Version 1.36.195
  235. - Add ConvertPayType.
  236. - Add ConvertLogstashPayType.
  237. 2019-11-21 Version 1.36.194
  238. - Generated 2017-10-11 for `Chatbot`.
  239. 2019-11-21 Version 1.36.193
  240. - Generated 2017-10-11 for `Chatbot`.
  241. 2019-11-21 Version 1.36.192
  242. - Generated 2019-10-30 for `aliyuncvc`.
  243. 2019-11-20 Version 1.36.191
  244. - Update Nlp Automl SDK.
  245. 2019-11-20 Version 1.36.190
  246. - Add new OpenAPI.
  247. 2019-11-20 Version 1.36.189
  248. - Add new pop api.
  249. 2019-11-20 Version 1.36.188
  250. - Generated 2014-05-26 for `Ecs`.
  251. 2019-11-20 Version 1.36.187
  252. - Generated 2018-04-12 for `EHPC`.
  253. 2019-11-20 Version 1.36.186
  254. - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
  255. - Modify ecsDemand DescribesDemands API.
  256. 2019-11-20 Version 1.36.185
  257. - Generated 2019-01-01 for `HBase`.
  258. 2019-11-20 Version 1.36.184
  259. - Add API ReportVoipProblems.
  260. - Add API QueryVoipNumberBindINfos.
  261. 2019-11-15 Version 1.36.183
  262. - Nlp Automl SDK.
  263. 2019-11-15 Version 1.36.182
  264. - Sync cdn APIs.
  265. 2019-11-15 Version 1.36.181
  266. - Fixed bugs.
  267. 2019-11-15 Version 1.36.180
  268. - Add Scdn APIS.
  269. - Sync cdn APIS.
  270. 2019-11-15 Version 1.36.179
  271. - Modify QueryAccountBill, support group by product.
  272. 2019-11-15 Version 1.36.178
  273. - Modify DescribeRestoreRangeInfo.
  274. 2019-11-15 Version 1.36.177
  275. - Add DescribeRestoreRangeInfo.
  276. 2019-11-14 Version 1.36.176
  277. - Released dysms OpenAPI.
  278. 2019-11-14 Version 1.36.175
  279. - Support Tag OpenAPI.
  280. - Fix endpoint problem.
  281. 2019-11-14 Version 1.36.174
  282. - Initial construction.
  283. - Public beta version.
  284. - Supported AliyunController for Interface.
  285. - Supported ConsoleController for Interface.
  286. - Supported AccountController for Interface.
  287. 2019-11-13 Version 1.36.173
  288. - Supported Stream analyse.
  289. 2019-11-13 Version 1.36.172
  290. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  291. 2019-11-13 Version 1.36.171
  292. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  293. 2019-11-13 Version 1.36.170
  294. - Add new API QueryBillToOSSSubscription.
  295. 2019-11-13 Version 1.36.169
  296. - Supported API UpdateDomainRemark for Update Domain Remark.
  297. - Supported API UpdateDomainRecordRemark for Update Record Remark.
  298. - Unsupported API CheckDomainRecord.
  299. 2019-11-13 Version 1.36.168
  300. - Support Go SDK.
  301. - Support C SDK.
  302. - Support PHP SDK.
  303. 2019-11-08 Version 1.36.167
  304. - Add DescribeJobErrorCode.
  305. 2019-11-05 Version 1.36.166
  306. - Add OperateBlackNo.
  307. 2019-11-02 Version 1.36.165
  308. - Generated 2017-05-25 for `Dyvmsapi`.
  309. 2019-10-31 Version 1.36.164
  310. - Initial construction.
  311. - Public beta version.
  312. - Supported AliyunController for Interface.
  313. - Supported ConsoleController for Interface.
  314. - Supported AccountController for Interface.
  315. 2019-10-31 Version 1.36.163
  316. - Initial construction.
  317. - Public beta version.
  318. - Supported AliyunController for Interface.
  319. - Supported ConsoleController for Interface.
  320. - Supported AccountController for Interface.
  321. 2019-10-29 Version 1.36.162
  322. - Add a new Alibaba Cloud Bill API named QueryAccountBill.
  323. 2019-10-25 Version 1.36.161
  324. - Initial construction.
  325. - Public beta version.
  326. - Supported AliyunController for Interface.
  327. - Supported ConsoleController for Interface.
  328. - Supported AccountController for Interface.
  329. 2019-10-25 Version 1.36.160
  330. - Supported query push records.
  331. 2019-10-25 Version 1.36.159
  332. - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
  333. 2019-10-24 Version 1.36.158
  334. - Generated 2017-12-14 for `BssOpenApi`.
  335. 2019-10-23 Version 1.36.157
  336. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  337. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  338. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  339. - Modify the data type of return field StorageLocation to String.
  340. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  341. 2019-10-23 Version 1.36.156
  342. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  343. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  344. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  345. - Modify the data type of return field StorageLocation to String.
  346. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  347. 2019-10-23 Version 1.36.155
  348. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  349. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  350. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  351. - Modify the data type of return field StorageLocation to String.
  352. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  353. 2019-10-22 Version 1.36.154
  354. - RunInstances support AutoSnapshotPolicyId.
  355. 2019-10-22 Version 1.36.153
  356. - Supported ExternalId IMM.
  357. 2019-10-21 Version 1.36.152
  358. - Release first version.
  359. 2019-10-18 Version 1.36.151
  360. - Generated 2019-09-10 for `DnsKnocker`.
  361. 2019-10-16 Version 1.36.150
  362. - Add ListTagResources OpenApi.
  363. - Add TagResources OpenApi.
  364. - Add UntagResources OpenApi.
  365. - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
  366. 2019-10-14 Version 1.36.149
  367. - Support continuous pushing.
  368. 2019-10-09 Version 1.36.148
  369. - Add VideoCancelScan Api.
  370. 2019-10-09 Version 1.36.147
  371. - Support API RecognizeImageColor.
  372. - Support API DetectImageElements.
  373. - Support API RecolorImage.
  374. - Support API SegmentImage.
  375. - Support API ChangeImageSize.
  376. - Support API ExtendImageStyle.
  377. - Support API RecognizeImageStyle.
  378. - Support API MakeSuperResolution.
  379. 2019-10-08 Version 1.36.146
  380. - Supported Grab Frame IMM.
  381. 2019-10-08 Version 1.36.145
  382. - Supported API MassPush for Push Message or Notice.
  383. 2019-10-08 Version 1.36.144
  384. - Generated 2016-01-20 for `Kms`.
  385. 2019-09-26 Version 1.36.143
  386. - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
  387. - Add QuerySubsId.
  388. 2019-09-23 Version 1.36.142
  389. - Add param, DescribePrice supprot ReservedInstance.
  390. 2019-09-19 Version 1.36.141
  391. - Supported Video Abstract for IMM.
  392. 2019-09-19 Version 1.36.140
  393. - Generated 2018-01-20 for `Iot`.
  394. 2019-09-19 Version 1.36.139
  395. - Supported Video Abstract for IMM.
  396. 2019-09-19 Version 1.36.138
  397. - Add bizSubCode and so on.
  398. 2019-09-18 Version 1.36.137
  399. - Supported Video Abstract for IMM.
  400. 2019-09-17 Version 1.36.136
  401. - Generated 2018-04-12 for `EHPC`.
  402. 2019-09-16 Version 1.36.135
  403. - Generated 2018-04-12 for `EHPC`.
  404. 2019-09-16 Version 1.36.134
  405. - Generated 2018-04-12 for `EHPC`.
  406. 2019-09-16 Version 1.36.133
  407. - Generated 2016-11-11 for `aegis`.
  408. 2019-09-15 Version 1.36.132
  409. - Generated 2018-04-12 for `EHPC`.
  410. 2019-09-14 Version 1.36.131
  411. - Generated 2019-08-08 for `ARMS`.
  412. 2019-09-12 Version 1.36.130
  413. - Fixed CMakeLists file.
  414. 2019-09-12 Version 1.36.129
  415. - Fixed CMakeLists file.
  416. 2019-09-12 Version 1.36.128
  417. - Fixed CMakeLists file.
  418. 2019-09-12 Version 1.36.127
  419. - Fixed CMakeLists file.
  420. 2019-09-12 Version 1.36.126
  421. - Fixed CMakeLists file.
  422. 2019-09-12 Version 1.36.125
  423. - Fixed CMakeLists file.
  424. 2019-09-12 Version 1.36.124
  425. - Fixed CMakeLists file.
  426. 2019-09-12 Version 1.36.123
  427. - Fixed CMakeLists file.
  428. 2019-09-12 Version 1.36.122
  429. - Fixed CMakeLists file.
  430. 2019-09-12 Version 1.36.121
  431. - Fixed CMakeLists file.
  432. 2019-09-12 Version 1.36.120
  433. - Fixed CMakeLists file.
  434. 2019-09-12 Version 1.36.119
  435. - Fixed CMakeLists file.
  436. 2019-09-12 Version 1.36.118
  437. - Fixed CMakeLists file.
  438. 2019-09-12 Version 1.36.117
  439. - Fixed CMakeLists file.
  440. 2019-09-09 Version 1.36.116
  441. - CreateInstance add toen.
  442. - UpdateInstance add toen.
  443. 2019-09-06 Version 1.36.115
  444. - Update endpoint data.
  445. 2019-09-06 Version 1.36.114
  446. - Generated 2016-04-28 for `Vpc`.
  447. 2019-09-05 Version 1.36.113
  448. - Supported for setEndpoint method.
  449. 2019-09-05 Version 1.36.112
  450. - Generated 2014-05-15 for `Slb`.
  451. 2019-09-05 Version 1.36.111
  452. - Generated 2017-07-05 for `CCC`.
  453. 2019-09-05 Version 1.36.110
  454. - Generated 2018-11-11 for `foas`.
  455. 2019-09-05 Version 1.36.109
  456. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  457. 2019-09-05 Version 1.36.108
  458. - Generated 2015-11-01 for `Market`.
  459. 2019-09-05 Version 1.36.107
  460. - Generated 2016-07-14 for `CloudAPI`.
  461. 2019-09-05 Version 1.36.106
  462. - Generated 2017-08-01 for `polardb`.
  463. 2019-09-05 Version 1.36.105
  464. - Generated 2017-12-14 for `BssOpenApi`.
  465. 2019-09-03 Version 1.36.104
  466. - Generated 2014-08-15 for `Rds`.
  467. 2019-08-30 Version 1.36.103
  468. - Revert to 2015-09-01.
  469. 2019-08-30 Version 1.36.102
  470. - Release Apis of Version 2019-09-10.
  471. 2019-08-30 Version 1.36.101
  472. - Supported Meida complex for IMM.
  473. 2019-08-30 Version 1.36.100
  474. - Add api for getTrace and searchTracelist.
  475. 2019-08-29 Version 1.36.99
  476. - Move StopExecution params to body.
  477. 2019-08-29 Version 1.36.98
  478. - For publish.
  479. 2019-08-28 Version 1.36.97
  480. - Add DBS API UpgradeBackupPlan.
  481. - Add DBS API DescribePreCheckProgressList.
  482. 2019-08-26 Version 1.36.96
  483. - QueryInstanceBillResponse change ownerId type from Long to String.
  484. - QueryInstanceBillResponse change usage type from float to String.
  485. - QueryInstanceBillResponse change listPrice type from float to String.
  486. - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
  487. 2019-08-22 Version 1.36.95
  488. - Support API RecognizeImageColor.
  489. - Support API DetectImageElements.
  490. - Support API RecolorImage.
  491. - Support API SegmentImage.
  492. - Support API ChangeImageSize.
  493. - Support API ExtendImageStyle.
  494. - Support API RecognizeImageStyle.
  495. - Support API MakeSuperResolutionImage.
  496. 2019-08-22 Version 1.36.94
  497. - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
  498. 2019-08-21 Version 1.36.93
  499. - Move StartExecution params to body.
  500. 2019-08-21 Version 1.36.92
  501. - Return backup job id when create backup.
  502. - Return backup set size when describe backups.
  503. 2019-08-20 Version 1.36.91
  504. - API TaobaoFilmGetSchedules retrun col add hallId.
  505. 2019-08-15 Version 1.36.90
  506. - FnF public version.
  507. - Add Report task api.
  508. 2019-08-15 Version 1.36.89
  509. - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
  510. 2019-08-15 Version 1.36.88
  511. - QueryInstanceBillResponse add ServicePeriod.
  512. 2019-08-14 Version 1.36.87
  513. - Generated 2018-01-20 for `Iot`.
  514. 2019-08-13 Version 1.36.86
  515. - Optimize return code.
  516. - Edit QueryDataset.
  517. 2019-08-13 Version 1.36.85
  518. - Supported for openapi new version.
  519. 2019-08-12 Version 1.36.84
  520. - Support Defect Face API.
  521. 2019-08-08 Version 1.36.83
  522. - Add CreateStorageSet api to support storageSet.
  523. - Add DeleteStorageSet api to support storageSet.
  524. - Add ModifyStorageSetAttribute api to support storageSet.
  525. - Add DescribeStorageSets api to support storageSet.
  526. - Add DescribeStorageSetDetails api to support storageSet.
  527. - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
  528. - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
  529. - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
  530. 2019-08-08 Version 1.36.82
  531. - Group, Plugin support tag authentication.
  532. 2019-08-06 Version 1.36.81
  533. - Supported GetMediaMeta for IMM.
  534. 2019-08-06 Version 1.36.80
  535. - Supported GetMediaMeta for IMM.
  536. 2019-08-06 Version 1.36.79
  537. - Supported GetMediaMeta for IMM.
  538. 2019-08-06 Version 1.36.78
  539. - Supported GetMediaMeta for IMM.
  540. 2019-08-06 Version 1.36.77
  541. - Supported GetMediaMeta for IMM.
  542. 2019-08-05 Version 1.36.76
  543. - GetOrderDetail add originalConfig param.
  544. 2019-08-05 Version 1.36.75
  545. - GetOrderDetail add originalConfig param.
  546. 2019-08-05 Version 1.36.74
  547. - Modify DBS API DescribeFullBackupList.
  548. 2019-08-02 Version 1.36.73
  549. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  550. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  551. 2019-07-31 Version 1.36.72
  552. - Endpoint auto route.
  553. 2019-07-26 Version 1.36.71
  554. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  555. 2019-07-26 Version 1.36.70
  556. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  557. 2019-07-25 Version 1.36.69
  558. - App-related actions support tag authentication.
  559. 2019-07-23 Version 1.36.68
  560. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  561. 2019-07-19 Version 1.36.67
  562. - QueryMonthlyBillResponse add roundDownDiscount.
  563. - QueryBillResponse add roundDownDiscount.
  564. - QueryInstanceBillResponse add item.
  565. 2019-07-18 Version 1.36.66
  566. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  567. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  568. 2019-07-14 Version 1.36.65
  569. - Modify DBS API DescribeBackupPlanList.
  570. 2019-07-14 Version 1.36.64
  571. - Modify DBS API DescribeBackupPlanList.
  572. 2019-07-12 Version 1.36.63
  573. - Public api AddLivePullStreamInfoConfig.
  574. 2019-07-11 Version 1.36.62
  575. - Modify CreateBackupPlan.
  576. - Modify ConfigureBackupPlan.
  577. - Modify DescribeFullBackupList.
  578. - Modify DescribeRestoreTaskList.
  579. - Add ModifyBackupSourceEndpoint.
  580. - Add ModifyBackupStrategy.
  581. - Add ModifyBackupPlanName.
  582. 2019-07-05 Version 1.36.61
  583. - Supported library managment for simillarity scene.
  584. - Remove the local file uploader code which can be downloaded from yundun content security document.
  585. 2019-07-05 Version 1.36.60
  586. - Add TaskCancelStatus for QueryTaskList api.
  587. 2019-07-04 Version 1.36.59
  588. - Supported API DescribeRecordStatisticsy for Query Volume.
  589. - Supported API DescribeDomainStatistics for Query Volume.
  590. 2019-07-03 Version 1.36.58
  591. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  592. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  593. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  594. - Supported API DescribeDomainDnsStatistics for Query Volume.
  595. 2019-07-02 Version 1.36.57
  596. - FnF public version.
  597. 2019-07-02 Version 1.36.56
  598. - Fix Double to double.
  599. 2019-07-01 Version 1.36.55
  600. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  601. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  602. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  603. - Add RetentionDays to snapshot creating.
  604. 2019-06-27 Version 1.36.54
  605. - Added setting of crop_mode parameter.
  606. 2019-06-24 Version 1.36.53
  607. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  608. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  609. - Add a new field named AppId to some apis supporting the VoD App feature, such as AddWorkFlow, GetWorkFlow, ListWorkFlow, AddVodTemplate, GetVodTemplate, ListVodTemplate, AddTranscodeTemplateGroup, GetTranscodeTemplateGroup, ListTranscodeTemplateGroup, AddWatermark, GetWatermark, ListWatermark, UploadMediaByURL.
  610. - Add a new field named UserData to SubmitTranscodeJobs api request to support user-defined extension fields, which can be used for transparent return when callbacks.
  611. 2019-06-24 Version 1.36.52
  612. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  613. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  614. - Add a new field named AppId to some apis supporting the VoD App feature, such as AddWorkFlow, GetWorkFlow, ListWorkFlow, AddVodTemplate, GetVodTemplate, ListVodTemplate, AddTranscodeTemplateGroup, GetTranscodeTemplateGroup, ListTranscodeTemplateGroup, AddWatermark, GetWatermark, ListWatermark, UploadMediaByURL.
  615. - Add a new field named UserData to SubmitTranscodeJobs api request to support user-defined extension fields, which can be used for transparent return when callbacks.
  616. 2019-06-18 Version 1.36.51
  617. 1. Supported the related recommend.
  618. 2. Supported exposure time controll and exposure filter by scene.
  619. 2019-06-17 Version 1.36.50
  620. companyreg release
  621. 2019-06-13 Version 1.36.49
  622. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  623. 2019-06-13 Version 1.36.48
  624. - Generated 2015-01-01 for `R-kvstore`
  625. 2019-06-13 Version 1.36.47
  626. Add Network Assistant openapi sdk
  627. 2019-06-12 Version 1.36.46
  628. 1, Add RenewBackupPlan DBS interface.
  629. 2019-06-12 Version 1.36.45
  630. 1.Fix bug
  631. 2019-06-12 Version 1.36.44
  632. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  633. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  634. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  635. 2019-06-05 Version: 1.36.43
  636. 1, Update DescribeDataLimitDetail interface, add password for response
  637. 2019-06-04 Version: 1.36.42
  638. 1, Add new API: UpdateLivePullStreamInfoConfig
  639. 2019-06-03 Version: 1.36.41
  640. 1, Add openapi of ACL.
  641. 2019-05-31 Version: 1.36.40
  642. 1, add api 'search traces count'
  643. 2, add page index for api 'searchTraces'
  644. 2019-05-31 Version: 1.36.39
  645. 1, Add authority in GetMaterials API.
  646. 2019-05-29 Version 1.36.38
  647. update Smartag
  648. 2019-05-29 Version 1.36.37
  649. update product
  650. 2019-05-29 Version: 1.36.36
  651. 1, Fix ServiceCode typo in request
  652. 2019-05-28 Version: 1.36.35
  653. 1, CreateDBInstance now support autoRenew
  654. 2019-05-27 Version: 1.36.34
  655. 1, Support video transcode.
  656. 2019-05-27 Version: 1.36.33
  657. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  658. 2019-05-22 Version: 1.36.32
  659. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  660. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  661. 2019-05-20 Version: 1.36.31
  662. 1, Add both api, ListNotaryInfos
  663. 2019-05-20 Version: 1.36.30
  664. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  665. 2019-05-16 Version: 1.36.29
  666. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  667. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  668. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  669. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  670. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  671. 6, Add the field named UserData to SubmitSnapshotJob api request.
  672. 2019-05-15 Version: 1.36.28
  673. 1, Add InstanceId parameter to api CreateDisk
  674. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  675. 3, Add SecurityGroupIds parameter to Instance creation apis.
  676. 2019-05-14 Version: 1.36.27
  677. 1, support body detect
  678. 2019-05-14 Version: 1.36.26
  679. 1, Support body detect.
  680. 2019-05-14 Version: 1.36.25
  681. 1, Support body detect.
  682. 2019-05-14 Version: 1.36.24
  683. 1, Support body detect.
  684. 2019-05-13 Version: 1.36.23
  685. 1, Support for creating instances and joining multiple security groups at the same time.
  686. 2019-04-26 Version: 1.36.22
  687. 1, add new openapi.
  688. 2019-04-23 Version: 1.36.21
  689. 1, Support mounting multiple volumes using different protocol
  690. 2, Support scaling out cross AZ
  691. 2019-04-22 Version: 1.36.20
  692. 1, This is an example of release-log.
  693. 2, Please strictly follow this format to edit in English.
  694. 3, Format:Number + , + Space + Description
  695. 2019-04-18 Version: 1.36.19
  696. 1, Add CreateAccount
  697. 2019-04-18 Version: 1.36.18
  698. 1, CreateCacheAnalysisTask prop modify
  699. 2019-04-18 Version: 1.36.17
  700. 1, add ReservedInstance API.
  701. 2019-04-17 Version: 1.36.16
  702. 1, Add DescribeRestoreTaskList DBS interface.
  703. 2, Add DescribeNodeCidrList DBS interface.
  704. 2019-04-16 Version: 1.36.15
  705. 1, Fixed DescribeAccounts response type error.
  706. 2019-04-16 Version: 1.36.14
  707. 1, Add api about pushing security check commands
  708. 2019-04-16 Version: 1.36.13
  709. 1, Fixed describeAccounts response type error
  710. 2019-04-16 Version: 1.36.12
  711. 1, Mark CreateDiagnosticReport as public api.
  712. 2, ModifySecurityIps support modifyMode parameter.
  713. 2019-04-16 Version: 1.36.11
  714. 1, Add group api.
  715. 2019-04-16 Version: 1.36.10
  716. 1, Add group api.
  717. 2019-04-16 Version: 1.36.9
  718. 1, Add group api.
  719. 2019-04-16 Version: 1.36.8
  720. 1, Add group api.
  721. 2019-04-15 Version: 1.36.7
  722. 1, Add CreateRestoreTask DBS interface.
  723. 2, Add StartRestoreTask DBS interface.
  724. 2019-04-15 Version: 1.36.6
  725. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  726. 2019-04-15 Version: 1.36.5
  727. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  728. 2019-04-15 Version: 1.36.4
  729. 1, Add Group Api.
  730. 2019-04-11 Version: 1.36.3
  731. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  732. 2019-04-11 Version: 1.36.2
  733. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  734. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  735. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  736. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  737. 5, Add a new field named AppId to some apis supporting the VoD App feature, such as CreateUploadVideo, SearchMedia, GetVideoInfo, GetVideoInfos; Add new fields named NonExistVideoIds and ForbiddenVideoIds to DeleteVideo api response; Add a new field named ForbiddenVideoIds to UpdateVideoInfos api response.
  738. 6, The Editing supports multi-region and multi-materials. Add new fields named StorageLocation and RegionId in Project struct to GetEditingProject api response; Add new fields named StorageLocation, RegionId and Duration in ProjectList struct to SearchEditingProject api response; Add a new field named MaterialType to GetEditingProjectMaterials api request.
  739. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  740. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  741. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  742. 10, Add a new field named AdditionType to GetVideoInfo and GetVideoInfos api request to fetch the custom media info and the corresponding field is CustomMediaInfo.
  743. 2019-04-10 Version: 1.36.1
  744. 1, Modify DescribeBackupGatewayList DBS interface.
  745. 2019-04-10 Version: 1.36.0
  746. 1, New APIs for visual service (VNC).
  747. 2, New APIs for software management.
  748. 3, New APIs for CPFS filesystem.
  749. 2019-04-09 Version: 1.35.9
  750. 1, support service account management networkInterface function.
  751. 2019-04-09 Version: 1.35.8
  752. 1, Add Apis for offline VerifySDK.
  753. 2019-04-08 Version: 1.35.7
  754. 1, Modify DescribeBackupPlanList DBS interface.
  755. 2, Modify DescribeFullBackupList DBS interface.
  756. 3, Modify DescribeIncrementBackupList DBS interface.
  757. 4, Modify DescribeBackupGatewayList DBS interface.
  758. 2019-04-08 Version: 1.35.6
  759. 1, Add StopBackupPlan DBS interface.
  760. 2, Add DescribeBackupPlanList DBS interface.
  761. 3, Add DescribeFullBackupList DBS interface.
  762. 4, Add DescribeIncrementBackupList DBS interface.
  763. 5, Add DescribeBackupGatewayList DBS interface.
  764. 2019-04-04 Version: 1.35.5
  765. 1, ScalingConf systemDisk add DiskName and Description parameters.
  766. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  767. 2019-04-03 Version: 1.35.4
  768. 1, Add interfaces related to vulnerability whitelist
  769. 2, Add interfaces related to vulnerability auto-del configuration
  770. 3, Add interfaces related to vulnerability fix advise
  771. 4, Add interfaces searching and operating vulnerability
  772. 2019-03-29 Version: 1.35.3
  773. 1, Add DLQ message openAPI.
  774. 2, Add Query the subscription relational openAPI.
  775. 3, Remove white list restrictions.
  776. 2019-03-28 Version: 1.35.2
  777. 1, release bssopenapi
  778. 2019-03-28 Version: 1.35.1
  779. 1, Add multiple language support in DescribeZones
  780. 2, Add gray parameter in CreateDisk
  781. 2019-03-28 Version: 1.35.0
  782. 1, Add logo detect.
  783. 2019-03-27 Version: 1.34.66
  784. 1, Add Project interface.
  785. 2, Add Tag interface.
  786. 3, Add TrainData interface.
  787. 4, Add Train interface.
  788. 5, Add Iteration interface.
  789. 6, Add Predict interface.
  790. 7, Add PredictData interface.
  791. 2019-03-27 Version: 1.34.65
  792. 1, Add Project interface.
  793. 2, Add Tag interface.
  794. 3, Add TrainData interface.
  795. 4, Add Train interface.
  796. 5, Add Iteration interface.
  797. 6, Add Predict interface.
  798. 7, Add PredictData interface.
  799. 2019-03-27 Version: 1.34.64
  800. 1, Add DLQ message openAPI.
  801. 2, Add Query the subscription relational openAPI.
  802. 3, Remove white list restrictions.
  803. 2019-03-27 Version: 1.34.63
  804. 1, Add DLQ message openAPI.
  805. 2, Add Query the subscription relational openAPI.
  806. 3, Remove white list restrictions.
  807. 2019-03-27 Version: 1.34.62
  808. 1, release dysmsapi
  809. 2019-03-25 Version: 1.34.61
  810. 1, cms fix duplicated struct definition
  811. 2019-03-25 Version: 1.34.60
  812. 1, mts fix duplication struct definition
  813. 2019-03-25 Version: 1.34.59
  814. 1, jarvis-pulic fix product code with dash
  815. 2019-03-25 Version: 1.34.58
  816. 1, sas-api, fix product code with dash
  817. 2019-03-21 Version: 1.34.57
  818. 1, Update Dependency
  819. 2019-03-21 Version: 1.34.56
  820. 1, Update Dependency
  821. 2019-03-20 Version: 1.34.55
  822. 1, Update the Dependency
  823. 2019-03-20 Version: 1.34.54
  824. 1, Update the Dependency
  825. 2019-03-20 Version: 1.34.53
  826. 1, cloudwf: update bool type parameter
  827. 2019-03-20 Version: 1.34.52
  828. 1, Update Dependency
  829. 2019-03-19 Version: 1.34.51
  830. 1, Support ' fc ' Source DomainName
  831. 2019-03-19 Version: 1.34.50
  832. 1, move fields: tag, associate_person, cid
  833. 2019-03-19 Version: 1.34.49
  834. 1, format fields: tags, associatePerson
  835. 2019-03-19 Version: 1.34.48
  836. 1, add query user oms data api
  837. 2019-03-19 Version: 1.34.47
  838. 1, Update Dependency
  839. 2019-03-19 Version: 1.34.46
  840. 1, Update Dependency
  841. 2019-03-19 Version: 1.34.45
  842. 1, This is an example of release-log.
  843. 2, Please strictly follow this format to edit in English.
  844. 3, Format:Number + , + Space + Description
  845. 2019-03-18 Version: 1.34.44
  846. 1, rds: deliver string true/false to server for bool type parameter, not previous 1/0
  847. 2019-03-18 Version: 1.34.43
  848. 1, deliver string true/false to server for bool type parameter, not previous 1/0
  849. 2019-03-18 Version: 1.34.42
  850. 1, Signature Document SDK.
  851. 2, First version publish.
  852. 3, Beta Version SDK
  853. 2019-03-18 Version: 1.34.41
  854. 1, Update Dependency
  855. 2019-03-18 Version: 1.34.40
  856. 1, move AssociatePerson\Tag field
  857. 2, Optimize RealName field
  858. 2019-03-18 Version: 1.34.39
  859. 1, Update Dependency
  860. 2019-03-18 Version: 1.34.38
  861. 1, Update Dependency
  862. 2019-03-18 Version: 1.34.37
  863. 1, Update Dependency
  864. 2019-03-18 Version: 1.34.36
  865. 1, Update Dependency
  866. 2019-03-15 Version: 1.34.35
  867. 1, Update Dependency
  868. 2019-03-15 Version: 1.34.34
  869. 1, Update Dependency
  870. 2019-03-15 Version: 1.34.33
  871. 1, Update Dependency
  872. 2019-03-15 Version: 1.34.32
  873. 1, Update Dependency
  874. 2019-03-15 Version: 1.34.31
  875. 1, Update Dependency
  876. 2019-03-15 Version: 1.34.30
  877. 1, Update Dependency
  878. 2019-03-15 Version: 1.34.29
  879. 1, Update Dependency
  880. 2019-03-15 Version: 1.34.28
  881. 1, Update Dependency
  882. 2019-03-15 Version: 1.34.27
  883. 1, Update Dependency
  884. 2019-03-15 Version: 1.34.26
  885. 1, Update Dependency
  886. 2019-03-15 Version: 1.34.25
  887. 1, Update Dependency
  888. 2019-03-14 Version: 1.34.24
  889. 1, Update Dependency
  890. 2019-03-14 Version: 1.34.23
  891. 1, Update Dependency
  892. 2019-03-14 Version: 1.34.22
  893. 1, Update Dependency
  894. 2019-03-14 Version: 1.34.21
  895. 1, Update Dependency
  896. 2019-03-14 Version: 1.34.20
  897. 1, Update Dependency
  898. 2019-03-14 Version: 1.34.19
  899. 1, Update Dependency
  900. 2019-03-14 Version: 1.34.18
  901. 1, Update Dependency
  902. 2019-03-14 Version: 1.34.17
  903. 1, Update Dependency
  904. 2019-03-14 Version: 1.34.16
  905. 1, Update Dependency
  906. 2019-03-13 Version: 1.34.15
  907. 1, Update Dependency
  908. 2019-03-13 Version: 1.34.14
  909. 1, Update Dependency
  910. 2019-03-13 Version: 1.34.13
  911. 1, Update Dependency
  912. 2019-03-13 Version: 1.34.12
  913. 1, Distinguish between system and service parameters
  914. 2019-03-13 Version: 1.34.11
  915. 1, add DescribeDemands interface
  916. 2019-03-13 Version: 1.34.10
  917. 1, Distinguish between system and service parameters
  918. 2019-03-12 Version: 1.34.9
  919. 1, add agency infomation
  920. 2, update sdk core resources
  921. 2018-12-20 Version: 1.34.8
  922. 1, Sync CDN API.
  923. 2018-12-11 Version: 1.34.7
  924. 1, Sync CDN API.
  925. 2018-12-06 Version: 1.34.6
  926. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  927. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  928. 2018-12-03 Version: 1.34.5
  929. 1, Sync CDN API.
  930. 2018-12-03 Version: 1.34.4
  931. 1, Sync CDN API.
  932. 2018-12-03 Version: 1.34.3
  933. 1, Update 2014-11-11 API.
  934. 2018-12-03 Version: 1.34.2
  935. 1, Add a parameter to RemoveInstances.
  936. 2018-11-30 Version: 1.34.1
  937. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  938. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  939. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  940. 2018-11-28 Version: 1.34.0
  941. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  942. 2018-11-28 Version: 1.33.6
  943. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  944. 2018-11-27 Version: 1.33.5
  945. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  946. 2018-11-22 Version: 1.33.4
  947. 1, Increase the scene field
  948. 2018-11-22 Version: 1.33.3
  949. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  950. 2018-11-21 Version: 1.33.2
  951. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  952. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  953. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  954. 2018-11-16 Version: 1.33.1
  955. 1, update version
  956. 2018-11-15 Version: 1.33.0
  957. 1, ECS support ipv6Address
  958. 2018-11-14 Version: 1.32.0
  959. 1, Better support for hybrid cluster.
  960. 2018-11-13 Version: 1.31.0
  961. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  962. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  963. 3, Add DynamicCheck properties for results of CheckDomain interface.
  964. 2018-11-10 Version: 1.30.5
  965. 1, Update SetWaitingRoomConfig.
  966. 2018-11-08 Version: 1.30.4
  967. 1, Fix the http response receive bug
  968. 2018-11-08 Version: 1.30.3
  969. 1, Update Version.
  970. 2018-11-07 Version: 1.30.2
  971. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  972. 2, Add API GetTaskStatus,StartTask,StopTask.
  973. 3, Add API GetTaskParam,UpdateTaskParam.
  974. 2018-11-02 Version: 1.30.1
  975. 1, deviceName and productKey can be used instead of iotId.
  976. 2, New productKey fields for queryauthentication output parameter.
  977. 3, New deviceName fields for queryauthentication output parameter.
  978. 2018-11-02 Version: 1.30.0
  979. 1, first version
  980. 2018-10-31 Version: 1.29.5
  981. 1, Update SetWaitingRoomConfig.
  982. 2018-10-31 Version: 1.29.4
  983. 1, Add SetWaitingRoomConfig.
  984. 2018-10-31 Version: 1.29.3
  985. 1, Add SetWaitingRoomConfig.
  986. 2018-10-30 Version: 1.29.2
  987. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  988. 2018-10-26 Version: 1.29.1
  989. 1, Return AuditConclusions in SubmitMaterials API.
  990. 2018-10-25 Version: 1.29.0
  991. 1, Add apis for trademark domains.
  992. 2, Add QueryDomainAdminDivision api.
  993. 2018-10-16 Version: 1.28.3
  994. 1, This version add MetricQuery interface to support retcode and apm metric query.
  995. 2018-10-16 Version: 1.28.2
  996. 1, This version add MetricQuery interface to support retcode and apm metric query.
  997. 2018-10-16 Version: 1.28.1
  998. 1, This version add MetricQuery interface to support retcode and apm metric query.
  999. 2018-10-16 Version: 1.28.0
  1000. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  1001. 2, Add instance topology api DescribeInstanceTopology
  1002. 3, Add mount point in DescribeDisksFullStatus
  1003. 2018-10-16 Version: 1.27.11
  1004. 1, remove set group tags API.
  1005. 2018-10-13 Version: 1.27.10
  1006. 1, Add device group related APIs.
  1007. 2018-10-13 Version: 1.27.9
  1008. 1, Add device group related APIs.
  1009. 2018-10-13 Version: 1.27.8
  1010. 1, Add device group related APIs.
  1011. 2018-10-11 Version: 1.27.7
  1012. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  1013. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  1014. 3, Add a new api called UpdateImageInfos to update image information.
  1015. 2018-10-09 Version: 1.27.6
  1016. 1, v1.0.0-->v1.0.1
  1017. 2, provider new region:beijing/shenzhen/zhangjiakou
  1018. 3, provider service for VPC user;
  1019. 2018-09-30 Version: 1.27.5
  1020. 1, This is an example of release-log.
  1021. 2, Please strictly follow this format to edit in English.
  1022. 3, Format:Number + , + Space + Description
  1023. 2018-09-29 Version: 1.27.4
  1024. 1, Sync cdn api.
  1025. 2018-09-29 Version: 1.27.3
  1026. 1, This is an example of release-log.
  1027. 2, Please strictly follow this format to edit in English.
  1028. 3, Format:Number + , + Space + Description
  1029. 2018-09-29 Version: 1.27.2
  1030. 1, This is an example of release-log.
  1031. 2, Please strictly follow this format to edit in English.
  1032. 3, Format:Number + , + Space + Description
  1033. 2018-09-28 Version: 1.27.1
  1034. 1, Add one api, QueryAppDeviceList.
  1035. 2018-09-27 Version: 1.27.0
  1036. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  1037. 2018-09-27 Version: 1.26.4
  1038. 1, modify getFaces Api
  1039. 2018-09-27 Version: 1.26.3
  1040. 1, modify getFaces Api
  1041. 2018-09-25 Version: 1.26.2
  1042. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  1043. 2018-09-17 Version: 1.26.1
  1044. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  1045. 2018-09-14 Version: 1.26.0
  1046. 1, Add DedicatedHost Feature
  1047. 2018-09-13 Version: 1.25.3
  1048. 1, Add CreateChannelToken.
  1049. 2018-09-06 Version: 1.25.2
  1050. 1, AutoScaling support launchTemplate.
  1051. 2018-09-06 Version: 1.25.1
  1052. 1, Add API deleteProduct.
  1053. 2, Move all API to version 20180120.
  1054. 2018-09-05 Version: 1.25.0
  1055. 1, Add new APIs with control policy for querying price
  1056. 2018-09-03 Version: 1.24.2
  1057. 1, voice identify interface
  1058. 2, client upload credentials interface
  1059. 2018-09-03 Version: 1.24.1
  1060. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  1061. 2018-08-28 Version: 1.24.0
  1062. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  1063. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  1064. 2018-08-28 Version: 1.23.4
  1065. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  1066. 2018-08-27 Version: 1.23.3
  1067. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  1068. 2018-08-27 Version: 1.23.2
  1069. 1, Add api GetGatewayBySubDevice.
  1070. 2, Modified the time related response parameters.
  1071. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1072. 2018-08-23 Version: 1.23.1
  1073. 1, RunInstance add privateIpAddress.
  1074. 2018-08-22 Version: 1.23.0
  1075. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  1076. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  1077. 2018-08-21 Version: 1.22.9
  1078. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  1079. 2018-08-21 Version: 1.22.8
  1080. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1081. 2018-08-17 Version: 1.22.7
  1082. 1, Add a new api called DeleteImage to clear the image resource.
  1083. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  1084. 3, Add the field called OutputType to GetMezzanineInfo api response.
  1085. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  1086. 2018-08-17 Version: 1.22.6
  1087. 1, New apkpubkey fields for queryauthentication output parameter.
  1088. 2, New packagename fields for queryauthentication output parameter.
  1089. 3, New clientId fields for queryauthentication output parameter.
  1090. 2018-08-16 Version: 1.22.5
  1091. 1, ModifyScalingConfiguration add imageName.
  1092. 2, CreateScalingConfiguration add imageName.
  1093. 2018-08-15 Version: 1.22.4
  1094. 1, Fix bug in GetMaterials API.
  1095. 2, GetVerifyToken added a new param VerifyConfigs
  1096. 2018-08-15 Version: 1.22.3
  1097. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  1098. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  1099. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  1100. 2018-08-15 Version: 1.22.2
  1101. 1, Update ecs tag to 20 maximum
  1102. 2018-08-14 Version: 1.22.1
  1103. 1, Change parameter name of Dialogue
  1104. 2018-08-13 Version: 1.22.0
  1105. 1, New userinfo fields for registerface input parameter.
  1106. 2, New userinfo fields for updateface input parameter.
  1107. 3, New userinfo fields for queryface output parameter.
  1108. 2018-08-13 Version: 1.21.6
  1109. 1, Add cross domain support.
  1110. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  1111. 2018-08-08 Version: 1.21.5
  1112. 1, The official release 4.0.0
  1113. 2018-08-08 Version: 1.21.4
  1114. 1, Update FC apis.
  1115. 2018-08-08 Version: 1.21.3
  1116. 1, First release.
  1117. 2018-08-07 Version: 1.21.2
  1118. 1, Add api GetGatewayBySubDevice.
  1119. 2, Modified the time related response parameters.
  1120. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1121. 2018-08-05 Version: 1.21.1
  1122. 1, Add Interface SubmitSubtitleJob
  1123. 2, Support convert ttml、stl subtitle to vtt
  1124. 2018-08-03 Version: 1.21.0
  1125. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  1126. 2018-08-01 Version: 1.20.5
  1127. 1, Add new API GetConversationDetailByContactId
  1128. 2018-08-01 Version: 1.20.4
  1129. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1130. 2018-07-31 Version: 1.20.3
  1131. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  1132. 2018-07-26 Version: 1.20.2
  1133. 1, Add BatchGetJobMetricInfo API.
  1134. 2, Add BatchGetPluginConfigInfo API.
  1135. 3, Add GetJobTopology API.
  1136. 2018-07-25 Version: 1.20.1
  1137. 1, Add RemoveTerminals API.
  1138. 2018-07-13 Version: 1.20.0
  1139. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  1140. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  1141. 3, New APIs for Container applications: AddContainerApp, etc.
  1142. 2018-07-11 Version: 1.19.3
  1143. 1, new function: Attach and Detach Rds instance of scalingGroup.
  1144. 2018-07-11 Version: 1.19.2
  1145. 1, Add DetectFaceAttributesService.
  1146. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  1147. 2018-07-05 Version: 1.19.1
  1148. 1, new function, attach/detach load balancer of scalingGroup
  1149. 2018-07-05 Version: 1.19.0
  1150. 1, A new optional parameter 'Perspectives' is introduced to the 'Chat' API. By filling this parameter when calling 'Chat', you'll get the knowledge base content within the specified perspectives.
  1151. 2018-06-28 Version: 1.18.1
  1152. 1, ScalingConfiguration support hostName and passwordInherit
  1153. 2, ScalingConfiguration support modify
  1154. 2018-06-27 Version: 1.18.0
  1155. 1, Modify QueryDomainRealNameVerificationInfo Api, add a return value IdentityCredentialUrl, which is domain real name verification image, you can download it via a HTTP get request,It has validity for 30 seconds.
  1156. 2, Modify QueryRegistrantProfileRealNameVerificationInfo Api, add a return value IdentityCredentialUrl, which is domain real name verification image, you can download it via a HTTP get request,It has validity for 30 seconds
  1157. 2018-06-27 Version: 1.17.10
  1158. 1, DescribeNetworkInterfaces support query with vpcId
  1159. 2018-06-22 Version: 1.17.9
  1160. 1, rtc openapi
  1161. 2018-06-21 Version: 1.17.8
  1162. 1, This is add InstanceList.
  1163. 2018-06-20 Version: 1.17.7
  1164. 1, Add InstanceList in product security information query.
  1165. 2018-06-20 Version: 1.17.6
  1166. 1, Add InstanceList in product security information query.
  1167. 2018-06-14 Version: 1.17.5
  1168. 1, Add passwordInherit.
  1169. 2018-06-13 Version: 1.17.4
  1170. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  1171. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  1172. 3, Add return value fillMode DescribeCasterLayouts.
  1173. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  1174. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  1175. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  1176. 2018-06-13 Version: 1.17.3
  1177. 1, Add lifecycleHook.
  1178. 2018-06-08 Version: 1.17.2
  1179. 1, Add scdn interface,support scdn.
  1180. 2018-06-06 Version: 1.17.1
  1181. 1, Change the type of srcUid to int.
  1182. 2018-06-06 Version: 1.17.0
  1183. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  1184. 2018-05-29 Version: 1.16.0
  1185. 1, Add new interface DescribePhoneInfo to SDK.
  1186. 2018-05-28 Version: 1.15.0
  1187. 1, Add face 1-N,1-1 scan interface.
  1188. 2018-05-28 Version: 1.14.0
  1189. 1, ValidateSecurityGroup API
  1190. 2018-05-28 Version: 1.13.0
  1191. 1, This is an example of release-log.
  1192. 2, Please strictly follow this format to edit in English.
  1193. 3, Format:Number + , + Space + Description
  1194. 2018-05-23 Version: 1.12.0
  1195. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  1196. 2018-05-23 Version: 1.11.0
  1197. 1, Update API version to 2018-04-12.
  1198. 2, New APIs in this new version: StartCluster, StopCluster, RecoverCluster, StartNodes, StopNodes, ListCustomImages. Support stopping a post-paid cluster or partial nodes of a cluster to save cost.
  1199. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  1200. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  1201. 2018-05-23 Version: 1.10.3
  1202. 1, This is an example of release-log.
  1203. 2, Please strictly follow this format to edit in English.
  1204. 3, Format:Number + , + Space + Description
  1205. 2018-05-22 Version: 1.10.2
  1206. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  1207. 2, modify DescribeDBInstanceAttribute.
  1208. 2018-05-17 Version: 1.10.1
  1209. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  1210. 2018-05-17 Version: 1.10.0
  1211. 1, the first version of private dns SDK
  1212. 2018-05-11 Version: 1.9.1
  1213. 1, Add Function Compute interface,support Function Compute.
  1214. 2018-05-09 Version: 1.9.0
  1215. 1, Add apis for domain broker.
  1216. 2018-05-08 Version: 1.8.2
  1217. 1, Add instance params.
  1218. 2018-05-08 Version: 1.8.1
  1219. 1, Remove DescribeAccountAttributes.
  1220. 2018-05-02 Version: 1.8.0
  1221. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  1222. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  1223. 2018-04-28 Version: 1.7.3
  1224. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  1225. 2, Add dcdn config interface,Support set、delete、query domain config.
  1226. 2018-04-28 Version: 1.7.2
  1227. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  1228. 2, Add dcdn config interface,Support set、delete、query domain config.
  1229. 2018-04-27 Version: 1.7.1
  1230. 1, release hsm open api
  1231. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  1232. 2018-04-26 Version: 1.7.0
  1233. 1, Add apis for domain group.
  1234. 3, Add fields for QueryDomainList.
  1235. 2018-04-24 Version: 1.6.5
  1236. 1, add interface FetchPhotos
  1237. 2, add xflush log param unixTimestamp
  1238. 2018-04-23 Version: 1.6.4
  1239. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  1240. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  1241. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  1242. 2018-04-23 Version: 1.6.3
  1243. 1, Add notificationConfiguration.
  1244. 2, Add standby status.
  1245. 2018-04-17 Version: 1.6.2
  1246. 1, EditPhotos add input param TakenAt
  1247. 2, add FetchMomentPhotos
  1248. 3, ListAlbums add return param Remark
  1249. 2018-04-11 Version: 1.6.1
  1250. 1, GetLibrary/FetchLibraries add return ctime
  1251. 2, Editphotos add input param takenAt
  1252. 2018-04-10 Version: 1.6.0
  1253. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  1254. 2018-04-10 Version: 1.5.1
  1255. 1, publish Project API.
  1256. 2, publish Service API.
  1257. 3, publish Service order API.
  1258. 4, publish Credential API.
  1259. 5, publish CAS API.
  1260. 2018-04-08 Version: 1.5.0
  1261. 1, Add voice asynchronous scan interface.
  1262. 2018-04-03 Version: 1.4.0
  1263. 1, Add APIs for domain transfer in and transfer out.
  1264. 2, Add APIs for poll and acknowledge domain task.
  1265. 3, Add API for query domain group list.
  1266. 2018-03-30 Version: 1.3.8
  1267. 1, API QueryCustomerSaleInfo arguments update.
  1268. 2018-03-29 Version: 1.3.7
  1269. 1, edit FetchLibraries return param format
  1270. 2018-03-27 Version: 1.3.6
  1271. 1, Rename QueryCustomerSaleInfo to RegionName.
  1272. 2018-03-27 Version: 1.3.5
  1273. 1, publish Project API.
  1274. 2, publish Service API.
  1275. 3, publish Service order API.
  1276. 4, publish Credential API.
  1277. 5, publish CAS API.
  1278. 2018-03-27 Version: 1.3.4
  1279. 1, add interface FetchLibraries
  1280. 2018-03-23 Version: 1.3.3
  1281. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  1282. 2018-03-23 Version: 1.3.2
  1283. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  1284. 2018-03-23 Version: 1.3.1
  1285. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  1286. 2018-03-23 Version: 1.3.0
  1287. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  1288. 2, Remove 'QueryPushDetail' Api.
  1289. 2018-03-20 Version: 1.2.16
  1290. 1, add FetchAlbumTagPhotos
  1291. 2, CreatePhoto add optional param TakenAt
  1292. 2018-03-16 Version: 1.2.15
  1293. 1, Synchronize to the latest api list
  1294. 2018-03-15 Version: 1.2.14
  1295. 1, Synchronize to the latest api list
  1296. 2018-03-15 Version: 1.2.13
  1297. 1, Synchronize to the latest api list
  1298. 2018-03-15 Version: 1.2.12
  1299. 1, Synchronize to the latest api list
  1300. 2018-03-15 Version: 1.2.11
  1301. 1, Synchronize to the latest api list
  1302. 2018-03-15 Version: 1.2.10
  1303. 1, Add QueryCustomerSaleInfo API.
  1304. 2018-03-14 Version: 1.2.9
  1305. 1, Support predefine endpoints parse
  1306. 2018-03-13 Version: 1.2.8
  1307. 1, API GetQuotaHistoryInfo fix field error.
  1308. 2018-03-07 Version: 1.2.7
  1309. 1, add GetAlbumsByNames
  1310. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1311. 3, add return IdStr for string
  1312. 2018-03-06 Version: 1.2.6
  1313. 1, add GetAlbumsByNames
  1314. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1315. 3, add return IdStr for string
  1316. 2018-03-06 Version: 1.2.5
  1317. 1, add GetAlbumsByNames
  1318. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1319. 3, add return IdStr for string
  1320. 2018-02-28 Version: 1.2.4
  1321. 1, Add query resource inventory API.
  1322. 2, Add query topology API.
  1323. 2018-02-27 Version: 1.2.3
  1324. 1, Add query topology API.
  1325. 2018-02-27 Version: 1.2.2
  1326. 1, Add new API: ListRecordingsByContactId.
  1327. 2018-02-27 Version: 1.2.1
  1328. 1, Add Action API.
  1329. 2018-02-27 Version: 1.2.0
  1330. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  1331. 2018-02-09 Version: 1.1.0
  1332. 1, Aliyun E-HPC service SDK, initial version.
  1333. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  1334. 2018-02-07 Version: 1.0.12
  1335. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  1336. 2018-02-06 Version: 1.0.11
  1337. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  1338. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  1339. 2018-02-02 Version: 1.0.10
  1340. 1, this version is new of captcha management and nvc analyze
  1341. 2018-01-26 Version: 1.0.9
  1342. 1, Update InstanceProfileCredentialsProvider
  1343. 2, Update common api
  1344. 2018-01-24 Version: 1.0.8
  1345. 1, Fixed a problem that the ActiveAlert interface name is not standard
  1346. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  1347. 2018-01-24 Version: 1.0.7
  1348. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  1349. 2018-01-23 Version: 1.0.6
  1350. 1, Tesla Dam API release.
  1351. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  1352. 2018-01-12 Version: 1.0.5
  1353. 1, First commit ess module
  1354. 2018-01-11 Version: 1.0.4
  1355. 1, replace photo tag 2000 upgrade to 5000
  1356. 2, add TrashQuota
  1357. 2018-01-10 Version: 1.0.3
  1358. 1, First release vpc for c++
  1359. 2018-01-10 Version: 1.0.2
  1360. 1, First release slb for C++
  1361. 2018-01-10 Version: 1.0.1
  1362. 1, First release ecs for C++
  1363. 2017-12-27 Version: 1.0.0
  1364. 1, Fix build failed on linux