ChangeLog.txt 79 KB

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