ChangeLog.txt 76 KB

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