ChangeLog.txt 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099
  1. 2020-02-12 Version: v1.60.358
  2. - Generated 2019-03-06 for `Dbs`.
  3. - Add Full showStorageTyp.
  4. 2020-02-12 Version: v1.60.357
  5. - Generated 2018-01-11 for `rtc`.
  6. - Support mau.
  7. 2020-02-11 Version: v1.60.356
  8. - Generated 2018-01-20 for `Iot`.
  9. - Add Thing Model APIs, including CreateThingModel, UpdateThingModel, etc.
  10. - Add OTA API ListOTATaskByJob.
  11. - Update OTA API ListOTAJobByFirmware.
  12. - Update Thing Core Model API InvokeThingsService.
  13. 2020-02-11 Version: v1.60.355
  14. - Generated 2018-01-01 for `pvtz`.
  15. - Update default endpoints.
  16. 2020-02-10 Version: v1.60.354
  17. - Generated 2017-09-06 for `imm`.
  18. - Supported address for GetMediaMeta.
  19. 2020-02-09 Version: v1.60.353
  20. - Generated 2019-12-30 for `facebody`.
  21. - Sdk version 104.
  22. 2020-02-07 Version: v1.60.352
  23. - Generated 2018-01-01 for `pvtz`.
  24. - Fix bug for DescribeZoneInfo, delete return result of reionId.
  25. - Fix bug for DeleteZone, parameter zoneId change to compulsory.
  26. - Fix bug for SetProxyPattern, parameter zoneId change to compulsory.
  27. 2020-02-05 Version: v1.60.351
  28. - Generated 2017-09-06 for `imm`.
  29. - Supported GetOfficePreviewURL.
  30. - Supported RefreshOfficePreviewToken.
  31. 2020-02-04 Version: v1.60.350
  32. - Generated 2015-01-09 for `Alidns`.
  33. - Update default endpoints.
  34. 2020-02-04 Version: v1.60.349
  35. - Generated 2015-01-01 for `R-kvstore`.
  36. - Generated 2015-01-01 for `R-kvstore`.
  37. - Update endpoint for `R-kvstore`.
  38. 2020-01-21 Version: v1.60.348
  39. - Generated 2015-01-01 for `R-kvstore`.
  40. - Generated 2015-01-01 for `R-kvstore`.
  41. - Update endpoint for `R-kvstore`.
  42. 2020-01-20 Version: v1.60.347
  43. - Generated 2018-01-20 for `Iot`.
  44. - Add Thing Model APIs, including QueryThingModel, PublishThingModel, etc.
  45. 2020-01-20 Version: v1.60.346
  46. - Generated 2019-06-25 for `hiknoengine`.
  47. - Release on full language support.
  48. 2020-01-17 Version: v1.60.345
  49. - Generated 2014-08-15 for `Rds`.
  50. - Supported Add the history event signature function.
  51. 2020-01-17 Version: v1.60.344
  52. - Generated 2018-03-13 for `retailcloud`.
  53. - Supported AAA for BBB.
  54. - Fixed bugs for CCC.
  55. 2020-01-16 Version: v1.60.343
  56. - Generated 2019-01-01 for `Cms`.
  57. - Fix the result value of DeleteSiteMonitors.
  58. 2020-01-16 Version: v1.60.342
  59. - Generated 2015-01-01 for `R-kvstore`.
  60. - Generated 2015-01-01 for `R-kvstore`.
  61. - Update DescribeAvailableResource.
  62. 2020-01-16 Version: v1.60.341
  63. - Generated 2019-01-23 for `Drds`.
  64. 2020-01-16 Version: v1.60.340
  65. - Generated 2019-03-07 for `Cloudauth`.
  66. - Add fields faceComparisonScore for DescribeVerifyResult and VerifyMaterials interface.
  67. 2020-01-16 Version: v1.60.339
  68. - Generated 2019-01-23 for `Drds`.
  69. 2020-01-15 Version: v1.60.338
  70. - Generated 2018-11-01 for `dms-enterprise`.
  71. - Fix SignatureDoesNotMatch issue of GetOrderBaseInfo API.
  72. 2020-01-15 Version: v1.60.337
  73. - Generated 2019-01-01 for `Cms`.
  74. - Fix parameter issues for label synchronization group.
  75. 2020-01-15 Version: v1.60.336
  76. - Generated 2019-01-01 for `Cms`.
  77. - Fix parameter issues for label synchronization group.
  78. 2020-01-15 Version: v1.60.335
  79. - Generated 2015-12-15 for `CS`.
  80. - Support A csk.
  81. 2020-01-14 Version: v1.60.334
  82. - Generated 2019-09-16 for `alikafka`.
  83. - Support modity topic remark.
  84. - Support modify topic partitions.
  85. 2020-01-13 Version: v1.60.333
  86. - Generated 2015-12-01 for `Dds`.
  87. - New API DescribeAvailableResource.
  88. 2020-01-13 Version: v1.60.332
  89. - Generated 2014-05-26 for `Ecs`.
  90. - Solve conflict.
  91. 2020-01-13 Version: v1.60.331
  92. - Generated 2017-08-23, 2018-05-09, 2016-12-22 for `Green`.
  93. - Fixed bugs for CreateKeywordResponse ValidKeywordList type.
  94. 2020-01-13 Version: v1.60.330
  95. - Generated 2017-08-23, 2018-05-09, 2016-12-22 for `Green`.
  96. - Fixed bugs for CreateKeywordResponse ValidKeywordList type.
  97. 2020-01-13 Version: v1.60.329
  98. - Generated 2019-01-01 for `Cms`.
  99. - Add Dynamic Tag API.
  100. 2020-01-13 Version: v1.60.328
  101. - Generated 2014-05-26 for `Ecs`.
  102. - Supported InstanceMaintenanceAtrributes for maintening the attributes of instances.
  103. - Deleted MaintenanceProperty.
  104. - Supported RedeployDedicatedHost for redeploying dedicated host in under-assessment status.
  105. 2020-01-10 Version: v1.60.327
  106. - Generated 2017-08-01 for `polardb`.
  107. - Return `ConsistentTime` for DescribeBackups.
  108. - Return `DBNodeIds` for CreateDBNodes.
  109. 2020-01-09 Version: v1.60.326
  110. - Generated 2017-12-14 for `BssOpenApi`.
  111. - Support DAILY report in QueryInstanBill.
  112. 2020-01-09 Version: v1.60.325
  113. - Generated 2017-11-10 for `Ens`.
  114. - Add New Interface DescribeInstanceTypes.
  115. - Deprecated New Interface DescribeReservedResource.
  116. - Add New Interface DescribeAvailableResourceInfo.
  117. - Add New Interface AttachEnsInstances.
  118. 2020-01-08 Version: v1.60.324
  119. - Generated 2017-09-06 for `imm`.
  120. - Add TagLevel to ListSetTags.
  121. 2020-01-08 Version: v1.60.323
  122. - Generated 2014-05-15 for `Slb`.
  123. - Supported upload Regional AlicloudCertificate.
  124. 2020-01-08 Version: v1.60.322
  125. - Generated 2014-08-15 for `Rds`.
  126. 2020-01-08 Version: v1.60.321
  127. - Generated 2014-08-15 for `Rds`.
  128. 2020-01-08 Version: v1.60.320
  129. - Generated 2018-03-13 for `retailcloud`.
  130. - Supported AAA for BBB.
  131. - Fixed bugs for CCC.
  132. 2020-01-07 Version: v1.60.319
  133. - Generated 2017-06-13 for `elasticsearch`.
  134. - Modify desribeInstance return dict item.
  135. 2020-01-07 Version: v1.60.318
  136. - Generated 2014-08-15 for `Rds`.
  137. 2020-01-03 Version: v1.60.317
  138. - Generated 2018-04-12 for `EHPC`.
  139. - Add GWS serie apis.
  140. - Add QueryReport.
  141. - Fix ListJobs.
  142. - Etc.
  143. 2020-01-03 Version: v1.60.316
  144. - Generated 2015-12-01 for `Dds`.
  145. - New API DescribeAvailableResource.
  146. 2020-01-03 Version: v1.60.315
  147. - Generated 2019-01-01 for `HBase`.
  148. - ImmediateDelete.
  149. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  150. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  151. - DescribeIpWhitelist Groups GroupName.
  152. 2019-01-02 Version: v1.60.314
  153. - Remove r-kvstore.
  154. 2019-12-31 Version: v1.60.313
  155. - Generated 2018-01-20 for `Iot`.
  156. - Add OTA APIs, including GenerateOTAUploadURL, CreateOTAFirmware, etc.
  157. - Add UpdateProductFilterConfig interface, support setting product filter config.
  158. 2019-12-31 Version: v1.60.312
  159. - Generated 2019-12-30 for `ocr`.
  160. - First version.
  161. 2019-12-31 Version: v1.60.311
  162. - Generated 2014-08-15 for `Rds`.
  163. - Supported SQL SERVER support delete backup set according to time range.
  164. 2019-12-31 Version: v1.60.310
  165. - Generated 2016-01-20 for `Kms`.
  166. - Support asymmetric keys.
  167. 2019-12-31 Version: v1.60.309
  168. - Generated 2019-02-14 for `Ons`.
  169. - Add request parameter groupType for OnsGroupCreate.
  170. 2019-12-31 Version: v1.60.308
  171. - Generated 2017-09-06 for `imm`.
  172. - Supported image for process.
  173. 2019-12-31 Version: v1.60.307
  174. - Generated 2019-09-28 for `reid`.
  175. 2019-12-31 Version: v1.60.306
  176. - Generated 2019-03-15 for `adb`.
  177. - Support DeleteDBCluster.
  178. - Support ModifyDBCluster.
  179. - Support DescribeAvailableResource.
  180. 2019-12-30 Version: v1.60.305
  181. - Generated 2018-01-20 for `Iot`.
  182. - Supported 2018-01-20 for Golang.
  183. 2019-12-26 Version: v1.60.304
  184. - Generated 2019-11-11 for `nlp-automl`.
  185. - NlpAutoml add async api.
  186. 2019-12-26 Version: v1.60.303
  187. - Generated 2019-03-06 for `Dbs`.
  188. - Modify CreateRestoreTask.
  189. 2019-12-23 Version: v1.60.302
  190. - Generated 2016-04-08 for `Emr`.
  191. - Bugfix.
  192. 2019-12-20 Version: v1.60.301
  193. - Generated 2018-11-01 for `dms-enterprise`.
  194. - Supported Authorization API, includes GrantUserPermission, RevokeUserPermission, ListDatabaseUserPermssions, ListUserPermissions.
  195. - Supported Database or Table Metadata synchronization API, includes SyncInstanceMeta, SyncDatabaseMeta.
  196. - Supported Database or Table Owner set up API.
  197. - Supported GetUser API to get information of one DMS user.
  198. - Supported set Dingding mobile number with RegisterUser API.
  199. 2019-12-20 Version: v1.60.300
  200. - Generated 2019-03-08 for `ivision`.
  201. - Supported Search stream predict task list use modelId for IVISION.
  202. 2019-12-20 Version: v1.60.299
  203. - Generated 2019-02-14 for `Ons`.
  204. - Add result value for OnsConsumerStatus.
  205. 2019-12-19 Version: v1.60.298
  206. - Generated 2017-08-01 for `polardb`.
  207. - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
  208. 2019-12-19 Version: v1.60.297
  209. - Generated 2019-09-28 for `reid`.
  210. 2019-12-19 Version: v1.60.296
  211. - Generated 2014-05-26 for `Ecs`.
  212. - DescribeNetworkInterfaces Supports NextToken.
  213. 2019-12-18 Version: v1.60.295
  214. - Generated 2014-08-15 for `Rds`.
  215. 2019-12-18 Version: v1.60.294
  216. - Generated 2019-09-16 for `alikafka`.
  217. - Support sasl and acl.
  218. 2019-12-16 Version: v1.60.293
  219. - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
  220. 2019-12-16 Version: v1.60.292
  221. - Update tag related api to publically visable.
  222. 2019-12-16 Version: v1.60.291
  223. - Update tag related api to publically visable.
  224. 2019-12-14 Version: v1.60.290
  225. - Generated 2015-01-01 for `R-kvstore`.
  226. 2019-12-14 Version: v1.60.289
  227. - Update DescribeAvailableResource.
  228. 2019-12-14 Version: v1.60.288
  229. - Update DescribeAvailableResource.
  230. 2019-12-11 Version: v1.60.287
  231. - Add tag API.
  232. - Add group process monitoring API.
  233. - Add API for batch setting alarm rules.
  234. 2019-12-11 Version: v1.60.286
  235. - Support GroupDeletionProtection.
  236. 2019-12-05 Version: v1.60.285
  237. - Add api QueryMetric.
  238. 2019-12-04 Version: v1.60.284
  239. - Delete invalid Api.
  240. 2019-12-04 Version: v1.60.283
  241. - Generated 2019-01-01 for `HBase`.
  242. 2019-12-04 Version: v1.60.282
  243. - Supported ModifyDBInstanceSpec for Direction param.
  244. 2019-12-03 Version: v1.60.281
  245. - Supported face library operation.
  246. - Supported task template and words.
  247. 2019-12-03 Version: v1.60.280
  248. - Bugfix for DescribeTrails.
  249. 2019-12-02 Version: v1.60.279
  250. - Generated 2019-01-23 for `Drds`.
  251. 2019-12-02 Version: v1.60.278
  252. - Update go sdk.
  253. 2019-12-02 Version: v1.60.277
  254. - Remove QuerySmsProdStatus OpenAPI.
  255. 2019-11-29 Version: v1.60.276
  256. - Add RenewInstance.
  257. - Add RenewLogstash.
  258. - Add UpdateInstanceChargeType.
  259. - Add UpdateLogstashChargeType.
  260. 2019-11-29 Version: v1.60.275
  261. - Add RWMutex to AddEndpointMapping and GetEndpointFromMap.
  262. 2019-11-28 Version: v1.60.274
  263. - Supported API GetTxtRecordForVerify.
  264. - Supported API RetrieveDomain.
  265. 2019-11-28 Version: v1.60.273
  266. - Supported dash for compress.
  267. 2019-11-28 Version: v1.60.272
  268. - Eni Supports Multi-SecurityGroup.
  269. 2019-11-28 Version: v1.60.271
  270. - Support Order Basis API, include CreateOrder, CloseOrder, ListOrders, GetOrderBaseInfo.
  271. - Support Order Approval API, include SubmitOrderApproval, ApproveOrder, GetApprovalDetail.
  272. - Support DataCorrect Order Operation API, include ExecuteDataCorrect, GetDataCorrectOrderDetail, GetDataCorrectBackupFiles.
  273. - Support DDL Order Operation API, include CreatePublishGroupTask.
  274. - Support DataExport Operation API, include ExecuteDataExport, GetDataExportOrderDetail, GetDataExportDownloadURL.
  275. 2019-11-27 Version: v1.60.270
  276. - Add Tag API.
  277. 2019-11-27 Version: v1.60.269
  278. - CreateReplicationJob API supports the specified instance type.
  279. 2019-11-27 Version: v1.60.268
  280. - Add enhanced natgateway sdk.
  281. 2019-11-26 Version: v1.60.267
  282. - Modify QueryBill, add SubOrderId in item of response.
  283. 2019-11-26 Version: v1.60.266
  284. - Generated 2015-12-01 for `Dds`.
  285. 2019-11-26 Version: v1.60.265
  286. - Supported API BindInstanceDomains.
  287. - Supported API UnbindInstanceDomains.
  288. - Supported API AddCustomLine.
  289. - Supported API UpdateCustomLine.
  290. - Supported API DeleteCustomLines.
  291. - Supported API DescribeCustomLine.
  292. - Supported API DescribeCustomLines.
  293. 2019-11-26 Version: v1.60.264
  294. - Generated 2015-12-01 for `Dds`.
  295. 2019-11-26 Version: v1.60.263
  296. - Refresh endpoint.
  297. 2019-11-26 Version: v1.60.262
  298. - Generated 2014-08-15 for `Rds`.
  299. 2019-11-25 Version: v1.60.261
  300. - Add v to release version.
  301. 2019-11-25 Version: 1.60.260
  302. - One or more people can be subscribed when creating tasks.
  303. 2019-11-22 Version: 1.60.259
  304. - Update Api Request And Response structure.
  305. 2019-11-22 Version: 1.60.258
  306. - First version.
  307. 2019-11-21 Version: 1.60.257
  308. - Add ConvertPayType.
  309. - Add ConvertLogstashPayType.
  310. 2019-11-21 Version: 1.60.256
  311. - Update Nlp Automl SDK.
  312. 2019-11-21 Version: 1.60.255
  313. - Add OpenAPI DescribeAvailableResourceInfo.
  314. - Deprecated OpenApi DescribeAvailableResource.
  315. 2019-11-21 Version: 1.60.254
  316. - First version.
  317. 2019-11-20 Version: 1.60.253
  318. - Add new pop api.
  319. 2019-11-20 Version: 1.60.252
  320. - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
  321. - Modify ecsDemand DescribesDemands API.
  322. 2019-11-20 Version: 1.60.251
  323. - Generated 2019-01-01 for `HBase`.
  324. 2019-11-20 Version: 1.60.250
  325. - Add API ReportVoipProblems.
  326. - Add API QueryVoipNumberBindINfos.
  327. 2019-11-19 Version: 1.60.249
  328. - Generated 2018-01-20 for `Iot`.
  329. 2019-11-15 Version: 1.60.248
  330. - Nlp Automl SDK.
  331. 2019-11-15 Version: 1.60.247
  332. - Support tags.
  333. - Support create pre paid alikafka instance.
  334. 2019-11-15 Version: 1.60.246
  335. - Sync cdn APIs.
  336. 2019-11-15 Version: 1.60.245
  337. - Fixed bugs.
  338. 2019-11-15 Version: 1.60.244
  339. - Add Scdn APIS.
  340. - Sync cdn APIS.
  341. 2019-11-15 Version: 1.60.243
  342. - Modify QueryAccountBill, support group by product.
  343. 2019-11-15 Version: 1.60.242
  344. - Modify DescribeRestoreRangeInfo.
  345. 2019-11-15 Version: 1.60.241
  346. - Add DescribeRestoreRangeInfo.
  347. 2019-11-14 Version: 1.60.240
  348. - Released dysms OpenAPI.
  349. 2019-11-14 Version: 1.60.239
  350. - Support Tag OpenAPI.
  351. - Fix endpoint problem.
  352. 2019-11-14 Version: 1.60.238
  353. - Initial construction.
  354. - Public beta version.
  355. - Supported AliyunController for Interface.
  356. - Supported ConsoleController for Interface.
  357. - Supported AccountController for Interface.
  358. 2019-11-13 Version: 1.60.237
  359. - Supported Stream analyse.
  360. 2019-11-13 Version: 1.60.236
  361. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  362. 2019-11-13 Version: 1.60.235
  363. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  364. 2019-11-13 Version: 1.60.234
  365. - Add new API QueryBillToOSSSubscription.
  366. 2019-11-13 Version: 1.60.233
  367. - Supported API UpdateDomainRemark for Update Domain Remark.
  368. - Supported API UpdateDomainRecordRemark for Update Record Remark.
  369. - Unsupported API CheckDomainRecord.
  370. 2019-11-13 Version: 1.60.232
  371. - Support Go SDK.
  372. - Support C SDK.
  373. - Support PHP SDK.
  374. 2019-11-12 Version: 1.60.231
  375. - Generated 2018-08-21, 2018-08-16 for `Rdc`.
  376. 2019-11-12 Version: 1.60.230
  377. - Generated 2018-08-21 for `Rdc`.
  378. 2019-11-08 Version: 1.60.229
  379. - Add DescribeJobErrorCode.
  380. 2019-11-05 Version: 1.60.228
  381. - Add OperateBlackNo.
  382. 2019-11-04 Version: 1.60.227
  383. - Supported Qos for smartag.
  384. 2019-11-04 Version: 1.60.226
  385. - Support console api for cloud bastionhost.
  386. 2019-11-02 Version: 1.60.225
  387. - Generated 2017-05-25 for `Dyvmsapi`.
  388. 2019-10-31 Version: 1.60.224
  389. - Initial construction.
  390. - Public beta version.
  391. - Supported AliyunController for Interface.
  392. - Supported ConsoleController for Interface.
  393. - Supported AccountController for Interface.
  394. 2019-10-31 Version: 1.60.223
  395. - Initial construction.
  396. - Public beta version.
  397. - Supported AliyunController for Interface.
  398. - Supported ConsoleController for Interface.
  399. - Supported AccountController for Interface.
  400. 2019-10-31 Version: 1.60.222
  401. - Support ListTagResources for tag fuzzy filter.
  402. 2019-10-30 Version: 1.60.221
  403. - Update interface params of the cloudauth.
  404. 2019-10-29 Version: 1.60.220
  405. - Add a new Alibaba Cloud Bill API named QueryAccountBill.
  406. 2019-10-28 Version: 1.60.219
  407. - FIX RefundInstance.
  408. 2019-10-25 Version: 1.60.218
  409. - ADD RefundInstance.
  410. 2019-10-25 Version: 1.60.217
  411. - Initial construction.
  412. - Public beta version.
  413. - Supported AliyunController for Interface.
  414. - Supported ConsoleController for Interface.
  415. - Supported AccountController for Interface.
  416. 2019-10-25 Version: 1.60.216
  417. - Supported query push records.
  418. 2019-10-25 Version: 1.60.215
  419. - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
  420. 2019-10-24 Version: 1.60.214
  421. - Optimize instance relevant interface.
  422. 2019-10-24 Version: 1.60.213
  423. - Generated 2017-12-14 for `BssOpenApi`.
  424. 2019-10-24 Version: 1.60.212
  425. - Generated 2017-12-14 for `BssOpenApi`.
  426. 2019-10-23 Version: 1.60.211
  427. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  428. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  429. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  430. - Modify the data type of return field StorageLocation to String.
  431. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  432. 2019-10-23 Version: 1.60.210
  433. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  434. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  435. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  436. - Modify the data type of return field StorageLocation to String.
  437. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  438. 2019-10-23 Version: 1.60.209
  439. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  440. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  441. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  442. - Modify the data type of return field StorageLocation to String.
  443. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  444. 2019-10-22 Version: 1.60.208
  445. - Supported Sync predict for Image.
  446. - Supported Set Frame Frequency for Stream Predict.
  447. - Fixed Errore Code For APIs.
  448. 2019-10-22 Version: 1.60.207
  449. - RunInstances support AutoSnapshotPolicyId.
  450. 2019-10-22 Version: 1.60.206
  451. - Fix ListDatabases CatalogName dataType integer to string.
  452. - Remove GetLogicDatabase invalid output param named TotalCount.
  453. - Remove ListIndexes invalid output param named ColumnList.
  454. - Support SearchTable API to filter searchTarget.
  455. 2019-10-22 Version: 1.60.205
  456. - Supported ExternalId IMM.
  457. 2019-10-21 Version: 1.60.204
  458. - Release first version.
  459. 2019-10-21 Version: 1.60.203
  460. - Init the standard baas sdk.
  461. 2019-10-18 Version: 1.60.202
  462. - Generated 2019-09-10 for `DnsKnocker`.
  463. 2019-10-18 Version: 1.60.201
  464. - Modify Yundun-dbaudit DescribeInstanceAttribute InstanceStatus Type.
  465. 2019-10-17 Version: 1.60.200
  466. - Support instance manage API, includes UpdateInstance and DeleteInstance.
  467. - Support user manage API, includes ListUsers and UpdateUser.
  468. - Support meta data information API, includes ListInstances, ListDatabases, ListLogicDatabases, ListTables, ListLogicTables, ListColumns, ListIndexes.
  469. - Support meta data search API, inclues SearchDatabase, SearcTable.
  470. - Support RegisterInstance API to set datalinkName and useDsql option.
  471. 2019-10-16 Version: 1.60.199
  472. - Optimize instance relevant interface.
  473. 2019-10-16 Version: 1.60.198
  474. - Add ListTagResources OpenApi.
  475. - Add TagResources OpenApi.
  476. - Add UntagResources OpenApi.
  477. - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
  478. 2019-10-14 Version: 1.60.197
  479. - Optimize instance relevant interface.
  480. 2019-10-14 Version: 1.60.196
  481. - Support continuous pushing.
  482. 2019-10-13 Version: 1.60.195
  483. - Add instance relevant interface.
  484. 2019-10-12 Version: 1.60.194
  485. - Add new api.
  486. 2019-10-11 Version: 1.60.193
  487. - Add response paramete for DescribeDomainExtensionAttribute.
  488. 2019-10-11 Version: 1.60.192
  489. - Add new interface DescribeDomainExtensionAttribute.
  490. 2019-10-10 Version: 1.60.191
  491. - Generated 2014-05-15 for `Slb`.
  492. 2019-10-10 Version: 1.60.190
  493. - Generated 2015-04-01 for `Sts`.
  494. 2019-10-09 Version: 1.60.189
  495. - Add VideoCancelScan Api.
  496. 2019-10-09 Version: 1.60.188
  497. - Support API RecognizeImageColor.
  498. - Support API DetectImageElements.
  499. - Support API RecolorImage.
  500. - Support API SegmentImage.
  501. - Support API ChangeImageSize.
  502. - Support API ExtendImageStyle.
  503. - Support API RecognizeImageStyle.
  504. - Support API MakeSuperResolution.
  505. 2019-10-09 Version: 1.60.187
  506. - Generated 2018-11-11 for `PTS`.
  507. 2019-10-09 Version: 1.60.186
  508. - DescribeIntance status type modification.
  509. 2019-10-08 Version: 1.60.185
  510. - Supported Grab Frame IMM.
  511. 2019-10-08 Version: 1.60.184
  512. - Supported API MassPush for Push Message or Notice.
  513. 2019-10-08 Version: 1.60.183
  514. - Generated 2016-01-20 for `Kms`.
  515. 2019-09-29 Version: 1.60.182
  516. - Generated 2015-01-01 for `R-kvstore`.
  517. 2019-09-29 Version: 1.60.181
  518. - Add new api.
  519. 2019-09-26 Version: 1.60.180
  520. - Update AHAS GetSentinelAppSumMetric API.
  521. 2019-09-26 Version: 1.60.179
  522. - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
  523. - Add QuerySubsId.
  524. 2019-09-25 Version: 1.60.178
  525. - Add new api.
  526. 2019-09-25 Version: 1.60.177
  527. - Update AHAS GetSentinelAppSumMetric API.
  528. 2019-09-25 Version: 1.60.176
  529. - Fix the capitalization problem of Describe Site Monitor Data.
  530. 2019-09-24 Version: 1.60.175
  531. - Generated 2019-08-10 for `multimediaai`.
  532. 2019-09-23 Version: 1.60.174
  533. - Generated 2019-06-12 for `MaxCompute`.
  534. 2019-09-23 Version: 1.60.173
  535. - Add param, DescribePrice supprot ReservedInstance.
  536. 2019-09-20 Version: 1.60.172
  537. - Generated 2017-12-14 for `BssOpenApi`.
  538. 2019-09-20 Version: 1.60.171
  539. - Generated 2018-02-01, 2018-07-20 for `ddosbgp`.
  540. 2019-09-19 Version: 1.60.170
  541. - Supported Video Abstract for IMM.
  542. 2019-09-19 Version: 1.60.169
  543. - Supported Video Abstract for IMM.
  544. 2019-09-19 Version: 1.60.168
  545. - Add bizSubCode and so on.
  546. 2019-09-18 Version: 1.60.167
  547. - Support to update layout in task for MPU.
  548. 2019-09-18 Version: 1.60.166
  549. - Optimize error code.
  550. 2019-09-18 Version: 1.60.165
  551. - Supported Video Abstract for IMM.
  552. 2019-09-18 Version: 1.60.164
  553. - Generated 2019-09-10 for `waf-openapi`.
  554. 2019-09-18 Version: 1.60.163
  555. - Generated 2016-11-01 for `live`.
  556. 2019-09-18 Version: 1.60.162
  557. - Add AHAS OpenAPI version 2019-09-01.
  558. 2019-09-16 Version: 1.60.161
  559. - Generated 2019-09-10 for `waf-openapi`.
  560. 2019-09-16 Version: 1.60.160
  561. - Add Region List.
  562. 2019-09-16 Version: 1.60.159
  563. - Fixed go struct file.
  564. 2019-09-16 Version: 1.60.158
  565. - Generated 2019-09-10 for `waf-openapi`.
  566. 2019-09-16 Version: 1.60.157
  567. - Generated 2019-09-10 for `waf-openapi`.
  568. 2019-09-12 Version: 1.60.156
  569. - Add DescribePrePaidInstanceStock.
  570. 2019-09-12 Version: 1.60.155
  571. - Support RDS.
  572. 2019-09-09 Version: 1.60.154
  573. - CreateInstance add toen.
  574. - UpdateInstance add toen.
  575. 2019-09-09 Version: 1.60.153
  576. - Generated 2017-05-25 for `Dysmsapi`.
  577. 2019-09-06 Version: 1.60.152
  578. - Generated 2018-01-17 for `waf-openapi`.
  579. 2019-09-06 Version: 1.60.151
  580. - Supported specifying vswitch when creating vpngateway.
  581. 2019-09-06 Version: 1.60.150
  582. - Update endpoint data.
  583. 2019-09-06 Version: 1.60.149
  584. - Add ReleasePostPaidInstance.
  585. - Add ReleasePrePaidInstance.
  586. 2019-09-06 Version: 1.60.148
  587. - Generated 2016-04-28 for `Vpc`.
  588. 2019-09-06 Version: 1.60.147
  589. - Generated 2014-05-15 for `Slb`.
  590. 2019-09-05 Version: 1.60.146
  591. - Supported for setEndpoint method.
  592. 2019-09-05 Version: 1.60.145
  593. - Generated 2014-05-15 for `Slb`.
  594. 2019-09-05 Version: 1.60.144
  595. - Generated 2017-07-05 for `CCC`.
  596. 2019-09-05 Version: 1.60.143
  597. - Generated 2018-11-11 for `foas`.
  598. 2019-09-05 Version: 1.60.142
  599. - Add DescribeInstanceTypes.
  600. - Add DescribeReservedResource.
  601. - Add DescribeInstances.
  602. 2019-09-05 Version: 1.60.141
  603. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  604. 2019-09-05 Version: 1.60.140
  605. - Generated 2015-11-01 for `Market`.
  606. 2019-09-05 Version: 1.60.139
  607. - Generated 2016-07-14 for `CloudAPI`.
  608. 2019-09-05 Version: 1.60.138
  609. - Generated 2017-08-01 for `polardb`.
  610. 2019-09-05 Version: 1.60.137
  611. - Generated 2017-12-14 for `BssOpenApi`.
  612. 2019-09-05 Version: 1.60.136
  613. - Generated 2014-05-26 for `Ecs`.
  614. 2019-09-03 Version: 1.60.135
  615. - Generated 2018-02-01, 2018-07-20 for `ddosbgp`.
  616. 2019-09-03 Version: 1.60.134
  617. - Generated 2018-02-01 for `ddosbgp`.
  618. 2019-09-03 Version: 1.60.133
  619. - Generated 2014-08-15 for `Rds`.
  620. 2019-08-30 Version: 1.60.132
  621. - Add describeRegions.
  622. - Add toen.
  623. 2019-08-30 Version: 1.60.131
  624. - Revert to 2015-09-01.
  625. 2019-08-30 Version: 1.60.130
  626. - Release Apis of Version 2019-09-10.
  627. 2019-08-30 Version: 1.60.129
  628. - Support latest DRDS Open API for version 2019-01-23.
  629. 2019-08-30 Version: 1.60.128
  630. - Supported Meida complex for IMM.
  631. 2019-08-30 Version: 1.60.127
  632. - Add api for getTrace and searchTracelist.
  633. 2019-08-29 Version: 1.60.126
  634. - Move StopExecution params to body.
  635. 2019-08-29 Version: 1.60.125
  636. - Bugfix.
  637. 2019-08-29 Version: 1.60.124
  638. - For publish.
  639. 2019-08-28 Version: 1.60.123
  640. - Update emr go api.
  641. 2019-08-28 Version: 1.60.122
  642. - Add DBS API UpgradeBackupPlan.
  643. - Add DBS API DescribePreCheckProgressList.
  644. 2019-08-28 Version: 1.60.121
  645. - Add NamespaceId for listApplication.
  646. 2019-08-27 Version: 1.60.120
  647. - Add ModifyDBInstanceAutoUpgradeMinorVersion Openapi.
  648. 2019-08-26 Version: 1.60.119
  649. - QueryInstanceBillResponse change ownerId type from Long to String.
  650. - QueryInstanceBillResponse change usage type from float to String.
  651. - QueryInstanceBillResponse change listPrice type from float to String.
  652. - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
  653. 2019-08-22 Version: 1.60.118
  654. - Support API RecognizeImageColor.
  655. - Support API DetectImageElements.
  656. - Support API RecolorImage.
  657. - Support API SegmentImage.
  658. - Support API ChangeImageSize.
  659. - Support API ExtendImageStyle.
  660. - Support API RecognizeImageStyle.
  661. - Support API MakeSuperResolutionImage.
  662. 2019-08-22 Version: 1.60.117
  663. - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
  664. 2019-08-22 Version: 1.60.116
  665. - Api getTopicList add a new return value.
  666. 2019-08-21 Version: 1.60.115
  667. - Supported for CPFS new feature of client evict.
  668. 2019-08-21 Version: 1.60.114
  669. - Move StartExecution params to body.
  670. 2019-08-21 Version: 1.60.113
  671. - Return backup job id when create backup.
  672. - Return backup set size when describe backups.
  673. 2019-08-21 Version: 1.60.112
  674. - Modify getTopicList and getConsumerList response.
  675. 2019-08-21 Version: 1.60.111
  676. - Modify getInstanceList response.
  677. 2019-08-20 Version: 1.60.110
  678. - API TaobaoFilmGetSchedules retrun col add hallId.
  679. 2019-08-19 Version: 1.60.109
  680. - Optimize topic create parameters.
  681. 2019-08-19 Version: 1.60.108
  682. - Optimize topic create parameters.
  683. 2019-08-18 Version: 1.60.107
  684. - Support go sdk.
  685. 2019-08-16 Version: 1.60.106
  686. - Generated 2018-02-01 for `ddosbgp`.
  687. 2019-08-15 Version: 1.60.105
  688. - FnF public version.
  689. - Add Report task api.
  690. 2019-08-15 Version: 1.60.104
  691. - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
  692. 2019-08-15 Version: 1.60.103
  693. - QueryInstanceBillResponse add ServicePeriod.
  694. 2019-08-14 Version: 1.60.102
  695. - Expose the interface to the yundun-console.
  696. - Update interface definitions of the cloudauth.
  697. 2019-08-13 Version: 1.60.101
  698. - Optimize return code.
  699. - Edit QueryDataset.
  700. 2019-08-13 Version: 1.60.100
  701. - Supported for openapi new version.
  702. 2019-08-13 Version: 1.60.99
  703. - Support latest DRDS Open API for version 2019-01-23.
  704. 2019-08-13 Version: 1.60.98
  705. - Generated 2018-07-20 for `ddosbgp`.
  706. 2019-08-12 Version: 1.60.97
  707. - Supported create routeEntry with routeEntryName.
  708. 2019-08-12 Version: 1.60.96
  709. - Support Defect Face API.
  710. 2019-08-08 Version: 1.60.95
  711. - Supported DryRun for Vpc and VSwitch.
  712. 2019-08-08 Version: 1.60.94
  713. - Add CreateStorageSet api to support storageSet.
  714. - Add DeleteStorageSet api to support storageSet.
  715. - Add ModifyStorageSetAttribute api to support storageSet.
  716. - Add DescribeStorageSets api to support storageSet.
  717. - Add DescribeStorageSetDetails api to support storageSet.
  718. - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
  719. - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
  720. - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
  721. 2019-08-08 Version: 1.60.93
  722. - Group, Plugin support tag authentication.
  723. 2019-08-07 Version: 1.60.92
  724. - Generated 2019-03-20 for `WebPlus`.
  725. 2019-08-06 Version: 1.60.91
  726. - Supported GetMediaMeta for IMM.
  727. 2019-08-06 Version: 1.60.90
  728. - Supported GetMediaMeta for IMM.
  729. 2019-08-06 Version: 1.60.89
  730. - Supported GetMediaMeta for IMM.
  731. 2019-08-06 Version: 1.60.88
  732. - Supported GetMediaMeta for IMM.
  733. 2019-08-06 Version: 1.60.87
  734. - Supported GetMediaMeta for IMM.
  735. 2019-08-06 Version: 1.60.86
  736. - Enhencement for CostOptimized scaling group.
  737. 2019-08-05 Version: 1.60.85
  738. - Add response parameter LoadBalancerId for DescribeMasterSlaveServerGroupAttribute interface.
  739. 2019-08-05 Version: 1.60.84
  740. - GetOrderDetail add originalConfig param.
  741. 2019-08-05 Version: 1.60.83
  742. - GetOrderDetail add originalConfig param.
  743. 2019-08-05 Version: 1.60.82
  744. - Modify DBS API DescribeFullBackupList.
  745. 2019-08-02 Version: 1.60.81
  746. - Add a lot of new API.
  747. 2019-08-02 Version: 1.60.80
  748. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  749. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  750. 2019-07-31 Version: 1.60.79
  751. - Endpoint auto route.
  752. 2019-07-31 Version: 1.60.78
  753. - Generated 2014-06-18 for `Mts`.
  754. 2019-07-30 Version: 1.60.77
  755. - Generated 2014-06-18 for `Mts`.
  756. 2019-07-26 Version: 1.60.76
  757. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  758. 2019-07-26 Version: 1.60.75
  759. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  760. 2019-07-25 Version: 1.60.74
  761. - Api createKey add optional parameter `ProtectionLevel`.
  762. - Api describeKey add a field `ProtectionLevel` in the response.
  763. - Add Api `DescribeService`.
  764. 2019-07-25 Version: 1.60.73
  765. - Generated 2016-07-14 for `CloudAPI`.
  766. 2019-07-25 Version: 1.60.72
  767. - App-related actions support tag authentication.
  768. 2019-07-23 Version: 1.60.71
  769. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  770. 2019-07-19 Version: 1.60.70
  771. - QueryMonthlyBillResponse add roundDownDiscount.
  772. - QueryBillResponse add roundDownDiscount.
  773. - QueryInstanceBillResponse add item.
  774. 2019-07-18 Version: 1.60.69
  775. - Fix resolve wrong tagname IOS to iOS.
  776. 2019-07-18 Version: 1.60.68
  777. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  778. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  779. 2019-07-18 Version: 1.60.67
  780. - Supported open api for dbaudit management.
  781. 2019-07-15 Version: 1.60.66
  782. - Add filed `internalDomain` for api `get token`.
  783. 2019-07-12 Version: 1.60.65
  784. - Public api AddLivePullStreamInfoConfig.
  785. 2019-07-11 Version: 1.60.64
  786. - Modify CreateBackupPlan.
  787. - Modify ConfigureBackupPlan.
  788. - Modify DescribeFullBackupList.
  789. - Modify DescribeRestoreTaskList.
  790. - Add ModifyBackupSourceEndpoint.
  791. - Add ModifyBackupStrategy.
  792. - Add ModifyBackupPlanName.
  793. 2019-07-08 Version: 1.60.63
  794. - ActionName change to OOSActionName from ListActions API param and response.
  795. 2019-07-05 Version: 1.60.62
  796. - Add TaskCancelStatus for QueryTaskList api.
  797. 2019-07-05 Version: 1.60.61
  798. - Generated 2015-04-01 for `Sts`.
  799. 2019-07-05 Version: 1.60.60
  800. - Generated 2015-04-01 for `Sts`.
  801. 2019-07-04 Version: 1.60.59
  802. - Supported API DescribeRecordStatisticsy for Query Volume.
  803. - Supported API DescribeDomainStatistics for Query Volume.
  804. 2019-07-03 Version: 1.60.58
  805. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  806. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  807. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  808. - Supported API DescribeDomainDnsStatistics for Query Volume.
  809. 2019-07-02 Version: 1.60.57
  810. - FnF public version.
  811. 2019-07-01 Version: 1.60.56
  812. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  813. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  814. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  815. - Add RetentionDays to snapshot creating.
  816. 2019-06-27 Version: 1.60.55
  817. - Added setting of crop_mode parameter.
  818. 2019-06-25 Version: 1.60.54
  819. - Enhencement for CostOptimized scaling group.
  820. 2019-06-24 Version: 1.60.53
  821. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  822. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  823. - 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.
  824. - 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.
  825. 2019-06-24 Version: 1.60.52
  826. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  827. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  828. - 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.
  829. - 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.
  830. 2019-06-21 Version: 1.60.51
  831. - Support DeleteProtection api.
  832. 2019-06-20 Version: 1.60.50
  833. - OOS SDK first release for managing of templates, executions and actions.
  834. 2019-06-19 Version: 1.60.49
  835. 1, Add DefaultPolicyVersion as return field to GetPolicy interface, Facilitating to get policy document from this interface.
  836. 2, Add RotateStrategy as input field to CreatePolicyVersion interface for rotating policy version when reaching policy version limit.
  837. 2019-06-18 Version: 1.60.48
  838. 1. Supported the related recommend.
  839. 2. Supported exposure time controll and exposure filter by scene.
  840. 2019-06-17 Version: 1.60.47
  841. companyreg release
  842. 2019-06-14 Version: 1.60.46
  843. - Generated 2018-01-20 for `Iot`
  844. 2019-06-14 Version: 1.60.45
  845. 1. govendor rds sdk code problem.
  846. 2019-06-13 Version: 1.60.44
  847. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  848. 2019-06-13 Version: 1.60.43
  849. - Generated 2015-01-01 for `R-kvstore`
  850. 2019-06-13 Version: 1.60.42
  851. Add Network Assistant openapi sdk
  852. 2019-06-13 Version: 1.60.41
  853. 1, add DescribeAvailableResource OpenApi.
  854. 2, upgrade version to 2.3.8
  855. 2019-06-12 Version: 1.60.40
  856. 1, Add RenewBackupPlan DBS interface.
  857. 2019-06-12 Version: 1.60.39
  858. 1.Fix bug
  859. 2019-06-12 Version: 1.60.38
  860. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  861. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  862. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  863. 2019-06-06 Version: 1.60.37
  864. 1, Add RuleId in DescribeRuleAttribute.
  865. 2019-06-05 Version: 1.60.36
  866. 1, Update DescribeDataLimitDetail interface, add password for response
  867. 2019-06-04 Version: 1.60.35
  868. 1, Add new API: UpdateLivePullStreamInfoConfig
  869. 2019-06-03 Version: 1.60.34
  870. 1, Add openapi of ACL.
  871. 2019-06-03 Version: 1.60.33
  872. 1, Order info add relatedOrderId.
  873. 2019-05-31 Version: 1.60.32
  874. 1, add api 'search traces count'
  875. 2, add page index for api 'searchTraces'
  876. 2019-05-31 Version: 1.60.31
  877. 1, Add authority in GetMaterials API.
  878. 2019-05-30 Version: 1.60.30
  879. Fix: Handle the repeatlist parameter correctly
  880. 2019-05-30 Version: 1.60.29
  881. 1.Fix: Handle the repeatlist parameter correctly
  882. 2019-05-30 Version: 1.60.28
  883. 1. Re-generate for STS-2015-04-01.
  884. 2019-05-30 Version: 1.60.27
  885. 1. Re-generate for STS 2015-04-01.
  886. 2019-05-29 Version: 1.60.26
  887. 1, Fix ServiceCode typo in request
  888. 2019-05-29 Version: 1.60.25
  889. 1, Modify DescribeRestoreTaskList DBS interface.
  890. 2, Modify DescribeFullBackupList DBS interface.
  891. 2019-05-28 Version: 1.60.24
  892. 1, CreateDBInstance now support autoRenew
  893. 2019-05-27 Version: 1.60.23
  894. 1, Support video transcode.
  895. 2019-05-27 Version: 1.60.22
  896. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  897. 2019-05-24 Version: 1.60.21
  898. 1, The list of site monitoring probes adds ISP and city fields in English.
  899. 2, Fixed the capitalization problem of Describe MetricData and Describe Site Monitor Statistics API metricName.
  900. 2019-05-23 Version: 1.60.20
  901. 1, Fixed bug of the JSON list in GO sdk.
  902. 2019-05-22 Version: 1.60.19
  903. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  904. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  905. 2019-05-20 Version: 1.60.18
  906. 1, Added the cross zones supported.
  907. 2019-05-20 Version: 1.60.17
  908. 1, Add both api, ListNotaryInfos
  909. 2019-05-20 Version: 1.60.16
  910. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  911. 2019-05-20 Version: 1.60.15
  912. 1, DescribeRouteTableList add route table status
  913. 2, DescribeRouteTables add route table status
  914. 2019-05-18 Version: 1.60.14
  915. 1, Add ModifyBackupObjects DBS interface.
  916. 2019-05-16 Version: 1.60.13
  917. 1, Update SDK Version
  918. 2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public
  919. 2019-05-16 Version: 1.60.12
  920. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  921. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  922. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  923. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  924. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  925. 6, Add the field named UserData to SubmitSnapshotJob api request.
  926. 2019-05-16 Version: 1.60.11
  927. 1, Update SDK Version
  928. 2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public
  929. 2019-05-16 Version: 1.60.10
  930. 1, Update SDK version
  931. 2, Add api DescribeClusterAddonsVersion
  932. 2019-05-16 Version: 1.60.9
  933. 1, This is an example of release-log.
  934. 2, Please strictly follow this format to edit in English.
  935. 3, Format:Number + , + Space + Description
  936. 2019-05-16 Version: 1.60.8
  937. 1, Scaling configuration add security group ids
  938. 2019-05-15 Version: 1.60.7
  939. 1, Add InstanceId parameter to api CreateDisk
  940. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  941. 3, Add SecurityGroupIds parameter to Instance creation apis.
  942. 2019-05-14 Version: 1.60.6
  943. 1, Support body detect.
  944. 2019-05-14 Version: 1.60.5
  945. 1, support body detect
  946. 2019-05-14 Version: 1.60.4
  947. 1, Support body detect.
  948. 2019-05-14 Version: 1.60.3
  949. 1, Support body detect.
  950. 2019-05-14 Version: 1.60.2
  951. 1, Support body detect.
  952. 2019-05-14 Version: 1.60.1
  953. 1, Support body detect.
  954. 2019-05-13 Version: 1.60.0
  955. 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
  956. 2019-05-13 Version: 1.59.0
  957. 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
  958. 2019-05-13 Version: 1.58.11
  959. 1, Support for creating instances and joining multiple security groups at the same time.
  960. 2019-05-13 Version: 1.58.10
  961. 1, Add Vpc openapi interface,Support for new fields.
  962. 2, Support for nacl openapi.
  963. 3, Fixed some problems of the vpc openapi.
  964. 2019-05-13 Version: 1.58.9
  965. 1, Modify CreateRestoreTaskRequest DBS interface.
  966. 2019-05-05 Version: 1.58.8
  967. 1, CreateInstance add ClientToken parameter.
  968. 2019-04-29 Version: 1.58.7
  969. 1, add new api
  970. 2019-04-28 Version: 1.58.6
  971. 1, Publish DescribeAvailableResource.
  972. 2019-04-26 Version: 1.58.5
  973. 1, Add resource describe api.
  974. 2019-04-26 Version: 1.58.4
  975. 1, add new openapi.
  976. 2019-04-25 Version: 1.58.3
  977. 1, The alarm contact interface increases paging parameters
  978. 2019-04-25 Version: 1.58.2
  979. 1, upgrade sdk version.
  980. 2019-04-23 Version: 1.58.1
  981. 1, Support mounting multiple volumes using different protocol
  982. 2, Support scaling out cross AZ
  983. 2019-04-23 Version: 1.58.0
  984. 1, Add a new api, QueryDomainByDomainName.
  985. 2019-04-22 Version: 1.57.1
  986. 1, Add interface ModifyDBNodeClass.
  987. 2, Add interface ModifyAutoRenewAttribute and DescribeAutoRenewAttribute.
  988. 3, Param AutoRenew is supported in interface CreateDBCluster.
  989. 2019-04-22 Version: 1.57.0
  990. 1, Add a new api, QueryDomainByDomainName.
  991. 2019-04-22 Version: 1.56.14
  992. 1, This is an example of release-log.
  993. 2, Please strictly follow this format to edit in English.
  994. 3, Format:Number + , + Space + Description
  995. 2019-04-22 Version: 1.56.13
  996. 1, Add CreateDBCluster interface;
  997. 2, Add CreateDBNodes interface;
  998. 2019-04-18 Version: 1.56.12
  999. 1, New service
  1000. 2019-04-18 Version: 1.56.11
  1001. 1, CreateCacheAnalysisTask prop modify
  1002. 2019-04-18 Version: 1.56.10
  1003. 1, add ReservedInstance API.
  1004. 2019-04-17 Version: 1.56.9
  1005. 1, Add DescribeRestoreTaskList DBS interface.
  1006. 2, Add DescribeNodeCidrList DBS interface.
  1007. 2019-04-16 Version: 1.56.8
  1008. 1, Fixed DescribeAccounts response type error.
  1009. 2019-04-16 Version: 1.56.7
  1010. 1, Add api about pushing security check commands
  1011. 2019-04-16 Version: 1.56.6
  1012. 1, Fixed describeAccounts response type error
  1013. 2019-04-16 Version: 1.56.5
  1014. 1, Mark CreateDiagnosticReport as public api.
  1015. 2, ModifySecurityIps support modifyMode parameter.
  1016. 2019-04-16 Version: 1.56.4
  1017. 1, Add group api.
  1018. 2019-04-16 Version: 1.56.3
  1019. 1, Add group api.
  1020. 2019-04-16 Version: 1.56.2
  1021. 1, Add group api.
  1022. 2019-04-16 Version: 1.56.1
  1023. 1, Add group api.
  1024. 2019-04-16 Version: 1.56.0
  1025. 1, Add the go version of sdk.
  1026. 2019-04-15 Version: 1.55.7
  1027. 1, Add SDK for goLang version.
  1028. 2019-04-15 Version: 1.55.6
  1029. 1, Add CreateRestoreTask DBS interface.
  1030. 2, Add StartRestoreTask DBS interface.
  1031. 2019-04-15 Version: 1.55.5
  1032. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  1033. 2019-04-15 Version: 1.55.4
  1034. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  1035. 2019-04-15 Version: 1.55.3
  1036. 1, Add Group Api.
  1037. 2019-04-11 Version: 1.55.2
  1038. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  1039. 2019-04-11 Version: 1.55.1
  1040. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  1041. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  1042. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  1043. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  1044. 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.
  1045. 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.
  1046. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  1047. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  1048. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  1049. 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.
  1050. 2019-04-11 Version: 1.55.0
  1051. 1, Release AddImage/SearchImage/DeleteImage OpenApi.
  1052. 2, Add 'SearchByName' feature to SearchImage
  1053. 2019-04-10 Version: 1.54.1
  1054. 1, Modify DescribeBackupGatewayList DBS interface.
  1055. 2019-04-10 Version: 1.54.0
  1056. 1, New APIs for visual service (VNC).
  1057. 2, New APIs for software management.
  1058. 3, New APIs for CPFS filesystem.
  1059. 2019-04-09 Version: 1.53.93
  1060. 1, Add APIs: TagResource, UntagResource, ListResourceTags.
  1061. 2, Remove the optional parameter 'STSToken' and replace it with 'SecurityToken'.
  1062. 2019-04-09 Version: 1.53.92
  1063. 1, support service account management networkInterface function.
  1064. 2019-04-09 Version: 1.53.91
  1065. 1, Add Apis for offline VerifySDK.
  1066. 2019-04-08 Version: 1.53.90
  1067. 1, Modify DescribeBackupPlanList DBS interface.
  1068. 2, Modify DescribeFullBackupList DBS interface.
  1069. 3, Modify DescribeIncrementBackupList DBS interface.
  1070. 4, Modify DescribeBackupGatewayList DBS interface.
  1071. 2019-04-08 Version: 1.53.89
  1072. 1, Add StopBackupPlan DBS interface.
  1073. 2, Add DescribeBackupPlanList DBS interface.
  1074. 3, Add DescribeFullBackupList DBS interface.
  1075. 4, Add DescribeIncrementBackupList DBS interface.
  1076. 5, Add DescribeBackupGatewayList DBS interface.
  1077. 2019-04-04 Version: 1.53.88
  1078. 1, ScalingConf systemDisk add DiskName and Description parameters.
  1079. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  1080. 2019-04-03 Version: 1.53.87
  1081. 1, Support DNAT/ENI/Online user count features.
  1082. 2019-04-03 Version: 1.53.86
  1083. 1, Add interfaces related to vulnerability whitelist
  1084. 2, Add interfaces related to vulnerability auto-del configuration
  1085. 3, Add interfaces related to vulnerability fix advise
  1086. 4, Add interfaces searching and operating vulnerability
  1087. 2019-03-29 Version: 1.53.85
  1088. 1, fix MNS Query params
  1089. 2019-03-29 Version: 1.53.84
  1090. 1, Fix error version
  1091. 2019-03-29 Version: 1.53.83
  1092. 1, Add DLQ message openAPI.
  1093. 2, Add Query the subscription relational openAPI.
  1094. 3, Remove white list restrictions.
  1095. 2019-03-28 Version: 1.53.82
  1096. 1, EDAS serverless support Pandora application deployment in war/jar mode
  1097. 2019-03-28 Version: 1.53.81
  1098. 1, Add multiple language support in DescribeZones
  1099. 2, Add gray parameter in CreateDisk
  1100. 2019-03-28 Version: 1.53.80
  1101. 1, Add instance remark modify api.
  1102. 2019-03-28 Version: 1.53.79
  1103. 1, Add logo detect.
  1104. 2019-03-27 Version: 1.53.78
  1105. 1, Add Project interface.
  1106. 2, Add Tag interface.
  1107. 3, Add TrainData interface.
  1108. 4, Add Train interface.
  1109. 5, Add Iteration interface.
  1110. 6, Add Predict interface.
  1111. 7, Add PredictData interface.
  1112. 2019-03-27 Version: 1.53.77
  1113. 1, Add Project interface.
  1114. 2, Add Tag interface.
  1115. 3, Add TrainData interface.
  1116. 4, Add Train interface.
  1117. 5, Add Iteration interface.
  1118. 6, Add Predict interface.
  1119. 7, Add PredictData interface.
  1120. 2019-03-27 Version: 1.53.76
  1121. 1, Add DLQ message openAPI.
  1122. 2, Add Query the subscription relational openAPI.
  1123. 3, Remove white list restrictions.
  1124. 2019-03-27 Version: 1.53.75
  1125. 1, Add DLQ message openAPI.
  1126. 2, Add Query the subscription relational openAPI.
  1127. 3, Remove white list restrictions.
  1128. 2019-03-21 Version: 1.53.74
  1129. 1, Update Dependency
  1130. 2019-03-21 Version: 1.53.73
  1131. 1, Update Dependency
  1132. 2019-03-20 Version: 1.53.72
  1133. 1, Update the Dependency
  1134. 2019-03-20 Version: 1.53.71
  1135. 1, Update the Dependency
  1136. 2019-03-20 Version: 1.53.70
  1137. 1, Update the Dependency
  1138. 2019-03-20 Version: 1.53.69
  1139. 1, Update the Dependency
  1140. 2019-03-20 Version: 1.53.68
  1141. 1, Update Dependency
  1142. 2019-03-19 Version: 1.53.67
  1143. 1, Support ' fc ' Source DomainName
  1144. 2019-03-19 Version: 1.53.66
  1145. 1, move fields: tag, associate_person, cid
  1146. 2019-03-19 Version: 1.53.65
  1147. 1, format fields: tags, associatePerson
  1148. 2019-03-19 Version: 1.53.63
  1149. 1, Update Dependency
  1150. 2019-03-19 Version: 1.53.62
  1151. 1, Update Dependency
  1152. 2019-03-19 Version: 1.53.61
  1153. 1, This is an example of release-log.
  1154. 2, Please strictly follow this format to edit in English.
  1155. 3, Format:Number + , + Space + Description
  1156. 2019-03-18 Version: 1.53.60
  1157. 1, Signature Document SDK.
  1158. 2, First version publish.
  1159. 3, Beta Version SDK
  1160. 2019-03-18 Version: 1.53.59
  1161. 1, Update Dependency
  1162. 2019-03-18 Version: 1.53.58
  1163. 1, move AssociatePerson\Tag field
  1164. 2, Optimize RealName field
  1165. 2019-03-18 Version: 1.53.57
  1166. 1, Update Dependency
  1167. 2019-03-18 Version: 1.53.56
  1168. 1, Update Dependency
  1169. 2019-03-18 Version: 1.53.55
  1170. 1, Update Dependency
  1171. 2019-03-18 Version: 1.53.54
  1172. 1, Update Dependency
  1173. 2019-03-15 Version: 1.53.53
  1174. 1, update api info
  1175. 2019-03-15 Version: 1.53.52
  1176. 1, Update Dependency
  1177. 2019-03-15 Version: 1.53.51
  1178. 1, Update Dependency
  1179. 2019-03-15 Version: 1.53.50
  1180. 1, Update Dependency
  1181. 2019-03-15 Version: 1.53.49
  1182. 1, Update Dependency
  1183. 2019-03-15 Version: 1.53.48
  1184. 1, Update Dependency
  1185. 2019-03-15 Version: 1.53.47
  1186. 1, Update Dependency
  1187. 2019-03-15 Version: 1.53.46
  1188. 1, update RemoveInstances, support to delete 50 instances at a time.
  1189. 2019-03-15 Version: 1.53.45
  1190. 1, Update Dependency
  1191. 2019-03-15 Version: 1.53.44
  1192. 1, Update Dependency
  1193. 2019-03-15 Version: 1.53.43
  1194. 1, Update Dependency
  1195. 2019-03-15 Version: 1.53.42
  1196. 1, Update Dependency
  1197. 2019-03-14 Version: 1.53.41
  1198. 1, Update Dependency
  1199. 2019-03-14 Version: 1.53.40
  1200. 1, Update Dependency
  1201. 2019-03-14 Version: 1.53.39
  1202. 1, Update Dependency
  1203. 2019-03-14 Version: 1.53.38
  1204. 1, Update Dependency
  1205. 2019-03-14 Version: 1.53.37
  1206. 1, Update Dependency
  1207. 2019-03-14 Version: 1.53.36
  1208. 1, Update Dependency
  1209. 2019-03-14 Version: 1.53.35
  1210. 1, Update Dependency
  1211. 2019-03-14 Version: 1.53.34
  1212. 1, Update Dependency
  1213. 2019-03-14 Version: 1.53.33
  1214. 1, Update Dependency
  1215. 2019-03-13 Version: 1.53.32
  1216. 1, Update Dependency
  1217. 2019-03-13 Version: 1.53.31
  1218. 1, Update Dependency
  1219. 2019-03-13 Version: 1.53.30
  1220. 1, Update Dependency
  1221. 2019-03-13 Version: 1.53.29
  1222. 1, Distinguish between system and service parameters
  1223. 2019-03-13 Version: 1.53.28
  1224. 1, add DescribeDemands interface
  1225. 2019-03-13 Version: 1.53.27
  1226. 1, Distinguish between system and service parameters
  1227. 2019-03-13 Version: 1.53.26
  1228. 1, Distinguish between system and service parameters
  1229. 2019-03-12 Version: 1.53.25
  1230. 1, Add application name support for config center APIs.
  1231. 2, Add GetCluster API.
  1232. 3, Support debug switch in user region APIs.
  1233. 2019-03-12 Version: 1.53.24
  1234. 1, Add Vpc openapi interface,Support for new fields.
  1235. 2, Support for ipv6 gateway openapi.
  1236. 3, Fixed some problems of the vpc openapi.
  1237. 2019-03-12 Version: 1.53.23
  1238. 1, add agency infomation
  1239. 2, update sdk core resources
  1240. 2019-03-11 Version: 1.53.22
  1241. 1, add agency infomation
  1242. 2, update sdk core resources
  1243. 2019-03-11 Version: 1.53.21
  1244. 1, Add face grouping feature .
  1245. 2, Add head pose and face quality.
  1246. 2019-03-11 Version: 1.53.20
  1247. 1, Update aliyun-java-sdk-core version.
  1248. 2019-03-08 Version: 1.53.19
  1249. 1, Publish instance spec describe api.
  1250. 2019-03-08 Version: 1.53.18
  1251. 1, This is an example of release-log.
  1252. 2, Please strictly follow this format to edit in English.
  1253. 3, Format:Number + , + Space + Description
  1254. 2019-03-07 Version: 1.53.17
  1255. 1, Fix go api miss service_code problem
  1256. 2019-03-07 Version: 1.53.16
  1257. 1, Change service code to acr
  1258. 2019-03-07 Version: 1.53.15
  1259. 1, Publish instance describe and release apis.
  1260. 2019-03-06 Version: 1.53.14
  1261. 1, Release ActionTrail Go API.
  1262. 2019-03-06 Version: 1.53.13
  1263. 1, Update Service Code.
  1264. 2019-03-05 Version: 1.53.12
  1265. 1, Update the SDK version to 1.2.4
  1266. 2019-03-04 Version: 1.53.11
  1267. 1, This is an example of release-log.
  1268. 2, Please strictly follow this format to edit in English.
  1269. 3, Format:Number + , + Space + Description
  1270. 2019-03-01 Version: 1.53.10
  1271. 1, This is an example of release-log.
  1272. 2, Please strictly follow this format to edit in English.
  1273. 3, Format:Number + , + Space + Description
  1274. 2019-03-01 Version: 1.53.9
  1275. 1, Support Build Function Compute Backend By SDK
  1276. 2019-03-01 Version: 1.53.8
  1277. 1, Add API QueryRegionConfig
  1278. 2, Add API SynchronizeResource
  1279. 2019-02-28 Version: 1.53.7
  1280. 1, Add new apis named ListTranscodeTask, GetTranscodeTask, GetTranscodeSummary.
  1281. 2, Add the new field named TranscodeTemplateIds and ForceDelGroup to DeleteTranscodeTemplateGroup api request, and add a new field named NonExistTranscodeTemplateIds to the api response.
  1282. 3, Add a new field named Rotate in VideoStream of Mezzanine struct to GetMezzanineInfo api response .
  1283. 4, Add a new field named Status in ImageInfo to GetImageInfo api response.
  1284. 5, Add a new field named CustomMediaInfo to UpdateVideoInfo, GetVideoInfo and SearchMedia api to support the custom mediaInfo feature.
  1285. 6, Add a new filed named PlayInfoList and some Audit fields to SearchMedia api response.
  1286. 7, Clean up an api named DeleteTranscodeTemplates, which is replaced with the api named DeleteTranscodeTemplateGroup.
  1287. 2019-02-27 Version: 1.53.6
  1288. 1, Add three APIs for tag. APIs : TagResources, UntagResources, ListTagResources.
  1289. 2019-02-27 Version: 1.53.5
  1290. 1, Update Config API.
  1291. 2019-02-26 Version: 1.53.4
  1292. 1, Industry brain v1.3.7 release
  1293. 2, Add asynchronous APIs
  1294. 3, version 1.3.7
  1295. 2019-02-26 Version: 1.53.3
  1296. 1, Add interface of tag.
  1297. 2, Add tag info in DescribeDBClusters and DescribeDBClusterAttribute.
  1298. 2019-02-25 Version: 1.53.2
  1299. 1, add opensearch to GO sdk
  1300. 2019-02-22 Version: 1.53.1
  1301. 1, Fixed QueryAvailableInstances response unmarshal problem
  1302. 2019-02-21 Version: 1.53.0
  1303. 1, New DeleteDeviceGroup interface.
  1304. 2, New DeleteDeviceAllGroup interface.
  1305. 3, New GroupId fields for QuerySyncPicSchedule input parameter.
  1306. 4, New GroupId fields for QueryAddUserInfo input parameter.
  1307. 2019-02-20 Version: 1.52.2
  1308. 1, Add code and message to inovkeService API
  1309. 2, User could check code and message to get more specific information
  1310. 3, 1.0.0 alpha release
  1311. 2019-02-18 Version: 1.52.1
  1312. 1, Initialization release SDK. EDAS now supports SDK implemented by current programming language.
  1313. 2019-02-18 Version: 1.52.0
  1314. 1, Instantiation: adding the property of instance.
  1315. 2, Replace the "ProducerId" and "ConsumerId" properties with "GROUP_ID".
  1316. 3, Remove parameter OnsRegionId to simplified usage.
  1317. 2019-02-18 Version: 1.51.28
  1318. 1, industrial-brain release.
  1319. 2, publish SDK to public package stores.
  1320. 3, 1.0.0 including all APIs in doc.
  1321. 2019-02-18 Version: 1.51.27
  1322. 1, Add DryRun into StartInstance, StopInstance and RebootInstance.
  1323. 2, Add snapshot operations: ExportSnapshot and ImportSnapshot
  1324. 2019-02-17 Version: 1.51.26
  1325. 1, API definition support 'ForceNonceCheck', 'DisableInternet' parameter settings
  1326. 2019-02-15 Version: 1.51.25
  1327. 1, Modify DescribeDBInstances LastDowngradeTime DataType
  1328. 2019-02-14 Version: 1.51.24
  1329. 1, Update DescribeCdnTypes.
  1330. 2019-02-14 Version: 1.51.23
  1331. 1, Update DescribeTopDomainsByFlow.
  1332. 2019-01-30 Version: 1.51.22
  1333. 1, Add a new api called GetURLUploadInfos to query the upload task of UploadMediaByURL.
  1334. 2, Clean up the old api related to the CDN of VoD that is going offline, such as DescribeDomainBpsData, is replaced with the new CDN api.
  1335. 3, Clean up the old AI related apis of VoD, such as SubmitAIASRJob, is replaced with the new AI api.
  1336. 4, Clean up an api called GetVideoPlayInfo, which is used by the old player SDKs that are no longer supported.
  1337. 5, Clean up some apis that used only by the VoD console to avoid misuse, such as OpenVodService.
  1338. 2019-01-30 Version: 1.51.21
  1339. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  1340. 2019-01-30 Version: 1.51.20
  1341. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  1342. 2019-01-30 Version: 1.51.19
  1343. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  1344. 2019-01-30 Version: 1.51.18
  1345. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  1346. 2019-01-30 Version: 1.51.17
  1347. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  1348. 2019-01-29 Version: 1.51.16
  1349. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  1350. 2019-01-29 Version: 1.51.15
  1351. 1, This is an example of release-log.
  1352. 2, Please strictly follow this format to edit in English.
  1353. 3, Format:Number + , + Space + Description
  1354. 2019-01-29 Version: 1.51.14
  1355. 1, Make obsolete api offline.
  1356. 2, Fix some bug.
  1357. 2019-01-28 Version: 1.51.13
  1358. 1, Release 3 new Alibaba Cloud Bill API(QueryBillOverview、QueryBill、QueryInstanceBill).
  1359. 2, Kindly suggest replace to new APIs who is using the old ones(QueryMonthlyBill、QuerySettlementBill、QueryMonthlyInstanceConsumption).
  1360. 2019-01-28 Version: 1.51.12
  1361. 1, Support modify vSwitch of scalingGroup.
  1362. 2, Support new target tracking scaling rule.
  1363. 2019-01-28 Version: 1.51.11
  1364. 1, modify DescribeSlowLogs OpenApi.
  1365. 2019-01-23 Version: 1.51.10
  1366. 1, release new version
  1367. 2019-01-23 Version: 1.51.9
  1368. 1, release new version
  1369. 2019-01-23 Version: 1.51.8
  1370. 1, new go version
  1371. 2019-01-23 Version: 1.51.7
  1372. 1, Add model relevant parameter
  1373. 1, Add plugin relevant parameter
  1374. 2019-01-23 Version: 1.51.6
  1375. 1, Add model relevant parameter
  1376. 2019-01-23 Version: 1.51.5
  1377. 1, support plugin
  1378. 2, support model
  1379. 2019-01-23 Version: 1.51.4
  1380. 1, Add model relevant parameter
  1381. 2019-01-22 Version: 1.51.3
  1382. 1, Add model relevant parameters
  1383. 2019-01-22 Version: 1.51.2
  1384. 1, support Stack Policy setting .
  1385. 2019-01-21 Version: 1.51.1
  1386. 1, Interface DescribePluginApis returns the modification
  1387. 2019-01-17 Version: 1.51.0
  1388. 1, Add api AcceptInquiredSystemEvent.
  1389. 2, Add ExtendedAttribute to response of api DescribeInstanceHistoryEvents.
  1390. 3, Add ExtendedAttribute to response of api DescribeInstancesFullStatus.
  1391. 2019-01-16 Version: 1.50.10
  1392. 1, The plugin feature is released and supports a variety of plugins, as follows:trafficControl、backendSignature、ipControl、jwtAuth、cors、caching
  1393. 2019-01-15 Version: 1.50.9
  1394. 1, Add SubmitVerification API for RPMin solution.
  1395. 2, Return authority comparison score in GetStatus, SubmitMaterials and SubmitVerification.
  1396. 2019-01-15 Version: 1.50.8
  1397. 1, Go Lang API release
  1398. 2, Support UploadCertificate,CertficateList function;
  1399. 2019-01-15 Version: 1.50.7
  1400. 1, Add new apis called AddTranscodeTemplateGroup, UpdateTranscodeTemplateGroup, ListTranscodeTemplateGroup, GetTranscodeTemplateGroup, SetDefaultTranscodeTemplateGroup ,DeleteTranscodeTemplateGroup and DeleteTranscodeTemplates which support transcode template feature.
  1401. 2, Add new apis called AddAITemplate, DeleteAITemplate, UpdateAITemplate, GetAITemplate, ListAITemplate, GetDefaultAITemplate and SetDefaultAITemplate which support AI template feature.
  1402. 3, Add new apis called SubmitAIMediaAuditJob, GetAIMediaAuditJob, GetMediaAuditResult, GetMediaAuditResultTimeline which support AIMediaAudit feature.
  1403. 4, Add the field named Priority to SubmitTranscodeJobs api request.
  1404. 5, Add the field named UserData to UploadMediaByURL api request.
  1405. 6, Add the field named UserData to CreateUploadImage api request.
  1406. 7, Add the field named UserData to CreateUploadAttachedMedia api request.
  1407. 2019-01-14 Version: 1.50.6
  1408. 1, Release Go SDK for CR
  1409. 2019-01-11 Version: 1.50.5
  1410. 1, CreateOfficeConversionTask, ConvertOfficeFormat support Hidecomments
  1411. 2019-01-10 Version: 1.50.4
  1412. 1, regenerated for ECS/2014-05-26
  1413. 2019-01-10 Version: 1.50.3
  1414. 1, Add fields for QueryBrokerDemand api.
  1415. 2019-01-09 Version: 1.50.2
  1416. 1, Add user role support.
  1417. 2019-01-09 Version: 1.50.1
  1418. 1, Add user role support.
  1419. 2, Add new APIs for IMM.
  1420. 2019-01-07 Version: 1.50.0
  1421. 1, Airec SDK Release Version 1.0.0.
  1422. 2019-01-04 Version: 1.49.4
  1423. 1, modify DescribeSlowLogs, support query param SQLHASH, remove SQLID query param.
  1424. 2, modify DescribeSlowLogRecords, response values add SQLHASH, remove SQLID.
  1425. 3, upgrade rds sdk version 2.3.1.
  1426. 2019-01-04 Version: 1.49.3
  1427. 1, Change the DescribeInstance response esConfig List => Map
  1428. 2018-12-29 Version: 1.49.2
  1429. 1, re-generate go sdk for sts.
  1430. 2018-12-29 Version: 1.49.1
  1431. 1, re-generate Go SDK for RAM
  1432. 2018-12-29 Version: 1.49.0
  1433. 1, Add EnableUser interface, Support admin user to enable another user.
  1434. 2, Add DisableUser Interface, Support admin user to disable another user.
  1435. 3, Add DeleteUser Interface, Support admin user to delete another user.
  1436. 2018-12-29 Version: 1.48.8
  1437. 1, Add new set image video api
  1438. 2018-12-28 Version: 1.48.7
  1439. 1, Add new set image video api
  1440. 2018-12-28 Version: 1.48.6
  1441. 1, Add new set image video api
  1442. 2018-12-28 Version: 1.48.5
  1443. 1, Add new set image video api
  1444. 2018-12-28 Version: 1.48.4
  1445. 1, Add new set image video api.
  1446. 2018-12-28 Version: 1.48.3
  1447. 1, Add new set image video api.
  1448. 2, Add video async task api.
  1449. 2018-12-27 Version: 1.48.2
  1450. 1, fix php sdk
  1451. 2018-12-27 Version: 1.48.1
  1452. 1, Add DescribeZones Api.
  1453. 2018-12-27 Version: 1.48.0
  1454. 1, Elasticsearch GO sdk release.
  1455. 2018-12-25 Version: 1.47.3
  1456. 1, Add interface of endpoint.
  1457. 2, Add interface of cluster parameter.
  1458. 2018-12-21 Version: 1.47.2
  1459. 1, ARMS SDK 2018-12-19 go sdk upload
  1460. 2018-12-20 Version: 1.47.1
  1461. 1, Sync CDN API.
  1462. 2018-12-20 Version: 1.47.0
  1463. 1, Add Dns Sec apis.
  1464. 2, Add coupon and promotion fields for order apis.
  1465. 2018-12-20 Version: 1.46.0
  1466. 1, Add Dns Sec apis.
  1467. 2, Add coupon and promotion fields for order apis.
  1468. 2018-12-17 Version: 1.45.3
  1469. 1, Add EnableBillGeneration interface.
  1470. 2, Authorization for Virtual Network Operator.
  1471. 2018-12-17 Version: 1.45.2
  1472. 1, First Release
  1473. 2018-12-16 Version: 1.45.1
  1474. 1, Add a new api called AddMediaSequences to add media sequences of vod videos with in/out or live streams with start time/end time.
  1475. 2018-12-15 Version: 1.45.0
  1476. 1, first release
  1477. 2, this SDK is for control purposes, programmatic interface of HTTPDNS console: https://httpdns.console.aliyun.com
  1478. 2018-12-14 Version: 1.44.2
  1479. 1, fixed sdk unit loute .
  1480. 2, upgrade rds sdk version 2.2.0.
  1481. 2018-12-14 Version: 1.44.1
  1482. 1, fix service code to rds
  1483. 2018-12-13 Version: 1.44.0
  1484. 1, Add SystemDiskSize in CreateCluster and AddNodes, add more parameters in RecoverCluster
  1485. 2018-12-12 Version: 1.43.15
  1486. 1, Add interface GrantAccountPrivilege;
  1487. 2, Add interface RevokeAccountPrivilege;
  1488. 2018-12-12 Version: 1.43.14
  1489. 1, Sync CDN API.
  1490. 2018-12-12 Version: 1.43.13
  1491. 1, Fix a bug.
  1492. 2018-12-12 Version: 1.43.12
  1493. 1, Sync CDN API.
  1494. 2018-12-11 Version: 1.43.11
  1495. 1, Sync CDN API.
  1496. 2018-12-11 Version: 1.43.10
  1497. 1, Sync CDN API.
  1498. 2018-12-11 Version: 1.43.9
  1499. 1, Release Location Go SDK
  1500. 2018-12-11 Version: 1.43.8
  1501. 1, DescribeAccount support OwnerAccount params.
  1502. 2, Upgrade Rds SDK Version to 2.3.0
  1503. 2018-12-11 Version: 1.43.7
  1504. 1, Modify DescribeDBInstances OpenApi lastDowngradeTime dataType.
  1505. 2, Upgrade SDK Version to 2.0.3.
  1506. 2018-12-11 Version: 1.43.6
  1507. 1, Sync CDN API.
  1508. 2018-12-11 Version: 1.43.5
  1509. 1, Add ModifyInstanceVpcAuthMode OpenApi.
  1510. 2, Upgrade SDK Version to 2.0.4.
  1511. 2018-12-06 Version: 1.43.4
  1512. 1, Add api RedeployInstance
  1513. 2018-12-06 Version: 1.43.3
  1514. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  1515. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  1516. 2018-12-05 Version: 1.43.2
  1517. 1, Scaling group support vServerGroup.
  1518. 2018-12-05 Version: 1.43.1
  1519. 1, Add image async job.
  1520. 2, Fix group bug.
  1521. 2018-12-04 Version: 1.43.0
  1522. 1, The first release of Alibaba Cloud BaaS SDK
  1523. 2018-12-03 Version: 1.42.10
  1524. 1, Sync CDN API.
  1525. 2018-12-03 Version: 1.42.9
  1526. 1, Sync CDN API.
  1527. 2018-12-03 Version: 1.42.8
  1528. 1, Update 2014-11-11 API.
  1529. 2018-12-03 Version: 1.42.7
  1530. 1, Add a parameter to RemoveInstances.
  1531. 2018-11-30 Version: 1.42.6
  1532. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  1533. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  1534. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  1535. 2018-11-29 Version: 1.42.5
  1536. 1, This is the first version of Uis service.
  1537. 2018-11-28 Version: 1.42.4
  1538. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  1539. 2018-11-27 Version: 1.42.3
  1540. 1, ConvertOfficeFormat support TgtFilePrefix, TgtFileSuffix, TgtFilePages, FitToPagesTall, FitToPagesWide
  1541. 2018-11-27 Version: 1.42.2
  1542. 1, add doc index api
  1543. 2018-11-27 Version: 1.42.1
  1544. 1, api for custom keyword lib、similartext lib、voice keyword lib
  1545. 2, api for custom image lib
  1546. 3, support client file detect for image detection scenes、voice detection scenes、video detection scenes、file detection scenes
  1547. 2018-11-26 Version: 1.42.0
  1548. 1, Add RegisterInstance interface, Support admin or DBA user to register new db instance.
  1549. 2, Add RegisterUser Interface, Support admin user to register new user.
  1550. 3, Add GetOpLog Interface, Support admin user to get operation log.
  1551. 2018-11-22 Version: 1.41.2
  1552. 1, Increase the scene field
  1553. 2018-11-22 Version: 1.41.1
  1554. 1, Provide attribute info for DescribePricingModule api.
  1555. 2018-11-22 Version: 1.41.0
  1556. 1, Add ScrollDomainList api.
  1557. 2, Add email filter for QueryRegistrantProfile.
  1558. 2018-11-22 Version: 1.40.4
  1559. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  1560. 2018-11-21 Version: 1.40.3
  1561. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  1562. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  1563. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  1564. 2018-11-20 Version: 1.40.2
  1565. 1, Fix Compatibility Problems
  1566. 2018-11-20 Version: 1.40.1
  1567. 1, Add MNS STS Token Query API
  1568. 2, Add MNS Minimal Package
  1569. 2018-11-19 Version: 1.40.0
  1570. 1, Add field BargainSellerPrice and BargainSellerMobile
  1571. 2018-11-19 Version: 1.39.3
  1572. 1, Fixed some problems.
  1573. 2018-11-19 Version: 1.39.2
  1574. 1, Add query support for redeem
  1575. 2018-11-16 Version: 1.39.1
  1576. 1, update version
  1577. 2018-11-15 Version: 1.39.0
  1578. 1, ECS support ipv6Address
  1579. 2018-11-15 Version: 1.38.3
  1580. 1, update version
  1581. 2018-11-15 Version: 1.38.2
  1582. 1, update version.
  1583. 2018-11-15 Version: 1.38.1
  1584. 1, Remove FaceCompare, FaceRegist, FaceSearch api.
  1585. 2, Add DetectLogo api.
  1586. 3, CreateOfficeConversionTask support IdempotentToken.
  1587. 2018-11-14 Version: 1.38.0
  1588. 1, Better support for hybrid cluster.
  1589. 2018-11-13 Version: 1.37.0
  1590. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  1591. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  1592. 3, Add DynamicCheck properties for results of CheckDomain interface.
  1593. 2018-11-13 Version: 1.36.0
  1594. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  1595. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  1596. 3, Add DynamicCheck properties for results of CheckDomain interface.
  1597. 2018-11-10 Version: 1.35.4
  1598. 1, Update SetWaitingRoomConfig.
  1599. 2018-11-08 Version: 1.35.3
  1600. 1, Update Version.
  1601. 2018-11-07 Version: 1.35.2
  1602. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  1603. 2, Add API GetTaskStatus,StartTask,StopTask.
  1604. 3, Add API GetTaskParam,UpdateTaskParam.
  1605. 2018-11-02 Version: 1.35.1
  1606. 1, deviceName and productKey can be used instead of iotId.
  1607. 2, New productKey fields for queryauthentication output parameter.
  1608. 3, New deviceName fields for queryauthentication output parameter.
  1609. 2018-11-02 Version: 1.35.0
  1610. 1, first version
  1611. 2018-10-31 Version: 1.34.13
  1612. 1, update
  1613. 2018-10-31 Version: 1.34.12
  1614. 1, Update SetWaitingRoomConfig.
  1615. 2018-10-31 Version: 1.34.11
  1616. 1, Add SetWaitingRoomConfig.
  1617. 2018-10-31 Version: 1.34.10
  1618. 1, Add SetWaitingRoomConfig.
  1619. 2018-10-31 Version: 1.34.9
  1620. 1, The DescribeDBInstanceAttribute add replicaSets response value.
  1621. 2, The DescribeDBInstances support engine query.
  1622. 2018-10-30 Version: 1.34.8
  1623. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  1624. 2018-10-29 Version: 1.34.7
  1625. 1, Add ots trigger api interface.
  1626. 2018-10-29 Version: 1.34.6
  1627. 1, update
  1628. 2018-10-26 Version: 1.34.5
  1629. 1, Remove useless parameters QueryDomainAdminDivision api.
  1630. 2018-10-26 Version: 1.34.4
  1631. 1, Add apis for trademark domains.
  1632. 2, Retry publish SDK.
  1633. 2018-10-26 Version: 1.34.3
  1634. 1, Add apis for trademark domains.
  1635. 2018-10-26 Version: 1.34.2
  1636. 1, Return AuditConclusions in SubmitMaterials API.
  1637. 2018-10-25 Version: 1.34.1
  1638. 1, Add apis for trademark domains.
  1639. 2018-10-25 Version: 1.34.0
  1640. 1, Add apis for trademark domains.
  1641. 2018-10-25 Version: 1.33.0
  1642. 1, Add apis for trademark domains.
  1643. 2, Add QueryDomainAdminDivision api.
  1644. 2018-10-16 Version: 1.32.3
  1645. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1646. 2018-10-16 Version: 1.32.2
  1647. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1648. 2018-10-16 Version: 1.32.1
  1649. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1650. 2018-10-16 Version: 1.32.0
  1651. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  1652. 2, Add instance topology api DescribeInstanceTopology
  1653. 3, Add mount point in DescribeDisksFullStatus
  1654. 2018-10-12 Version: 1.31.8
  1655. 1, ModifyCenAttribute supports ProtectionLevel.
  1656. 2, New APIs: PublishRouteEntries/WithdrawPublishedRouteEntries/DescribePublishedRouteEntries
  1657. 2018-10-11 Version: 1.31.7
  1658. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  1659. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  1660. 3, Add a new api called UpdateImageInfos to update image information.
  1661. 2018-10-10 Version: 1.31.6
  1662. 1, add UpdateProject api, support update CU, ServiceRole
  1663. 2, PutProject not support edit
  1664. 3, CreateOfficeConversionTask api now supports FitToPagesTall, FitToPagesWide
  1665. 4, Remove paramater Engines, Indexers from project apis
  1666. 2018-10-09 Version: 1.31.5
  1667. 1, v1.0.0-->v1.0.1
  1668. 2, provider new region:beijing/shenzhen/zhangjiakou
  1669. 3, provider service for VPC user;
  1670. 2018-09-30 Version: 1.31.4
  1671. 1, This is an example of release-log.
  1672. 2, Please strictly follow this format to edit in English.
  1673. 3, Format:Number + , + Space + Description
  1674. 2018-09-29 Version: 1.31.3
  1675. 1, Sync cdn api.
  1676. 2018-09-29 Version: 1.31.2
  1677. 1, This is an example of release-log.
  1678. 2, Please strictly follow this format to edit in English.
  1679. 3, Format:Number + , + Space + Description
  1680. 2018-09-29 Version: 1.31.1
  1681. 1, This is an example of release-log.
  1682. 2, Please strictly follow this format to edit in English.
  1683. 3, Format:Number + , + Space + Description
  1684. 2018-09-27 Version: 1.31.0
  1685. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  1686. 2018-09-27 Version: 1.30.8
  1687. 1, modify getFaces Api
  1688. 2018-09-27 Version: 1.30.7
  1689. 1, modify getFaces Api
  1690. 2018-09-25 Version: 1.30.6
  1691. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  1692. 2018-09-25 Version: 1.30.5
  1693. 1, Fix bug in GetVerifyToken and SubmitMaterials API.
  1694. 2018-09-22 Version: 1.30.4
  1695. 1, update
  1696. 2018-09-20 Version: 1.30.3
  1697. 1, Fix publish failure for Java, Python and C# SDK.
  1698. 2018-09-20 Version: 1.30.2
  1699. 1, BssOpenApi first deploy.
  1700. 2018-09-20 Version: 1.30.1
  1701. 1, BssOpenApi first deploy.
  1702. 2018-09-19 Version: 1.30.0
  1703. 1, Add ens api, include SaveSingleTaskForDisassociatingEns, SaveSingleTaskForAssociatingEns, QueryLocalEnsAssociation and QueryEnsAssociation.
  1704. 2018-09-17 Version: 1.29.10
  1705. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  1706. 2018-09-17 Version: 1.29.9
  1707. 1, describeRegions modify.
  1708. 2018-09-17 Version: 1.29.8
  1709. 1, ModifySecurityIps support WhitelistNetworkType
  1710. 2018-09-16 Version: 1.29.7
  1711. 1, add CheckInstanceExist OpenApi.
  1712. 2018-09-14 Version: 1.29.6
  1713. 1, Add DedicatedHost Feature
  1714. 2018-09-13 Version: 1.29.5
  1715. 1, modify CheckDBInstance OpenApi
  1716. 2018-09-13 Version: 1.29.4
  1717. 1, Add CreateChannelToken.
  1718. 2018-09-11 Version: 1.29.3
  1719. 1, add CheckDBInstance OpenApi.
  1720. 2018-09-06 Version: 1.29.2
  1721. 1, fixed DescirbeRegions zoneId date type.
  1722. 2018-09-06 Version: 1.29.1
  1723. 1, AutoScaling support launchTemplate.
  1724. 2018-09-05 Version: 1.29.0
  1725. 1, Add new APIs with control policy for querying price
  1726. 2018-09-03 Version: 1.28.3
  1727. 1, voice identify interface
  1728. 2, client upload credentials interface
  1729. 2018-09-03 Version: 1.28.2
  1730. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  1731. 2018-08-31 Version: 1.28.1
  1732. 1, The CreateInstance supported VPC IpAddress.
  1733. 2018-08-28 Version: 1.28.0
  1734. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  1735. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  1736. 2018-08-28 Version: 1.27.6
  1737. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  1738. 2018-08-27 Version: 1.27.5
  1739. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  1740. 2018-08-27 Version: 1.27.4
  1741. 1, createInstance supported IpAddress param.
  1742. 2018-08-24 Version: 1.27.3
  1743. 1, Add api: DetectQRCode
  1744. 2018-08-23 Version: 1.27.2
  1745. 1, RunInstance add privateIpAddress.
  1746. 2018-08-23 Version: 1.27.1
  1747. 1, This is an example of release-log.
  1748. 2, Please strictly follow this format to edit in English.
  1749. 3, Format:Number + , + Space + Description
  1750. 2018-08-23 Version: 1.27.0
  1751. 1, Add CreateVpnGateway API.
  1752. 2, Add product Ipv6Translator.
  1753. 2018-08-22 Version: 1.26.2
  1754. 1, upgrade mongodb sdk.
  1755. 2018-08-22 Version: 1.26.0
  1756. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  1757. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  1758. 2018-08-21 Version: 1.25.8
  1759. 1, DeleteFaceSearchImageByIdRequest add field: srcUri(String).
  1760. 2, CreateFaceSetResponse add field: faces(Long).
  1761. 3, GetFaceSetResponse add field: faces(Long).
  1762. 4, Fix class Blurness in IndexFaceResponse.
  1763. 2018-08-21 Version: 1.25.7
  1764. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  1765. 2018-08-17 Version: 1.25.6
  1766. 1, Add a new api called DeleteImage to clear the image resource.
  1767. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  1768. 3, Add the field called OutputType to GetMezzanineInfo api response.
  1769. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  1770. 2018-08-17 Version: 1.25.5
  1771. 1, New apkpubkey fields for queryauthentication output parameter.
  1772. 2, New packagename fields for queryauthentication output parameter.
  1773. 3, New clientId fields for queryauthentication output parameter.
  1774. 2018-08-16 Version: 1.25.4
  1775. 1, ModifyScalingConfiguration add imageName.
  1776. 2, CreateScalingConfiguration add imageName.
  1777. 2018-08-15 Version: 1.25.3
  1778. 1, Fix bug in GetMaterials API.
  1779. 2, GetVerifyToken added a new param VerifyConfigs
  1780. 2018-08-15 Version: 1.25.2
  1781. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  1782. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  1783. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  1784. 2018-08-15 Version: 1.25.1
  1785. 1, Update ecs tag to 20 maximum
  1786. 2018-08-13 Version: 1.25.0
  1787. 1, New userinfo fields for registerface input parameter.
  1788. 2, New userinfo fields for updateface input parameter.
  1789. 3, New userinfo fields for queryface output parameter.
  1790. 2018-08-13 Version: 1.24.7
  1791. 1, Add cross domain support.
  1792. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  1793. 2018-08-08 Version: 1.24.6
  1794. 1, The official release 4.0.0
  1795. 2018-08-08 Version: 1.24.5
  1796. 1, Update FC apis.
  1797. 2018-08-08 Version: 1.24.4
  1798. 1, First release.
  1799. 2018-08-05 Version: 1.24.3
  1800. 1, Add Interface SubmitSubtitleJob
  1801. 2, Support convert ttml、stl subtitle to vtt
  1802. 2018-08-04 Version: 1.24.2
  1803. 1, Add a new api called SetAuditSecurityIp to set audit security ip.
  1804. 2, Add a new api called ListAuditSecurityIp to query audit security ip list.
  1805. 3, Add a new api called UploadMediaByURL to bulk upload media based on urls.
  1806. 4, Add the field called StorageLocation and TemplateGroupId to GetVideoInfo api response.
  1807. 5, Add the field called StorageLocation and TemplateGroupId to GetVideoInfos api response.
  1808. 6, Add the field called OutputType and Status to GetPlayInfo api response.
  1809. 2018-08-04 Version: 1.24.1
  1810. 1, CreateOfficeConversionTask add TgtFilePages field to specify the final uploaded page
  1811. 2018-08-03 Version: 1.24.0
  1812. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  1813. 2018-08-02 Version: 1.23.7
  1814. 1, Add parameter(GroupId) for CreateNotifyPolicy,GetNotifyPolicy,DeleteNotifyPolicy,ListNotifyPolicy.
  1815. 2018-08-01 Version: 1.23.6
  1816. 1, Add parameter(DryRun) for CreateAlarm and UpdateAlarm.
  1817. 2018-08-01 Version: 1.23.5
  1818. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1819. 2018-08-01 Version: 1.23.4
  1820. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  1821. 2018-07-26 Version: 1.23.3
  1822. 1, Add RemoveTerminals API.
  1823. 2018-07-26 Version: 1.23.2
  1824. 1, Add new API: SendDryRunSystemEvent,PutMetricAlarm,DescribeAlarmsForDimensions,DescribeAlarms.
  1825. 2018-07-26 Version: 1.23.1
  1826. 1, Add BatchGetJobMetricInfo API.
  1827. 2, Add BatchGetPluginConfigInfo API.
  1828. 3, Add GetJobTopology API.
  1829. 2018-07-13 Version: 1.23.0
  1830. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  1831. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  1832. 3, New APIs for Container applications: AddContainerApp, etc.
  1833. 2018-07-13 Version: 1.22.6
  1834. 1, Release 2016-06-20 TableStore Open API
  1835. 2018-07-11 Version: 1.22.5
  1836. 1, new function: Attach and Detach Rds instance of scalingGroup.
  1837. 2018-07-11 Version: 1.22.4
  1838. 1, Add DetectFaceAttributesService.
  1839. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  1840. 2018-07-10 Version: 1.22.3
  1841. 1, Add new API: EnableEventRule,DisableEventRule,DeleteEventTargets,DeleteEventRule,ListEventRules.
  1842. 2, Modify the structured parameters for API: PutEventTargets,PutEventRule,DescribeEventRule.
  1843. 2018-07-09 Version: 1.22.2
  1844. 1, Add new API: DescribeEventRule,ListEventTargetsByRule,PutEventRule,PutEventTargets.
  1845. 2, Add return value(Id) for NodeProcessCreate.
  1846. 2018-07-05 Version: 1.22.1
  1847. 1, new function, attach/detach load balancer of scalingGroup
  1848. 2018-07-05 Version: 1.22.0
  1849. 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.
  1850. 2018-06-28 Version: 1.21.1
  1851. 1, ScalingConfiguration support hostName and passwordInherit
  1852. 2, ScalingConfiguration support modify
  1853. 2018-06-27 Version: 1.21.0
  1854. 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.
  1855. 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
  1856. 2018-06-27 Version: 1.20.6
  1857. 1, DescribeNetworkInterfaces support query with vpcId
  1858. 2018-06-22 Version: 1.20.5
  1859. 1, rtc openapi
  1860. 2018-06-22 Version: 1.20.4
  1861. 1, Add new API: DeleteGroupDynamicRule,ListGroupDynamicRule,ApplyTemplate,PutGroupDynamicRule.
  1862. 2, Add parameter(AlertIds) for CreateTask and ModifyTask.
  1863. 2018-06-21 Version: 1.20.3
  1864. 1, This is add InstanceList.
  1865. 2018-06-21 Version: 1.20.2
  1866. 1, This is add InstanceList.
  1867. 2018-06-20 Version: 1.20.1
  1868. 1, Add InstanceList in product security information query.
  1869. 2018-06-20 Version: 1.20.0
  1870. 1, This is the first version of jarvis-public.
  1871. 2018-06-20 Version: 1.19.6
  1872. 1, Add InstanceList in product security information query.
  1873. 2018-06-14 Version: 1.19.5
  1874. 1, Add passwordInherit.
  1875. 2018-06-13 Version: 1.19.4
  1876. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  1877. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  1878. 3, Add return value fillMode DescribeCasterLayouts.
  1879. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  1880. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  1881. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  1882. 2018-06-13 Version: 1.19.3
  1883. 1, Add lifecycleHook.
  1884. 2018-06-08 Version: 1.19.2
  1885. 1, Add scdn interface,support scdn.
  1886. 2018-06-06 Version: 1.19.1
  1887. 1, Change the type of srcUid to int.
  1888. 2018-06-06 Version: 1.19.0
  1889. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  1890. 2018-05-30 Version: 1.18.1
  1891. 1, Add new API: DescribeContact and GetContacts.
  1892. 2, Add return value: alertRule for CreateTask.
  1893. 2018-05-29 Version: 1.18.0
  1894. 1, Add new interface DescribePhoneInfo to SDK.
  1895. 2018-05-28 Version: 1.17.0
  1896. 1, Add face 1-N,1-1 scan interface.
  1897. 2018-05-28 Version: 1.16.0
  1898. 1, ValidateSecurityGroup API
  1899. 2018-05-28 Version: 1.15.1
  1900. 1, add new openapi .
  1901. 2018-05-28 Version: 1.15.0
  1902. 1, This is an example of release-log.
  1903. 2, Please strictly follow this format to edit in English.
  1904. 3, Format:Number + , + Space + Description
  1905. 2018-05-26 Version: 1.14.2
  1906. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  1907. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  1908. 2018-05-25 Version: 1.14.1
  1909. 1, CreateAlarm,DeleteAlarm,UpdateAlarm,DisableAlarm,EnableAlarm,ListAlarm,ListAlarmHistory,ListContactGroup,PutMetricData,QueryMetricData,QueryMetricLast,QueryMetricList,QueryMetricTop remove useless parameter: callby_cms_owner.
  1910. 2, QueryMetricList remove useless parameter: Page.
  1911. 3, UpdateMyGroupMembers add parameter: Readers.
  1912. 4, StopTasks,StartTasks,DeleteTasks add return value: Data.
  1913. 5, ModifyTask remove invalid parameter: TaskType.
  1914. 6, CreateTask fix bug: TaskName maybe duplicated.
  1915. 7, Add lost return value for CreateTask.
  1916. 8, DescribeISPAreaCity add parameter: isp and city.
  1917. 9, remove api: PutMetricData.
  1918. 2018-05-23 Version: 1.14.0
  1919. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  1920. 2018-05-23 Version: 1.13.1
  1921. 1, Add Function Compute interface,support Function Compute.
  1922. 2018-05-23 Version: 1.13.0
  1923. 1, Update API version to 2018-04-12.
  1924. 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.
  1925. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  1926. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  1927. 2018-05-23 Version: 1.12.5
  1928. 1, This is an example of release-log.
  1929. 2, Please strictly follow this format to edit in English.
  1930. 3, Format:Number + , + Space + Description
  1931. 2018-05-22 Version: 1.12.4
  1932. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  1933. 2, modify DescribeDBInstanceAttribute.
  1934. 2018-05-17 Version: 1.12.3
  1935. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  1936. 2018-05-17 Version: 1.12.2
  1937. 1, the first version of private dns SDK
  1938. 2018-05-11 Version: 1.12.1
  1939. 1, Add Function Compute interface,support Function Compute.
  1940. 2018-05-09 Version: 1.12.0
  1941. 1, Add apis for domain broker.
  1942. 2018-05-08 Version: 1.11.3
  1943. 1, Add instance params.
  1944. 2018-05-08 Version: 1.11.2
  1945. 1, Remove DescribeAccountAttributes.
  1946. 2018-05-03 Version: 1.11.1
  1947. 1, Publish DRDS go sdk for the first time.
  1948. 2, Support for creation/modification/deletion/description operation for DRDS instances and databases.
  1949. 2018-05-02 Version: 1.11.0
  1950. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  1951. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  1952. 2018-04-28 Version: 1.10.3
  1953. 1, Add api: DescribeTasks、StartTasks、StopTasks、DeleteTasks、ModifyTask、CreateTask、DescribeTaskDetail、DescribeISPAreaCity.
  1954. 2018-04-28 Version: 1.10.2
  1955. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  1956. 2, Add dcdn config interface,Support set、delete、query domain config.
  1957. 2018-04-27 Version: 1.10.1
  1958. 1, release hsm open api
  1959. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  1960. 2018-04-26 Version: 1.10.0
  1961. 1, Add apis for domain group.
  1962. 3, Add fields for QueryDomainList.
  1963. 2018-04-25 Version: 1.9.6
  1964. 1, CreateMyGroups add parameter "options"
  1965. 2018-04-24 Version: 1.9.5
  1966. 1, Add api:UpdateMyGroupMembers
  1967. 2018-04-24 Version: 1.9.4
  1968. 1, add interface FetchPhotos
  1969. 2, add xflush log param unixTimestamp
  1970. 2018-04-23 Version: 1.9.3
  1971. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  1972. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  1973. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  1974. 2018-04-23 Version: 1.9.2
  1975. 1, Add notificationConfiguration.
  1976. 2, Add standby status.
  1977. 2018-04-20 Version: 1.9.1
  1978. 1, Interface DescribeAlarmHistory/ListAlarmHistory Add return value instanceName.
  1979. 2018-04-17 Version: 1.8.3
  1980. 1, EditPhotos add input param TakenAt
  1981. 2, add FetchMomentPhotos
  1982. 3, ListAlbums add return param Remark
  1983. 2018-04-16 Version: 1.8.2
  1984. 1, Release go sdk
  1985. 2018-04-11 Version: 1.8.1
  1986. 1, GetLibrary/FetchLibraries add return ctime
  1987. 2, Editphotos add input param takenAt
  1988. 2018-04-10 Version: 1.8.0
  1989. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  1990. 2018-04-10 Version: 1.7.3
  1991. 1, publish Project API.
  1992. 2, publish Service API.
  1993. 3, publish Service order API.
  1994. 4, publish Credential API.
  1995. 5, publish CAS API.
  1996. 2018-04-09 Version: 1.7.2
  1997. 1, Add api: QueryMetricData, QueryMetricTop, TaskConfigCreate, TaskConfigDelete, TaskConfigEnable, TaskConfigList, TaskConfigModify, TaskConfigUnhealthy
  1998. 2, Remove api: PutSystemEvent
  1999. 2018-04-08 Version: 1.7.0
  2000. 1, Add voice asynchronous scan interface.
  2001. 2018-04-04 Version: 1.6.1
  2002. 1, add tablestore trigger pop api and sample code
  2003. 2018-04-04 Version: 1.6.0
  2004. 1, Add APIs for domain transfer in and transfer out.
  2005. 2, Add APIs for poll and acknowledge domain task.
  2006. 2018-04-03 Version: 1.5.0
  2007. 1, Add APIs for domain transfer in and transfer out.
  2008. 2, Add APIs for poll and acknowledge domain task.
  2009. 3, Add API for query domain group list.
  2010. 2018-03-30 Version: 1.4.11
  2011. 1, API QueryCustomerSaleInfo arguments update.
  2012. 2018-03-29 Version: 1.4.10
  2013. 1, edit FetchLibraries return param format
  2014. 2018-03-29 Version: 1.4.9
  2015. 1, Add APIs: CreateAlias, UpdateAlias, DeleteAlias, ListAliases, ListAliasesByKeyId.
  2016. 2, Add APIs: GetParametersForImport, ImportKeyMaterial, DeleteKeyMaterial.
  2017. 3, Update KeyMetadata for CreateKey and DescribeKey.
  2018. 2018-03-29 Version: 1.4.8
  2019. 1, Cloud Enterprise Network SDK initial release.
  2020. 2018-03-29 Version: 1.4.7
  2021. 1, Cloud Enterprise Network SDK initial release.
  2022. 2018-03-27 Version: 1.4.6
  2023. 1, Rename QueryCustomerSaleInfo to RegionName.
  2024. 2018-03-27 Version: 1.4.5
  2025. 1, publish Project API.
  2026. 2, publish Service API.
  2027. 3, publish Service order API.
  2028. 4, publish Credential API.
  2029. 5, publish CAS API.
  2030. 2018-03-27 Version: 1.4.4
  2031. 1, add interface FetchLibraries
  2032. 2018-03-23 Version: 1.4.3
  2033. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  2034. 2018-03-23 Version: 1.4.2
  2035. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  2036. 2018-03-23 Version: 1.4.1
  2037. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  2038. 2018-03-23 Version: 1.4.0
  2039. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  2040. 2, Remove 'QueryPushDetail' Api.
  2041. 2018-03-20 Version: 1.2.7
  2042. 1, add FetchAlbumTagPhotos
  2043. 2, CreatePhoto add optional param TakenAt
  2044. 2018-03-16 Version: 1.2.6
  2045. 1, Update GetQuotaInstance API.
  2046. 2018-03-16 Version: 1.2.5
  2047. 1, Synchronize to the latest api list
  2048. 2018-03-15 Version: 1.2.4
  2049. 1, Add QueryCustomerSaleInfo API.
  2050. 2018-03-09 Version:1.2.3
  2051. 1, fix bug:modify error message when roleArn is wrong
  2052. 2018-03-13 Version: 1.2.2
  2053. 1, API GetQuotaHistoryInfo fix field error.
  2054. 2018-03-09 Version: 1.2.1
  2055. 1, complete api comments
  2056. 2018-03-09 Version: 1.2.0
  2057. 1, improve endpoint resolver
  2058. 2018-03-07 Version: 1.1.7
  2059. 1, add GetAlbumsByNames
  2060. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2061. 3, add return IdStr for string
  2062. 2018-03-06 Version: 1.1.6
  2063. 1, add GetAlbumsByNames
  2064. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2065. 3, add return IdStr for string
  2066. 2018-03-06 Version: 1.1.5
  2067. 1, add GetAlbumsByNames
  2068. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2069. 3, add return IdStr for string
  2070. 2018-02-28 Version: 1.1.3
  2071. 1, Add query resource inventory API.
  2072. 2, Add query topology API.
  2073. 2018-02-28 Version: 1.1.2
  2074. 1, Add query topology API.
  2075. 2018-02-27 Version: 1.1.1
  2076. 1, Add Action API.
  2077. 2018-02-27 Version: 1.1.0
  2078. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  2079. 2018-02-12 Version: 1.0.0
  2080. 1. Optimize the nested structs in all response, this will bring the following incompatibilities:
  2081. * Api response struct changes, conclude:
  2082. * ecs.DescribeNetworkInterfaces
  2083. * ecs.DescribeDeploymentSetTopology
  2084. * rds.DescribeDBInstanceIPArrayList
  2085. * rds.DescribeDBInstancesAsCsv
  2086. * slb.DescribeLoadBalancersRelatedEcs
  2087. * vpc.DescribeVpcAttribute
  2088. * vpc.DescribeVirtualBorderRouters
  2089. * mts.RegisterMediaDetailPerson
  2090. * mts.QueryEditingJobList
  2091. * mts.SubmitEditingJobs
  2092. * mts.QueryMediaListByURL
  2093. * mts.ListJob
  2094. * mts.QueryMediaList
  2095. * mts.QueryJobList
  2096. * mts.SubmitJobs
  2097. * ehpc.DescribeCluster
  2098. * aegis.GetEntityList
  2099. * aegis.DescribeStratety
  2100. 2018-02-09 Version: 0.12.0
  2101. 1, Aliyun E-HPC service SDK, initial version.
  2102. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  2103. 2018-02-07 Version: 0.11.4
  2104. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  2105. 2018-02-06 Version: 0.11.3
  2106. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  2107. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  2108. 2018-02-02 Version: 0.11.2
  2109. 1, this version is new of captcha management and nvc analyze
  2110. 2018-01-31 Version: 0.11.1
  2111. 1. Fixed bugs that could cause signature errors while a ROA request contains lots of special symbols
  2112. 2. Optimization of the serverError.Error() interface
  2113. 3. When there is an error of "SignatureDoseNotMatch", it is now possible to tell user if the AccessKeySecret is wrong or caused by a sdk bug
  2114. 2018-01-29 Version: 0.11.0
  2115. 1, Support dep
  2116. 2, Add 4 usage of credentials for each services
  2117. 3, Standard interface naming
  2118. 2018-01-29 Version: 0.10.0
  2119. 1, Add 'notificationChannel' parameter to Push API
  2120. 2018-01-24 Version: 0.9.3
  2121. 1, Fixed a problem that the ActiveAlert interface name is not standard
  2122. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  2123. 2018-01-24 Version: 0.9.2
  2124. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  2125. 2018-01-24 Version: 0.9.1
  2126. 1. improve: asyncWithChan avoid panic of "write on closed channel"
  2127. 2. improve: asyncWithChan support select case usage
  2128. 3. bug fix: repeated signature nonce while retry
  2129. 4. bug fix: calling request.GetUrl() ahead of client.DoAction() will cause problems
  2130. 2018-01-24 Version: 0.9.0
  2131. 1, Publish domain config interface, allow users to create or delete a domain protect config under DDoS Pro.
  2132. 2, Publish domain config query interface, allow users to query a list of domain config or a single domain config.
  2133. 3, Publish domain proxy modify interface, allow users to set domain transmit proxy.
  2134. 4, Publish domain transmit rule config interface, including modify and delete type.
  2135. 5, Publish domain black and white list config interface.
  2136. 6, Publish domain cname auto status config interface.
  2137. 7, Publish domain certificate upload interface.
  2138. 8, Publish domain qps graph query interface.
  2139. 9, Publish ip attack events and traffic graph query interface.
  2140. 2018-01-23 Version: 0.8.3
  2141. 1, Tesla Dam API release.
  2142. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  2143. 2018-01-18 Version: 0.8.2
  2144. 1. Set default timeout to 10s
  2145. 2. Make integration tests more stable
  2146. 3. Fix the problem of LocationResolver in concurrency
  2147. 4. Modifying the naming specification
  2148. 2018-01-18 Version: 0.8.1
  2149. 1, Update ECS go SDK to catch up with other langs.
  2150. 2, DescribeImageSupportInstanceTypes add new param Filter and ActionType
  2151. 2018-01-16 Version: 0.8.0
  2152. 1, Add TriggerMode param in AddMediaWorkflow.
  2153. 2, Add TriggerMode param in QueryMediaWorkflowList/SearchMediaWorkflow/UpdateMediaWorkflow.
  2154. 3, Add interface UpdateMediaWorkflowTriggerMode.
  2155. 2018-01-11 Version: 0.7.8
  2156. 1. complete partly missed service codes
  2157. 2. add default http method for roa requests
  2158. 2018-01-11 Version: 0.7.7
  2159. 1, Bug fix: Replenish user interface
  2160. 2018-01-11 Version: 0.7.6
  2161. 1, replace photo tag 2000 upgrade to 5000
  2162. 2, add TrashQuota
  2163. 2018-01-11 Version: 0.7.5
  2164. 1, Make the json.Unmarshal more robust
  2165. 2018-01-09 Version: 0.7.4
  2166. 1, Add integration tests
  2167. 2018-01-04 Version: 0.7.3
  2168. 1, Remove get entity info API, replaced by get entity instance.
  2169. 2018-01-03 Version: 0.7.2
  2170. 1, Bug fix: fix the ecs unmarshal bug
  2171. 2018-01-03 Version: 0.7.1
  2172. 1, Bug fix: fix the unmarshal bug
  2173. 2017-12-29 Version: 0.7.0
  2174. 1, First release for Domain-intl.
  2175. 2, Add interfaces for domain name registration and management.
  2176. 2017-12-29 Version: 0.6.8
  2177. 1, Allow the setting of AcceptFormat in the Request.
  2178. 2017-12-26 Version: 0.6.5
  2179. 1, Add video AI service interface.
  2180. 2017-12-26 Version: 0.6.4
  2181. 1, Add video AI service interface.
  2182. 2017-12-20 Version: 0.6.3
  2183. 1, support tile dataset
  2184. 2, use dimension value type to replace isDrillDown
  2185. 2017-12-20 Version: 0.6.2
  2186. 1, support tile dataset
  2187. 2, use dimension value type to replace isDrillDown
  2188. 2017-12-19 Version: 0.6.1
  2189. 1, InactivatePhotos support customer inactiveTime
  2190. 2, support customer tags
  2191. 3, ListPhotoTags、ListTags add param lang
  2192. 2017-12-18 Version: 0.6.0
  2193. 1, Add Scdn API.
  2194. 2017-12-18 Version: 0.5.7
  2195. 1, This is the first release of CCC Open API.
  2196. 2017-12-15 Version: 0.5.6
  2197. 1, Update SetReqAuthConfig.
  2198. 2, Add Scdn API.
  2199. 2017-12-15 Version: 0.5.5
  2200. 1, fix test cases
  2201. 2017-12-15 Version: 0.5.4
  2202. 1, Add scdn API.
  2203. 2, Update SetReqAuthConfig.
  2204. 2017-12-12 Version: 0.5.1
  2205. 1, remove unused fmt.print
  2206. 2017-12-08 Version: 0.5.0
  2207. 1, Add ARMSQueryDataSet, WhereInDimQuery interface.
  2208. 2017-12-08 Version: 0.4.0
  2209. 1, support endpoint.xml resolver
  2210. 2017-12-08 Version: 0.3.1
  2211. 1, Add ARMSQueryDataSet, WhereInDimQuery interface.
  2212. 2017-12-01 Version: 0.2.2
  2213. 1, Fix ineffassign problems
  2214. 2017-12-01 Version: 0.2.1
  2215. 1, Fix capitalizes the first letter in each word of header
  2216. 2017-11-28 Version: 0.2.0
  2217. 1, AK2.0 & StsToken
  2218. 2017-11-27 Version: 0.1.3
  2219. 1, format ft code with gofmt
  2220. 2017-11-27 Version: 0.1.2
  2221. 1, format code with gofmt
  2222. 2017-11-27 Version: 0.1.1
  2223. 1, add glide files