ChangeLog.txt 71 KB

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