CHANGELOG 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054
  1. 2020-09-01 Version: 1.36.627
  2. - Add Smart Verify API.
  3. 2020-09-01 Version: 1.36.626
  4. - Support region route.
  5. 2020-09-01 Version: 1.36.625
  6. - Support region route.
  7. 2020-09-01 Version: 1.36.624
  8. - Update Parameter.
  9. 2020-08-31 Version: 1.36.623
  10. - Support PersonList.
  11. 2020-08-31 Version: 1.36.622
  12. - GetPersonList Support LastShotTime.
  13. 2020-08-31 Version: 1.36.621
  14. - Support config resource recorder deliverychannel rule.
  15. 2020-08-31 Version: 1.36.620
  16. - Supported AAA for BBB.
  17. - Fixed bugs for CCC.
  18. 2020-08-31 Version: 1.36.619
  19. - Support config resource recorder deliverychannel rule.
  20. 2020-08-31 Version: 1.36.618
  21. - Supported AAA for BBB.
  22. - Fixed bugs for CCC.
  23. 2020-08-31 Version: 1.36.617
  24. - Supported AAA for BBB.
  25. - Fixed bugs for CCC.
  26. 2020-08-31 Version: 1.36.616
  27. - Add list person visit count API.
  28. 2020-08-28 Version: 1.36.615
  29. - Add name.
  30. 2020-08-28 Version: 1.36.614
  31. - Support multiple security group for one ehpc cluster.
  32. - Update GWS apis.
  33. 2020-08-28 Version: 1.36.613
  34. - Supported Add GetAlgorithmHistoryResult.
  35. 2020-08-27 Version: 1.36.612
  36. - Update parameter.
  37. 2020-08-25 Version: 1.36.611
  38. - Release ExtractPedestrianFeatureAttribute and BlurFace.
  39. 2020-08-25 Version: 1.36.610
  40. - Add list person visit count API.
  41. 2020-08-25 Version: 1.36.609
  42. - Video Content analytics template introduced to this SDK.
  43. 2020-08-25 Version: 1.36.608
  44. - Change DeviceSerialNumber to DeviceSn in API RegisterDevice.
  45. 2020-08-24 Version: 1.36.607
  46. - Change DeviceSerialNumber to DeviceSn in API RegisterDevice.
  47. 2020-08-24 Version: 1.36.606
  48. - Add project api.
  49. 2020-08-24 Version: 1.36.605
  50. - Edit QueryMetricByPage api.
  51. 2020-08-21 Version: 1.36.604
  52. - Add QueryMetricByPage api.
  53. - Add GetAppApiByPage api.
  54. 2020-08-20 Version: 1.36.603
  55. - PullActionData add parameters.
  56. - DescribeCursor add parameter.
  57. 2020-08-20 Version: 1.36.602
  58. - Add list person visit count API.
  59. 2020-08-20 Version: 1.36.601
  60. - Added Global Distribute Cache OpenAPIs.
  61. - Added direct connection OpenAPIs.
  62. 2020-08-19 Version: 1.36.600
  63. - Add DescribeLiveDomainCertificateInfo.
  64. 2020-08-19 Version: 1.36.599
  65. - Generated 2020-08-01 for `SmartHosting`.
  66. 2020-08-18 Version: 1.36.598
  67. - Support for describe hbaseue multi-zone model.
  68. 2020-08-18 Version: 1.36.597
  69. - Support session query operations.
  70. 2020-08-18 Version: 1.36.596
  71. - Public beta version.
  72. - Add Api Overseas.
  73. 2020-08-17 Version: 1.36.595
  74. - Add list event algorithm details.
  75. 2020-08-17 Version: 1.36.594
  76. - Add list event algorithm details.
  77. 2020-08-17 Version: 1.36.593
  78. - Add GetTrace api.
  79. - Edit Aler api.
  80. 2020-08-17 Version: 1.36.592
  81. - Add pipeline status api.
  82. 2020-08-17 Version: 1.36.591
  83. - Add list event algorithm details.
  84. 2020-08-17 Version: 1.36.590
  85. - Add list event algorithm details.
  86. 2020-08-17 Version: 1.36.589
  87. - Fix create project task.
  88. 2020-08-17 Version: 1.36.588
  89. - Public beta version.
  90. - Add Api Overseas.
  91. 2020-08-17 Version: 1.36.587
  92. - Add new tags for corp group.
  93. 2020-08-17 Version: 1.36.586
  94. - Add new tags for corp group.
  95. 2020-08-16 Version: 1.36.585
  96. - Add new tags for corp group.
  97. 2020-08-14 Version: 1.36.584
  98. - Add sdk.
  99. 2020-08-14 Version: 1.36.583
  100. - Supported Api DetectIPCPedestrian.
  101. 2020-08-14 Version: 1.36.582
  102. - Supported CheckCloudResourceAuthorized API.
  103. 2020-08-14 Version: 1.36.581
  104. - Add project Api.
  105. 2020-08-13 Version: 1.36.580
  106. - Add PipCode and CommodityCode for QueryInstanceBill, QueryBillOverview, QueryBill, QuerySettleBill, QueryAccountBill, QuerySplitItemBill.
  107. - Support BillOwnerId filter for QueryInstanceBill, QueryBillOverview, QueryBill, QuerySettleBill, QueryAccountBill, QuerySplitItemBill.
  108. 2020-08-13 Version: 1.36.579
  109. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  110. 2020-08-13 Version: 1.36.578
  111. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  112. 2020-08-13 Version: 1.36.577
  113. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  114. 2020-08-13 Version: 1.36.576
  115. - GetImageTranslate add column orc.
  116. 2020-08-13 Version: 1.36.575
  117. - DescribePrice update amount parameters type, float to string.
  118. - Add ResourceGroupId parameter to support resource group.
  119. 2020-08-13 Version: 1.36.574
  120. - Release SegmentHalfBody.
  121. 2020-08-13 Version: 1.36.573
  122. - Release SegmentHalfBody.
  123. 2020-08-12 Version: 1.36.572
  124. - Support corp group api.
  125. 2020-08-12 Version: 1.36.571
  126. - Add pipeline status api.
  127. 2020-08-12 Version: 1.36.570
  128. - Generated 2015-01-01 for `R-kvstore`.
  129. - SyncDtsStatus API add TaskId parameter.
  130. 2020-08-11 Version: 1.36.569
  131. - Generated 2020-05-18 for `dataworks-public`.
  132. 2020-08-11 Version: 1.36.568
  133. - Update DescribeRefreshTask.
  134. 2020-08-11 Version: 1.36.567
  135. - Add ResourceGroup in resource snapshot.
  136. 2020-08-10 Version: 1.36.566
  137. - Generated 2020-05-18 for `dataworks-public`.
  138. 2020-08-10 Version: 1.36.565
  139. - Add source id for list face detail.
  140. 2020-08-10 Version: 1.36.564
  141. - Add extend value for list event detail.
  142. 2020-08-09 Version: 1.36.563
  143. - Add extend value for list event detail.
  144. 2020-08-08 Version: 1.36.562
  145. - Update SearchImage.
  146. 2020-08-07 Version: 1.36.561
  147. - GetTitleDiagnose GetTitleGenerate GetImageTranslate supported.
  148. 2020-08-07 Version: 1.36.560
  149. - Generated 2020-05-18 for `dataworks-public`.
  150. 2020-08-07 Version: 1.36.559
  151. - GetTitleDiagnose GetTitleGenerate GetImageTranslate supported.
  152. 2020-08-07 Version: 1.36.558
  153. - Add FindServiceList and GetService qps.
  154. 2020-08-06 Version: 1.36.557
  155. - Add Smart Cloudauth API.
  156. 2020-08-04 Version: 1.36.556
  157. - Update RecognizeTable.
  158. 2020-08-04 Version: 1.36.555
  159. - Add Image Url parameter for invoke motor algorithm.
  160. 2020-08-04 Version: 1.36.554
  161. - Add source picture url for Monitor.
  162. 2020-08-03 Version: 1.36.553
  163. - Add source picture url for Monitor.
  164. 2020-08-03 Version: 1.36.552
  165. - Fix Some API Response Define.
  166. 2020-08-03 Version: 1.36.551
  167. - Add source picture url for Monitor.
  168. 2020-08-03 Version: 1.36.550
  169. - Add Voice Synchronous Scan API.
  170. 2020-08-03 Version: 1.36.549
  171. - Add ExtractPedestrianFeatureAttribute.
  172. 2020-07-31 Version: 1.36.548
  173. - Update DetectCelebrity.
  174. 2020-07-31 Version: 1.36.547
  175. - Edit GetStack api.
  176. 2020-07-30 Version: 1.36.546
  177. - Add Smart Cloudauth API.
  178. 2020-07-30 Version: 1.36.545
  179. - Supported ChatApp for SDK.
  180. 2020-07-30 Version: 1.36.544
  181. - Generated 2020-06-29 for `alinlp`.
  182. 2020-07-29 Version: 1.36.543
  183. - Add CreateGetDBListFromAgentTask.
  184. - Add GetDBListFromAgent.
  185. 2020-07-29 Version: 1.36.542
  186. - API GetTaskStatus return task detail.
  187. 2020-07-29 Version: 1.36.541
  188. - Generated 2020-05-18 for `dataworks-public`.
  189. 2020-07-27 Version: 1.36.540
  190. - Supported CheckCloudResourceAuthorized API.
  191. 2020-07-27 Version: 1.36.539
  192. - Add HSF apis.
  193. 2020-07-24 Version: 1.36.538
  194. - Edit ListTraceApp api with add tags.
  195. - Edit SearchTraceAppByName api with add tags.
  196. - Edut SearchTraceAppByPage api with add tags.
  197. 2020-07-24 Version: 1.36.537
  198. - Add DescribeBackupTasks.
  199. 2020-07-24 Version: 1.36.536
  200. - Support GetImageCroppingSuggestions API.
  201. - Add Remarks to face group related APIs.
  202. - Add Model parameter to blind watermark related APIs.
  203. 2020-07-24 Version: 1.36.535
  204. - First build.
  205. 2020-07-23 Version: 1.36.534
  206. - Supported CloudGame.
  207. 2020-07-23 Version: 1.36.533
  208. - Supported AAA for BBB.
  209. - Fixed bugs for CCC.
  210. 2020-07-23 Version: 1.36.532
  211. - Add AddSecretBlacklist and DeleteSecretBlacklist.
  212. - Suppoort ASR.
  213. 2020-07-23 Version: 1.36.531
  214. - Add GenerateAndExportDataKey, ExportDataKey, ReEncrypt api.
  215. 2020-07-23 Version: 1.36.530
  216. - Add GenerateAndExportDataKey, ExportDataKey, ReEncrypt api.
  217. 2020-07-22 Version: 1.36.529
  218. - Generated 2015-01-01 for `R-kvstore`.
  219. - Add SyncDtsStatus API.
  220. 2020-07-22 Version: 1.36.528
  221. - Add snapshot settings.
  222. - Add ElasticTask.
  223. 2020-07-22 Version: 1.36.527
  224. - Add SourceId for SearchFace.
  225. 2020-07-22 Version: 1.36.526
  226. - Add source id for file uploader.
  227. 2020-07-22 Version: 1.36.525
  228. - Add source id for file uploader.
  229. 2020-07-21 Version: 1.36.524
  230. - Support Tag API.
  231. 2020-07-21 Version: 1.36.523
  232. - Add algorithm type for ListPerson.
  233. 2020-07-17 Version: 1.36.522
  234. - Add DescribeRegions.
  235. - Modify DescribeFullBackupList.
  236. - Modify DescribeBackupPlanList.
  237. - Modify DescribeRestoreRangeInfo.
  238. 2020-07-17 Version: 1.36.521
  239. - Add DescribeDBClusterAuditLogCollector.
  240. - Add DescribeBackupPolicy.
  241. - Support polardb for pgsql and oracle customize endpoints.
  242. 2020-07-17 Version: 1.36.520
  243. - Public beta version.
  244. - Add Api Overseas.
  245. 2020-07-15 Version: 1.36.519
  246. - Edit ListTraceApp api.
  247. - Edit SearchTraceAppByName api.
  248. - Edut SearchTraceAppByPage api.
  249. 2020-07-15 Version: 1.36.518
  250. - Modify ConfigureBackupPlan.
  251. - Modify DescribeFullBackupList.
  252. - Modify DescribeBackupPlanList.
  253. - Modify DescribeRestoreRangeInfo.
  254. 2020-07-15 Version: 1.36.517
  255. - Support ModifyImageAttribute by LaunchPermission.
  256. - Support ImageFamily.
  257. 2020-07-14 Version: 1.36.516
  258. - Add ListEventAlgorithmResult API.
  259. 2020-07-14 Version: 1.36.515
  260. - Add ListEventAlgorithmResult API.
  261. 2020-07-14 Version: 1.36.514
  262. - Add ListBodyAlgorithmResult API.
  263. 2020-07-14 Version: 1.36.513
  264. - Add ListBodyAlgorithmResult API.
  265. 2020-07-14 Version: 1.36.512
  266. - Add ListBodyAlgorithmResult API.
  267. 2020-07-10 Version: 1.36.511
  268. - Add ListBodyAlgorithmResult API.
  269. 2020-07-10 Version: 1.36.510
  270. - Add ListBodyAlgorithmResult API.
  271. 2020-07-08 Version: 1.36.509
  272. - Remove GetFootwearPosition PullTakeShoesEvent PullTryOnShoesEvent.
  273. - Add GetFootwearEvent.
  274. - Please ignore the pd s pot.
  275. 2020-07-08 Version: 1.36.508
  276. - Generated 2020-05-18 for `dataworks-public`.
  277. 2020-07-08 Version: 1.36.507
  278. - Add video compose api.
  279. 2020-07-08 Version: 1.36.506
  280. - Add video summarization related API.
  281. 2020-07-07 Version: 1.36.505
  282. - Add video summarization related API.
  283. 2020-07-07 Version: 1.36.504
  284. - Generated 2020-05-18 for `dataworks-public`.
  285. 2020-07-03 Version: 1.36.503
  286. - Supported UpdateUserBucketConfig.
  287. 2020-07-03 Version: 1.36.502
  288. - Generated 2017-05-25 for `Dypnsapi`.
  289. 2020-07-03 Version: 1.36.501
  290. - Generated 2017-05-25 for `Dypnsapi`.
  291. 2020-07-03 Version: 1.36.500
  292. - Generated 2018-10-12 for `Airec`.
  293. 2020-07-03 Version: 1.36.499
  294. - Add ListResourceExecutionStatus API.
  295. - ListExecutions API supports filtering by resource id.
  296. - TriggerExecution API supports TimerTrigger.
  297. 2020-07-03 Version: 1.36.498
  298. - Supports tag management APIs.
  299. 2020-07-03 Version: 1.36.497
  300. - Add PicUrl parameter for picture related API.
  301. 2020-07-03 Version: 1.36.496
  302. - Add PicUrl parameter for picture related API.
  303. 2020-07-02 Version: 1.36.495
  304. - Generated 2020-05-18 for `dataworks-public`.
  305. 2020-07-02 Version: 1.36.494
  306. - Add GetFootwearPosition.
  307. - Add PullTakeShoesEvent.
  308. - Add PullTryOnShoesEvent.
  309. 2020-07-02 Version: 1.36.493
  310. - Add GetFootwearPosition.
  311. - Add PullTakeShoesEvent.
  312. - Add PullTryOnShoesEvent.
  313. 2020-07-02 Version: 1.36.492
  314. - Update endpoint.
  315. 2020-07-02 Version: 1.36.491
  316. - CreateShardingDBInstance add ProtocolType, to support DynamoDB.
  317. - DescribeDBInstances add return ResourceGroupId.
  318. 2020-07-01 Version: 1.36.490
  319. - Add ListFace-MotorAlgorithmResults API.
  320. 2020-07-01 Version: 1.36.489
  321. - Add API for GetMetadataAmount.
  322. 2020-07-01 Version: 1.36.488
  323. - Support Saf For ExecuteExtendService.
  324. 2020-06-30 Version: 1.36.487
  325. - Add ListMetrics API.
  326. 2020-06-29 Version: 1.36.486
  327. - Supported Rotate.
  328. 2020-06-29 Version: 1.36.485
  329. - Supported Rotate.
  330. 2020-06-29 Version: 1.36.484
  331. - Add Model Parameter For InitFaceVerify API.
  332. 2020-06-26 Version: 1.36.483
  333. - Supported Api EraseLogoInVideo.
  334. 2020-06-24 Version: 1.36.482
  335. - Add DescribeBackupPlanBilling.
  336. - Modify ConfigureBackupPlan.
  337. - Modify CreateBackupPlan.
  338. - Modify CreateRestoreTask.
  339. - Modify DescribeRestoreTaskList.
  340. - Modify DescribeBackupPlanList.
  341. - Modify ModifyBackupSourceEndpoint.
  342. - Modify ModifyBackupStrategy.
  343. 2020-06-23 Version: 1.36.481
  344. - Add face quality detection API.
  345. 2020-06-23 Version: 1.36.480
  346. - Add face quality detection API.
  347. 2020-06-23 Version: 1.36.479
  348. - Add face quality detection API.
  349. 2020-06-23 Version: 1.36.478
  350. - Add face quality detection API.
  351. 2020-06-23 Version: 1.36.477
  352. - Generated 2015-12-15 for `CS`.
  353. 2020-06-23 Version: 1.36.476
  354. - Support SubmitOperationAuditInfo for Support self-service submission of approval information.
  355. - Support SubmitOperationCredentials for self-service submission of certificate information.
  356. - Support CancelOperationAudit for cancel audit.
  357. - Support GetOperationOssUploadPolic for get oss policy.
  358. - Support QueryOperationAuditInfoLis for query audit list.
  359. - Support QueryOperationAuditInfoDetail for query audit details.
  360. 2020-06-23 Version: 1.36.475
  361. - Generated 2018-08-28 for `Tag`.
  362. 2020-06-23 Version: 1.36.474
  363. - Public beta version.
  364. - Add Api Overseas.
  365. 2020-06-23 Version: 1.36.473
  366. - Public beta version.
  367. - Add Api Overseas.
  368. 2020-06-23 Version: 1.36.472
  369. - Public beta version.
  370. - Add Api Overseas.
  371. 2020-06-22 Version: 1.36.471
  372. - Add support cn-shenzhen region.
  373. 2020-06-22 Version: 1.36.470
  374. - Add GetMultipleTrace api.
  375. - Add SearchTracesByPage api.
  376. - Add GetStack api.
  377. 2020-06-21 Version: 1.36.469
  378. - Add persons API.
  379. 2020-06-18 Version: 1.36.468
  380. - Supported TransformDBInstancePayType API.
  381. 2020-06-18 Version: 1.36.467
  382. - Add GetAuthToken OpenAPI.
  383. 2020-06-18 Version: 1.36.466
  384. - Public beta version.
  385. - Add Api Overseas.
  386. 2020-06-17 Version: 1.36.465
  387. - Supported sync create eni and assign private ip.
  388. 2020-06-17 Version: 1.36.464
  389. - Public beta version.
  390. - Add Api Overseas.
  391. 2020-06-16 Version: 1.36.463
  392. - Support TargetImageId in ApplyNodes Interface.
  393. 2020-06-16 Version: 1.36.462
  394. - Update monitor related API.
  395. 2020-06-15 Version: 1.36.461
  396. - Generated 2019-09-10 for `waf-openapi`.
  397. 2020-06-15 Version: 1.36.460
  398. - Generated 2019-09-10 for `waf-openapi`.
  399. 2020-06-12 Version: 1.36.459
  400. - Add CreateProduct API ProductSecret in Response.
  401. - Add AMQP APIs, including CreateSubscribeRelation, CreateConsumerGroup, etc.
  402. - Add LinkIoTEdge CreateSceneRule API.
  403. - Add LinkIoTEdge DeleteSceneRule API.
  404. - Add LinkIoTEdge UpdateSceneRule API.
  405. - Add LinkIoTEdge GetSceneRule API.
  406. - Add LinkIoTEdge QuerySceneRule API.
  407. - Add LinkIoTEdge EnableSceneRule API.
  408. - Add LinkIoTEdge DisableSceneRule API.
  409. - Add LinkIoTEdge TriggerSceneRule API.
  410. - Add LinkIoTEdge QuerySummarySceneRuleLog API.
  411. - Add LinkIoTEdge QueryDetailSceneRuleLog API.
  412. - Add LinkIoTEdge BindSceneRuleToEdgeInstance API.
  413. - Add LinkIoTEdge UnbindSceneRuleFromEdgeInstance API.
  414. - Add LinkIoTEdge QueryEdgeInstanceSceneRule API.
  415. 2020-06-12 Version: 1.36.458
  416. - Update monitor related API.
  417. 2020-06-12 Version: 1.36.457
  418. - Add support for enable hbaseue extra module like lindorm-search or lindorm-sql.
  419. 2020-06-11 Version: 1.36.456
  420. - Support ServicePeriodUnit in QueryInstanceBill.
  421. 2020-06-10 Version: 1.36.455
  422. - Public beta version.
  423. - Add Api Overseas.
  424. 2020-06-10 Version: 1.36.454
  425. - Public beta version.
  426. - Add Api Overseas.
  427. 2020-06-08 Version: 1.36.453
  428. - Generate dbfs sdk.
  429. 2020-06-08 Version: 1.36.452
  430. - Support offline instance.
  431. 2020-06-04 Version: 1.36.451
  432. - Support for addrp.
  433. 2020-06-04 Version: 1.36.450
  434. - Supported Eni Trunking.
  435. 2020-06-04 Version: 1.36.449
  436. - Update monitor related API.
  437. 2020-06-04 Version: 1.36.448
  438. - Add SubmitMediaDNADeleteJob and ListMediaDNADeleteJob.
  439. - Modify GetMediaAuditResult interface, support ad logo and live result.
  440. - Modify GetMediaAuditResultTimeline interface, support ad logo and live result.
  441. 2020-06-04 Version: 1.36.447
  442. - Update monitor related API.
  443. 2020-06-04 Version: 1.36.446
  444. - Update monitor related API.
  445. 2020-06-03 Version: 1.36.445
  446. - Describe describeAvailableResource.
  447. 2020-06-03 Version: 1.36.444
  448. - Describe describeAvailableResource.
  449. 2020-06-03 Version: 1.36.443
  450. - Generated 2019-01-01 for `Cassandra`.
  451. 2020-06-03 Version: 1.36.442
  452. - DescribeCameraStatistics add filed.
  453. 2020-06-02 Version: 1.36.441
  454. - Edit SearchTraces api.
  455. 2020-05-28 Version: 1.36.440
  456. - Supported AndroidNotificationXiaomiChannel for Push and MassPush.
  457. 2020-05-27 Version: 1.36.439
  458. - Added cn-heyuan endpoint url.
  459. - Added cn-wulanchabu endpoint url.
  460. 2020-05-27 Version: 1.36.438
  461. - Add support for create hbaseue multizone instance.
  462. 2020-05-26 Version: 1.36.437
  463. - Support DescribeAllEntity API.
  464. 2020-05-26 Version: 1.36.436
  465. - Add smartcall service api.
  466. 2020-05-26 Version: 1.36.435
  467. - Add smartcall service api.
  468. 2020-05-26 Version: 1.36.434
  469. - Add monitor related API.
  470. 2020-05-26 Version: 1.36.433
  471. - Add monitor related.
  472. 2020-05-26 Version: 1.36.432
  473. - Add monitor related.
  474. 2020-05-25 Version: 1.36.431
  475. - Add monitor related.
  476. 2020-05-25 Version: 1.36.430
  477. - Add monitor related.
  478. 2020-05-23 Version: 1.36.429
  479. - Generated 2015-01-01 for `R-kvstore`.
  480. - Add ModifyResourceGroup API.
  481. - DescribeInstanceAttribute return ResourceGroupId.
  482. 2020-05-22 Version: 1.36.428
  483. - Add schedule crud api.
  484. 2020-05-21 Version: 1.36.427
  485. - Support more error Codes.
  486. 2020-05-20 Version: 1.36.426
  487. - Generated 2019-09-10 for `waf-openapi`.
  488. 2020-05-20 Version: 1.36.425
  489. - Edit GetTrace and SearchTraces api.
  490. 2020-05-20 Version: 1.36.424
  491. - Public beta version.
  492. - Add Api Overseas.
  493. 2020-05-19 Version: 1.36.423
  494. - Public beta version.
  495. - Add Api Overseas.
  496. 2020-05-19 Version: 1.36.422
  497. - Initial version.
  498. 2020-05-18 Version: 1.36.421
  499. - Support sequence for listNodes.
  500. - Support StrictSatisfiedTargetCapacity for applyNodes.
  501. 2020-05-18 Version: 1.36.420
  502. - Fix DescribeIpcLiveAddress , add in params.
  503. 2020-05-18 Version: 1.36.419
  504. - Fix DescribeIpcLiveAddress , add in params.
  505. 2020-05-17 Version: 1.36.418
  506. - Open API publish.
  507. 2020-05-17 Version: 1.36.417
  508. - Open API publish.
  509. 2020-05-17 Version: 1.36.416
  510. - Open API publish.
  511. 2020-05-17 Version: 1.36.415
  512. - Open API publish.
  513. 2020-05-17 Version: 1.36.414
  514. - Open API publish.
  515. 2020-05-14 Version: 1.36.413
  516. - Generated 2015-01-01 for `R-kvstore`.
  517. - Fix DescribeCacheAnalysisReport return empty BigKeys because of wrong type defination.
  518. 2020-05-14 Version: 1.36.412
  519. - Supported Grant Permission.
  520. - Supported Revoke Permission.
  521. 2020-05-14 Version: 1.36.411
  522. - Add demo edition auth.
  523. 2020-05-13 Version: 1.36.410
  524. - Add ListDevicesImages DescribeIpcLiveAddress.
  525. - Modify DescribeDevices.
  526. 2020-05-13 Version: 1.36.409
  527. - Add ExportTas apis.
  528. 2020-05-13 Version: 1.36.408
  529. - Generated 2019-09-10 for `waf-openapi`.
  530. 2020-05-13 Version: 1.36.407
  531. - Supported AAA for BBB.
  532. - Fixed bugs for CCC.
  533. 2020-05-13 Version: 1.36.406
  534. - Add ExportTas apis.
  535. 2020-05-13 Version: 1.36.405
  536. - About 2019-03-07 and 2018-09-16 Version.
  537. 2020-05-12 Version: 1.36.404
  538. - Supported DRM.
  539. 2020-05-11 Version: 1.36.403
  540. - Add new openapi ApplyNodes.
  541. 2020-05-11 Version: 1.36.402
  542. - Support CreationCategory for CreateDBCluster.
  543. 2020-05-09 Version: 1.36.401
  544. - Generated 2019-01-01 for `Cassandra`.
  545. 2020-05-09 Version: 1.36.400
  546. - VideoSearch deploy SDK.
  547. 2020-05-08 Version: 1.36.399
  548. - Support sg for region.
  549. 2020-05-06 Version: 1.36.398
  550. - Describe describeAvailableResource.
  551. 2020-04-30 Version: 1.36.397
  552. - Add prometheus ListDashboards api.
  553. 2020-04-29 Version: 1.36.396
  554. - Add prometheus ListDashboards api.
  555. 2020-04-29 Version: 1.36.395
  556. - Add prometheus ListDashboards api.
  557. 2020-04-29 Version: 1.36.394
  558. - Supported VideoProduce.
  559. 2020-04-29 Version: 1.36.393
  560. - Supported VideoProduce.
  561. 2020-04-29 Version: 1.36.392
  562. - Supported VideoProduce.
  563. 2020-04-29 Version: 1.36.391
  564. - Add ListTemplateVersions API.
  565. - GenerateExecutionPolicy supports TemplateVersion.
  566. - CreateTemplate and UpdateTemplate support VersionName.
  567. 2020-04-29 Version: 1.36.390
  568. - Support groupId operations.
  569. 2020-04-29 Version: 1.36.389
  570. - Add ExportTas apis.
  571. 2020-04-29 Version: 1.36.388
  572. - Support Document Translation.
  573. - Support Lanuage Detection.
  574. 2020-04-29 Version: 1.36.387
  575. - Sync cdn APIs.
  576. 2020-04-29 Version: 1.36.386
  577. - Add Scdn APIS.
  578. - Sync cdn APIS.
  579. 2020-04-28 Version: 1.36.385
  580. - Generated 2019-03-15 for `fnf`.
  581. 2020-04-28 Version: 1.36.384
  582. - Add CompareFaceVerify API.
  583. 2020-04-27 Version: 1.36.383
  584. - Support watermark.
  585. 2020-04-27 Version: 1.36.382
  586. - Describe describeAvailableResource.
  587. 2020-04-27 Version: 1.36.381
  588. - ContrastFaceVerify Return SubCode.
  589. 2020-04-27 Version: 1.36.380
  590. - Generated 2019-01-01 for `Cassandra`.
  591. 2020-04-26 Version: 1.36.379
  592. - New api publish.
  593. 2020-04-25 Version: 1.36.378
  594. - Generated 2015-01-01 for `R-kvstore`.
  595. - Add RestoreTime for CreateInstance API.
  596. 2020-04-24 Version: 1.36.377
  597. - Publish apis for ledger instances.
  598. - Publish apis for members.
  599. - Publish apis for time anchors.
  600. - Publish apis for endpoints.
  601. 2020-04-24 Version: 1.36.376
  602. - Publish apis for ledger instances.
  603. - Publish apis for members.
  604. - Publish apis for time anchors.
  605. - Publish apis for endpoints.
  606. 2020-04-23 Version: 1.36.375
  607. - GetUser API return user execute query count information.
  608. 2020-04-23 Version: 1.36.374
  609. - Fixed bugs for MassPush API.
  610. 2020-04-23 Version: 1.36.373
  611. - Add location info.
  612. 2020-04-23 Version: 1.36.372
  613. - Support groupId operations.
  614. 2020-04-22 Version: 1.36.371
  615. - Generated 2019-01-01 for `Cassandra`.
  616. 2020-04-21 Version: 1.36.370
  617. - Supported API for DescribeTags.
  618. - Supported API for ListTagResources.
  619. - Supported API for TagResources.
  620. - Supported API for UntagResources.
  621. 2020-04-21 Version: 1.36.369
  622. - Supported PackageDesign Apis.
  623. - Supported Api ListPackageDesignModelTypes.
  624. - Supported Api PreviewModelForPackageDesign.
  625. - Supported Api RenderImageForPackageDesign.
  626. - Supported Api GetRenderResult.
  627. 2020-04-21 Version: 1.36.368
  628. - Add Statistics API.
  629. 2020-04-20 Version: 1.36.367
  630. - Add TemplateId.
  631. 2020-04-20 Version: 1.36.366
  632. - Fix FaceContrastPicture.
  633. 2020-04-20 Version: 1.36.365
  634. - Add kibana network white Ips.
  635. 2020-04-19 Version: 1.36.364
  636. - Multimedia poc modified.
  637. 2020-04-17 Version: 1.36.363
  638. - DescribeInstanceTypes support TotalEniQueueQuantity.
  639. 2020-04-16 Version: 1.36.362
  640. - Modify `SubmitSmarttagJob`.
  641. 2020-04-16 Version: 1.36.361
  642. - Add ModifyWhiteIps.
  643. 2020-04-16 Version: 1.36.360
  644. - Add BatchOptimization param in Stop and Start Instances.
  645. - Add RemoveSymbols in GetInstanceConsoleOutput.
  646. - Add ImageFamily in ModifyImageAttribute.
  647. - Customize InstanceType on DedicatedHosts is supported.
  648. - Add StorageCapacityUnit interfaces.
  649. - Add param Tag in CreateAutoSnapshotPolicy.
  650. 2020-04-16 Version: 1.36.359
  651. - Add features for open api.
  652. 2020-04-15 Version: 1.36.358
  653. - Add pre train service api.
  654. 2020-04-15 Version: 1.36.357
  655. - CreateNode API add return NodeId.
  656. 2020-04-15 Version: 1.36.356
  657. - Vision-poc response modified.
  658. 2020-04-14 Version: 1.36.355
  659. - Support ListSensitiveColumns, ListSensitiveColumnsDetail API.
  660. - ListUsers API return user execute query count information.
  661. - Fix ListWorkFlowTemplates to return create user information.
  662. - UpdateUser API support to update user max execute query count.
  663. 2020-04-14 Version: 1.36.354
  664. - Supported CreateSegmentBodyJob.
  665. 2020-04-13 Version: 1.36.353
  666. - Fix ListTaskExecutions SDK error.
  667. 2020-04-10 Version: 1.36.352
  668. - Generated 2017-05-25 for `Dypnsapi`.
  669. 2020-04-10 Version: 1.36.351
  670. - Support GetOfficeEditURL.
  671. - Support RefreshOfficeEditToken.
  672. 2020-04-10 Version: 1.36.350
  673. - Generated 2019-01-01 for `Cassandra`.
  674. 2020-04-10 Version: 1.36.349
  675. - Support DescribeIpv4Location.
  676. 2020-04-09 Version: 1.36.348
  677. - Add prometheus api AddGrafana and AddIntegration.
  678. 2020-04-09 Version: 1.36.347
  679. - Generated 2018-03-13 for `retailcloud`.
  680. 2020-04-09 Version: 1.36.346
  681. - Add DescribePrice API.
  682. 2020-04-09 Version: 1.36.345
  683. - WAF OpenApi SDK Release.
  684. 2020-04-09 Version: 1.36.344
  685. - Add DescribeDBClusterAvailableResources.
  686. 2020-04-09 Version: 1.36.343
  687. - Generated 2015-01-01 for `R-kvstore`.
  688. - Add DescribePrice API.
  689. 2020-04-08 Version: 1.36.342
  690. - Add SubCode for DescribeFaceVerify.
  691. 2020-04-08 Version: 1.36.341
  692. - Generated 2019-01-01 for `Cassandra`.
  693. 2020-04-03 Version: 1.36.340
  694. - Add trace api.
  695. - Add prometheus api.
  696. 2020-04-03 Version: 1.36.339
  697. - Support shelf type for planogram position.
  698. 2020-04-03 Version: 1.36.338
  699. - Support namespaces.
  700. 2020-04-02 Version: 1.36.337
  701. - Add API ContrastFaceVerify.
  702. 2020-04-02 Version: 1.36.336
  703. - Support for WaitTimeSeconds for DescribeExecution.
  704. 2020-04-01 Version: 1.36.335
  705. - DescribeVerifyToken API Add Parameters-UserIp and UserPhoneNumber and UserRegistTime.
  706. 2020-04-01 Version: 1.36.334
  707. - Parameters is string in StartExecution Response.
  708. 2020-04-01 Version: 1.36.333
  709. - Counters and Parameters are changed to Map in ListExections and StartExecution.
  710. 2020-03-24 Version: 1.36.332
  711. - DescribeInstanceTypes Supports EniIpv6AddressQuantity.
  712. 2020-03-24 Version: 1.36.331
  713. - DescribeInstanceTypes Supports EniIpv6AddressQuantity.
  714. 2020-03-23 Version: 1.36.330
  715. - Generated 2015-01-01 for `R-kvstore`.
  716. - Add DescribeSecurityGroupConfiguration API.
  717. - Add ModifySecurityGroupConfiguration API.
  718. 2020-03-23 Version: 1.36.329
  719. - Generated 2014-08-15 for `Rds`.
  720. 2020-03-20 Version: 1.36.328
  721. - Generated 2018-04-12 for `EHPC`.
  722. 2020-03-20 Version: 1.36.327
  723. - Add GetNetworkInterface interface.
  724. 2020-03-20 Version: 1.36.326
  725. - Generated 2018-04-12 for `EHPC`.
  726. 2020-03-18 Version: 1.36.325
  727. - Supported API for DescribeInstanceDomains.
  728. 2020-03-18 Version: 1.36.324
  729. - ACM POP SDK.
  730. 2020-03-18 Version: 1.36.323
  731. - Support product addrp.
  732. 2020-03-18 Version: 1.36.322
  733. - Generated 2018-08-28 for `Tag`.
  734. 2020-03-16 Version: 1.36.321
  735. - DescribeFaceVerify API Return DeviceToken Field.
  736. 2020-03-16 Version: 1.36.320
  737. - Release.
  738. - Add virtual host modification API.
  739. - Add exchange modification API.
  740. - Add queue modification API.
  741. - Add binding modification API.
  742. 2020-03-16 Version: 1.36.319
  743. - Add ImageFamily paramters and apis, in Instance creation apis and Image query apis, and add DescribeImageFromFamily.
  744. - Add Instance batch operation apis RebootInstances StartInstances and StopInstances.
  745. - Add EncryptAlgorithm paramter in instance creati
  746. 2020-03-13 Version: 1.36.318
  747. - ACM POP SDK.
  748. 2020-03-12 Version: 1.36.317
  749. - Add new Api SegmentBody.
  750. 2020-03-11 Version: 1.36.316
  751. - Update structure for DescribeAvailableResource without compatible.
  752. 2020-03-11 Version: 1.36.315
  753. - Add new Api SegmentBody.
  754. 2020-03-11 Version: 1.36.314
  755. - Support certificate translate.
  756. 2020-03-10 Version: 1.36.313
  757. - Add ExportTas apis.
  758. 2020-03-10 Version: 1.36.312
  759. - Add ExportTas apis.
  760. 2020-03-09 Version: 1.36.311
  761. - Add EmotionConfidence to GetImage.
  762. 2020-03-09 Version: 1.36.310
  763. - Add BackupStorageType.
  764. 2020-03-09 Version: 1.36.309
  765. - Add EmotionConfidence to GetImage.
  766. 2020-03-09 Version: 1.36.308
  767. - Add EmotionConfidence to GetImage.
  768. 2020-03-09 Version: 1.36.307
  769. - NlpAutoml update contract api.
  770. 2020-03-09 Version: 1.36.306
  771. - NlpAutoml update contract api.
  772. 2020-03-06 Version: 1.36.305
  773. - Supported Saf for cn.
  774. 2020-03-06 Version: 1.36.304
  775. - Supported Saf for cn.
  776. 2020-03-06 Version: 1.36.303
  777. - Supported Saf for oversea.
  778. 2020-03-06 Version: 1.36.302
  779. - Add request parameter groupType for OnsGroupCreate.
  780. - Add request parameter groupType for OnsGroupList.
  781. 2020-03-05 Version: 1.36.301
  782. - Add param InstanceType for ListImages and ListCustomImages.
  783. - Fix error codes for SubmitJobs and so on.
  784. 2020-03-04 Version: 1.36.300
  785. - Update.
  786. 2020-03-03 Version: 1.36.299
  787. - Supported secretmanager stable version for kms.
  788. 2020-03-03 Version: 1.36.298
  789. - Supported secretmanager stable version for kms.
  790. 2020-03-03 Version: 1.36.297
  791. - GeoIP Databases SDK initial release.
  792. 2020-03-03 Version: 1.36.296
  793. - Supported secretmanager for kms.
  794. 2020-02-28 Version: 1.36.295
  795. - Add QueryPhoneNoAByTrackNo and AddAxnTrackNo.
  796. 2020-02-28 Version: 1.36.294
  797. - Supported secretmanager for kms.
  798. 2020-02-27 Version: 1.36.293
  799. - Add translate api.
  800. 2020-02-27 Version: 1.36.292
  801. - Release Ft SDK.
  802. 2020-02-26 Version: 1.36.291
  803. - Fix tag upper case parameters.
  804. - Fix patch.
  805. 2020-02-26 Version: 1.36.290
  806. - Generated 2015-01-01 for `R-kvstore`.
  807. - Add VpcCloudInstanceId for DescribeInstanceAttribute.
  808. 2020-02-26 Version: 1.36.289
  809. - Add InitFaceVerify and DescribeFaceVerify API.
  810. 2020-02-25 Version: 1.36.288
  811. - Fix ListWorkFlowTemplates, ListWorkFlowNodes API Go SDK build error.
  812. 2020-02-25 Version: 1.36.287
  813. - Update backupsetDownloadset fun.
  814. 2020-02-24 Version: 1.36.286
  815. - ImmediateDelete.
  816. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  817. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  818. - DescribeIpWhitelist Groups GroupName.
  819. - CreateCluster.
  820. 2020-02-24 Version: 1.36.285
  821. - Release Ft SDK.
  822. 2020-02-24 Version: 1.36.284
  823. - Release Ft SDK.
  824. 2020-02-24 Version 1.36.283
  825. - Add tag of list instance parameters.
  826. 2020-02-24 Version 1.36.282
  827. - Generated 2018-06-12 for `VoiceNavigator`.
  828. 2020-02-24 Version 1.36.281
  829. - Generated 2019-12-26 for `OutboundBot`.
  830. 2020-02-24 Version 1.36.280
  831. - Generated 2019-12-26 for `OutboundBot`.
  832. 2020-02-24 Version 1.36.279
  833. - Generated 2019-12-26 for `OutboundBot`.
  834. 2020-02-21 Version 1.36.278
  835. - Support TAG API.
  836. 2020-02-20 Version 1.36.277
  837. - Generated 2019-09-28 for `reid`.
  838. 2020-02-20 Version 1.36.276
  839. - Add new interface ListMaskDetectionResults to support to pull mask detection results.
  840. 2020-02-15 Version 1.36.275
  841. - Add DescribeDBClusterSSL.
  842. - Add ModifyDBClusterSSL.
  843. 2020-02-14 Version 1.36.274
  844. - Update default endpoints.
  845. 2020-02-14 Version 1.36.273
  846. - Add callback params to StartExecution API.
  847. - Support ListExecutions with Status API.
  848. 2020-02-14 Version 1.36.272
  849. - Update default endpoints.
  850. 2020-02-13 Version 1.36.271
  851. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  852. - DescribeNetworkInterfaces support QueueNumber.
  853. 2020-02-13 Version 1.36.270
  854. - Add Staging apis.
  855. 2020-02-13 Version 1.36.269
  856. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  857. - DescribeNetworkInterfaces support QueueNumber.
  858. 2020-02-13 Version 1.36.268
  859. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  860. - DescribeNetworkInterfaces support QueueNumber.
  861. 2020-02-13 Version 1.36.267
  862. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  863. - DescribeNetworkInterfaces support QueueNumber.
  864. 2020-02-13 Version 1.36.266
  865. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  866. - DescribeNetworkInterfaces support QueueNumber.
  867. 2020-02-13 Version 1.36.265
  868. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  869. - DescribeNetworkInterfaces support QueueNumber.
  870. 2020-02-13 Version 1.36.264
  871. - Add Staging apis.
  872. 2020-02-13 Version 1.36.263
  873. - Add Staging apis.
  874. 2020-02-13 Version 1.36.262
  875. - Add Staging apis.
  876. 2020-02-13 Version 1.36.261
  877. - Add Staging apis.
  878. 2020-02-13 Version 1.36.260
  879. - Add Staging apis.
  880. 2020-02-13 Version 1.36.259
  881. - Init MQTT SDK .
  882. 2020-02-12 Version 1.36.258
  883. - Support to create, describe and expire demo access token.
  884. 2020-02-12 Version 1.36.257
  885. - Update Full showStorageTyp.
  886. 2020-02-12 Version 1.36.256
  887. - Add Full showStorageTyp.
  888. 2020-02-12 Version 1.36.255
  889. - Support mau.
  890. 2020-02-11 Version 1.36.254
  891. - Return `VpcInstanceId ` for DescribeDBClusterEndpoints.
  892. - Add DescribeBackupLogs.
  893. 2020-02-11 Version 1.36.253
  894. - Support ModifyInstanceAttributes for SecurityGroupIds.
  895. 2020-02-11 Version 1.36.252
  896. - Update default endpoints.
  897. 2020-02-10 Version 1.36.251
  898. - Supported address for GetMediaMeta.
  899. 2020-02-07 Version 1.36.250
  900. - Fix bug for DescribeZoneInfo, delete return result of reionId.
  901. - Fix bug for DeleteZone, parameter zoneId change to compulsory.
  902. - Fix bug for SetProxyPattern, parameter zoneId change to compulsory.
  903. 2020-02-05 Version 1.36.249
  904. - Supported GetOfficePreviewURL.
  905. - Supported RefreshOfficePreviewToken.
  906. 2020-02-04 Version 1.36.248
  907. - Update default endpoints.
  908. 2020-01-20 Version 1.36.247
  909. - Release on full language support.
  910. 2020-01-17 Version 1.36.246
  911. - Supported Add the history event signature function.
  912. 2020-01-16 Version 1.36.245
  913. - Fix the result value of DeleteSiteMonitors.
  914. 2020-01-16 Version 1.36.244
  915. - Generated 2015-01-01 for `R-kvstore`.
  916. - Update DescribeAvailableResource.
  917. 2020-01-16 Version 1.36.243
  918. - Add fields faceComparisonScore for DescribeVerifyResult and VerifyMaterials interface.
  919. 2020-01-15 Version 1.36.242
  920. - Fix parameter issues for label synchronization group.
  921. 2020-01-15 Version 1.36.241
  922. - Fix parameter issues for label synchronization group.
  923. 2020-01-13 Version 1.36.240
  924. - New API DescribeAvailableResource.
  925. 2020-01-13 Version 1.36.239
  926. - Add Dynamic Tag API.
  927. 2020-01-13 Version 1.36.238
  928. - Supported InstanceMaintenanceAtrributes for maintening the attributes of instances.
  929. - Deleted MaintenanceProperty.
  930. - Supported RedeployDedicatedHost for redeploying dedicated host in under-assessment status.
  931. 2020-01-10 Version 1.36.237
  932. - Return `ConsistentTime` for DescribeBackups.
  933. - Return `DBNodeIds` for CreateDBNodes.
  934. 2020-01-09 Version 1.36.236
  935. - Support DAILY report in QueryInstanBill.
  936. 2020-01-08 Version 1.36.235
  937. - Add TagLevel to ListSetTags.
  938. 2020-01-07 Version 1.36.234
  939. - Modify desribeInstance return dict item.
  940. 2020-01-07 Version 1.36.233
  941. - Generated 2014-05-26 for `Ecs`.
  942. 2020-01-03 Version 1.36.232
  943. - Add GWS serie apis.
  944. - Add QueryReport.
  945. - Fix ListJobs.
  946. - Etc.
  947. 2020-01-03 Version 1.36.231
  948. - New API DescribeAvailableResource.
  949. 2020-01-03 Version 1.36.230
  950. - ImmediateDelete.
  951. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  952. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  953. - DescribeIpWhitelist Groups GroupName.
  954. 2019-12-31 Version 1.36.229
  955. - Supported SQL SERVER support delete backup set according to time range.
  956. 2019-12-31 Version 1.36.228
  957. - Support asymmetric keys.
  958. 2019-12-31 Version 1.36.227
  959. - Add request parameter groupType for OnsGroupCreate.
  960. 2019-12-31 Version 1.36.226
  961. - Supported image for process.
  962. 2019-12-31 Version 1.36.225
  963. - Generated 2019-09-28 for `reid`.
  964. 2019-12-31 Version 1.36.224
  965. - Support DeleteDBCluster.
  966. - Support ModifyDBCluster.
  967. - Support DescribeAvailableResource.
  968. 2019-12-27 Version 1.36.223
  969. - Update DescribeTrails Response.
  970. 2019-12-26 Version 1.36.222
  971. - NlpAutoml add async api.
  972. 2019-12-26 Version 1.36.221
  973. - Modify CreateRestoreTask.
  974. 2019-12-20 Version 1.36.220
  975. - Supported Search stream predict task list use modelId for IVISION.
  976. 2019-12-20 Version 1.36.219
  977. - Add result value for OnsConsumerStatus.
  978. 2019-12-19 Version 1.36.218
  979. - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
  980. 2019-12-19 Version 1.36.217
  981. - Generated 2019-09-28 for `reid`.
  982. 2019-12-19 Version 1.36.216
  983. - DescribeNetworkInterfaces Supports NextToken.
  984. 2019-12-16 Version 1.36.215
  985. - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
  986. 2019-12-14 Version 1.36.214
  987. - Generated 2015-01-01 for `R-kvstore`.
  988. 2019-12-14 Version 1.36.213
  989. - Update DescribeAvailableResource.
  990. 2019-12-14 Version 1.36.212
  991. - Update DescribeAvailableResource.
  992. 2019-12-12 Version 1.36.211
  993. - Generated 2019-06-10 for `et-industry-openapi`.
  994. 2019-12-11 Version 1.36.210
  995. - Supported Sync predict for Image.
  996. - Supported Set Frame Frequency for Stream Predict.
  997. - Fixed Errore Code For APIs.
  998. 2019-12-11 Version 1.36.209
  999. - Add tag API.
  1000. - Add group process monitoring API.
  1001. - Add API for batch setting alarm rules.
  1002. 2019-12-05 Version 1.36.208
  1003. - Add api QueryMetric.
  1004. 2019-12-04 Version 1.36.207
  1005. - Generated 2019-01-01 for `HBase`.
  1006. 2019-12-04 Version 1.36.206
  1007. - Supported ModifyDBInstanceSpec for Direction param.
  1008. 2019-12-02 Version 1.36.205
  1009. - Remove QuerySmsProdStatus OpenAPI.
  1010. 2019-11-29 Version 1.36.204
  1011. - Add RenewInstance.
  1012. - Add RenewLogstash.
  1013. - Add UpdateInstanceChargeType.
  1014. - Add UpdateLogstashChargeType.
  1015. 2019-11-28 Version 1.36.203
  1016. - Supported API GetTxtRecordForVerify.
  1017. - Supported API RetrieveDomain.
  1018. 2019-11-28 Version 1.36.202
  1019. - Supported dash for compress.
  1020. 2019-11-28 Version 1.36.201
  1021. - Eni Supports Multi-SecurityGroup.
  1022. 2019-11-27 Version 1.36.200
  1023. - CreateReplicationJob API supports the specified instance type.
  1024. 2019-11-26 Version 1.36.199
  1025. - Modify QueryBill, add SubOrderId in item of response.
  1026. 2019-11-26 Version 1.36.198
  1027. - Supported API BindInstanceDomains.
  1028. - Supported API UnbindInstanceDomains.
  1029. - Supported API AddCustomLine.
  1030. - Supported API UpdateCustomLine.
  1031. - Supported API DeleteCustomLines.
  1032. - Supported API DescribeCustomLine.
  1033. - Supported API DescribeCustomLines.
  1034. 2019-11-25 Version 1.36.197
  1035. - Generated 2019-10-30 for `aliyuncvc`.
  1036. 2019-11-25 Version 1.36.196
  1037. - One or more people can be subscribed when creating tasks.
  1038. 2019-11-21 Version 1.36.195
  1039. - Add ConvertPayType.
  1040. - Add ConvertLogstashPayType.
  1041. 2019-11-21 Version 1.36.194
  1042. - Generated 2017-10-11 for `Chatbot`.
  1043. 2019-11-21 Version 1.36.193
  1044. - Generated 2017-10-11 for `Chatbot`.
  1045. 2019-11-21 Version 1.36.192
  1046. - Generated 2019-10-30 for `aliyuncvc`.
  1047. 2019-11-20 Version 1.36.191
  1048. - Update Nlp Automl SDK.
  1049. 2019-11-20 Version 1.36.190
  1050. - Add new OpenAPI.
  1051. 2019-11-20 Version 1.36.189
  1052. - Add new pop api.
  1053. 2019-11-20 Version 1.36.188
  1054. - Generated 2014-05-26 for `Ecs`.
  1055. 2019-11-20 Version 1.36.187
  1056. - Generated 2018-04-12 for `EHPC`.
  1057. 2019-11-20 Version 1.36.186
  1058. - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
  1059. - Modify ecsDemand DescribesDemands API.
  1060. 2019-11-20 Version 1.36.185
  1061. - Generated 2019-01-01 for `HBase`.
  1062. 2019-11-20 Version 1.36.184
  1063. - Add API ReportVoipProblems.
  1064. - Add API QueryVoipNumberBindINfos.
  1065. 2019-11-15 Version 1.36.183
  1066. - Nlp Automl SDK.
  1067. 2019-11-15 Version 1.36.182
  1068. - Sync cdn APIs.
  1069. 2019-11-15 Version 1.36.181
  1070. - Fixed bugs.
  1071. 2019-11-15 Version 1.36.180
  1072. - Add Scdn APIS.
  1073. - Sync cdn APIS.
  1074. 2019-11-15 Version 1.36.179
  1075. - Modify QueryAccountBill, support group by product.
  1076. 2019-11-15 Version 1.36.178
  1077. - Modify DescribeRestoreRangeInfo.
  1078. 2019-11-15 Version 1.36.177
  1079. - Add DescribeRestoreRangeInfo.
  1080. 2019-11-14 Version 1.36.176
  1081. - Released dysms OpenAPI.
  1082. 2019-11-14 Version 1.36.175
  1083. - Support Tag OpenAPI.
  1084. - Fix endpoint problem.
  1085. 2019-11-14 Version 1.36.174
  1086. - Initial construction.
  1087. - Public beta version.
  1088. - Supported AliyunController for Interface.
  1089. - Supported ConsoleController for Interface.
  1090. - Supported AccountController for Interface.
  1091. 2019-11-13 Version 1.36.173
  1092. - Supported Stream analyse.
  1093. 2019-11-13 Version 1.36.172
  1094. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  1095. 2019-11-13 Version 1.36.171
  1096. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  1097. 2019-11-13 Version 1.36.170
  1098. - Add new API QueryBillToOSSSubscription.
  1099. 2019-11-13 Version 1.36.169
  1100. - Supported API UpdateDomainRemark for Update Domain Remark.
  1101. - Supported API UpdateDomainRecordRemark for Update Record Remark.
  1102. - Unsupported API CheckDomainRecord.
  1103. 2019-11-13 Version 1.36.168
  1104. - Support Go SDK.
  1105. - Support C SDK.
  1106. - Support PHP SDK.
  1107. 2019-11-08 Version 1.36.167
  1108. - Add DescribeJobErrorCode.
  1109. 2019-11-05 Version 1.36.166
  1110. - Add OperateBlackNo.
  1111. 2019-11-02 Version 1.36.165
  1112. - Generated 2017-05-25 for `Dyvmsapi`.
  1113. 2019-10-31 Version 1.36.164
  1114. - Initial construction.
  1115. - Public beta version.
  1116. - Supported AliyunController for Interface.
  1117. - Supported ConsoleController for Interface.
  1118. - Supported AccountController for Interface.
  1119. 2019-10-31 Version 1.36.163
  1120. - Initial construction.
  1121. - Public beta version.
  1122. - Supported AliyunController for Interface.
  1123. - Supported ConsoleController for Interface.
  1124. - Supported AccountController for Interface.
  1125. 2019-10-29 Version 1.36.162
  1126. - Add a new Alibaba Cloud Bill API named QueryAccountBill.
  1127. 2019-10-25 Version 1.36.161
  1128. - Initial construction.
  1129. - Public beta version.
  1130. - Supported AliyunController for Interface.
  1131. - Supported ConsoleController for Interface.
  1132. - Supported AccountController for Interface.
  1133. 2019-10-25 Version 1.36.160
  1134. - Supported query push records.
  1135. 2019-10-25 Version 1.36.159
  1136. - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
  1137. 2019-10-24 Version 1.36.158
  1138. - Generated 2017-12-14 for `BssOpenApi`.
  1139. 2019-10-23 Version 1.36.157
  1140. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  1141. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  1142. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  1143. - Modify the data type of return field StorageLocation to String.
  1144. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  1145. 2019-10-23 Version 1.36.156
  1146. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  1147. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  1148. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  1149. - Modify the data type of return field StorageLocation to String.
  1150. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  1151. 2019-10-23 Version 1.36.155
  1152. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  1153. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  1154. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  1155. - Modify the data type of return field StorageLocation to String.
  1156. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  1157. 2019-10-22 Version 1.36.154
  1158. - RunInstances support AutoSnapshotPolicyId.
  1159. 2019-10-22 Version 1.36.153
  1160. - Supported ExternalId IMM.
  1161. 2019-10-21 Version 1.36.152
  1162. - Release first version.
  1163. 2019-10-18 Version 1.36.151
  1164. - Generated 2019-09-10 for `DnsKnocker`.
  1165. 2019-10-16 Version 1.36.150
  1166. - Add ListTagResources OpenApi.
  1167. - Add TagResources OpenApi.
  1168. - Add UntagResources OpenApi.
  1169. - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
  1170. 2019-10-14 Version 1.36.149
  1171. - Support continuous pushing.
  1172. 2019-10-09 Version 1.36.148
  1173. - Add VideoCancelScan Api.
  1174. 2019-10-09 Version 1.36.147
  1175. - Support API RecognizeImageColor.
  1176. - Support API DetectImageElements.
  1177. - Support API RecolorImage.
  1178. - Support API SegmentImage.
  1179. - Support API ChangeImageSize.
  1180. - Support API ExtendImageStyle.
  1181. - Support API RecognizeImageStyle.
  1182. - Support API MakeSuperResolution.
  1183. 2019-10-08 Version 1.36.146
  1184. - Supported Grab Frame IMM.
  1185. 2019-10-08 Version 1.36.145
  1186. - Supported API MassPush for Push Message or Notice.
  1187. 2019-10-08 Version 1.36.144
  1188. - Generated 2016-01-20 for `Kms`.
  1189. 2019-09-26 Version 1.36.143
  1190. - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
  1191. - Add QuerySubsId.
  1192. 2019-09-23 Version 1.36.142
  1193. - Add param, DescribePrice supprot ReservedInstance.
  1194. 2019-09-19 Version 1.36.141
  1195. - Supported Video Abstract for IMM.
  1196. 2019-09-19 Version 1.36.140
  1197. - Generated 2018-01-20 for `Iot`.
  1198. 2019-09-19 Version 1.36.139
  1199. - Supported Video Abstract for IMM.
  1200. 2019-09-19 Version 1.36.138
  1201. - Add bizSubCode and so on.
  1202. 2019-09-18 Version 1.36.137
  1203. - Supported Video Abstract for IMM.
  1204. 2019-09-17 Version 1.36.136
  1205. - Generated 2018-04-12 for `EHPC`.
  1206. 2019-09-16 Version 1.36.135
  1207. - Generated 2018-04-12 for `EHPC`.
  1208. 2019-09-16 Version 1.36.134
  1209. - Generated 2018-04-12 for `EHPC`.
  1210. 2019-09-16 Version 1.36.133
  1211. - Generated 2016-11-11 for `aegis`.
  1212. 2019-09-15 Version 1.36.132
  1213. - Generated 2018-04-12 for `EHPC`.
  1214. 2019-09-14 Version 1.36.131
  1215. - Generated 2019-08-08 for `ARMS`.
  1216. 2019-09-12 Version 1.36.130
  1217. - Fixed CMakeLists file.
  1218. 2019-09-12 Version 1.36.129
  1219. - Fixed CMakeLists file.
  1220. 2019-09-12 Version 1.36.128
  1221. - Fixed CMakeLists file.
  1222. 2019-09-12 Version 1.36.127
  1223. - Fixed CMakeLists file.
  1224. 2019-09-12 Version 1.36.126
  1225. - Fixed CMakeLists file.
  1226. 2019-09-12 Version 1.36.125
  1227. - Fixed CMakeLists file.
  1228. 2019-09-12 Version 1.36.124
  1229. - Fixed CMakeLists file.
  1230. 2019-09-12 Version 1.36.123
  1231. - Fixed CMakeLists file.
  1232. 2019-09-12 Version 1.36.122
  1233. - Fixed CMakeLists file.
  1234. 2019-09-12 Version 1.36.121
  1235. - Fixed CMakeLists file.
  1236. 2019-09-12 Version 1.36.120
  1237. - Fixed CMakeLists file.
  1238. 2019-09-12 Version 1.36.119
  1239. - Fixed CMakeLists file.
  1240. 2019-09-12 Version 1.36.118
  1241. - Fixed CMakeLists file.
  1242. 2019-09-12 Version 1.36.117
  1243. - Fixed CMakeLists file.
  1244. 2019-09-09 Version 1.36.116
  1245. - CreateInstance add toen.
  1246. - UpdateInstance add toen.
  1247. 2019-09-06 Version 1.36.115
  1248. - Update endpoint data.
  1249. 2019-09-06 Version 1.36.114
  1250. - Generated 2016-04-28 for `Vpc`.
  1251. 2019-09-05 Version 1.36.113
  1252. - Supported for setEndpoint method.
  1253. 2019-09-05 Version 1.36.112
  1254. - Generated 2014-05-15 for `Slb`.
  1255. 2019-09-05 Version 1.36.111
  1256. - Generated 2017-07-05 for `CCC`.
  1257. 2019-09-05 Version 1.36.110
  1258. - Generated 2018-11-11 for `foas`.
  1259. 2019-09-05 Version 1.36.109
  1260. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  1261. 2019-09-05 Version 1.36.108
  1262. - Generated 2015-11-01 for `Market`.
  1263. 2019-09-05 Version 1.36.107
  1264. - Generated 2016-07-14 for `CloudAPI`.
  1265. 2019-09-05 Version 1.36.106
  1266. - Generated 2017-08-01 for `polardb`.
  1267. 2019-09-05 Version 1.36.105
  1268. - Generated 2017-12-14 for `BssOpenApi`.
  1269. 2019-09-03 Version 1.36.104
  1270. - Generated 2014-08-15 for `Rds`.
  1271. 2019-08-30 Version 1.36.103
  1272. - Revert to 2015-09-01.
  1273. 2019-08-30 Version 1.36.102
  1274. - Release Apis of Version 2019-09-10.
  1275. 2019-08-30 Version 1.36.101
  1276. - Supported Meida complex for IMM.
  1277. 2019-08-30 Version 1.36.100
  1278. - Add api for getTrace and searchTracelist.
  1279. 2019-08-29 Version 1.36.99
  1280. - Move StopExecution params to body.
  1281. 2019-08-29 Version 1.36.98
  1282. - For publish.
  1283. 2019-08-28 Version 1.36.97
  1284. - Add DBS API UpgradeBackupPlan.
  1285. - Add DBS API DescribePreCheckProgressList.
  1286. 2019-08-26 Version 1.36.96
  1287. - QueryInstanceBillResponse change ownerId type from Long to String.
  1288. - QueryInstanceBillResponse change usage type from float to String.
  1289. - QueryInstanceBillResponse change listPrice type from float to String.
  1290. - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
  1291. 2019-08-22 Version 1.36.95
  1292. - Support API RecognizeImageColor.
  1293. - Support API DetectImageElements.
  1294. - Support API RecolorImage.
  1295. - Support API SegmentImage.
  1296. - Support API ChangeImageSize.
  1297. - Support API ExtendImageStyle.
  1298. - Support API RecognizeImageStyle.
  1299. - Support API MakeSuperResolutionImage.
  1300. 2019-08-22 Version 1.36.94
  1301. - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
  1302. 2019-08-21 Version 1.36.93
  1303. - Move StartExecution params to body.
  1304. 2019-08-21 Version 1.36.92
  1305. - Return backup job id when create backup.
  1306. - Return backup set size when describe backups.
  1307. 2019-08-20 Version 1.36.91
  1308. - API TaobaoFilmGetSchedules retrun col add hallId.
  1309. 2019-08-15 Version 1.36.90
  1310. - FnF public version.
  1311. - Add Report task api.
  1312. 2019-08-15 Version 1.36.89
  1313. - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
  1314. 2019-08-15 Version 1.36.88
  1315. - QueryInstanceBillResponse add ServicePeriod.
  1316. 2019-08-14 Version 1.36.87
  1317. - Generated 2018-01-20 for `Iot`.
  1318. 2019-08-13 Version 1.36.86
  1319. - Optimize return code.
  1320. - Edit QueryDataset.
  1321. 2019-08-13 Version 1.36.85
  1322. - Supported for openapi new version.
  1323. 2019-08-12 Version 1.36.84
  1324. - Support Defect Face API.
  1325. 2019-08-08 Version 1.36.83
  1326. - Add CreateStorageSet api to support storageSet.
  1327. - Add DeleteStorageSet api to support storageSet.
  1328. - Add ModifyStorageSetAttribute api to support storageSet.
  1329. - Add DescribeStorageSets api to support storageSet.
  1330. - Add DescribeStorageSetDetails api to support storageSet.
  1331. - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
  1332. - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
  1333. - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
  1334. 2019-08-08 Version 1.36.82
  1335. - Group, Plugin support tag authentication.
  1336. 2019-08-06 Version 1.36.81
  1337. - Supported GetMediaMeta for IMM.
  1338. 2019-08-06 Version 1.36.80
  1339. - Supported GetMediaMeta for IMM.
  1340. 2019-08-06 Version 1.36.79
  1341. - Supported GetMediaMeta for IMM.
  1342. 2019-08-06 Version 1.36.78
  1343. - Supported GetMediaMeta for IMM.
  1344. 2019-08-06 Version 1.36.77
  1345. - Supported GetMediaMeta for IMM.
  1346. 2019-08-05 Version 1.36.76
  1347. - GetOrderDetail add originalConfig param.
  1348. 2019-08-05 Version 1.36.75
  1349. - GetOrderDetail add originalConfig param.
  1350. 2019-08-05 Version 1.36.74
  1351. - Modify DBS API DescribeFullBackupList.
  1352. 2019-08-02 Version 1.36.73
  1353. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  1354. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  1355. 2019-07-31 Version 1.36.72
  1356. - Endpoint auto route.
  1357. 2019-07-26 Version 1.36.71
  1358. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  1359. 2019-07-26 Version 1.36.70
  1360. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  1361. 2019-07-25 Version 1.36.69
  1362. - App-related actions support tag authentication.
  1363. 2019-07-23 Version 1.36.68
  1364. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  1365. 2019-07-19 Version 1.36.67
  1366. - QueryMonthlyBillResponse add roundDownDiscount.
  1367. - QueryBillResponse add roundDownDiscount.
  1368. - QueryInstanceBillResponse add item.
  1369. 2019-07-18 Version 1.36.66
  1370. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  1371. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  1372. 2019-07-14 Version 1.36.65
  1373. - Modify DBS API DescribeBackupPlanList.
  1374. 2019-07-14 Version 1.36.64
  1375. - Modify DBS API DescribeBackupPlanList.
  1376. 2019-07-12 Version 1.36.63
  1377. - Public api AddLivePullStreamInfoConfig.
  1378. 2019-07-11 Version 1.36.62
  1379. - Modify CreateBackupPlan.
  1380. - Modify ConfigureBackupPlan.
  1381. - Modify DescribeFullBackupList.
  1382. - Modify DescribeRestoreTaskList.
  1383. - Add ModifyBackupSourceEndpoint.
  1384. - Add ModifyBackupStrategy.
  1385. - Add ModifyBackupPlanName.
  1386. 2019-07-05 Version 1.36.61
  1387. - Supported library managment for simillarity scene.
  1388. - Remove the local file uploader code which can be downloaded from yundun content security document.
  1389. 2019-07-05 Version 1.36.60
  1390. - Add TaskCancelStatus for QueryTaskList api.
  1391. 2019-07-04 Version 1.36.59
  1392. - Supported API DescribeRecordStatisticsy for Query Volume.
  1393. - Supported API DescribeDomainStatistics for Query Volume.
  1394. 2019-07-03 Version 1.36.58
  1395. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  1396. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  1397. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  1398. - Supported API DescribeDomainDnsStatistics for Query Volume.
  1399. 2019-07-02 Version 1.36.57
  1400. - FnF public version.
  1401. 2019-07-02 Version 1.36.56
  1402. - Fix Double to double.
  1403. 2019-07-01 Version 1.36.55
  1404. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  1405. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  1406. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  1407. - Add RetentionDays to snapshot creating.
  1408. 2019-06-27 Version 1.36.54
  1409. - Added setting of crop_mode parameter.
  1410. 2019-06-24 Version 1.36.53
  1411. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  1412. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  1413. - 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.
  1414. - 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.
  1415. 2019-06-24 Version 1.36.52
  1416. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  1417. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  1418. - 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.
  1419. - 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.
  1420. 2019-06-18 Version 1.36.51
  1421. 1. Supported the related recommend.
  1422. 2. Supported exposure time controll and exposure filter by scene.
  1423. 2019-06-17 Version 1.36.50
  1424. companyreg release
  1425. 2019-06-13 Version 1.36.49
  1426. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  1427. 2019-06-13 Version 1.36.48
  1428. - Generated 2015-01-01 for `R-kvstore`
  1429. 2019-06-13 Version 1.36.47
  1430. Add Network Assistant openapi sdk
  1431. 2019-06-12 Version 1.36.46
  1432. 1, Add RenewBackupPlan DBS interface.
  1433. 2019-06-12 Version 1.36.45
  1434. 1.Fix bug
  1435. 2019-06-12 Version 1.36.44
  1436. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  1437. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  1438. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  1439. 2019-06-05 Version: 1.36.43
  1440. 1, Update DescribeDataLimitDetail interface, add password for response
  1441. 2019-06-04 Version: 1.36.42
  1442. 1, Add new API: UpdateLivePullStreamInfoConfig
  1443. 2019-06-03 Version: 1.36.41
  1444. 1, Add openapi of ACL.
  1445. 2019-05-31 Version: 1.36.40
  1446. 1, add api 'search traces count'
  1447. 2, add page index for api 'searchTraces'
  1448. 2019-05-31 Version: 1.36.39
  1449. 1, Add authority in GetMaterials API.
  1450. 2019-05-29 Version 1.36.38
  1451. update Smartag
  1452. 2019-05-29 Version 1.36.37
  1453. update product
  1454. 2019-05-29 Version: 1.36.36
  1455. 1, Fix ServiceCode typo in request
  1456. 2019-05-28 Version: 1.36.35
  1457. 1, CreateDBInstance now support autoRenew
  1458. 2019-05-27 Version: 1.36.34
  1459. 1, Support video transcode.
  1460. 2019-05-27 Version: 1.36.33
  1461. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  1462. 2019-05-22 Version: 1.36.32
  1463. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  1464. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  1465. 2019-05-20 Version: 1.36.31
  1466. 1, Add both api, ListNotaryInfos
  1467. 2019-05-20 Version: 1.36.30
  1468. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  1469. 2019-05-16 Version: 1.36.29
  1470. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  1471. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  1472. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  1473. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  1474. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  1475. 6, Add the field named UserData to SubmitSnapshotJob api request.
  1476. 2019-05-15 Version: 1.36.28
  1477. 1, Add InstanceId parameter to api CreateDisk
  1478. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  1479. 3, Add SecurityGroupIds parameter to Instance creation apis.
  1480. 2019-05-14 Version: 1.36.27
  1481. 1, support body detect
  1482. 2019-05-14 Version: 1.36.26
  1483. 1, Support body detect.
  1484. 2019-05-14 Version: 1.36.25
  1485. 1, Support body detect.
  1486. 2019-05-14 Version: 1.36.24
  1487. 1, Support body detect.
  1488. 2019-05-13 Version: 1.36.23
  1489. 1, Support for creating instances and joining multiple security groups at the same time.
  1490. 2019-04-26 Version: 1.36.22
  1491. 1, add new openapi.
  1492. 2019-04-23 Version: 1.36.21
  1493. 1, Support mounting multiple volumes using different protocol
  1494. 2, Support scaling out cross AZ
  1495. 2019-04-22 Version: 1.36.20
  1496. 1, This is an example of release-log.
  1497. 2, Please strictly follow this format to edit in English.
  1498. 3, Format:Number + , + Space + Description
  1499. 2019-04-18 Version: 1.36.19
  1500. 1, Add CreateAccount
  1501. 2019-04-18 Version: 1.36.18
  1502. 1, CreateCacheAnalysisTask prop modify
  1503. 2019-04-18 Version: 1.36.17
  1504. 1, add ReservedInstance API.
  1505. 2019-04-17 Version: 1.36.16
  1506. 1, Add DescribeRestoreTaskList DBS interface.
  1507. 2, Add DescribeNodeCidrList DBS interface.
  1508. 2019-04-16 Version: 1.36.15
  1509. 1, Fixed DescribeAccounts response type error.
  1510. 2019-04-16 Version: 1.36.14
  1511. 1, Add api about pushing security check commands
  1512. 2019-04-16 Version: 1.36.13
  1513. 1, Fixed describeAccounts response type error
  1514. 2019-04-16 Version: 1.36.12
  1515. 1, Mark CreateDiagnosticReport as public api.
  1516. 2, ModifySecurityIps support modifyMode parameter.
  1517. 2019-04-16 Version: 1.36.11
  1518. 1, Add group api.
  1519. 2019-04-16 Version: 1.36.10
  1520. 1, Add group api.
  1521. 2019-04-16 Version: 1.36.9
  1522. 1, Add group api.
  1523. 2019-04-16 Version: 1.36.8
  1524. 1, Add group api.
  1525. 2019-04-15 Version: 1.36.7
  1526. 1, Add CreateRestoreTask DBS interface.
  1527. 2, Add StartRestoreTask DBS interface.
  1528. 2019-04-15 Version: 1.36.6
  1529. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  1530. 2019-04-15 Version: 1.36.5
  1531. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  1532. 2019-04-15 Version: 1.36.4
  1533. 1, Add Group Api.
  1534. 2019-04-11 Version: 1.36.3
  1535. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  1536. 2019-04-11 Version: 1.36.2
  1537. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  1538. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  1539. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  1540. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  1541. 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.
  1542. 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.
  1543. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  1544. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  1545. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  1546. 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.
  1547. 2019-04-10 Version: 1.36.1
  1548. 1, Modify DescribeBackupGatewayList DBS interface.
  1549. 2019-04-10 Version: 1.36.0
  1550. 1, New APIs for visual service (VNC).
  1551. 2, New APIs for software management.
  1552. 3, New APIs for CPFS filesystem.
  1553. 2019-04-09 Version: 1.35.9
  1554. 1, support service account management networkInterface function.
  1555. 2019-04-09 Version: 1.35.8
  1556. 1, Add Apis for offline VerifySDK.
  1557. 2019-04-08 Version: 1.35.7
  1558. 1, Modify DescribeBackupPlanList DBS interface.
  1559. 2, Modify DescribeFullBackupList DBS interface.
  1560. 3, Modify DescribeIncrementBackupList DBS interface.
  1561. 4, Modify DescribeBackupGatewayList DBS interface.
  1562. 2019-04-08 Version: 1.35.6
  1563. 1, Add StopBackupPlan DBS interface.
  1564. 2, Add DescribeBackupPlanList DBS interface.
  1565. 3, Add DescribeFullBackupList DBS interface.
  1566. 4, Add DescribeIncrementBackupList DBS interface.
  1567. 5, Add DescribeBackupGatewayList DBS interface.
  1568. 2019-04-04 Version: 1.35.5
  1569. 1, ScalingConf systemDisk add DiskName and Description parameters.
  1570. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  1571. 2019-04-03 Version: 1.35.4
  1572. 1, Add interfaces related to vulnerability whitelist
  1573. 2, Add interfaces related to vulnerability auto-del configuration
  1574. 3, Add interfaces related to vulnerability fix advise
  1575. 4, Add interfaces searching and operating vulnerability
  1576. 2019-03-29 Version: 1.35.3
  1577. 1, Add DLQ message openAPI.
  1578. 2, Add Query the subscription relational openAPI.
  1579. 3, Remove white list restrictions.
  1580. 2019-03-28 Version: 1.35.2
  1581. 1, release bssopenapi
  1582. 2019-03-28 Version: 1.35.1
  1583. 1, Add multiple language support in DescribeZones
  1584. 2, Add gray parameter in CreateDisk
  1585. 2019-03-28 Version: 1.35.0
  1586. 1, Add logo detect.
  1587. 2019-03-27 Version: 1.34.66
  1588. 1, Add Project interface.
  1589. 2, Add Tag interface.
  1590. 3, Add TrainData interface.
  1591. 4, Add Train interface.
  1592. 5, Add Iteration interface.
  1593. 6, Add Predict interface.
  1594. 7, Add PredictData interface.
  1595. 2019-03-27 Version: 1.34.65
  1596. 1, Add Project interface.
  1597. 2, Add Tag interface.
  1598. 3, Add TrainData interface.
  1599. 4, Add Train interface.
  1600. 5, Add Iteration interface.
  1601. 6, Add Predict interface.
  1602. 7, Add PredictData interface.
  1603. 2019-03-27 Version: 1.34.64
  1604. 1, Add DLQ message openAPI.
  1605. 2, Add Query the subscription relational openAPI.
  1606. 3, Remove white list restrictions.
  1607. 2019-03-27 Version: 1.34.63
  1608. 1, Add DLQ message openAPI.
  1609. 2, Add Query the subscription relational openAPI.
  1610. 3, Remove white list restrictions.
  1611. 2019-03-27 Version: 1.34.62
  1612. 1, release dysmsapi
  1613. 2019-03-25 Version: 1.34.61
  1614. 1, cms fix duplicated struct definition
  1615. 2019-03-25 Version: 1.34.60
  1616. 1, mts fix duplication struct definition
  1617. 2019-03-25 Version: 1.34.59
  1618. 1, jarvis-pulic fix product code with dash
  1619. 2019-03-25 Version: 1.34.58
  1620. 1, sas-api, fix product code with dash
  1621. 2019-03-21 Version: 1.34.57
  1622. 1, Update Dependency
  1623. 2019-03-21 Version: 1.34.56
  1624. 1, Update Dependency
  1625. 2019-03-20 Version: 1.34.55
  1626. 1, Update the Dependency
  1627. 2019-03-20 Version: 1.34.54
  1628. 1, Update the Dependency
  1629. 2019-03-20 Version: 1.34.53
  1630. 1, cloudwf: update bool type parameter
  1631. 2019-03-20 Version: 1.34.52
  1632. 1, Update Dependency
  1633. 2019-03-19 Version: 1.34.51
  1634. 1, Support ' fc ' Source DomainName
  1635. 2019-03-19 Version: 1.34.50
  1636. 1, move fields: tag, associate_person, cid
  1637. 2019-03-19 Version: 1.34.49
  1638. 1, format fields: tags, associatePerson
  1639. 2019-03-19 Version: 1.34.48
  1640. 1, add query user oms data api
  1641. 2019-03-19 Version: 1.34.47
  1642. 1, Update Dependency
  1643. 2019-03-19 Version: 1.34.46
  1644. 1, Update Dependency
  1645. 2019-03-19 Version: 1.34.45
  1646. 1, This is an example of release-log.
  1647. 2, Please strictly follow this format to edit in English.
  1648. 3, Format:Number + , + Space + Description
  1649. 2019-03-18 Version: 1.34.44
  1650. 1, rds: deliver string true/false to server for bool type parameter, not previous 1/0
  1651. 2019-03-18 Version: 1.34.43
  1652. 1, deliver string true/false to server for bool type parameter, not previous 1/0
  1653. 2019-03-18 Version: 1.34.42
  1654. 1, Signature Document SDK.
  1655. 2, First version publish.
  1656. 3, Beta Version SDK
  1657. 2019-03-18 Version: 1.34.41
  1658. 1, Update Dependency
  1659. 2019-03-18 Version: 1.34.40
  1660. 1, move AssociatePerson\Tag field
  1661. 2, Optimize RealName field
  1662. 2019-03-18 Version: 1.34.39
  1663. 1, Update Dependency
  1664. 2019-03-18 Version: 1.34.38
  1665. 1, Update Dependency
  1666. 2019-03-18 Version: 1.34.37
  1667. 1, Update Dependency
  1668. 2019-03-18 Version: 1.34.36
  1669. 1, Update Dependency
  1670. 2019-03-15 Version: 1.34.35
  1671. 1, Update Dependency
  1672. 2019-03-15 Version: 1.34.34
  1673. 1, Update Dependency
  1674. 2019-03-15 Version: 1.34.33
  1675. 1, Update Dependency
  1676. 2019-03-15 Version: 1.34.32
  1677. 1, Update Dependency
  1678. 2019-03-15 Version: 1.34.31
  1679. 1, Update Dependency
  1680. 2019-03-15 Version: 1.34.30
  1681. 1, Update Dependency
  1682. 2019-03-15 Version: 1.34.29
  1683. 1, Update Dependency
  1684. 2019-03-15 Version: 1.34.28
  1685. 1, Update Dependency
  1686. 2019-03-15 Version: 1.34.27
  1687. 1, Update Dependency
  1688. 2019-03-15 Version: 1.34.26
  1689. 1, Update Dependency
  1690. 2019-03-15 Version: 1.34.25
  1691. 1, Update Dependency
  1692. 2019-03-14 Version: 1.34.24
  1693. 1, Update Dependency
  1694. 2019-03-14 Version: 1.34.23
  1695. 1, Update Dependency
  1696. 2019-03-14 Version: 1.34.22
  1697. 1, Update Dependency
  1698. 2019-03-14 Version: 1.34.21
  1699. 1, Update Dependency
  1700. 2019-03-14 Version: 1.34.20
  1701. 1, Update Dependency
  1702. 2019-03-14 Version: 1.34.19
  1703. 1, Update Dependency
  1704. 2019-03-14 Version: 1.34.18
  1705. 1, Update Dependency
  1706. 2019-03-14 Version: 1.34.17
  1707. 1, Update Dependency
  1708. 2019-03-14 Version: 1.34.16
  1709. 1, Update Dependency
  1710. 2019-03-13 Version: 1.34.15
  1711. 1, Update Dependency
  1712. 2019-03-13 Version: 1.34.14
  1713. 1, Update Dependency
  1714. 2019-03-13 Version: 1.34.13
  1715. 1, Update Dependency
  1716. 2019-03-13 Version: 1.34.12
  1717. 1, Distinguish between system and service parameters
  1718. 2019-03-13 Version: 1.34.11
  1719. 1, add DescribeDemands interface
  1720. 2019-03-13 Version: 1.34.10
  1721. 1, Distinguish between system and service parameters
  1722. 2019-03-12 Version: 1.34.9
  1723. 1, add agency infomation
  1724. 2, update sdk core resources
  1725. 2018-12-20 Version: 1.34.8
  1726. 1, Sync CDN API.
  1727. 2018-12-11 Version: 1.34.7
  1728. 1, Sync CDN API.
  1729. 2018-12-06 Version: 1.34.6
  1730. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  1731. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  1732. 2018-12-03 Version: 1.34.5
  1733. 1, Sync CDN API.
  1734. 2018-12-03 Version: 1.34.4
  1735. 1, Sync CDN API.
  1736. 2018-12-03 Version: 1.34.3
  1737. 1, Update 2014-11-11 API.
  1738. 2018-12-03 Version: 1.34.2
  1739. 1, Add a parameter to RemoveInstances.
  1740. 2018-11-30 Version: 1.34.1
  1741. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  1742. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  1743. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  1744. 2018-11-28 Version: 1.34.0
  1745. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  1746. 2018-11-28 Version: 1.33.6
  1747. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  1748. 2018-11-27 Version: 1.33.5
  1749. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  1750. 2018-11-22 Version: 1.33.4
  1751. 1, Increase the scene field
  1752. 2018-11-22 Version: 1.33.3
  1753. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  1754. 2018-11-21 Version: 1.33.2
  1755. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  1756. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  1757. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  1758. 2018-11-16 Version: 1.33.1
  1759. 1, update version
  1760. 2018-11-15 Version: 1.33.0
  1761. 1, ECS support ipv6Address
  1762. 2018-11-14 Version: 1.32.0
  1763. 1, Better support for hybrid cluster.
  1764. 2018-11-13 Version: 1.31.0
  1765. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  1766. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  1767. 3, Add DynamicCheck properties for results of CheckDomain interface.
  1768. 2018-11-10 Version: 1.30.5
  1769. 1, Update SetWaitingRoomConfig.
  1770. 2018-11-08 Version: 1.30.4
  1771. 1, Fix the http response receive bug
  1772. 2018-11-08 Version: 1.30.3
  1773. 1, Update Version.
  1774. 2018-11-07 Version: 1.30.2
  1775. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  1776. 2, Add API GetTaskStatus,StartTask,StopTask.
  1777. 3, Add API GetTaskParam,UpdateTaskParam.
  1778. 2018-11-02 Version: 1.30.1
  1779. 1, deviceName and productKey can be used instead of iotId.
  1780. 2, New productKey fields for queryauthentication output parameter.
  1781. 3, New deviceName fields for queryauthentication output parameter.
  1782. 2018-11-02 Version: 1.30.0
  1783. 1, first version
  1784. 2018-10-31 Version: 1.29.5
  1785. 1, Update SetWaitingRoomConfig.
  1786. 2018-10-31 Version: 1.29.4
  1787. 1, Add SetWaitingRoomConfig.
  1788. 2018-10-31 Version: 1.29.3
  1789. 1, Add SetWaitingRoomConfig.
  1790. 2018-10-30 Version: 1.29.2
  1791. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  1792. 2018-10-26 Version: 1.29.1
  1793. 1, Return AuditConclusions in SubmitMaterials API.
  1794. 2018-10-25 Version: 1.29.0
  1795. 1, Add apis for trademark domains.
  1796. 2, Add QueryDomainAdminDivision api.
  1797. 2018-10-16 Version: 1.28.3
  1798. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1799. 2018-10-16 Version: 1.28.2
  1800. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1801. 2018-10-16 Version: 1.28.1
  1802. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1803. 2018-10-16 Version: 1.28.0
  1804. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  1805. 2, Add instance topology api DescribeInstanceTopology
  1806. 3, Add mount point in DescribeDisksFullStatus
  1807. 2018-10-16 Version: 1.27.11
  1808. 1, remove set group tags API.
  1809. 2018-10-13 Version: 1.27.10
  1810. 1, Add device group related APIs.
  1811. 2018-10-13 Version: 1.27.9
  1812. 1, Add device group related APIs.
  1813. 2018-10-13 Version: 1.27.8
  1814. 1, Add device group related APIs.
  1815. 2018-10-11 Version: 1.27.7
  1816. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  1817. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  1818. 3, Add a new api called UpdateImageInfos to update image information.
  1819. 2018-10-09 Version: 1.27.6
  1820. 1, v1.0.0-->v1.0.1
  1821. 2, provider new region:beijing/shenzhen/zhangjiakou
  1822. 3, provider service for VPC user;
  1823. 2018-09-30 Version: 1.27.5
  1824. 1, This is an example of release-log.
  1825. 2, Please strictly follow this format to edit in English.
  1826. 3, Format:Number + , + Space + Description
  1827. 2018-09-29 Version: 1.27.4
  1828. 1, Sync cdn api.
  1829. 2018-09-29 Version: 1.27.3
  1830. 1, This is an example of release-log.
  1831. 2, Please strictly follow this format to edit in English.
  1832. 3, Format:Number + , + Space + Description
  1833. 2018-09-29 Version: 1.27.2
  1834. 1, This is an example of release-log.
  1835. 2, Please strictly follow this format to edit in English.
  1836. 3, Format:Number + , + Space + Description
  1837. 2018-09-28 Version: 1.27.1
  1838. 1, Add one api, QueryAppDeviceList.
  1839. 2018-09-27 Version: 1.27.0
  1840. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  1841. 2018-09-27 Version: 1.26.4
  1842. 1, modify getFaces Api
  1843. 2018-09-27 Version: 1.26.3
  1844. 1, modify getFaces Api
  1845. 2018-09-25 Version: 1.26.2
  1846. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  1847. 2018-09-17 Version: 1.26.1
  1848. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  1849. 2018-09-14 Version: 1.26.0
  1850. 1, Add DedicatedHost Feature
  1851. 2018-09-13 Version: 1.25.3
  1852. 1, Add CreateChannelToken.
  1853. 2018-09-06 Version: 1.25.2
  1854. 1, AutoScaling support launchTemplate.
  1855. 2018-09-06 Version: 1.25.1
  1856. 1, Add API deleteProduct.
  1857. 2, Move all API to version 20180120.
  1858. 2018-09-05 Version: 1.25.0
  1859. 1, Add new APIs with control policy for querying price
  1860. 2018-09-03 Version: 1.24.2
  1861. 1, voice identify interface
  1862. 2, client upload credentials interface
  1863. 2018-09-03 Version: 1.24.1
  1864. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  1865. 2018-08-28 Version: 1.24.0
  1866. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  1867. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  1868. 2018-08-28 Version: 1.23.4
  1869. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  1870. 2018-08-27 Version: 1.23.3
  1871. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  1872. 2018-08-27 Version: 1.23.2
  1873. 1, Add api GetGatewayBySubDevice.
  1874. 2, Modified the time related response parameters.
  1875. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1876. 2018-08-23 Version: 1.23.1
  1877. 1, RunInstance add privateIpAddress.
  1878. 2018-08-22 Version: 1.23.0
  1879. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  1880. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  1881. 2018-08-21 Version: 1.22.9
  1882. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  1883. 2018-08-21 Version: 1.22.8
  1884. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1885. 2018-08-17 Version: 1.22.7
  1886. 1, Add a new api called DeleteImage to clear the image resource.
  1887. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  1888. 3, Add the field called OutputType to GetMezzanineInfo api response.
  1889. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  1890. 2018-08-17 Version: 1.22.6
  1891. 1, New apkpubkey fields for queryauthentication output parameter.
  1892. 2, New packagename fields for queryauthentication output parameter.
  1893. 3, New clientId fields for queryauthentication output parameter.
  1894. 2018-08-16 Version: 1.22.5
  1895. 1, ModifyScalingConfiguration add imageName.
  1896. 2, CreateScalingConfiguration add imageName.
  1897. 2018-08-15 Version: 1.22.4
  1898. 1, Fix bug in GetMaterials API.
  1899. 2, GetVerifyToken added a new param VerifyConfigs
  1900. 2018-08-15 Version: 1.22.3
  1901. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  1902. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  1903. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  1904. 2018-08-15 Version: 1.22.2
  1905. 1, Update ecs tag to 20 maximum
  1906. 2018-08-14 Version: 1.22.1
  1907. 1, Change parameter name of Dialogue
  1908. 2018-08-13 Version: 1.22.0
  1909. 1, New userinfo fields for registerface input parameter.
  1910. 2, New userinfo fields for updateface input parameter.
  1911. 3, New userinfo fields for queryface output parameter.
  1912. 2018-08-13 Version: 1.21.6
  1913. 1, Add cross domain support.
  1914. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  1915. 2018-08-08 Version: 1.21.5
  1916. 1, The official release 4.0.0
  1917. 2018-08-08 Version: 1.21.4
  1918. 1, Update FC apis.
  1919. 2018-08-08 Version: 1.21.3
  1920. 1, First release.
  1921. 2018-08-07 Version: 1.21.2
  1922. 1, Add api GetGatewayBySubDevice.
  1923. 2, Modified the time related response parameters.
  1924. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1925. 2018-08-05 Version: 1.21.1
  1926. 1, Add Interface SubmitSubtitleJob
  1927. 2, Support convert ttml、stl subtitle to vtt
  1928. 2018-08-03 Version: 1.21.0
  1929. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  1930. 2018-08-01 Version: 1.20.5
  1931. 1, Add new API GetConversationDetailByContactId
  1932. 2018-08-01 Version: 1.20.4
  1933. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1934. 2018-07-31 Version: 1.20.3
  1935. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  1936. 2018-07-26 Version: 1.20.2
  1937. 1, Add BatchGetJobMetricInfo API.
  1938. 2, Add BatchGetPluginConfigInfo API.
  1939. 3, Add GetJobTopology API.
  1940. 2018-07-25 Version: 1.20.1
  1941. 1, Add RemoveTerminals API.
  1942. 2018-07-13 Version: 1.20.0
  1943. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  1944. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  1945. 3, New APIs for Container applications: AddContainerApp, etc.
  1946. 2018-07-11 Version: 1.19.3
  1947. 1, new function: Attach and Detach Rds instance of scalingGroup.
  1948. 2018-07-11 Version: 1.19.2
  1949. 1, Add DetectFaceAttributesService.
  1950. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  1951. 2018-07-05 Version: 1.19.1
  1952. 1, new function, attach/detach load balancer of scalingGroup
  1953. 2018-07-05 Version: 1.19.0
  1954. 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.
  1955. 2018-06-28 Version: 1.18.1
  1956. 1, ScalingConfiguration support hostName and passwordInherit
  1957. 2, ScalingConfiguration support modify
  1958. 2018-06-27 Version: 1.18.0
  1959. 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.
  1960. 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
  1961. 2018-06-27 Version: 1.17.10
  1962. 1, DescribeNetworkInterfaces support query with vpcId
  1963. 2018-06-22 Version: 1.17.9
  1964. 1, rtc openapi
  1965. 2018-06-21 Version: 1.17.8
  1966. 1, This is add InstanceList.
  1967. 2018-06-20 Version: 1.17.7
  1968. 1, Add InstanceList in product security information query.
  1969. 2018-06-20 Version: 1.17.6
  1970. 1, Add InstanceList in product security information query.
  1971. 2018-06-14 Version: 1.17.5
  1972. 1, Add passwordInherit.
  1973. 2018-06-13 Version: 1.17.4
  1974. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  1975. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  1976. 3, Add return value fillMode DescribeCasterLayouts.
  1977. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  1978. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  1979. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  1980. 2018-06-13 Version: 1.17.3
  1981. 1, Add lifecycleHook.
  1982. 2018-06-08 Version: 1.17.2
  1983. 1, Add scdn interface,support scdn.
  1984. 2018-06-06 Version: 1.17.1
  1985. 1, Change the type of srcUid to int.
  1986. 2018-06-06 Version: 1.17.0
  1987. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  1988. 2018-05-29 Version: 1.16.0
  1989. 1, Add new interface DescribePhoneInfo to SDK.
  1990. 2018-05-28 Version: 1.15.0
  1991. 1, Add face 1-N,1-1 scan interface.
  1992. 2018-05-28 Version: 1.14.0
  1993. 1, ValidateSecurityGroup API
  1994. 2018-05-28 Version: 1.13.0
  1995. 1, This is an example of release-log.
  1996. 2, Please strictly follow this format to edit in English.
  1997. 3, Format:Number + , + Space + Description
  1998. 2018-05-23 Version: 1.12.0
  1999. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  2000. 2018-05-23 Version: 1.11.0
  2001. 1, Update API version to 2018-04-12.
  2002. 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.
  2003. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  2004. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  2005. 2018-05-23 Version: 1.10.3
  2006. 1, This is an example of release-log.
  2007. 2, Please strictly follow this format to edit in English.
  2008. 3, Format:Number + , + Space + Description
  2009. 2018-05-22 Version: 1.10.2
  2010. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  2011. 2, modify DescribeDBInstanceAttribute.
  2012. 2018-05-17 Version: 1.10.1
  2013. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  2014. 2018-05-17 Version: 1.10.0
  2015. 1, the first version of private dns SDK
  2016. 2018-05-11 Version: 1.9.1
  2017. 1, Add Function Compute interface,support Function Compute.
  2018. 2018-05-09 Version: 1.9.0
  2019. 1, Add apis for domain broker.
  2020. 2018-05-08 Version: 1.8.2
  2021. 1, Add instance params.
  2022. 2018-05-08 Version: 1.8.1
  2023. 1, Remove DescribeAccountAttributes.
  2024. 2018-05-02 Version: 1.8.0
  2025. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  2026. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  2027. 2018-04-28 Version: 1.7.3
  2028. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  2029. 2, Add dcdn config interface,Support set、delete、query domain config.
  2030. 2018-04-28 Version: 1.7.2
  2031. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  2032. 2, Add dcdn config interface,Support set、delete、query domain config.
  2033. 2018-04-27 Version: 1.7.1
  2034. 1, release hsm open api
  2035. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  2036. 2018-04-26 Version: 1.7.0
  2037. 1, Add apis for domain group.
  2038. 3, Add fields for QueryDomainList.
  2039. 2018-04-24 Version: 1.6.5
  2040. 1, add interface FetchPhotos
  2041. 2, add xflush log param unixTimestamp
  2042. 2018-04-23 Version: 1.6.4
  2043. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  2044. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  2045. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  2046. 2018-04-23 Version: 1.6.3
  2047. 1, Add notificationConfiguration.
  2048. 2, Add standby status.
  2049. 2018-04-17 Version: 1.6.2
  2050. 1, EditPhotos add input param TakenAt
  2051. 2, add FetchMomentPhotos
  2052. 3, ListAlbums add return param Remark
  2053. 2018-04-11 Version: 1.6.1
  2054. 1, GetLibrary/FetchLibraries add return ctime
  2055. 2, Editphotos add input param takenAt
  2056. 2018-04-10 Version: 1.6.0
  2057. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  2058. 2018-04-10 Version: 1.5.1
  2059. 1, publish Project API.
  2060. 2, publish Service API.
  2061. 3, publish Service order API.
  2062. 4, publish Credential API.
  2063. 5, publish CAS API.
  2064. 2018-04-08 Version: 1.5.0
  2065. 1, Add voice asynchronous scan interface.
  2066. 2018-04-03 Version: 1.4.0
  2067. 1, Add APIs for domain transfer in and transfer out.
  2068. 2, Add APIs for poll and acknowledge domain task.
  2069. 3, Add API for query domain group list.
  2070. 2018-03-30 Version: 1.3.8
  2071. 1, API QueryCustomerSaleInfo arguments update.
  2072. 2018-03-29 Version: 1.3.7
  2073. 1, edit FetchLibraries return param format
  2074. 2018-03-27 Version: 1.3.6
  2075. 1, Rename QueryCustomerSaleInfo to RegionName.
  2076. 2018-03-27 Version: 1.3.5
  2077. 1, publish Project API.
  2078. 2, publish Service API.
  2079. 3, publish Service order API.
  2080. 4, publish Credential API.
  2081. 5, publish CAS API.
  2082. 2018-03-27 Version: 1.3.4
  2083. 1, add interface FetchLibraries
  2084. 2018-03-23 Version: 1.3.3
  2085. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  2086. 2018-03-23 Version: 1.3.2
  2087. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  2088. 2018-03-23 Version: 1.3.1
  2089. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  2090. 2018-03-23 Version: 1.3.0
  2091. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  2092. 2, Remove 'QueryPushDetail' Api.
  2093. 2018-03-20 Version: 1.2.16
  2094. 1, add FetchAlbumTagPhotos
  2095. 2, CreatePhoto add optional param TakenAt
  2096. 2018-03-16 Version: 1.2.15
  2097. 1, Synchronize to the latest api list
  2098. 2018-03-15 Version: 1.2.14
  2099. 1, Synchronize to the latest api list
  2100. 2018-03-15 Version: 1.2.13
  2101. 1, Synchronize to the latest api list
  2102. 2018-03-15 Version: 1.2.12
  2103. 1, Synchronize to the latest api list
  2104. 2018-03-15 Version: 1.2.11
  2105. 1, Synchronize to the latest api list
  2106. 2018-03-15 Version: 1.2.10
  2107. 1, Add QueryCustomerSaleInfo API.
  2108. 2018-03-14 Version: 1.2.9
  2109. 1, Support predefine endpoints parse
  2110. 2018-03-13 Version: 1.2.8
  2111. 1, API GetQuotaHistoryInfo fix field error.
  2112. 2018-03-07 Version: 1.2.7
  2113. 1, add GetAlbumsByNames
  2114. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2115. 3, add return IdStr for string
  2116. 2018-03-06 Version: 1.2.6
  2117. 1, add GetAlbumsByNames
  2118. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2119. 3, add return IdStr for string
  2120. 2018-03-06 Version: 1.2.5
  2121. 1, add GetAlbumsByNames
  2122. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2123. 3, add return IdStr for string
  2124. 2018-02-28 Version: 1.2.4
  2125. 1, Add query resource inventory API.
  2126. 2, Add query topology API.
  2127. 2018-02-27 Version: 1.2.3
  2128. 1, Add query topology API.
  2129. 2018-02-27 Version: 1.2.2
  2130. 1, Add new API: ListRecordingsByContactId.
  2131. 2018-02-27 Version: 1.2.1
  2132. 1, Add Action API.
  2133. 2018-02-27 Version: 1.2.0
  2134. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  2135. 2018-02-09 Version: 1.1.0
  2136. 1, Aliyun E-HPC service SDK, initial version.
  2137. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  2138. 2018-02-07 Version: 1.0.12
  2139. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  2140. 2018-02-06 Version: 1.0.11
  2141. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  2142. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  2143. 2018-02-02 Version: 1.0.10
  2144. 1, this version is new of captcha management and nvc analyze
  2145. 2018-01-26 Version: 1.0.9
  2146. 1, Update InstanceProfileCredentialsProvider
  2147. 2, Update common api
  2148. 2018-01-24 Version: 1.0.8
  2149. 1, Fixed a problem that the ActiveAlert interface name is not standard
  2150. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  2151. 2018-01-24 Version: 1.0.7
  2152. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  2153. 2018-01-23 Version: 1.0.6
  2154. 1, Tesla Dam API release.
  2155. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  2156. 2018-01-12 Version: 1.0.5
  2157. 1, First commit ess module
  2158. 2018-01-11 Version: 1.0.4
  2159. 1, replace photo tag 2000 upgrade to 5000
  2160. 2, add TrashQuota
  2161. 2018-01-10 Version: 1.0.3
  2162. 1, First release vpc for c++
  2163. 2018-01-10 Version: 1.0.2
  2164. 1, First release slb for C++
  2165. 2018-01-10 Version: 1.0.1
  2166. 1, First release ecs for C++
  2167. 2017-12-27 Version: 1.0.0
  2168. 1, Fix build failed on linux