ChangeLog.txt 80 KB

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