CHANGELOG 66 KB

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