ChangeLog.txt 82 KB

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