CHANGELOG 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734
  1. 2021-05-10 Version: 1.36.723
  2. - Update RecognizeDriverLicense RecognizeLicensePlate.
  3. 2021-05-10 Version: 1.36.722
  4. - Add API GenerateMergedTable.
  5. - Add API ListDateSourceTables.
  6. - Add API ListDateSourceTableFields.
  7. - Add API ListRamRoles.
  8. 2021-05-10 Version: 1.36.721
  9. - Delete API.
  10. 2021-05-10 Version: 1.36.720
  11. - Delete live API.
  12. 2021-05-10 Version: 1.36.719
  13. - Delete Api.
  14. 2021-05-10 Version: 1.36.718
  15. - Delete API.
  16. 2021-05-08 Version: 1.36.717
  17. - Support SLB DescribeLoadBalancerListeners.
  18. 2021-05-08 Version: 1.36.716
  19. - Generated 2020-05-18 for `dataworks-public`.
  20. 2021-05-08 Version: 1.36.715
  21. - Generated 2018-01-20 for `Iot`.
  22. 2021-05-08 Version: 1.36.714
  23. - Generated 2018-07-13 for `Ft`.
  24. 2021-05-08 Version: 1.36.713
  25. - Generated 2019-09-16 for `alikafka`.
  26. 2021-05-07 Version: 1.36.712
  27. - Support interface DescribeDBInstanceEncryptionKey for DB Instance Cloud Disk Encryption.
  28. 2021-05-06 Version: 1.36.711
  29. - Generated 2016-11-01 for `live`.
  30. 2021-05-06 Version: 1.36.710
  31. - Update Open API.
  32. 2021-05-06 Version: 1.36.709
  33. - Support DescribePolarSQLCollectorPolicy.
  34. 2021-04-30 Version: 1.36.708
  35. - Add OpenArmsServiceSecondVersion.
  36. 2021-04-29 Version: 1.36.707
  37. - ModifyNodeSpec API add SwitchTime.
  38. 2021-04-29 Version: 1.36.706
  39. - Add DescribeInstances API.
  40. 2021-04-29 Version: 1.36.705
  41. - Update RecognizeFace.
  42. 2021-04-29 Version: 1.36.704
  43. - Support sag reseller.
  44. 2021-04-29 Version: 1.36.703
  45. - Support latest openAPIs.
  46. 2021-04-28 Version: 1.36.702
  47. - Export new API.
  48. 2021-04-27 Version: 1.36.701
  49. - GetProjectMember support pageSize.
  50. 2021-04-27 Version: 1.36.700
  51. - Generated 2016-11-01 for `live`.
  52. 2021-04-27 Version: 1.36.699
  53. - Add CustomMessage to CreateMergeFaceGroupsJob.
  54. 2021-04-26 Version: 1.36.698
  55. - Generated 2019-06-01 for `smc`.
  56. 2021-04-22 Version: 1.36.697
  57. - Support NetworkInterface TrafficMode.
  58. 2021-04-22 Version: 1.36.696
  59. - AcceptInquiredSystemEvent adds Choice parameter.
  60. - DescribeInstanceHistoryEvents supports multiple resource types.
  61. 2021-04-22 Version: 1.36.695
  62. - Support CEN latest Apis.
  63. 2021-04-22 Version: 1.36.694
  64. - Support GetPhysicalDatabase API.
  65. 2021-04-21 Version: 1.36.693
  66. - Add API to list repo members with group inherited info.
  67. 2021-04-20 Version: 1.36.692
  68. - Support Tag.
  69. 2021-04-20 Version: 1.36.691
  70. - Export predictive dialer API.
  71. 2021-04-20 Version: 1.36.690
  72. - Create Lindorm Open api.
  73. 2021-04-20 Version: 1.36.689
  74. - LivenessFaceVerify ContrastFaceVerify CompareFaceVerify API Return CertifyId.
  75. 2021-04-19 Version: 1.36.688
  76. - Export StartBack2BackCall API.
  77. 2021-04-19 Version: 1.36.687
  78. - Generated 2020-10-29 for `reid_cloud`.
  79. 2021-04-17 Version: 1.36.686
  80. - Update RunMedQA.
  81. 2021-04-16 Version: 1.36.685
  82. - Support devops organization deletion.
  83. 2021-04-16 Version: 1.36.684
  84. - Add CheckProductOpen.
  85. - Add az routing policy.
  86. 2021-04-16 Version: 1.36.683
  87. - Generated 2020-10-29 for `reid_cloud`.
  88. 2021-04-16 Version: 1.36.682
  89. - Add API GetDomain.
  90. - Add API ListSystemAnalyzers.
  91. - Add parameter domain to API ListAppGroups, ModifyAppGroup, CreateAppGroup, DescribeAppGroup, DescribeApp.
  92. 2021-04-14 Version: 1.36.681
  93. - Support latest openAPIs.
  94. 2021-04-14 Version: 1.36.680
  95. - Delete MultiMedia Post Scan API.
  96. 2021-04-14 Version: 1.36.679
  97. - Download url add fixed domain.
  98. 2021-04-13 Version: 1.36.678
  99. - Supported ConfigureDtsJob SynchronizationDirection.
  100. - Fixed DescribePreCheckStatus JobProgress bootTime.
  101. 2021-04-13 Version: 1.36.677
  102. - Release AddFaceVideoTemplate DeleteFaceVideoTemplate QueryFaceVideoTemplate MergeVideoModelFace.
  103. 2021-04-12 Version: 1.36.676
  104. - Export config api.
  105. 2021-04-12 Version: 1.36.675
  106. - Support GetDBTopology API.
  107. 2021-04-09 Version: 1.36.674
  108. - Bank Card Ocr and Verify.
  109. 2021-04-09 Version: 1.36.673
  110. - Update API param.
  111. 2021-04-08 Version: 1.36.672
  112. - Supported ModifyDtsJob and DeleteDtsJob.
  113. 2021-04-08 Version: 1.36.671
  114. - Add DetectIPCVideoObject.
  115. 2021-04-08 Version: 1.36.670
  116. - Release DetectVideoIPCObject.
  117. 2021-04-06 Version: 1.36.669
  118. - Release MonitorExamination.
  119. 2021-04-06 Version: 1.36.668
  120. - Update ScreenChestCT DetectRibFracture.
  121. 2021-04-01 Version: 1.36.667
  122. - Add data service api, including ListAnalyticsData.
  123. - Update file uploading api, including GenerateFileUploadURL.
  124. 2021-03-31 Version: 1.36.666
  125. - Ecs support hibernation.
  126. - DescribeSnapshotGroups add ProgressStatus.
  127. 2021-03-30 Version: 1.36.665
  128. - Generated 2020-05-18 for `dataworks-public`.
  129. 2021-03-30 Version: 1.36.664
  130. - Generated 2020-05-18 for `dataworks-public`.
  131. 2021-03-30 Version: 1.36.663
  132. - Generated 2020-11-26 for `Airec`.
  133. 2021-03-30 Version: 1.36.662
  134. - Supported MultiMedia Post scan.
  135. 2021-03-30 Version: 1.36.661
  136. - Supported Open Api.
  137. 2021-03-30 Version: 1.36.660
  138. - Supported Open Api.
  139. 2021-03-30 Version: 1.36.659
  140. - Support ListDDLPublishRecords API.
  141. - Fixed GetMetaTableColumn, GetMetaTableDetailInfo API response param DataLength lack of precision.
  142. 2021-03-30 Version: 1.36.658
  143. - Add CreateAndStartBackupPlan.
  144. - Add DescribeFullBackupSet.
  145. - Add DescribeLogicalBackupSet.
  146. 2021-03-26 Version: 1.36.657
  147. - Update api.
  148. 2021-03-26 Version: 1.36.656
  149. - Add RenewAdditionalBandwidth API.
  150. 2021-03-26 Version: 1.36.655
  151. - Upgrade mongodb sdk.
  152. 2021-03-25 Version: 1.36.654
  153. - Add DescribeInstanceBill.
  154. - Update QuerySettleBill to support RecordID filter.
  155. 2021-03-25 Version: 1.36.653
  156. - Release autoscaling apis for timer features.
  157. 2021-03-25 Version: 1.36.652
  158. - Change indicator date type of ListHistoriticalAgentReport.
  159. 2021-03-24 Version: 1.36.651
  160. - Export new API.
  161. 2021-03-23 Version: 1.36.650
  162. - Update Open API.
  163. 2021-03-22 Version: 1.36.649
  164. - CreateEai api adds SecurityGroupId, VSwitchId parameters.
  165. 2021-03-22 Version: 1.36.648
  166. - Add OneConsole support.
  167. - Add ACK support.
  168. - Edit ListSearchLog etc.
  169. 2021-03-21 Version: 1.36.647
  170. - Support watermark.
  171. - Support pdf preview.
  172. 2021-03-19 Version: 1.36.646
  173. - StateConfiguration in CreateStateConfigurationResponse changes from list to single object.
  174. 2021-03-19 Version: 1.36.645
  175. - Modify the helpUrl parameter of OnsTopicList and OnsGroupList API to be invisible.
  176. 2021-03-19 Version: 1.36.644
  177. - Export new API.
  178. 2021-03-19 Version: 1.36.643
  179. - Export new API for predictive dialer.
  180. 2021-03-18 Version: 1.36.642
  181. - Edit GetTrace api.
  182. - Edit GetMultipleTrace api.
  183. 2021-03-18 Version: 1.36.641
  184. - Generated 2020-05-18 for `dataworks-public`.
  185. 2021-03-17 Version: 1.36.640
  186. - Add organizaition security center API.
  187. 2021-03-17 Version: 1.36.639
  188. - EnableAdditionalBandwidth API add SourceBiz.
  189. - DescribeAvailableResource add ProductType to support buy OnECS instance.
  190. 2021-03-17 Version: 1.36.638
  191. - Add group alarm rule resource extension parameter.
  192. 2021-03-17 Version: 1.36.637
  193. - Update MakeSuperResolutionImage.
  194. 2021-03-16 Version: 1.36.636
  195. - Supported aliyun cloud environment.
  196. 2021-03-15 Version: 1.36.635
  197. - Increase availability monitoring increase HTP header.
  198. 2021-03-14 Version: 1.36.634
  199. - Generated 2018-07-13 for `Ft`.
  200. 2021-03-14 Version: 1.36.633
  201. - Generated 2018-07-13 for `Ft`.
  202. 2021-03-13 Version: patch
  203. - Supportd DescribeTableStatisticsRequest.
  204. 2021-03-12 Version: patch
  205. - Add EnableAdditionalBandwidth API.
  206. - Add CreateTairInstance API.
  207. 2021-03-12 Version: patch
  208. - Supported batch delete for contact template.
  209. - Supported save for contact template.
  210. - Supported set default for contact template.
  211. 2021-03-11 Version: patch
  212. - Update DetectIPCPedestrian.
  213. 2021-03-10 Version: patch
  214. - Generated 2020-05-18 for `dataworks-public`.
  215. 2021-03-09 Version: patch
  216. - Export new API for predictive dialer.
  217. 2021-03-08 Version: patch
  218. - Support Mysql Parameter Group API.
  219. 2021-03-08 Version: patch
  220. - Update CreateAndStartBackupPlan Response with createBackupSet.
  221. 2021-03-08 Version: patch
  222. - Generated 2020-05-18 for `dataworks-public`.
  223. 2021-03-08 Version: patch
  224. - Generated 2020-05-18 for `dataworks-public`.
  225. 2021-03-04 Version: patch
  226. - Release RecognizeHandGesture.
  227. 2021-03-04 Version: patch
  228. - Update Ocr.
  229. 2021-03-03 Version: patch
  230. - Add GetRepositoryTagV2 and DeleteRepositoryTagV2 API.
  231. 2021-03-03 Version: patch
  232. - Update Compareface.
  233. 2021-03-03 Version: patch
  234. - Update Open API.
  235. 2021-03-03 Version: patch
  236. - Support TableStructSync Order API.
  237. - Support Upload File API.
  238. - Support GetOwnerApplyOrderDetail, GetPermApplyOrderDetail API.
  239. - Support ListDBTaskSQLJob, ListDBTaskSQLJobDetail API.
  240. - Support GetDataCorrectSQLFile API.
  241. 2021-03-03 Version: patch
  242. - Add Api.
  243. 2021-03-03 Version: patch
  244. - Delete API.
  245. 2021-03-03 Version: patch
  246. - Generated 2018-06-01 for `dataworks-public`.
  247. 2021-03-03 Version: patch
  248. - Update ScreenChestCT.
  249. 2021-03-02 Version: patch
  250. - Update default endpoints.
  251. 2021-03-02 Version: patch
  252. - Supported API for dnsCache.
  253. - Supported API for GTM.
  254. 2021-03-02 Version: patch
  255. - Support GroupCoverFace ExternalId for ListFaceGroups.
  256. - Support ResetItems for UpdateFaceGroup.
  257. 2021-03-01 Version: patch
  258. - AMP Version Change.
  259. 2021-02-28 Version: patch
  260. - AMP Version Change.
  261. 2021-02-26 Version: patch
  262. - Add TaskId for DescribeMigrationJobStatus, DescribeSubscriptionInstanceStatus, DescribeSynchronizationJobStatus.
  263. - Add API CreateDtsInstance, ConfigureDtsJob, StartDtsJob.
  264. 2021-02-26 Version: patch
  265. - Support SLR by InitializeDbsServiceLinkedRole action.
  266. - Change DescribeIncrementBackupList and DescribeFullBackupList to Support Range filter by endTimestamp.
  267. - Change DescribeRestoreTaskList to Support Range filter by createTime.
  268. 2021-02-25 Version: patch
  269. - Support SLR by InitializeDbsServiceLinkedRole action.
  270. - Change DescribeIncrementBackupList and DescribeFullBackupList to Support Range filter.
  271. 2021-02-25 Version: patch
  272. - Generated 2020-05-18 for `dataworks-public`.
  273. 2021-02-24 Version: patch
  274. - Generated 2020-05-18 for `dataworks-public`.
  275. 2021-02-24 Version: patch
  276. - ALL API.
  277. 2021-02-23 Version: patch
  278. - Supported List Namespaces.
  279. - Supported List Groups.
  280. - Supported List Jobs.
  281. 2021-02-22 Version: patch
  282. - Support input parameter DeploymentSetId for CreateAutoProvisioningGroup.
  283. 2021-02-19 Version: patch
  284. - Generated 2020-01-11 for `servicemesh`.
  285. 2021-02-19 Version: patch
  286. - Add new API for recording.
  287. 2021-02-19 Version: patch
  288. - Add API OpenOnsService which can active ons service.
  289. 2021-02-19 Version: patch
  290. - Generated 2018-06-01 for `dataworks-public`.
  291. 2021-02-19 Version: patch
  292. - Update SegmentBody.
  293. 2021-02-19 Version: patch
  294. - DescribeAvailableResource support list available resource for modify instance.
  295. 2021-02-19 Version: patch
  296. - Update SetVideoSeekConfig.
  297. 2021-02-19 Version: patch
  298. - Release InterpolateVideoFrame.
  299. 2021-02-19 Version: patch
  300. - Create TSDB Open api.
  301. 2021-02-19 Version: patch
  302. - Add.
  303. 2021-02-19 Version: patch
  304. - Generated 2019-01-01 for `Cassandra`.
  305. 2021-02-19 Version: patch
  306. - Supported API for GTM.
  307. 2021-02-19 Version: patch
  308. - Support CPP and Go and PHP.
  309. 2021-02-19 Version: patch
  310. - Support some MergeRequest API.
  311. 2021-02-08 Version: patch
  312. - Fix IoT Studio BatchBindDevicesIntoProject API return datatype.
  313. - Fix IoT Studio BatchBindProductsIntoProject API return datatype.
  314. - Fix IoT Studio BatchUnbindProjectDevices API return datatype.
  315. - Fix IoT Studio BatchUnbindProjectProducts API return datatype.
  316. 2021-02-08 Version: patch
  317. - Add username for RunCommand and InvokeCommand.
  318. 2021-02-08 Version: patch
  319. - Update PedestrianDetectAttribute.
  320. 2021-02-07 Version: patch
  321. - Add IoT Studio BatchBindDevicesIntoProject API.
  322. - Add IoT Studio BatchBindProductsIntoProject API.
  323. - Add IoT Studio BatchUnbindProjectDevices API.
  324. - Add IoT Studio BatchUnbindProjectProducts API.
  325. 2021-02-07 Version: patch
  326. - Support patch manager apis.
  327. 2021-02-07 Version: patch
  328. - Support some MergeRequest API.
  329. 2021-02-05 Version: patch
  330. - Generated 2020-05-18 for `dataworks-public`.
  331. 2021-02-05 Version: patch
  332. - Update Open API.
  333. 2021-02-05 Version: patch
  334. - Generated 2020-05-18 for `dataworks-public`.
  335. 2021-02-04 Version: patch
  336. - Update DetectVehicleIllegalParking DetectVehicleICongestion.
  337. 2021-02-04 Version: patch
  338. - Supported scheduler for outbound call.
  339. 2021-02-04 Version: patch
  340. - Supported console.
  341. 2021-02-04 Version: patch
  342. - Supported console.
  343. 2021-02-04 Version: patch
  344. - Update TaggingImage.
  345. 2021-02-03 Version: patch
  346. - After normalizing the API group name, regenerate the SDK.
  347. 2021-02-03 Version: patch
  348. - Add ModifyAuditLogConfig API.
  349. 2021-02-02 Version: patch
  350. - Add.
  351. 2021-02-02 Version: patch
  352. - CreateShardingDBInstance add ReadOnlyReplicas in ReplicaSet.
  353. 2021-02-01 Version: patch
  354. - Support device credential for mqtt.
  355. 2021-02-01 Version: patch
  356. - Release GenerateHumanSketchStyle MergeImageFace AddFaceImageTemplate QueryFaceImageTemplate DeleteFaceImageTemplate.
  357. 2021-02-01 Version: patch
  358. - Add.
  359. 2021-02-01 Version: patch
  360. - Release GenerateHumanSketchStyle MergeImageFace AddFaceImageTemplate QueryFaceImageTemplate DeleteFaceImageTemplate.
  361. 2021-02-01 Version: patch
  362. - Release RecognizeFood.
  363. 2021-02-01 Version: patch
  364. - Release UnderstandVideoContent.
  365. 2021-02-01 Version: patch
  366. - Release SegmentGreenScreenVideo.
  367. 2021-02-01 Version: patch
  368. - Release DetectVehicleIllegalParking DetectVehicleICongestion.
  369. 2021-01-31 Version: patch
  370. - ConvertInstance.
  371. 2021-01-30 Version: patch
  372. - Update rate limit.
  373. 2021-01-29 Version: patch
  374. - Update Monitor Api.
  375. 2021-01-29 Version: patch
  376. - Update Monitor Api.
  377. 2021-01-29 Version: patch
  378. - Update Open API.
  379. 2021-01-29 Version: patch
  380. - Generated 2020-05-18 for `dataworks-public`.
  381. 2021-01-28 Version: patch
  382. - Generated 2018-03-13 for `retailcloud`.
  383. 2021-01-27 Version: patch
  384. - Add New BatchTranslate API.
  385. 2021-01-27 Version: patch
  386. - Add New BatchTranslate API.
  387. 2021-01-27 Version: patch
  388. - DetectFaceAttributes Add Score.
  389. 2021-01-26 Version: patch
  390. - Support ModifyDBClusterPrimaryZone timer task.
  391. 2021-01-25 Version: patch
  392. - Regenerate SDK to override list implement.
  393. 2021-01-25 Version: patch
  394. - Update Open API.
  395. 2021-01-21 Version: patch
  396. - Modify some field types.
  397. 2021-01-21 Version: patch
  398. - Generated 2019-09-10 for `waf-openapi`.
  399. 2021-01-21 Version: patch
  400. - Add.
  401. 2021-01-21 Version: patch
  402. - Supported RunInstances specifiy Dedicated Host Cluster Id.
  403. 2021-01-19 Version: patch
  404. - Update Function.
  405. 2021-01-18 Version: patch
  406. - Generated 2019-03-27 for `dg`.
  407. 2021-01-18 Version: patch
  408. - Add a set of API to support device distribution management, including CreateProductDistributeJob, CreateDeviceDistributeJob, QueryDeviceDistributeJob, ListDeviceDistributeJob, QueryDeviceDistributeDetail, DeleteDeviceDistributeJob, ListDistributedDevice, ListDistributedProduct etc.
  409. 2021-01-18 Version: patch
  410. - Add a set of api to support device distribution management, including CreateProductDistributeJob, CreateDeviceDistributeJob, QueryDeviceDistributeJob, ListDeviceDistributeJob, QueryDeviceDistributeDetail, DeleteDeviceDistributeJob, ListDistributedDevice, ListDistributedProduct etc.
  411. 2021-01-18 Version: patch
  412. - Add ListMergeRequests api.
  413. - Add protected branch api, CreateRepositoryProtectedBranch and DeleteRepositoryProtectedBranch.
  414. - Add repository deploy key api, EnableRepositoryDeployKey and CreateRepositoryDeployKey.
  415. - Add UpdateRepository api.
  416. - Update GetUserInfo, support use OrganizationId param to get user organization name.
  417. 2021-01-15 Version: patch
  418. - Add result value spanId for GetTrace api.
  419. 2021-01-15 Version: patch
  420. - Update Function.
  421. 2021-01-15 Version: patch
  422. - Update Function.
  423. 2021-01-15 Version: patch
  424. - Add API CreateSortScriptValidation.
  425. - Add parameter resourceGroupId to API ListAppGroups.
  426. 2021-01-15 Version: patch
  427. - Remove drcGuidRouteApi, ModifyDtsJobPassword API.
  428. 2021-01-15 Version: patch
  429. - Generated 2016-11-01 for `live`.
  430. 2021-01-14 Version: patch
  431. - Add function.
  432. 2021-01-14 Version: patch
  433. - Add BillingDate support in QueryAccontBill.
  434. - Add SplitAccountId, SplitAccountName, SplitBillingCycle, SplitProductDetail, SplitCommodityCode, ServicePeriodUnit support in QuerySplitItemBill.
  435. 2021-01-14 Version: patch
  436. - Update Open API.
  437. 2021-01-14 Version: patch
  438. - Update function.
  439. 2021-01-14 Version: patch
  440. - Fixed ListUsers, GetUser, EnableUser, RegisterUser, DisableUser, DeleteUser API parameter of uid data type error, from number into string.
  441. - Supported ListInstances, GetInstance API to return Owner information.
  442. - Supported SetOwners API to set INSTANCE owner.
  443. 2021-01-14 Version: patch
  444. - Create Lindorm Open api.
  445. 2021-01-13 Version: patch
  446. - Add SwitchInstanceHA API.
  447. - ModifyInstanceSpec add SourceBiz param.
  448. 2021-01-13 Version: patch
  449. - Add support for IoT jobs, including job management and query APIs like CreateJob, UpdateJob, QueryJob, CancelJob, ListTask, QueryTask, QueryJobStatistics etc.
  450. 2021-01-13 Version: patch
  451. - Generated 2016-11-01 for `live`.
  452. 2021-01-12 Version: patch
  453. - Add new API for recording.
  454. 2021-01-11 Version: patch
  455. - Create a new sdk.
  456. 2021-01-11 Version: patch
  457. - Add result value spanId for GetTrace api.
  458. 2021-01-11 Version: patch
  459. - Support DescribeScheduleTasks.
  460. - Support CancelScheduleTasks.
  461. - Upgrade UpgradeDBClusterMinorVersion.
  462. 2021-01-08 Version: patch
  463. - Added batch drop list domain.
  464. 2021-01-08 Version: patch
  465. - Add new API for configuration and report, generate SDK again.
  466. 2021-01-07 Version: patch
  467. - Add new API for configuration and report.
  468. 2021-01-07 Version: patch
  469. - Add CreateAndStartBackupPlan.
  470. - Add DescribeDLAService.
  471. - Add CreateDLAService.
  472. - Add CloseDLAService.
  473. 2021-01-07 Version: patch
  474. - Generated 2019-09-10 for `waf-openapi`.
  475. 2021-01-06 Version: patch
  476. - DescribeAvailableResource.
  477. 2021-01-06 Version: patch
  478. - Initial release.
  479. 2021-01-06 Version: patch
  480. - Update DetectLungNodule.
  481. 2021-01-06 Version: patch
  482. - Support input parameter ClientToken for CreateAutoProvisioningGroup.
  483. 2021-01-06 Version: patch
  484. - Add API.
  485. 2021-01-05 Version: patch
  486. - Remove legacy APIs.
  487. 2021-01-05 Version: patch
  488. - Add DescribeBackupTasks API.
  489. 2021-01-04 Version: patch
  490. - Generated 2014-05-26 for `Ecs`.
  491. 2021-01-04 Version: patch
  492. - Supported API for GTM.
  493. 2020-12-31 Version: patch
  494. - Add support for thing model function block features, including thing model APIs like CreateThingModel,UpdateThingModel,SetDeviceProperty,InvokeThingService etc.
  495. 2020-12-31 Version: patch
  496. - Update Open API.
  497. 2020-12-30 Version: patch
  498. - Add DescribeActiveOperationTask API.
  499. - Add ModifyActiveOperationTask API.
  500. 2020-12-29 Version: patch
  501. - ListNodesNoPaging return with instance type.
  502. 2020-12-28 Version: patch
  503. - Generated 2020-05-18 for `dataworks-public`.
  504. 2020-12-28 Version: patch
  505. - Release InterpolateVideoFrame ToneSdrVideo ConvertHdrVideo.
  506. 2020-12-28 Version: patch
  507. - Release GenRealPersonVerificationToken GetRealPersonVerificationResult.
  508. 2020-12-28 Version: patch
  509. - Add CommodityCode For QueryOrderAPI.
  510. 2020-12-28 Version: patch
  511. - Add some console API operations.
  512. 2020-12-25 Version: patch
  513. - Generated 2016-04-08 for `Emr`.
  514. 2020-12-25 Version: patch
  515. - Supported for weboffice edit.
  516. 2020-12-24 Version: patch
  517. - Modify ConfigureBackupPlan.
  518. 2020-12-24 Version: patch
  519. - Update Open API.
  520. 2020-12-23 Version: patch
  521. - CDRS First edition.
  522. 2020-12-23 Version: patch
  523. - Add 2019 openapi.
  524. 2020-12-23 Version: patch
  525. - Release DetectPedestrianIntrusion.
  526. 2020-12-23 Version: patch
  527. - Create Lindorm Open api.
  528. 2020-12-23 Version: patch
  529. - Create TSDB Open api.
  530. 2020-12-22 Version: patch
  531. - Minor chagnes.
  532. 2020-12-22 Version: patch
  533. - Update SegmentAnimal SegmentCommonImage.
  534. 2020-12-22 Version: patch
  535. - Support SLB latest OpenAPIs.
  536. 2020-12-22 Version: patch
  537. - Release InterpolateVideoFrame ToneSdrVideo ConvertHdrVideo.
  538. 2020-12-22 Version: patch
  539. - Release InterpolateVideoFrame.
  540. 2020-12-22 Version: patch
  541. - Release DetectRibFracture.
  542. 2020-12-22 Version: patch
  543. - Minor chagnes.
  544. 2020-12-22 Version: patch
  545. - Generated 2020-05-18 for `dataworks-public`.
  546. 2020-12-21 Version: patch
  547. - Support Device of LaunchConfiguration_DataDisk.
  548. 2020-12-21 Version: patch
  549. - Support DescribeDatabases for page query.
  550. - Support DescribeAccounts for page query.
  551. 2020-12-18 Version: patch
  552. - Support ListRepositories, ListOrganizations, GetUserInfo, ListRepositoryWebhook, DeleteRepositoryWebhook api.
  553. - AddWebhook api support SecretToken.
  554. 2020-12-18 Version: patch
  555. - Add GetAgentDownloadUrl api.
  556. 2020-12-18 Version: patch
  557. - Release EvaluateCertificateQuality.
  558. 2020-12-18 Version: patch
  559. - Generated 2020-05-18 for `dataworks-public`.
  560. 2020-12-17 Version: patch
  561. - Update SegmentFood.
  562. 2020-12-17 Version: patch
  563. - Update DeleteScdnDomain.
  564. 2020-12-17 Version: patch
  565. - Generated 2014-05-26 for `Ecs`.
  566. 2020-12-17 Version: patch
  567. - Update DeleteDcdnDomain.
  568. 2020-12-17 Version: patch
  569. - Update DeleteCdnDomain.
  570. 2020-12-17 Version: patch
  571. - Generated 2020-01-11 for `servicemesh`.
  572. 2020-12-17 Version: patch
  573. - Update api.
  574. 2020-12-16 Version: patch
  575. - Generated 2019-09-10 for `waf-openapi`.
  576. 2020-12-16 Version: patch
  577. - Support show pipeline history.
  578. - Support show log details.
  579. 2020-12-16 Version: patch
  580. - Add Face Attributes.
  581. 2020-12-15 Version: patch
  582. - Update Open API.
  583. 2020-12-15 Version: patch
  584. - CDRS First edition.
  585. 2020-12-15 Version: patch
  586. - CDRS First edition.
  587. 2020-12-14 Version: patch
  588. - Add update task api.
  589. 2020-12-14 Version: patch
  590. - Add update task api.
  591. 2020-12-14 Version: patch
  592. - CDRS First edition.
  593. 2020-12-14 Version: patch
  594. - Add update task api.
  595. 2020-12-11 Version: patch
  596. - Add Emon route-API support.
  597. 2020-12-09 Version: patch
  598. - Update SegmentCommodity.
  599. 2020-12-07 Version: patch
  600. - Remove DescribeSubscriptionObjectModifyStatus.
  601. 2020-12-04 Version: patch
  602. - Supported broker demand.
  603. 2020-12-04 Version: patch
  604. - Support manual scan interface.
  605. 2020-12-04 Version: patch
  606. - ReportInstancesStatus OpenAPI supports IssueCategory parameter.
  607. 2020-12-03 Version: patch
  608. - Update DescribeScdnDomainCertificateInfo.
  609. 2020-12-03 Version: patch
  610. - Update ModifyDcdnService.
  611. 2020-12-03 Version: patch
  612. - Update DescribeDomainMax95BpsData.
  613. 2020-12-03 Version: patch
  614. - Update DescribeScdnDomainCertificateInfo.
  615. 2020-12-03 Version: patch
  616. - Update DescribeDomainMax95BpsData.
  617. 2020-12-03 Version: patch
  618. - Update DescribeScdnDomainCertificateInfo.
  619. 2020-12-03 Version: patch
  620. - Update DescribeDomainMax95BpsData.
  621. 2020-12-03 Version: patch
  622. - Update ModifyDcdnService.
  623. 2020-12-03 Version: patch
  624. - Update DescribeScdnDomainCertificateInfo.
  625. 2020-12-03 Version: patch
  626. - Generated 2020-05-18 for `dataworks-public`.
  627. 2020-12-03 Version: patch
  628. - Add new api.
  629. 2020-12-03 Version: patch
  630. - Supported all language sdk.
  631. - Fixed some bugs for polardbx.
  632. 2020-12-03 Version: patch
  633. - Update DetectLungNodule.
  634. 2020-12-02 Version: patch
  635. - Support CreateDBLink for polardb oracle.
  636. - Support DeleteDBLink for polardb oracle.
  637. - Support DescribeDBLinks for polardb oracle.
  638. 2020-12-02 Version: patch
  639. - Update version.
  640. 2020-12-02 Version: patch
  641. - Update version.
  642. 2020-12-02 Version: patch
  643. - Support TemplateContent.
  644. 2020-12-02 Version: patch
  645. - Supported OpenAPI for SDK.
  646. 2020-12-02 Version: patch
  647. - Release ColorizeImage.
  648. 2020-12-02 Version: patch
  649. - Release MergeVideoFace EnhanceVideoQuality.
  650. 2020-12-02 Version: patch
  651. - Update SegmentHead.
  652. 2020-12-01 Version: patch
  653. - Add task api.
  654. 2020-12-01 Version: patch
  655. - Add task api.
  656. 2020-12-01 Version: patch
  657. - Fixed bugs for CCC.
  658. 2020-12-01 Version: patch
  659. - Supported Open Api.
  660. 2020-11-30 Version: patch
  661. - Update SetVideoSeekConfig.
  662. 2020-11-30 Version: patch
  663. - Update DescribeScdnDomainCertificateInfo.
  664. 2020-11-30 Version: patch
  665. - Update SetVideoSeekConfig.
  666. 2020-11-30 Version: patch
  667. - Add OpenARMS api.
  668. 2020-11-30 Version: patch
  669. - Support autoPtovisioning whth DiskConfigs.
  670. 2020-11-30 Version: patch
  671. - Update OpenDcdnService.
  672. 2020-11-30 Version: patch
  673. - Add SourceType for severless instance.
  674. 2020-11-30 Version: patch
  675. - Video Content analytics template introduced to this SDK.
  676. 2020-11-30 Version: patch
  677. - Supported all language sdk.
  678. - Fixed some bugs for polardbx.
  679. 2020-11-30 Version: patch
  680. - Update OpenDcdnService.
  681. 2020-11-29 Version: patch
  682. - Support CPP and Go and PHP.
  683. 2020-11-28 Version: patch
  684. - Public.
  685. 2020-11-27 Version: patch
  686. - Supported all language sdk.
  687. - Fixed some bugs for polardbx.
  688. 2020-11-27 Version: patch
  689. - Supported all language sdk.
  690. - Fixed some bugs for polardbx.
  691. 2020-11-27 Version: patch
  692. - Generated 2018-01-11 for `rtc`.
  693. 2020-11-27 Version: patch
  694. - Add Certificate Manager Api.
  695. 2020-11-27 Version: patch
  696. - Support taskList.
  697. 2020-11-26 Version: patch
  698. - ContrastFaceVerify Support Video.
  699. 2020-11-26 Version: patch
  700. - Generated 2020-07-06, 2017-12-04 for `Actiontrail`.
  701. 2020-11-26 Version: patch
  702. - Generated 2020-07-06 for `Actiontrail`.
  703. 2020-11-26 Version: patch
  704. - Add tags api, include GetRepositoryTag, ListRepositoryTags, DeleteRepositoryTag.
  705. 2020-11-25 Version: patch
  706. - Update DescribeScdnDomainCertificateInfo.
  707. 2020-11-25 Version: patch
  708. - Update SetVideoSeekConfig.
  709. 2020-11-25 Version: patch
  710. - Support DescribeDBClusterVersion.
  711. 2020-11-25 Version: patch
  712. - Add extension field for image translation.
  713. 2020-11-25 Version: patch
  714. - Supported Primary NetworkInterface IP for API DescribeInstances.
  715. 2020-11-24 Version: patch
  716. - Create TSDB Open api.
  717. 2020-11-24 Version: patch
  718. - Create TSDB Open api.
  719. 2020-11-24 Version: patch
  720. - Create lindorm Open api.
  721. 2020-11-24 Version: patch
  722. - Create lindorm Open api.
  723. 2020-11-24 Version: patch
  724. - Update SearchFace.
  725. 2020-11-24 Version: patch
  726. - Generated 2020-01-01 for `ddoscoo`.
  727. 2020-11-23 Version: patch
  728. - Supported multiple Language.
  729. 2020-11-23 Version: patch
  730. - Add LivenessDetect API.
  731. 2020-11-22 Version: patch
  732. - DescribeClusterConnection.
  733. 2020-11-20 Version: patch
  734. - Support ListExecutions with filter functionality.
  735. 2020-11-20 Version: patch
  736. - Public beta version.
  737. - Add Api Overseas.
  738. 2020-11-20 Version: patch
  739. - Update DetectFace.
  740. - Update RecognizeFace.
  741. 2020-11-20 Version: patch
  742. - Add a new interface for asynchronous image translation.
  743. 2020-11-20 Version: patch
  744. - Generated 2019-09-10 for `waf-openapi`.
  745. 2020-11-19 Version: patch
  746. - Update DescribeDedicatedClusterInstanceList return data.
  747. 2020-11-19 Version: patch
  748. - Update data API.
  749. 2020-11-19 Version: patch
  750. - Update data API.
  751. 2020-11-19 Version: patch
  752. - Update GenerateHumanAnimeStyle.
  753. 2020-11-19 Version: patch
  754. - Update SegmentBody.
  755. 2020-11-19 Version: patch
  756. - Supported backend interface for ICBU.
  757. 2020-11-18 Version: patch
  758. - DescribeInstance support coldStorageSize.
  759. 2020-11-18 Version: patch
  760. - Update DescribeDedicatedClusterInstanceList InstanceStatus type.
  761. 2020-11-18 Version: patch
  762. - Generated 2018-01-11 for `rtc`.
  763. 2020-11-18 Version: patch
  764. - Supported webpage scan.
  765. 2020-11-17 Version: patch
  766. - Support event type in timeline of resource properties.
  767. - Support resourceOwnerId in evaluation result.
  768. - Support resource directory in config rule scene.
  769. - Fix terraform related bugs.
  770. 2020-11-17 Version: patch
  771. - Support ModifyDBClusterPrimaryZone.
  772. - Support DescribeGlobalDatabaseNetworks.
  773. 2020-11-17 Version: patch
  774. - Supported International-26888 Sites Region Endpoints.
  775. 2020-11-17 Version: patch
  776. - Supported International-26888 Sites Region Endpoints.
  777. 2020-11-16 Version: patch
  778. - Nat public IP supports the ISP attribute.
  779. 2020-11-16 Version: patch
  780. - Add a new interface for asynchronous image translation.
  781. 2020-11-16 Version: patch
  782. - Update videoenhan.
  783. 2020-11-16 Version: patch
  784. - Update videoseg.
  785. 2020-11-16 Version: patch
  786. - Update videorecog.
  787. 2020-11-16 Version: patch
  788. - Update objectdet.
  789. 2020-11-16 Version: patch
  790. - Update imgsearch.
  791. 2020-11-16 Version: patch
  792. - Update imagerecog.
  793. 2020-11-16 Version: patch
  794. - Update goodstech.
  795. 2020-11-13 Version: patch
  796. - Update Imageaudit.
  797. 2020-11-13 Version: patch
  798. - Add DeccribeEngineVersion DescribeTasks DescribeInstanceConfig and more APIs.
  799. 2020-11-13 Version: patch
  800. - Fix GetBranchInfo and DeleteBranch API 404 error.
  801. - Add ListRepositoryBranches and GetGroupDetail API.
  802. 2020-11-13 Version: patch
  803. - Release ErasePerson.
  804. 2020-11-13 Version: patch
  805. - Release DetectCardScreenshot RecognizePoiName.
  806. 2020-11-13 Version: patch
  807. - Release GenerateHumanAnimeStyle CountCrowd.
  808. 2020-11-13 Version: patch
  809. - Release SegmentHDSky SegmentHDCommonImage.
  810. 2020-11-12 Version: patch
  811. - Support drm.
  812. 2020-11-12 Version: patch
  813. - Generated 2019-06-01 for `smc`.
  814. 2020-11-12 Version: patch
  815. - Update new version.
  816. 2020-11-12 Version: patch
  817. - Support DescribeDBClusterTDE.
  818. - Support ModifyDBClusterTDE.
  819. 2020-11-12 Version: patch
  820. - Supported Open Api.
  821. 2020-11-12 Version: patch
  822. - Support OpenAPI.
  823. 2020-11-12 Version: patch
  824. - Update DescribeTrails Response.
  825. 2020-11-05 Version: patch
  826. - Support modifyInstnaceType.
  827. 2020-11-04 Version: patch
  828. - Generated 2019-01-01 for `Cassandra`.
  829. 2020-11-04 Version: patch
  830. - Support modifyInstnaceType.
  831. 2020-11-04 Version: patch
  832. - Generated 2019-01-01 for `Cassandra`.
  833. 2020-11-04 Version: patch
  834. - Support modifyInstnaceType.
  835. 2020-11-03 Version: patch
  836. - Minor update for r-kvstore.
  837. 2020-11-03 Version: patch
  838. - Update data API.
  839. 2020-11-02 Version: patch
  840. - Support create serverless by day price type.
  841. 2020-11-01 Version: patch
  842. - Supported All Console APIs.
  843. 2020-10-28 Version: patch
  844. - Support GetParameters, GetParametersByPath, GetSecretParameters, GetSecretParametersByPath.
  845. 2020-10-28 Version: patch
  846. - Supported all language sdk.
  847. - Fixed some bugs for polardbx.
  848. 2020-10-28 Version: patch
  849. - Supported golang sdk.
  850. - Fixed some bugs for drds.
  851. 2020-10-27 Version: patch
  852. - Support DescribePendingMaintenanceAction.
  853. - Support ModifyPendingMaintenanceAction.
  854. - Support DescribePendingMaintenanceActions.
  855. 2020-10-27 Version: patch
  856. - Generated 2020-05-18 for `dataworks-public`.
  857. 2020-10-27 Version: patch
  858. - Support Sampling for jaeger.
  859. 2020-10-27 Version: patch
  860. - Fix bug.
  861. 2020-10-27 Version: patch
  862. - Add role authority management.
  863. 2020-10-26 Version: patch
  864. - Generated 2014-05-26 for `Ecs`.
  865. 2020-10-26 Version: patch
  866. - Generated 2016-11-01 for `live`.
  867. 2020-10-26 Version: patch
  868. - Supported PaymentType for DescribeDnsProductInstance.
  869. 2020-10-26 Version: patch
  870. - Update ScalingConfig parameters.
  871. 2020-10-23 Version: patch
  872. - Change Configuration.
  873. 2020-10-23 Version: patch
  874. - Update DetectLungNodule.
  875. 2020-10-23 Version: patch
  876. - Support feedback.
  877. 2020-10-22 Version: patch
  878. - Add Pipeline Member api.
  879. 2020-10-22 Version: patch
  880. - Update data API.
  881. 2020-10-22 Version: patch
  882. - Update cert API.
  883. 2020-10-22 Version: patch
  884. - Update data API.
  885. 2020-10-21 Version: patch
  886. - DescribeAvailableResource support AcceptLanguage.
  887. 2020-10-21 Version: patch
  888. - Change Documentation configuration.
  889. 2020-10-21 Version: patch
  890. - Cloud Storage Gateway openapi sdk is released.
  891. 2020-10-21 Version: patch
  892. - Release latest features.
  893. 2020-10-21 Version: patch
  894. - Change Documentation configuration.
  895. 2020-10-21 Version: patch
  896. - Change Documentation configuration.
  897. 2020-10-21 Version: patch
  898. - Update cert API.
  899. 2020-10-21 Version: patch
  900. - Add PHP sdk.
  901. 2020-10-21 Version: patch
  902. - Update Scdn API.
  903. 2020-10-20 Version: patch
  904. - Support modifyInstnaceType.
  905. 2020-10-20 Version: patch
  906. - Add LivenessFaceVerify API.
  907. 2020-10-20 Version: patch
  908. - Update Configuration.
  909. 2020-10-20 Version: patch
  910. - Add isv interface.
  911. 2020-10-20 Version: patch
  912. - Generated 2016-11-01 for `live`.
  913. 2020-10-19 Version: patch
  914. - Add a new interface for asynchronous image translation.
  915. 2020-10-19 Version: patch
  916. - Metering 1019.
  917. 2020-10-19 Version: patch
  918. - Metering 1019.
  919. 2020-10-19 Version: patch
  920. - Metering 1019.
  921. 2020-10-17 Version: patch
  922. - Metering.
  923. 2020-10-17 Version: patch
  924. - Metering.
  925. 2020-10-16 Version: patch
  926. - Metering.
  927. 2020-10-16 Version: patch
  928. - Metering.
  929. 2020-10-16 Version: patch
  930. - Metering.
  931. 2020-10-16 Version: patch
  932. - Metering.
  933. 2020-10-16 Version: patch
  934. - Supported AndroidNotificationNotifyId for Push and MassPush.
  935. - Supported iOSNotificationCollapseId for Push and MassPush.
  936. 2020-10-16 Version: patch
  937. - Support create for serverlesshbase.
  938. 2020-10-16 Version: patch
  939. - Update cert API.
  940. 2020-10-16 Version: patch
  941. - Update cert API.
  942. 2020-10-15 Version: patch
  943. - Supported TAG APIs.
  944. 2020-10-15 Version: patch
  945. - Add SaveTraceAppConfig api.
  946. 2020-10-15 Version: patch
  947. - Generated 2018-06-01 for `dataworks-public`.
  948. 2020-10-15 Version: patch
  949. - Generated 2018-06-01 for `dataworks-public`.
  950. 2020-10-14 Version: patch
  951. - Generated 2014-05-26 for `Ecs`.
  952. 2020-10-13 Version: patch
  953. - ListActionData add parameters.
  954. - PullActionData add parameters.
  955. 2020-10-13 Version: patch
  956. - Generated 2018-01-11 for `rtc`.
  957. 2020-10-13 Version: patch
  958. - Release DetectSkinDisease RunMedQA.
  959. 2020-10-13 Version: patch
  960. - Generated 2016-11-01 for `live`.
  961. 2020-10-13 Version: patch
  962. - Generated 2018-01-11 for `rtc`.
  963. 2020-10-13 Version: patch
  964. - Generated 2018-12-12 for `vs`.
  965. 2020-10-13 Version: patch
  966. - Release PedestrianDetectAttribute.
  967. 2020-10-13 Version: patch
  968. - Release GenerateDynamicImage.
  969. 2020-10-13 Version: patch
  970. - Generated 2019-01-01 for `Cassandra`.
  971. 2020-10-13 Version: patch
  972. - Release SegmentSkin.
  973. 2020-10-12 Version: patch
  974. - Support add webhook, get repository info via id or path.
  975. 2020-10-12 Version: patch
  976. - Public beta version.
  977. - Add Api Overseas.
  978. 2020-10-12 Version: patch
  979. - Public beta version.
  980. - Add Api Overseas.
  981. 2020-10-12 Version: patch
  982. - Supported ApproveOrder to add comment message.
  983. 2020-10-12 Version: patch
  984. - Add list Organizations.
  985. 2020-10-12 Version: patch
  986. - Init.
  987. 2020-10-12 Version: patch
  988. - ChatApp third version.
  989. - Add contack check api.
  990. 2020-10-09 Version: patch
  991. - Update Scdn API.
  992. 2020-10-09 Version: patch
  993. - Update DescribeCdnUserBillHistory API.
  994. 2020-10-09 Version: patch
  995. - Update SetVideoSeekConfig API.
  996. 2020-09-29 Version: patch
  997. - Add API OpenOnsService which can active ons service.
  998. 2020-09-29 Version: patch
  999. - Add API OpenOnsService which can active ons service.
  1000. 2020-09-29 Version: patch
  1001. - Update CalcCACS.
  1002. 2020-09-29 Version: patch
  1003. - Add API OpenOnsService which can active ons service.
  1004. 2020-09-29 Version: patch
  1005. - Add API OpenOnsService which can active ons service.
  1006. 2020-09-29 Version: patch
  1007. - Supported regional API.
  1008. 2020-09-28 Version: patch
  1009. - Update Scdn API.
  1010. 2020-09-28 Version: patch
  1011. - Support for resize hbaseue multi-zone cluster.
  1012. 2020-09-28 Version: patch
  1013. - Support filtering keys and secrets.
  1014. - Support opening KMS service and describing service status by API.
  1015. - Add a prefix limitation for SecretName.
  1016. 2020-09-27 Version: patch
  1017. - Update domain API.
  1018. 2020-09-27 Version: patch
  1019. - Update domain API.
  1020. 2020-09-27 Version: patch
  1021. - Support Open Service API.
  1022. 2020-09-27 Version: patch
  1023. - DescribeAvailableResource support list available resource for modify instance.
  1024. 2020-09-25 Version: patch
  1025. - Public beta version.
  1026. - Add Api Overseas.
  1027. 2020-09-25 Version: patch
  1028. - Public beta version.
  1029. - Add Api Overseas.
  1030. 2020-09-24 Version: patch
  1031. - Support create for serverlesshbase.
  1032. 2020-09-24 Version: patch
  1033. - ContrastFaceVerify API Add Model Parameter.
  1034. 2020-09-24 Version: patch
  1035. - Add a new api named SubmitAIImageAuditJob to submit image ai detection job.
  1036. - Add a new api named CreateDNADB to create a DNA analysis library.
  1037. - Add a new api named ListDNADB to query the list of DNA analysis libraries.
  1038. - Add a new api named GetDNADB to query specified DNA analysis library.
  1039. - Add a new field DNADBId to the request parameter Config structure for SubmitAIJob api.
  1040. 2020-09-23 Version: patch
  1041. - Add spotDuration support.
  1042. 2020-09-23 Version: patch
  1043. - Some new parameters are supported.
  1044. 2020-09-23 Version: patch
  1045. - Update domain API.
  1046. 2020-09-23 Version: patch
  1047. - Update Scdn API.
  1048. 2020-09-23 Version: patch
  1049. - Sync cdn APIs.
  1050. 2020-09-22 Version: patch
  1051. - DescribePrice update amount type to string.
  1052. 2020-09-22 Version: patch
  1053. - Generated 2019-03-08 for `ivision`.
  1054. 2020-09-22 Version: patch
  1055. - Generated 2018-01-11 for `rtc`.
  1056. 2020-09-22 Version: patch
  1057. - Generated 2018-12-12 for `vs`.
  1058. 2020-09-22 Version: patch
  1059. - Generated 2016-11-01 for `live`.
  1060. 2020-09-21 Version: patch
  1061. - Interface add column wordCount.
  1062. 2020-09-21 Version: patch
  1063. - Add search object.
  1064. 2020-09-20 Version: patch
  1065. - Add describe devices to return device status.
  1066. 2020-09-20 Version: patch
  1067. - Add describe devices to return device status.
  1068. 2020-09-19 Version: patch
  1069. - Support query user tenant list and current active tenant.
  1070. - Support query table meta information via table GUID.
  1071. 2020-09-18 Version: patch
  1072. - Update DetectLungNodule, DetectSpineMRI, DetectKneeXRay, DetectCovid19Cad.
  1073. 2020-09-17 Version: patch
  1074. - Add Api DetectIPCPedestrianOptimized.
  1075. 2020-09-17 Version: patch
  1076. - Add Api DetectIPCPedestrianOptimized.
  1077. 2020-09-17 Version: patch
  1078. - GetTitleIntelligence add interface.
  1079. 2020-09-17 Version: patch
  1080. - Fix endpoint.
  1081. 2020-09-16 Version: patch
  1082. - Add Content.
  1083. 2020-09-15 Version: patch
  1084. - Add describe devices to return device status.
  1085. 2020-09-14 Version: patch
  1086. - Support corp name search.
  1087. 2020-09-14 Version: patch
  1088. - Support corp name search.
  1089. 2020-09-11 Version: patch
  1090. - Support execute database script via open api.
  1091. 2020-09-10 Version: patch
  1092. - Add DisableBackupLog.
  1093. - Add EnableBackupLog.
  1094. - Add ReleaseBackupPlan.
  1095. - Add ModifyStorageStrategy.
  1096. - Modify ModifyBackupStrategy.
  1097. - Modify ModifyBackupSetDownloadRules.
  1098. 2020-09-10 Version: patch
  1099. - Update HasRenewChangeOrder type to Boolean in DescribeInstances.
  1100. 2020-09-09 Version: patch
  1101. - Add support cn-beijing service region.
  1102. - Add ai video cover interface,include submit and query.
  1103. - Add dynamic image query interface.
  1104. - Update SubmitMediaAuditJob support MediaAuditConfiguration to set ResourceType.
  1105. 2020-09-09 Version: patch
  1106. - Release ChangeSky.
  1107. 2020-09-09 Version: patch
  1108. - Release DetectChefCap.
  1109. 2020-09-09 Version: patch
  1110. - Release DetectKneeKeypointXRay, DetectHipKeypointXRay, CalcCACS, RunCTRegistration, ClassifyFNF.
  1111. 2020-09-08 Version: patch
  1112. - Supported backend interface for ICBU.
  1113. 2020-09-08 Version: patch
  1114. - Add DescribeActiveOperationTask.
  1115. - Add DescribeActiveOperationTaskCount.
  1116. - Add DescribeActiveOperationTaskRegion.
  1117. - Add DescribeActiveOperationTaskType.
  1118. - Add ModifyActiveOperationTask.
  1119. 2020-09-08 Version: patch
  1120. - Modify CreateAsyncPredict add new parameters.
  1121. 2020-09-07 Version: patch
  1122. - Support parameter APIs.
  1123. 2020-09-07 Version: patch
  1124. - Add describes devices API.
  1125. 2020-09-07 Version: patch
  1126. - Add describes devices API.
  1127. 2020-09-07 Version: patch
  1128. - Add describes devices API.
  1129. 2020-09-07 Version: patch
  1130. - Add describes devices API.
  1131. 2020-09-07 Version: patch
  1132. - Add describes devices API.
  1133. 2020-09-05 Version: patch
  1134. - Add describes devices API.
  1135. 2020-09-04 Version: patch
  1136. - Sync cdn APIs.
  1137. 2020-09-04 Version: patch
  1138. - Update Scdn API.
  1139. 2020-09-04 Version: patch
  1140. - Update domain API.
  1141. 2020-09-04 Version: patch
  1142. - Add GetImageQuality API.
  1143. - Add more info as parameters to Images related APIs.
  1144. 2020-09-03 Version: 1.36.632
  1145. - DescribeCameraStatistics add parameters.
  1146. 2020-09-02 Version: 1.36.631
  1147. - Support sg for ml region.
  1148. 2020-09-02 Version: 1.36.630
  1149. - ChatApp second version.
  1150. - Support new message fomat.
  1151. 2020-09-02 Version: 1.36.629
  1152. - Supported AndroidNotificationHuaweiChannel for Push and MassPush.
  1153. 2020-09-02 Version: 1.36.628
  1154. - Supported AndroidNotificationHuaweiChannel for Push and MassPush.
  1155. 2020-09-01 Version: 1.36.627
  1156. - Add Smart Verify API.
  1157. 2020-09-01 Version: 1.36.626
  1158. - Support region route.
  1159. 2020-09-01 Version: 1.36.625
  1160. - Support region route.
  1161. 2020-09-01 Version: 1.36.624
  1162. - Update Parameter.
  1163. 2020-08-31 Version: 1.36.623
  1164. - Support PersonList.
  1165. 2020-08-31 Version: 1.36.622
  1166. - GetPersonList Support LastShotTime.
  1167. 2020-08-31 Version: 1.36.621
  1168. - Support config resource recorder deliverychannel rule.
  1169. 2020-08-31 Version: 1.36.620
  1170. - Supported AAA for BBB.
  1171. - Fixed bugs for CCC.
  1172. 2020-08-31 Version: 1.36.619
  1173. - Support config resource recorder deliverychannel rule.
  1174. 2020-08-31 Version: 1.36.618
  1175. - Supported AAA for BBB.
  1176. - Fixed bugs for CCC.
  1177. 2020-08-31 Version: 1.36.617
  1178. - Supported AAA for BBB.
  1179. - Fixed bugs for CCC.
  1180. 2020-08-31 Version: 1.36.616
  1181. - Add list person visit count API.
  1182. 2020-08-28 Version: 1.36.615
  1183. - Add name.
  1184. 2020-08-28 Version: 1.36.614
  1185. - Support multiple security group for one ehpc cluster.
  1186. - Update GWS apis.
  1187. 2020-08-28 Version: 1.36.613
  1188. - Supported Add GetAlgorithmHistoryResult.
  1189. 2020-08-27 Version: 1.36.612
  1190. - Update parameter.
  1191. 2020-08-25 Version: 1.36.611
  1192. - Release ExtractPedestrianFeatureAttribute and BlurFace.
  1193. 2020-08-25 Version: 1.36.610
  1194. - Add list person visit count API.
  1195. 2020-08-25 Version: 1.36.609
  1196. - Video Content analytics template introduced to this SDK.
  1197. 2020-08-25 Version: 1.36.608
  1198. - Change DeviceSerialNumber to DeviceSn in API RegisterDevice.
  1199. 2020-08-24 Version: 1.36.607
  1200. - Change DeviceSerialNumber to DeviceSn in API RegisterDevice.
  1201. 2020-08-24 Version: 1.36.606
  1202. - Add project api.
  1203. 2020-08-24 Version: 1.36.605
  1204. - Edit QueryMetricByPage api.
  1205. 2020-08-21 Version: 1.36.604
  1206. - Add QueryMetricByPage api.
  1207. - Add GetAppApiByPage api.
  1208. 2020-08-20 Version: 1.36.603
  1209. - PullActionData add parameters.
  1210. - DescribeCursor add parameter.
  1211. 2020-08-20 Version: 1.36.602
  1212. - Add list person visit count API.
  1213. 2020-08-20 Version: 1.36.601
  1214. - Added Global Distribute Cache OpenAPIs.
  1215. - Added direct connection OpenAPIs.
  1216. 2020-08-19 Version: 1.36.600
  1217. - Add DescribeLiveDomainCertificateInfo.
  1218. 2020-08-19 Version: 1.36.599
  1219. - Generated 2020-08-01 for `SmartHosting`.
  1220. 2020-08-18 Version: 1.36.598
  1221. - Support for describe hbaseue multi-zone model.
  1222. 2020-08-18 Version: 1.36.597
  1223. - Support session query operations.
  1224. 2020-08-18 Version: 1.36.596
  1225. - Public beta version.
  1226. - Add Api Overseas.
  1227. 2020-08-17 Version: 1.36.595
  1228. - Add list event algorithm details.
  1229. 2020-08-17 Version: 1.36.594
  1230. - Add list event algorithm details.
  1231. 2020-08-17 Version: 1.36.593
  1232. - Add GetTrace api.
  1233. - Edit Aler api.
  1234. 2020-08-17 Version: 1.36.592
  1235. - Add pipeline status api.
  1236. 2020-08-17 Version: 1.36.591
  1237. - Add list event algorithm details.
  1238. 2020-08-17 Version: 1.36.590
  1239. - Add list event algorithm details.
  1240. 2020-08-17 Version: 1.36.589
  1241. - Fix create project task.
  1242. 2020-08-17 Version: 1.36.588
  1243. - Public beta version.
  1244. - Add Api Overseas.
  1245. 2020-08-17 Version: 1.36.587
  1246. - Add new tags for corp group.
  1247. 2020-08-17 Version: 1.36.586
  1248. - Add new tags for corp group.
  1249. 2020-08-16 Version: 1.36.585
  1250. - Add new tags for corp group.
  1251. 2020-08-14 Version: 1.36.584
  1252. - Add sdk.
  1253. 2020-08-14 Version: 1.36.583
  1254. - Supported Api DetectIPCPedestrian.
  1255. 2020-08-14 Version: 1.36.582
  1256. - Supported CheckCloudResourceAuthorized API.
  1257. 2020-08-14 Version: 1.36.581
  1258. - Add project Api.
  1259. 2020-08-13 Version: 1.36.580
  1260. - Add PipCode and CommodityCode for QueryInstanceBill, QueryBillOverview, QueryBill, QuerySettleBill, QueryAccountBill, QuerySplitItemBill.
  1261. - Support BillOwnerId filter for QueryInstanceBill, QueryBillOverview, QueryBill, QuerySettleBill, QueryAccountBill, QuerySplitItemBill.
  1262. 2020-08-13 Version: 1.36.579
  1263. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  1264. 2020-08-13 Version: 1.36.578
  1265. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  1266. 2020-08-13 Version: 1.36.577
  1267. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  1268. 2020-08-13 Version: 1.36.576
  1269. - GetImageTranslate add column orc.
  1270. 2020-08-13 Version: 1.36.575
  1271. - DescribePrice update amount parameters type, float to string.
  1272. - Add ResourceGroupId parameter to support resource group.
  1273. 2020-08-13 Version: 1.36.574
  1274. - Release SegmentHalfBody.
  1275. 2020-08-13 Version: 1.36.573
  1276. - Release SegmentHalfBody.
  1277. 2020-08-12 Version: 1.36.572
  1278. - Support corp group api.
  1279. 2020-08-12 Version: 1.36.571
  1280. - Add pipeline status api.
  1281. 2020-08-12 Version: 1.36.570
  1282. - Generated 2015-01-01 for `R-kvstore`.
  1283. - SyncDtsStatus API add TaskId parameter.
  1284. 2020-08-11 Version: 1.36.569
  1285. - Generated 2020-05-18 for `dataworks-public`.
  1286. 2020-08-11 Version: 1.36.568
  1287. - Update DescribeRefreshTask.
  1288. 2020-08-11 Version: 1.36.567
  1289. - Add ResourceGroup in resource snapshot.
  1290. 2020-08-10 Version: 1.36.566
  1291. - Generated 2020-05-18 for `dataworks-public`.
  1292. 2020-08-10 Version: 1.36.565
  1293. - Add source id for list face detail.
  1294. 2020-08-10 Version: 1.36.564
  1295. - Add extend value for list event detail.
  1296. 2020-08-09 Version: 1.36.563
  1297. - Add extend value for list event detail.
  1298. 2020-08-08 Version: 1.36.562
  1299. - Update SearchImage.
  1300. 2020-08-07 Version: 1.36.561
  1301. - GetTitleDiagnose GetTitleGenerate GetImageTranslate supported.
  1302. 2020-08-07 Version: 1.36.560
  1303. - Generated 2020-05-18 for `dataworks-public`.
  1304. 2020-08-07 Version: 1.36.559
  1305. - GetTitleDiagnose GetTitleGenerate GetImageTranslate supported.
  1306. 2020-08-07 Version: 1.36.558
  1307. - Add FindServiceList and GetService qps.
  1308. 2020-08-06 Version: 1.36.557
  1309. - Add Smart Cloudauth API.
  1310. 2020-08-04 Version: 1.36.556
  1311. - Update RecognizeTable.
  1312. 2020-08-04 Version: 1.36.555
  1313. - Add Image Url parameter for invoke motor algorithm.
  1314. 2020-08-04 Version: 1.36.554
  1315. - Add source picture url for Monitor.
  1316. 2020-08-03 Version: 1.36.553
  1317. - Add source picture url for Monitor.
  1318. 2020-08-03 Version: 1.36.552
  1319. - Fix Some API Response Define.
  1320. 2020-08-03 Version: 1.36.551
  1321. - Add source picture url for Monitor.
  1322. 2020-08-03 Version: 1.36.550
  1323. - Add Voice Synchronous Scan API.
  1324. 2020-08-03 Version: 1.36.549
  1325. - Add ExtractPedestrianFeatureAttribute.
  1326. 2020-07-31 Version: 1.36.548
  1327. - Update DetectCelebrity.
  1328. 2020-07-31 Version: 1.36.547
  1329. - Edit GetStack api.
  1330. 2020-07-30 Version: 1.36.546
  1331. - Add Smart Cloudauth API.
  1332. 2020-07-30 Version: 1.36.545
  1333. - Supported ChatApp for SDK.
  1334. 2020-07-30 Version: 1.36.544
  1335. - Generated 2020-06-29 for `alinlp`.
  1336. 2020-07-29 Version: 1.36.543
  1337. - Add CreateGetDBListFromAgentTask.
  1338. - Add GetDBListFromAgent.
  1339. 2020-07-29 Version: 1.36.542
  1340. - API GetTaskStatus return task detail.
  1341. 2020-07-29 Version: 1.36.541
  1342. - Generated 2020-05-18 for `dataworks-public`.
  1343. 2020-07-27 Version: 1.36.540
  1344. - Supported CheckCloudResourceAuthorized API.
  1345. 2020-07-27 Version: 1.36.539
  1346. - Add HSF apis.
  1347. 2020-07-24 Version: 1.36.538
  1348. - Edit ListTraceApp api with add tags.
  1349. - Edit SearchTraceAppByName api with add tags.
  1350. - Edut SearchTraceAppByPage api with add tags.
  1351. 2020-07-24 Version: 1.36.537
  1352. - Add DescribeBackupTasks.
  1353. 2020-07-24 Version: 1.36.536
  1354. - Support GetImageCroppingSuggestions API.
  1355. - Add Remarks to face group related APIs.
  1356. - Add Model parameter to blind watermark related APIs.
  1357. 2020-07-24 Version: 1.36.535
  1358. - First build.
  1359. 2020-07-23 Version: 1.36.534
  1360. - Supported CloudGame.
  1361. 2020-07-23 Version: 1.36.533
  1362. - Supported AAA for BBB.
  1363. - Fixed bugs for CCC.
  1364. 2020-07-23 Version: 1.36.532
  1365. - Add AddSecretBlacklist and DeleteSecretBlacklist.
  1366. - Suppoort ASR.
  1367. 2020-07-23 Version: 1.36.531
  1368. - Add GenerateAndExportDataKey, ExportDataKey, ReEncrypt api.
  1369. 2020-07-23 Version: 1.36.530
  1370. - Add GenerateAndExportDataKey, ExportDataKey, ReEncrypt api.
  1371. 2020-07-22 Version: 1.36.529
  1372. - Generated 2015-01-01 for `R-kvstore`.
  1373. - Add SyncDtsStatus API.
  1374. 2020-07-22 Version: 1.36.528
  1375. - Add snapshot settings.
  1376. - Add ElasticTask.
  1377. 2020-07-22 Version: 1.36.527
  1378. - Add SourceId for SearchFace.
  1379. 2020-07-22 Version: 1.36.526
  1380. - Add source id for file uploader.
  1381. 2020-07-22 Version: 1.36.525
  1382. - Add source id for file uploader.
  1383. 2020-07-21 Version: 1.36.524
  1384. - Support Tag API.
  1385. 2020-07-21 Version: 1.36.523
  1386. - Add algorithm type for ListPerson.
  1387. 2020-07-17 Version: 1.36.522
  1388. - Add DescribeRegions.
  1389. - Modify DescribeFullBackupList.
  1390. - Modify DescribeBackupPlanList.
  1391. - Modify DescribeRestoreRangeInfo.
  1392. 2020-07-17 Version: 1.36.521
  1393. - Add DescribeDBClusterAuditLogCollector.
  1394. - Add DescribeBackupPolicy.
  1395. - Support polardb for pgsql and oracle customize endpoints.
  1396. 2020-07-17 Version: 1.36.520
  1397. - Public beta version.
  1398. - Add Api Overseas.
  1399. 2020-07-15 Version: 1.36.519
  1400. - Edit ListTraceApp api.
  1401. - Edit SearchTraceAppByName api.
  1402. - Edut SearchTraceAppByPage api.
  1403. 2020-07-15 Version: 1.36.518
  1404. - Modify ConfigureBackupPlan.
  1405. - Modify DescribeFullBackupList.
  1406. - Modify DescribeBackupPlanList.
  1407. - Modify DescribeRestoreRangeInfo.
  1408. 2020-07-15 Version: 1.36.517
  1409. - Support ModifyImageAttribute by LaunchPermission.
  1410. - Support ImageFamily.
  1411. 2020-07-14 Version: 1.36.516
  1412. - Add ListEventAlgorithmResult API.
  1413. 2020-07-14 Version: 1.36.515
  1414. - Add ListEventAlgorithmResult API.
  1415. 2020-07-14 Version: 1.36.514
  1416. - Add ListBodyAlgorithmResult API.
  1417. 2020-07-14 Version: 1.36.513
  1418. - Add ListBodyAlgorithmResult API.
  1419. 2020-07-14 Version: 1.36.512
  1420. - Add ListBodyAlgorithmResult API.
  1421. 2020-07-10 Version: 1.36.511
  1422. - Add ListBodyAlgorithmResult API.
  1423. 2020-07-10 Version: 1.36.510
  1424. - Add ListBodyAlgorithmResult API.
  1425. 2020-07-08 Version: 1.36.509
  1426. - Remove GetFootwearPosition PullTakeShoesEvent PullTryOnShoesEvent.
  1427. - Add GetFootwearEvent.
  1428. - Please ignore the pd s pot.
  1429. 2020-07-08 Version: 1.36.508
  1430. - Generated 2020-05-18 for `dataworks-public`.
  1431. 2020-07-08 Version: 1.36.507
  1432. - Add video compose api.
  1433. 2020-07-08 Version: 1.36.506
  1434. - Add video summarization related API.
  1435. 2020-07-07 Version: 1.36.505
  1436. - Add video summarization related API.
  1437. 2020-07-07 Version: 1.36.504
  1438. - Generated 2020-05-18 for `dataworks-public`.
  1439. 2020-07-03 Version: 1.36.503
  1440. - Supported UpdateUserBucketConfig.
  1441. 2020-07-03 Version: 1.36.502
  1442. - Generated 2017-05-25 for `Dypnsapi`.
  1443. 2020-07-03 Version: 1.36.501
  1444. - Generated 2017-05-25 for `Dypnsapi`.
  1445. 2020-07-03 Version: 1.36.500
  1446. - Generated 2018-10-12 for `Airec`.
  1447. 2020-07-03 Version: 1.36.499
  1448. - Add ListResourceExecutionStatus API.
  1449. - ListExecutions API supports filtering by resource id.
  1450. - TriggerExecution API supports TimerTrigger.
  1451. 2020-07-03 Version: 1.36.498
  1452. - Supports tag management APIs.
  1453. 2020-07-03 Version: 1.36.497
  1454. - Add PicUrl parameter for picture related API.
  1455. 2020-07-03 Version: 1.36.496
  1456. - Add PicUrl parameter for picture related API.
  1457. 2020-07-02 Version: 1.36.495
  1458. - Generated 2020-05-18 for `dataworks-public`.
  1459. 2020-07-02 Version: 1.36.494
  1460. - Add GetFootwearPosition.
  1461. - Add PullTakeShoesEvent.
  1462. - Add PullTryOnShoesEvent.
  1463. 2020-07-02 Version: 1.36.493
  1464. - Add GetFootwearPosition.
  1465. - Add PullTakeShoesEvent.
  1466. - Add PullTryOnShoesEvent.
  1467. 2020-07-02 Version: 1.36.492
  1468. - Update endpoint.
  1469. 2020-07-02 Version: 1.36.491
  1470. - CreateShardingDBInstance add ProtocolType, to support DynamoDB.
  1471. - DescribeDBInstances add return ResourceGroupId.
  1472. 2020-07-01 Version: 1.36.490
  1473. - Add ListFace-MotorAlgorithmResults API.
  1474. 2020-07-01 Version: 1.36.489
  1475. - Add API for GetMetadataAmount.
  1476. 2020-07-01 Version: 1.36.488
  1477. - Support Saf For ExecuteExtendService.
  1478. 2020-06-30 Version: 1.36.487
  1479. - Add ListMetrics API.
  1480. 2020-06-29 Version: 1.36.486
  1481. - Supported Rotate.
  1482. 2020-06-29 Version: 1.36.485
  1483. - Supported Rotate.
  1484. 2020-06-29 Version: 1.36.484
  1485. - Add Model Parameter For InitFaceVerify API.
  1486. 2020-06-26 Version: 1.36.483
  1487. - Supported Api EraseLogoInVideo.
  1488. 2020-06-24 Version: 1.36.482
  1489. - Add DescribeBackupPlanBilling.
  1490. - Modify ConfigureBackupPlan.
  1491. - Modify CreateBackupPlan.
  1492. - Modify CreateRestoreTask.
  1493. - Modify DescribeRestoreTaskList.
  1494. - Modify DescribeBackupPlanList.
  1495. - Modify ModifyBackupSourceEndpoint.
  1496. - Modify ModifyBackupStrategy.
  1497. 2020-06-23 Version: 1.36.481
  1498. - Add face quality detection API.
  1499. 2020-06-23 Version: 1.36.480
  1500. - Add face quality detection API.
  1501. 2020-06-23 Version: 1.36.479
  1502. - Add face quality detection API.
  1503. 2020-06-23 Version: 1.36.478
  1504. - Add face quality detection API.
  1505. 2020-06-23 Version: 1.36.477
  1506. - Generated 2015-12-15 for `CS`.
  1507. 2020-06-23 Version: 1.36.476
  1508. - Support SubmitOperationAuditInfo for Support self-service submission of approval information.
  1509. - Support SubmitOperationCredentials for self-service submission of certificate information.
  1510. - Support CancelOperationAudit for cancel audit.
  1511. - Support GetOperationOssUploadPolic for get oss policy.
  1512. - Support QueryOperationAuditInfoLis for query audit list.
  1513. - Support QueryOperationAuditInfoDetail for query audit details.
  1514. 2020-06-23 Version: 1.36.475
  1515. - Generated 2018-08-28 for `Tag`.
  1516. 2020-06-23 Version: 1.36.474
  1517. - Public beta version.
  1518. - Add Api Overseas.
  1519. 2020-06-23 Version: 1.36.473
  1520. - Public beta version.
  1521. - Add Api Overseas.
  1522. 2020-06-23 Version: 1.36.472
  1523. - Public beta version.
  1524. - Add Api Overseas.
  1525. 2020-06-22 Version: 1.36.471
  1526. - Add support cn-shenzhen region.
  1527. 2020-06-22 Version: 1.36.470
  1528. - Add GetMultipleTrace api.
  1529. - Add SearchTracesByPage api.
  1530. - Add GetStack api.
  1531. 2020-06-21 Version: 1.36.469
  1532. - Add persons API.
  1533. 2020-06-18 Version: 1.36.468
  1534. - Supported TransformDBInstancePayType API.
  1535. 2020-06-18 Version: 1.36.467
  1536. - Add GetAuthToken OpenAPI.
  1537. 2020-06-18 Version: 1.36.466
  1538. - Public beta version.
  1539. - Add Api Overseas.
  1540. 2020-06-17 Version: 1.36.465
  1541. - Supported sync create eni and assign private ip.
  1542. 2020-06-17 Version: 1.36.464
  1543. - Public beta version.
  1544. - Add Api Overseas.
  1545. 2020-06-16 Version: 1.36.463
  1546. - Support TargetImageId in ApplyNodes Interface.
  1547. 2020-06-16 Version: 1.36.462
  1548. - Update monitor related API.
  1549. 2020-06-15 Version: 1.36.461
  1550. - Generated 2019-09-10 for `waf-openapi`.
  1551. 2020-06-15 Version: 1.36.460
  1552. - Generated 2019-09-10 for `waf-openapi`.
  1553. 2020-06-12 Version: 1.36.459
  1554. - Add CreateProduct API ProductSecret in Response.
  1555. - Add AMQP APIs, including CreateSubscribeRelation, CreateConsumerGroup, etc.
  1556. - Add LinkIoTEdge CreateSceneRule API.
  1557. - Add LinkIoTEdge DeleteSceneRule API.
  1558. - Add LinkIoTEdge UpdateSceneRule API.
  1559. - Add LinkIoTEdge GetSceneRule API.
  1560. - Add LinkIoTEdge QuerySceneRule API.
  1561. - Add LinkIoTEdge EnableSceneRule API.
  1562. - Add LinkIoTEdge DisableSceneRule API.
  1563. - Add LinkIoTEdge TriggerSceneRule API.
  1564. - Add LinkIoTEdge QuerySummarySceneRuleLog API.
  1565. - Add LinkIoTEdge QueryDetailSceneRuleLog API.
  1566. - Add LinkIoTEdge BindSceneRuleToEdgeInstance API.
  1567. - Add LinkIoTEdge UnbindSceneRuleFromEdgeInstance API.
  1568. - Add LinkIoTEdge QueryEdgeInstanceSceneRule API.
  1569. 2020-06-12 Version: 1.36.458
  1570. - Update monitor related API.
  1571. 2020-06-12 Version: 1.36.457
  1572. - Add support for enable hbaseue extra module like lindorm-search or lindorm-sql.
  1573. 2020-06-11 Version: 1.36.456
  1574. - Support ServicePeriodUnit in QueryInstanceBill.
  1575. 2020-06-10 Version: 1.36.455
  1576. - Public beta version.
  1577. - Add Api Overseas.
  1578. 2020-06-10 Version: 1.36.454
  1579. - Public beta version.
  1580. - Add Api Overseas.
  1581. 2020-06-08 Version: 1.36.453
  1582. - Generate dbfs sdk.
  1583. 2020-06-08 Version: 1.36.452
  1584. - Support offline instance.
  1585. 2020-06-04 Version: 1.36.451
  1586. - Support for addrp.
  1587. 2020-06-04 Version: 1.36.450
  1588. - Supported Eni Trunking.
  1589. 2020-06-04 Version: 1.36.449
  1590. - Update monitor related API.
  1591. 2020-06-04 Version: 1.36.448
  1592. - Add SubmitMediaDNADeleteJob and ListMediaDNADeleteJob.
  1593. - Modify GetMediaAuditResult interface, support ad logo and live result.
  1594. - Modify GetMediaAuditResultTimeline interface, support ad logo and live result.
  1595. 2020-06-04 Version: 1.36.447
  1596. - Update monitor related API.
  1597. 2020-06-04 Version: 1.36.446
  1598. - Update monitor related API.
  1599. 2020-06-03 Version: 1.36.445
  1600. - Describe describeAvailableResource.
  1601. 2020-06-03 Version: 1.36.444
  1602. - Describe describeAvailableResource.
  1603. 2020-06-03 Version: 1.36.443
  1604. - Generated 2019-01-01 for `Cassandra`.
  1605. 2020-06-03 Version: 1.36.442
  1606. - DescribeCameraStatistics add filed.
  1607. 2020-06-02 Version: 1.36.441
  1608. - Edit SearchTraces api.
  1609. 2020-05-28 Version: 1.36.440
  1610. - Supported AndroidNotificationXiaomiChannel for Push and MassPush.
  1611. 2020-05-27 Version: 1.36.439
  1612. - Added cn-heyuan endpoint url.
  1613. - Added cn-wulanchabu endpoint url.
  1614. 2020-05-27 Version: 1.36.438
  1615. - Add support for create hbaseue multizone instance.
  1616. 2020-05-26 Version: 1.36.437
  1617. - Support DescribeAllEntity API.
  1618. 2020-05-26 Version: 1.36.436
  1619. - Add smartcall service api.
  1620. 2020-05-26 Version: 1.36.435
  1621. - Add smartcall service api.
  1622. 2020-05-26 Version: 1.36.434
  1623. - Add monitor related API.
  1624. 2020-05-26 Version: 1.36.433
  1625. - Add monitor related.
  1626. 2020-05-26 Version: 1.36.432
  1627. - Add monitor related.
  1628. 2020-05-25 Version: 1.36.431
  1629. - Add monitor related.
  1630. 2020-05-25 Version: 1.36.430
  1631. - Add monitor related.
  1632. 2020-05-23 Version: 1.36.429
  1633. - Generated 2015-01-01 for `R-kvstore`.
  1634. - Add ModifyResourceGroup API.
  1635. - DescribeInstanceAttribute return ResourceGroupId.
  1636. 2020-05-22 Version: 1.36.428
  1637. - Add schedule crud api.
  1638. 2020-05-21 Version: 1.36.427
  1639. - Support more error Codes.
  1640. 2020-05-20 Version: 1.36.426
  1641. - Generated 2019-09-10 for `waf-openapi`.
  1642. 2020-05-20 Version: 1.36.425
  1643. - Edit GetTrace and SearchTraces api.
  1644. 2020-05-20 Version: 1.36.424
  1645. - Public beta version.
  1646. - Add Api Overseas.
  1647. 2020-05-19 Version: 1.36.423
  1648. - Public beta version.
  1649. - Add Api Overseas.
  1650. 2020-05-19 Version: 1.36.422
  1651. - Initial version.
  1652. 2020-05-18 Version: 1.36.421
  1653. - Support sequence for listNodes.
  1654. - Support StrictSatisfiedTargetCapacity for applyNodes.
  1655. 2020-05-18 Version: 1.36.420
  1656. - Fix DescribeIpcLiveAddress , add in params.
  1657. 2020-05-18 Version: 1.36.419
  1658. - Fix DescribeIpcLiveAddress , add in params.
  1659. 2020-05-17 Version: 1.36.418
  1660. - Open API publish.
  1661. 2020-05-17 Version: 1.36.417
  1662. - Open API publish.
  1663. 2020-05-17 Version: 1.36.416
  1664. - Open API publish.
  1665. 2020-05-17 Version: 1.36.415
  1666. - Open API publish.
  1667. 2020-05-17 Version: 1.36.414
  1668. - Open API publish.
  1669. 2020-05-14 Version: 1.36.413
  1670. - Generated 2015-01-01 for `R-kvstore`.
  1671. - Fix DescribeCacheAnalysisReport return empty BigKeys because of wrong type defination.
  1672. 2020-05-14 Version: 1.36.412
  1673. - Supported Grant Permission.
  1674. - Supported Revoke Permission.
  1675. 2020-05-14 Version: 1.36.411
  1676. - Add demo edition auth.
  1677. 2020-05-13 Version: 1.36.410
  1678. - Add ListDevicesImages DescribeIpcLiveAddress.
  1679. - Modify DescribeDevices.
  1680. 2020-05-13 Version: 1.36.409
  1681. - Add ExportTas apis.
  1682. 2020-05-13 Version: 1.36.408
  1683. - Generated 2019-09-10 for `waf-openapi`.
  1684. 2020-05-13 Version: 1.36.407
  1685. - Supported AAA for BBB.
  1686. - Fixed bugs for CCC.
  1687. 2020-05-13 Version: 1.36.406
  1688. - Add ExportTas apis.
  1689. 2020-05-13 Version: 1.36.405
  1690. - About 2019-03-07 and 2018-09-16 Version.
  1691. 2020-05-12 Version: 1.36.404
  1692. - Supported DRM.
  1693. 2020-05-11 Version: 1.36.403
  1694. - Add new openapi ApplyNodes.
  1695. 2020-05-11 Version: 1.36.402
  1696. - Support CreationCategory for CreateDBCluster.
  1697. 2020-05-09 Version: 1.36.401
  1698. - Generated 2019-01-01 for `Cassandra`.
  1699. 2020-05-09 Version: 1.36.400
  1700. - VideoSearch deploy SDK.
  1701. 2020-05-08 Version: 1.36.399
  1702. - Support sg for region.
  1703. 2020-05-06 Version: 1.36.398
  1704. - Describe describeAvailableResource.
  1705. 2020-04-30 Version: 1.36.397
  1706. - Add prometheus ListDashboards api.
  1707. 2020-04-29 Version: 1.36.396
  1708. - Add prometheus ListDashboards api.
  1709. 2020-04-29 Version: 1.36.395
  1710. - Add prometheus ListDashboards api.
  1711. 2020-04-29 Version: 1.36.394
  1712. - Supported VideoProduce.
  1713. 2020-04-29 Version: 1.36.393
  1714. - Supported VideoProduce.
  1715. 2020-04-29 Version: 1.36.392
  1716. - Supported VideoProduce.
  1717. 2020-04-29 Version: 1.36.391
  1718. - Add ListTemplateVersions API.
  1719. - GenerateExecutionPolicy supports TemplateVersion.
  1720. - CreateTemplate and UpdateTemplate support VersionName.
  1721. 2020-04-29 Version: 1.36.390
  1722. - Support groupId operations.
  1723. 2020-04-29 Version: 1.36.389
  1724. - Add ExportTas apis.
  1725. 2020-04-29 Version: 1.36.388
  1726. - Support Document Translation.
  1727. - Support Lanuage Detection.
  1728. 2020-04-29 Version: 1.36.387
  1729. - Sync cdn APIs.
  1730. 2020-04-29 Version: 1.36.386
  1731. - Add Scdn APIS.
  1732. - Sync cdn APIS.
  1733. 2020-04-28 Version: 1.36.385
  1734. - Generated 2019-03-15 for `fnf`.
  1735. 2020-04-28 Version: 1.36.384
  1736. - Add CompareFaceVerify API.
  1737. 2020-04-27 Version: 1.36.383
  1738. - Support watermark.
  1739. 2020-04-27 Version: 1.36.382
  1740. - Describe describeAvailableResource.
  1741. 2020-04-27 Version: 1.36.381
  1742. - ContrastFaceVerify Return SubCode.
  1743. 2020-04-27 Version: 1.36.380
  1744. - Generated 2019-01-01 for `Cassandra`.
  1745. 2020-04-26 Version: 1.36.379
  1746. - New api publish.
  1747. 2020-04-25 Version: 1.36.378
  1748. - Generated 2015-01-01 for `R-kvstore`.
  1749. - Add RestoreTime for CreateInstance API.
  1750. 2020-04-24 Version: 1.36.377
  1751. - Publish apis for ledger instances.
  1752. - Publish apis for members.
  1753. - Publish apis for time anchors.
  1754. - Publish apis for endpoints.
  1755. 2020-04-24 Version: 1.36.376
  1756. - Publish apis for ledger instances.
  1757. - Publish apis for members.
  1758. - Publish apis for time anchors.
  1759. - Publish apis for endpoints.
  1760. 2020-04-23 Version: 1.36.375
  1761. - GetUser API return user execute query count information.
  1762. 2020-04-23 Version: 1.36.374
  1763. - Fixed bugs for MassPush API.
  1764. 2020-04-23 Version: 1.36.373
  1765. - Add location info.
  1766. 2020-04-23 Version: 1.36.372
  1767. - Support groupId operations.
  1768. 2020-04-22 Version: 1.36.371
  1769. - Generated 2019-01-01 for `Cassandra`.
  1770. 2020-04-21 Version: 1.36.370
  1771. - Supported API for DescribeTags.
  1772. - Supported API for ListTagResources.
  1773. - Supported API for TagResources.
  1774. - Supported API for UntagResources.
  1775. 2020-04-21 Version: 1.36.369
  1776. - Supported PackageDesign Apis.
  1777. - Supported Api ListPackageDesignModelTypes.
  1778. - Supported Api PreviewModelForPackageDesign.
  1779. - Supported Api RenderImageForPackageDesign.
  1780. - Supported Api GetRenderResult.
  1781. 2020-04-21 Version: 1.36.368
  1782. - Add Statistics API.
  1783. 2020-04-20 Version: 1.36.367
  1784. - Add TemplateId.
  1785. 2020-04-20 Version: 1.36.366
  1786. - Fix FaceContrastPicture.
  1787. 2020-04-20 Version: 1.36.365
  1788. - Add kibana network white Ips.
  1789. 2020-04-19 Version: 1.36.364
  1790. - Multimedia poc modified.
  1791. 2020-04-17 Version: 1.36.363
  1792. - DescribeInstanceTypes support TotalEniQueueQuantity.
  1793. 2020-04-16 Version: 1.36.362
  1794. - Modify `SubmitSmarttagJob`.
  1795. 2020-04-16 Version: 1.36.361
  1796. - Add ModifyWhiteIps.
  1797. 2020-04-16 Version: 1.36.360
  1798. - Add BatchOptimization param in Stop and Start Instances.
  1799. - Add RemoveSymbols in GetInstanceConsoleOutput.
  1800. - Add ImageFamily in ModifyImageAttribute.
  1801. - Customize InstanceType on DedicatedHosts is supported.
  1802. - Add StorageCapacityUnit interfaces.
  1803. - Add param Tag in CreateAutoSnapshotPolicy.
  1804. 2020-04-16 Version: 1.36.359
  1805. - Add features for open api.
  1806. 2020-04-15 Version: 1.36.358
  1807. - Add pre train service api.
  1808. 2020-04-15 Version: 1.36.357
  1809. - CreateNode API add return NodeId.
  1810. 2020-04-15 Version: 1.36.356
  1811. - Vision-poc response modified.
  1812. 2020-04-14 Version: 1.36.355
  1813. - Support ListSensitiveColumns, ListSensitiveColumnsDetail API.
  1814. - ListUsers API return user execute query count information.
  1815. - Fix ListWorkFlowTemplates to return create user information.
  1816. - UpdateUser API support to update user max execute query count.
  1817. 2020-04-14 Version: 1.36.354
  1818. - Supported CreateSegmentBodyJob.
  1819. 2020-04-13 Version: 1.36.353
  1820. - Fix ListTaskExecutions SDK error.
  1821. 2020-04-10 Version: 1.36.352
  1822. - Generated 2017-05-25 for `Dypnsapi`.
  1823. 2020-04-10 Version: 1.36.351
  1824. - Support GetOfficeEditURL.
  1825. - Support RefreshOfficeEditToken.
  1826. 2020-04-10 Version: 1.36.350
  1827. - Generated 2019-01-01 for `Cassandra`.
  1828. 2020-04-10 Version: 1.36.349
  1829. - Support DescribeIpv4Location.
  1830. 2020-04-09 Version: 1.36.348
  1831. - Add prometheus api AddGrafana and AddIntegration.
  1832. 2020-04-09 Version: 1.36.347
  1833. - Generated 2018-03-13 for `retailcloud`.
  1834. 2020-04-09 Version: 1.36.346
  1835. - Add DescribePrice API.
  1836. 2020-04-09 Version: 1.36.345
  1837. - WAF OpenApi SDK Release.
  1838. 2020-04-09 Version: 1.36.344
  1839. - Add DescribeDBClusterAvailableResources.
  1840. 2020-04-09 Version: 1.36.343
  1841. - Generated 2015-01-01 for `R-kvstore`.
  1842. - Add DescribePrice API.
  1843. 2020-04-08 Version: 1.36.342
  1844. - Add SubCode for DescribeFaceVerify.
  1845. 2020-04-08 Version: 1.36.341
  1846. - Generated 2019-01-01 for `Cassandra`.
  1847. 2020-04-03 Version: 1.36.340
  1848. - Add trace api.
  1849. - Add prometheus api.
  1850. 2020-04-03 Version: 1.36.339
  1851. - Support shelf type for planogram position.
  1852. 2020-04-03 Version: 1.36.338
  1853. - Support namespaces.
  1854. 2020-04-02 Version: 1.36.337
  1855. - Add API ContrastFaceVerify.
  1856. 2020-04-02 Version: 1.36.336
  1857. - Support for WaitTimeSeconds for DescribeExecution.
  1858. 2020-04-01 Version: 1.36.335
  1859. - DescribeVerifyToken API Add Parameters-UserIp and UserPhoneNumber and UserRegistTime.
  1860. 2020-04-01 Version: 1.36.334
  1861. - Parameters is string in StartExecution Response.
  1862. 2020-04-01 Version: 1.36.333
  1863. - Counters and Parameters are changed to Map in ListExections and StartExecution.
  1864. 2020-03-24 Version: 1.36.332
  1865. - DescribeInstanceTypes Supports EniIpv6AddressQuantity.
  1866. 2020-03-24 Version: 1.36.331
  1867. - DescribeInstanceTypes Supports EniIpv6AddressQuantity.
  1868. 2020-03-23 Version: 1.36.330
  1869. - Generated 2015-01-01 for `R-kvstore`.
  1870. - Add DescribeSecurityGroupConfiguration API.
  1871. - Add ModifySecurityGroupConfiguration API.
  1872. 2020-03-23 Version: 1.36.329
  1873. - Generated 2014-08-15 for `Rds`.
  1874. 2020-03-20 Version: 1.36.328
  1875. - Generated 2018-04-12 for `EHPC`.
  1876. 2020-03-20 Version: 1.36.327
  1877. - Add GetNetworkInterface interface.
  1878. 2020-03-20 Version: 1.36.326
  1879. - Generated 2018-04-12 for `EHPC`.
  1880. 2020-03-18 Version: 1.36.325
  1881. - Supported API for DescribeInstanceDomains.
  1882. 2020-03-18 Version: 1.36.324
  1883. - ACM POP SDK.
  1884. 2020-03-18 Version: 1.36.323
  1885. - Support product addrp.
  1886. 2020-03-18 Version: 1.36.322
  1887. - Generated 2018-08-28 for `Tag`.
  1888. 2020-03-16 Version: 1.36.321
  1889. - DescribeFaceVerify API Return DeviceToken Field.
  1890. 2020-03-16 Version: 1.36.320
  1891. - Release.
  1892. - Add virtual host modification API.
  1893. - Add exchange modification API.
  1894. - Add queue modification API.
  1895. - Add binding modification API.
  1896. 2020-03-16 Version: 1.36.319
  1897. - Add ImageFamily paramters and apis, in Instance creation apis and Image query apis, and add DescribeImageFromFamily.
  1898. - Add Instance batch operation apis RebootInstances StartInstances and StopInstances.
  1899. - Add EncryptAlgorithm paramter in instance creati
  1900. 2020-03-13 Version: 1.36.318
  1901. - ACM POP SDK.
  1902. 2020-03-12 Version: 1.36.317
  1903. - Add new Api SegmentBody.
  1904. 2020-03-11 Version: 1.36.316
  1905. - Update structure for DescribeAvailableResource without compatible.
  1906. 2020-03-11 Version: 1.36.315
  1907. - Add new Api SegmentBody.
  1908. 2020-03-11 Version: 1.36.314
  1909. - Support certificate translate.
  1910. 2020-03-10 Version: 1.36.313
  1911. - Add ExportTas apis.
  1912. 2020-03-10 Version: 1.36.312
  1913. - Add ExportTas apis.
  1914. 2020-03-09 Version: 1.36.311
  1915. - Add EmotionConfidence to GetImage.
  1916. 2020-03-09 Version: 1.36.310
  1917. - Add BackupStorageType.
  1918. 2020-03-09 Version: 1.36.309
  1919. - Add EmotionConfidence to GetImage.
  1920. 2020-03-09 Version: 1.36.308
  1921. - Add EmotionConfidence to GetImage.
  1922. 2020-03-09 Version: 1.36.307
  1923. - NlpAutoml update contract api.
  1924. 2020-03-09 Version: 1.36.306
  1925. - NlpAutoml update contract api.
  1926. 2020-03-06 Version: 1.36.305
  1927. - Supported Saf for cn.
  1928. 2020-03-06 Version: 1.36.304
  1929. - Supported Saf for cn.
  1930. 2020-03-06 Version: 1.36.303
  1931. - Supported Saf for oversea.
  1932. 2020-03-06 Version: 1.36.302
  1933. - Add request parameter groupType for OnsGroupCreate.
  1934. - Add request parameter groupType for OnsGroupList.
  1935. 2020-03-05 Version: 1.36.301
  1936. - Add param InstanceType for ListImages and ListCustomImages.
  1937. - Fix error codes for SubmitJobs and so on.
  1938. 2020-03-04 Version: 1.36.300
  1939. - Update.
  1940. 2020-03-03 Version: 1.36.299
  1941. - Supported secretmanager stable version for kms.
  1942. 2020-03-03 Version: 1.36.298
  1943. - Supported secretmanager stable version for kms.
  1944. 2020-03-03 Version: 1.36.297
  1945. - GeoIP Databases SDK initial release.
  1946. 2020-03-03 Version: 1.36.296
  1947. - Supported secretmanager for kms.
  1948. 2020-02-28 Version: 1.36.295
  1949. - Add QueryPhoneNoAByTrackNo and AddAxnTrackNo.
  1950. 2020-02-28 Version: 1.36.294
  1951. - Supported secretmanager for kms.
  1952. 2020-02-27 Version: 1.36.293
  1953. - Add translate api.
  1954. 2020-02-27 Version: 1.36.292
  1955. - Release Ft SDK.
  1956. 2020-02-26 Version: 1.36.291
  1957. - Fix tag upper case parameters.
  1958. - Fix patch.
  1959. 2020-02-26 Version: 1.36.290
  1960. - Generated 2015-01-01 for `R-kvstore`.
  1961. - Add VpcCloudInstanceId for DescribeInstanceAttribute.
  1962. 2020-02-26 Version: 1.36.289
  1963. - Add InitFaceVerify and DescribeFaceVerify API.
  1964. 2020-02-25 Version: 1.36.288
  1965. - Fix ListWorkFlowTemplates, ListWorkFlowNodes API Go SDK build error.
  1966. 2020-02-25 Version: 1.36.287
  1967. - Update backupsetDownloadset fun.
  1968. 2020-02-24 Version: 1.36.286
  1969. - ImmediateDelete.
  1970. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  1971. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  1972. - DescribeIpWhitelist Groups GroupName.
  1973. - CreateCluster.
  1974. 2020-02-24 Version: 1.36.285
  1975. - Release Ft SDK.
  1976. 2020-02-24 Version: 1.36.284
  1977. - Release Ft SDK.
  1978. 2020-02-24 Version 1.36.283
  1979. - Add tag of list instance parameters.
  1980. 2020-02-24 Version 1.36.282
  1981. - Generated 2018-06-12 for `VoiceNavigator`.
  1982. 2020-02-24 Version 1.36.281
  1983. - Generated 2019-12-26 for `OutboundBot`.
  1984. 2020-02-24 Version 1.36.280
  1985. - Generated 2019-12-26 for `OutboundBot`.
  1986. 2020-02-24 Version 1.36.279
  1987. - Generated 2019-12-26 for `OutboundBot`.
  1988. 2020-02-21 Version 1.36.278
  1989. - Support TAG API.
  1990. 2020-02-20 Version 1.36.277
  1991. - Generated 2019-09-28 for `reid`.
  1992. 2020-02-20 Version 1.36.276
  1993. - Add new interface ListMaskDetectionResults to support to pull mask detection results.
  1994. 2020-02-15 Version 1.36.275
  1995. - Add DescribeDBClusterSSL.
  1996. - Add ModifyDBClusterSSL.
  1997. 2020-02-14 Version 1.36.274
  1998. - Update default endpoints.
  1999. 2020-02-14 Version 1.36.273
  2000. - Add callback params to StartExecution API.
  2001. - Support ListExecutions with Status API.
  2002. 2020-02-14 Version 1.36.272
  2003. - Update default endpoints.
  2004. 2020-02-13 Version 1.36.271
  2005. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  2006. - DescribeNetworkInterfaces support QueueNumber.
  2007. 2020-02-13 Version 1.36.270
  2008. - Add Staging apis.
  2009. 2020-02-13 Version 1.36.269
  2010. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  2011. - DescribeNetworkInterfaces support QueueNumber.
  2012. 2020-02-13 Version 1.36.268
  2013. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  2014. - DescribeNetworkInterfaces support QueueNumber.
  2015. 2020-02-13 Version 1.36.267
  2016. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  2017. - DescribeNetworkInterfaces support QueueNumber.
  2018. 2020-02-13 Version 1.36.266
  2019. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  2020. - DescribeNetworkInterfaces support QueueNumber.
  2021. 2020-02-13 Version 1.36.265
  2022. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  2023. - DescribeNetworkInterfaces support QueueNumber.
  2024. 2020-02-13 Version 1.36.264
  2025. - Add Staging apis.
  2026. 2020-02-13 Version 1.36.263
  2027. - Add Staging apis.
  2028. 2020-02-13 Version 1.36.262
  2029. - Add Staging apis.
  2030. 2020-02-13 Version 1.36.261
  2031. - Add Staging apis.
  2032. 2020-02-13 Version 1.36.260
  2033. - Add Staging apis.
  2034. 2020-02-13 Version 1.36.259
  2035. - Init MQTT SDK .
  2036. 2020-02-12 Version 1.36.258
  2037. - Support to create, describe and expire demo access token.
  2038. 2020-02-12 Version 1.36.257
  2039. - Update Full showStorageTyp.
  2040. 2020-02-12 Version 1.36.256
  2041. - Add Full showStorageTyp.
  2042. 2020-02-12 Version 1.36.255
  2043. - Support mau.
  2044. 2020-02-11 Version 1.36.254
  2045. - Return `VpcInstanceId ` for DescribeDBClusterEndpoints.
  2046. - Add DescribeBackupLogs.
  2047. 2020-02-11 Version 1.36.253
  2048. - Support ModifyInstanceAttributes for SecurityGroupIds.
  2049. 2020-02-11 Version 1.36.252
  2050. - Update default endpoints.
  2051. 2020-02-10 Version 1.36.251
  2052. - Supported address for GetMediaMeta.
  2053. 2020-02-07 Version 1.36.250
  2054. - Fix bug for DescribeZoneInfo, delete return result of reionId.
  2055. - Fix bug for DeleteZone, parameter zoneId change to compulsory.
  2056. - Fix bug for SetProxyPattern, parameter zoneId change to compulsory.
  2057. 2020-02-05 Version 1.36.249
  2058. - Supported GetOfficePreviewURL.
  2059. - Supported RefreshOfficePreviewToken.
  2060. 2020-02-04 Version 1.36.248
  2061. - Update default endpoints.
  2062. 2020-01-20 Version 1.36.247
  2063. - Release on full language support.
  2064. 2020-01-17 Version 1.36.246
  2065. - Supported Add the history event signature function.
  2066. 2020-01-16 Version 1.36.245
  2067. - Fix the result value of DeleteSiteMonitors.
  2068. 2020-01-16 Version 1.36.244
  2069. - Generated 2015-01-01 for `R-kvstore`.
  2070. - Update DescribeAvailableResource.
  2071. 2020-01-16 Version 1.36.243
  2072. - Add fields faceComparisonScore for DescribeVerifyResult and VerifyMaterials interface.
  2073. 2020-01-15 Version 1.36.242
  2074. - Fix parameter issues for label synchronization group.
  2075. 2020-01-15 Version 1.36.241
  2076. - Fix parameter issues for label synchronization group.
  2077. 2020-01-13 Version 1.36.240
  2078. - New API DescribeAvailableResource.
  2079. 2020-01-13 Version 1.36.239
  2080. - Add Dynamic Tag API.
  2081. 2020-01-13 Version 1.36.238
  2082. - Supported InstanceMaintenanceAtrributes for maintening the attributes of instances.
  2083. - Deleted MaintenanceProperty.
  2084. - Supported RedeployDedicatedHost for redeploying dedicated host in under-assessment status.
  2085. 2020-01-10 Version 1.36.237
  2086. - Return `ConsistentTime` for DescribeBackups.
  2087. - Return `DBNodeIds` for CreateDBNodes.
  2088. 2020-01-09 Version 1.36.236
  2089. - Support DAILY report in QueryInstanBill.
  2090. 2020-01-08 Version 1.36.235
  2091. - Add TagLevel to ListSetTags.
  2092. 2020-01-07 Version 1.36.234
  2093. - Modify desribeInstance return dict item.
  2094. 2020-01-07 Version 1.36.233
  2095. - Generated 2014-05-26 for `Ecs`.
  2096. 2020-01-03 Version 1.36.232
  2097. - Add GWS serie apis.
  2098. - Add QueryReport.
  2099. - Fix ListJobs.
  2100. - Etc.
  2101. 2020-01-03 Version 1.36.231
  2102. - New API DescribeAvailableResource.
  2103. 2020-01-03 Version 1.36.230
  2104. - ImmediateDelete.
  2105. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  2106. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  2107. - DescribeIpWhitelist Groups GroupName.
  2108. 2019-12-31 Version 1.36.229
  2109. - Supported SQL SERVER support delete backup set according to time range.
  2110. 2019-12-31 Version 1.36.228
  2111. - Support asymmetric keys.
  2112. 2019-12-31 Version 1.36.227
  2113. - Add request parameter groupType for OnsGroupCreate.
  2114. 2019-12-31 Version 1.36.226
  2115. - Supported image for process.
  2116. 2019-12-31 Version 1.36.225
  2117. - Generated 2019-09-28 for `reid`.
  2118. 2019-12-31 Version 1.36.224
  2119. - Support DeleteDBCluster.
  2120. - Support ModifyDBCluster.
  2121. - Support DescribeAvailableResource.
  2122. 2019-12-27 Version 1.36.223
  2123. - Update DescribeTrails Response.
  2124. 2019-12-26 Version 1.36.222
  2125. - NlpAutoml add async api.
  2126. 2019-12-26 Version 1.36.221
  2127. - Modify CreateRestoreTask.
  2128. 2019-12-20 Version 1.36.220
  2129. - Supported Search stream predict task list use modelId for IVISION.
  2130. 2019-12-20 Version 1.36.219
  2131. - Add result value for OnsConsumerStatus.
  2132. 2019-12-19 Version 1.36.218
  2133. - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
  2134. 2019-12-19 Version 1.36.217
  2135. - Generated 2019-09-28 for `reid`.
  2136. 2019-12-19 Version 1.36.216
  2137. - DescribeNetworkInterfaces Supports NextToken.
  2138. 2019-12-16 Version 1.36.215
  2139. - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
  2140. 2019-12-14 Version 1.36.214
  2141. - Generated 2015-01-01 for `R-kvstore`.
  2142. 2019-12-14 Version 1.36.213
  2143. - Update DescribeAvailableResource.
  2144. 2019-12-14 Version 1.36.212
  2145. - Update DescribeAvailableResource.
  2146. 2019-12-12 Version 1.36.211
  2147. - Generated 2019-06-10 for `et-industry-openapi`.
  2148. 2019-12-11 Version 1.36.210
  2149. - Supported Sync predict for Image.
  2150. - Supported Set Frame Frequency for Stream Predict.
  2151. - Fixed Errore Code For APIs.
  2152. 2019-12-11 Version 1.36.209
  2153. - Add tag API.
  2154. - Add group process monitoring API.
  2155. - Add API for batch setting alarm rules.
  2156. 2019-12-05 Version 1.36.208
  2157. - Add api QueryMetric.
  2158. 2019-12-04 Version 1.36.207
  2159. - Generated 2019-01-01 for `HBase`.
  2160. 2019-12-04 Version 1.36.206
  2161. - Supported ModifyDBInstanceSpec for Direction param.
  2162. 2019-12-02 Version 1.36.205
  2163. - Remove QuerySmsProdStatus OpenAPI.
  2164. 2019-11-29 Version 1.36.204
  2165. - Add RenewInstance.
  2166. - Add RenewLogstash.
  2167. - Add UpdateInstanceChargeType.
  2168. - Add UpdateLogstashChargeType.
  2169. 2019-11-28 Version 1.36.203
  2170. - Supported API GetTxtRecordForVerify.
  2171. - Supported API RetrieveDomain.
  2172. 2019-11-28 Version 1.36.202
  2173. - Supported dash for compress.
  2174. 2019-11-28 Version 1.36.201
  2175. - Eni Supports Multi-SecurityGroup.
  2176. 2019-11-27 Version 1.36.200
  2177. - CreateReplicationJob API supports the specified instance type.
  2178. 2019-11-26 Version 1.36.199
  2179. - Modify QueryBill, add SubOrderId in item of response.
  2180. 2019-11-26 Version 1.36.198
  2181. - Supported API BindInstanceDomains.
  2182. - Supported API UnbindInstanceDomains.
  2183. - Supported API AddCustomLine.
  2184. - Supported API UpdateCustomLine.
  2185. - Supported API DeleteCustomLines.
  2186. - Supported API DescribeCustomLine.
  2187. - Supported API DescribeCustomLines.
  2188. 2019-11-25 Version 1.36.197
  2189. - Generated 2019-10-30 for `aliyuncvc`.
  2190. 2019-11-25 Version 1.36.196
  2191. - One or more people can be subscribed when creating tasks.
  2192. 2019-11-21 Version 1.36.195
  2193. - Add ConvertPayType.
  2194. - Add ConvertLogstashPayType.
  2195. 2019-11-21 Version 1.36.194
  2196. - Generated 2017-10-11 for `Chatbot`.
  2197. 2019-11-21 Version 1.36.193
  2198. - Generated 2017-10-11 for `Chatbot`.
  2199. 2019-11-21 Version 1.36.192
  2200. - Generated 2019-10-30 for `aliyuncvc`.
  2201. 2019-11-20 Version 1.36.191
  2202. - Update Nlp Automl SDK.
  2203. 2019-11-20 Version 1.36.190
  2204. - Add new OpenAPI.
  2205. 2019-11-20 Version 1.36.189
  2206. - Add new pop api.
  2207. 2019-11-20 Version 1.36.188
  2208. - Generated 2014-05-26 for `Ecs`.
  2209. 2019-11-20 Version 1.36.187
  2210. - Generated 2018-04-12 for `EHPC`.
  2211. 2019-11-20 Version 1.36.186
  2212. - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
  2213. - Modify ecsDemand DescribesDemands API.
  2214. 2019-11-20 Version 1.36.185
  2215. - Generated 2019-01-01 for `HBase`.
  2216. 2019-11-20 Version 1.36.184
  2217. - Add API ReportVoipProblems.
  2218. - Add API QueryVoipNumberBindINfos.
  2219. 2019-11-15 Version 1.36.183
  2220. - Nlp Automl SDK.
  2221. 2019-11-15 Version 1.36.182
  2222. - Sync cdn APIs.
  2223. 2019-11-15 Version 1.36.181
  2224. - Fixed bugs.
  2225. 2019-11-15 Version 1.36.180
  2226. - Add Scdn APIS.
  2227. - Sync cdn APIS.
  2228. 2019-11-15 Version 1.36.179
  2229. - Modify QueryAccountBill, support group by product.
  2230. 2019-11-15 Version 1.36.178
  2231. - Modify DescribeRestoreRangeInfo.
  2232. 2019-11-15 Version 1.36.177
  2233. - Add DescribeRestoreRangeInfo.
  2234. 2019-11-14 Version 1.36.176
  2235. - Released dysms OpenAPI.
  2236. 2019-11-14 Version 1.36.175
  2237. - Support Tag OpenAPI.
  2238. - Fix endpoint problem.
  2239. 2019-11-14 Version 1.36.174
  2240. - Initial construction.
  2241. - Public beta version.
  2242. - Supported AliyunController for Interface.
  2243. - Supported ConsoleController for Interface.
  2244. - Supported AccountController for Interface.
  2245. 2019-11-13 Version 1.36.173
  2246. - Supported Stream analyse.
  2247. 2019-11-13 Version 1.36.172
  2248. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  2249. 2019-11-13 Version 1.36.171
  2250. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  2251. 2019-11-13 Version 1.36.170
  2252. - Add new API QueryBillToOSSSubscription.
  2253. 2019-11-13 Version 1.36.169
  2254. - Supported API UpdateDomainRemark for Update Domain Remark.
  2255. - Supported API UpdateDomainRecordRemark for Update Record Remark.
  2256. - Unsupported API CheckDomainRecord.
  2257. 2019-11-13 Version 1.36.168
  2258. - Support Go SDK.
  2259. - Support C SDK.
  2260. - Support PHP SDK.
  2261. 2019-11-08 Version 1.36.167
  2262. - Add DescribeJobErrorCode.
  2263. 2019-11-05 Version 1.36.166
  2264. - Add OperateBlackNo.
  2265. 2019-11-02 Version 1.36.165
  2266. - Generated 2017-05-25 for `Dyvmsapi`.
  2267. 2019-10-31 Version 1.36.164
  2268. - Initial construction.
  2269. - Public beta version.
  2270. - Supported AliyunController for Interface.
  2271. - Supported ConsoleController for Interface.
  2272. - Supported AccountController for Interface.
  2273. 2019-10-31 Version 1.36.163
  2274. - Initial construction.
  2275. - Public beta version.
  2276. - Supported AliyunController for Interface.
  2277. - Supported ConsoleController for Interface.
  2278. - Supported AccountController for Interface.
  2279. 2019-10-29 Version 1.36.162
  2280. - Add a new Alibaba Cloud Bill API named QueryAccountBill.
  2281. 2019-10-25 Version 1.36.161
  2282. - Initial construction.
  2283. - Public beta version.
  2284. - Supported AliyunController for Interface.
  2285. - Supported ConsoleController for Interface.
  2286. - Supported AccountController for Interface.
  2287. 2019-10-25 Version 1.36.160
  2288. - Supported query push records.
  2289. 2019-10-25 Version 1.36.159
  2290. - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
  2291. 2019-10-24 Version 1.36.158
  2292. - Generated 2017-12-14 for `BssOpenApi`.
  2293. 2019-10-23 Version 1.36.157
  2294. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  2295. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  2296. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  2297. - Modify the data type of return field StorageLocation to String.
  2298. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  2299. 2019-10-23 Version 1.36.156
  2300. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  2301. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  2302. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  2303. - Modify the data type of return field StorageLocation to String.
  2304. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  2305. 2019-10-23 Version 1.36.155
  2306. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  2307. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  2308. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  2309. - Modify the data type of return field StorageLocation to String.
  2310. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  2311. 2019-10-22 Version 1.36.154
  2312. - RunInstances support AutoSnapshotPolicyId.
  2313. 2019-10-22 Version 1.36.153
  2314. - Supported ExternalId IMM.
  2315. 2019-10-21 Version 1.36.152
  2316. - Release first version.
  2317. 2019-10-18 Version 1.36.151
  2318. - Generated 2019-09-10 for `DnsKnocker`.
  2319. 2019-10-16 Version 1.36.150
  2320. - Add ListTagResources OpenApi.
  2321. - Add TagResources OpenApi.
  2322. - Add UntagResources OpenApi.
  2323. - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
  2324. 2019-10-14 Version 1.36.149
  2325. - Support continuous pushing.
  2326. 2019-10-09 Version 1.36.148
  2327. - Add VideoCancelScan Api.
  2328. 2019-10-09 Version 1.36.147
  2329. - Support API RecognizeImageColor.
  2330. - Support API DetectImageElements.
  2331. - Support API RecolorImage.
  2332. - Support API SegmentImage.
  2333. - Support API ChangeImageSize.
  2334. - Support API ExtendImageStyle.
  2335. - Support API RecognizeImageStyle.
  2336. - Support API MakeSuperResolution.
  2337. 2019-10-08 Version 1.36.146
  2338. - Supported Grab Frame IMM.
  2339. 2019-10-08 Version 1.36.145
  2340. - Supported API MassPush for Push Message or Notice.
  2341. 2019-10-08 Version 1.36.144
  2342. - Generated 2016-01-20 for `Kms`.
  2343. 2019-09-26 Version 1.36.143
  2344. - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
  2345. - Add QuerySubsId.
  2346. 2019-09-23 Version 1.36.142
  2347. - Add param, DescribePrice supprot ReservedInstance.
  2348. 2019-09-19 Version 1.36.141
  2349. - Supported Video Abstract for IMM.
  2350. 2019-09-19 Version 1.36.140
  2351. - Generated 2018-01-20 for `Iot`.
  2352. 2019-09-19 Version 1.36.139
  2353. - Supported Video Abstract for IMM.
  2354. 2019-09-19 Version 1.36.138
  2355. - Add bizSubCode and so on.
  2356. 2019-09-18 Version 1.36.137
  2357. - Supported Video Abstract for IMM.
  2358. 2019-09-17 Version 1.36.136
  2359. - Generated 2018-04-12 for `EHPC`.
  2360. 2019-09-16 Version 1.36.135
  2361. - Generated 2018-04-12 for `EHPC`.
  2362. 2019-09-16 Version 1.36.134
  2363. - Generated 2018-04-12 for `EHPC`.
  2364. 2019-09-16 Version 1.36.133
  2365. - Generated 2016-11-11 for `aegis`.
  2366. 2019-09-15 Version 1.36.132
  2367. - Generated 2018-04-12 for `EHPC`.
  2368. 2019-09-14 Version 1.36.131
  2369. - Generated 2019-08-08 for `ARMS`.
  2370. 2019-09-12 Version 1.36.130
  2371. - Fixed CMakeLists file.
  2372. 2019-09-12 Version 1.36.129
  2373. - Fixed CMakeLists file.
  2374. 2019-09-12 Version 1.36.128
  2375. - Fixed CMakeLists file.
  2376. 2019-09-12 Version 1.36.127
  2377. - Fixed CMakeLists file.
  2378. 2019-09-12 Version 1.36.126
  2379. - Fixed CMakeLists file.
  2380. 2019-09-12 Version 1.36.125
  2381. - Fixed CMakeLists file.
  2382. 2019-09-12 Version 1.36.124
  2383. - Fixed CMakeLists file.
  2384. 2019-09-12 Version 1.36.123
  2385. - Fixed CMakeLists file.
  2386. 2019-09-12 Version 1.36.122
  2387. - Fixed CMakeLists file.
  2388. 2019-09-12 Version 1.36.121
  2389. - Fixed CMakeLists file.
  2390. 2019-09-12 Version 1.36.120
  2391. - Fixed CMakeLists file.
  2392. 2019-09-12 Version 1.36.119
  2393. - Fixed CMakeLists file.
  2394. 2019-09-12 Version 1.36.118
  2395. - Fixed CMakeLists file.
  2396. 2019-09-12 Version 1.36.117
  2397. - Fixed CMakeLists file.
  2398. 2019-09-09 Version 1.36.116
  2399. - CreateInstance add toen.
  2400. - UpdateInstance add toen.
  2401. 2019-09-06 Version 1.36.115
  2402. - Update endpoint data.
  2403. 2019-09-06 Version 1.36.114
  2404. - Generated 2016-04-28 for `Vpc`.
  2405. 2019-09-05 Version 1.36.113
  2406. - Supported for setEndpoint method.
  2407. 2019-09-05 Version 1.36.112
  2408. - Generated 2014-05-15 for `Slb`.
  2409. 2019-09-05 Version 1.36.111
  2410. - Generated 2017-07-05 for `CCC`.
  2411. 2019-09-05 Version 1.36.110
  2412. - Generated 2018-11-11 for `foas`.
  2413. 2019-09-05 Version 1.36.109
  2414. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  2415. 2019-09-05 Version 1.36.108
  2416. - Generated 2015-11-01 for `Market`.
  2417. 2019-09-05 Version 1.36.107
  2418. - Generated 2016-07-14 for `CloudAPI`.
  2419. 2019-09-05 Version 1.36.106
  2420. - Generated 2017-08-01 for `polardb`.
  2421. 2019-09-05 Version 1.36.105
  2422. - Generated 2017-12-14 for `BssOpenApi`.
  2423. 2019-09-03 Version 1.36.104
  2424. - Generated 2014-08-15 for `Rds`.
  2425. 2019-08-30 Version 1.36.103
  2426. - Revert to 2015-09-01.
  2427. 2019-08-30 Version 1.36.102
  2428. - Release Apis of Version 2019-09-10.
  2429. 2019-08-30 Version 1.36.101
  2430. - Supported Meida complex for IMM.
  2431. 2019-08-30 Version 1.36.100
  2432. - Add api for getTrace and searchTracelist.
  2433. 2019-08-29 Version 1.36.99
  2434. - Move StopExecution params to body.
  2435. 2019-08-29 Version 1.36.98
  2436. - For publish.
  2437. 2019-08-28 Version 1.36.97
  2438. - Add DBS API UpgradeBackupPlan.
  2439. - Add DBS API DescribePreCheckProgressList.
  2440. 2019-08-26 Version 1.36.96
  2441. - QueryInstanceBillResponse change ownerId type from Long to String.
  2442. - QueryInstanceBillResponse change usage type from float to String.
  2443. - QueryInstanceBillResponse change listPrice type from float to String.
  2444. - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
  2445. 2019-08-22 Version 1.36.95
  2446. - Support API RecognizeImageColor.
  2447. - Support API DetectImageElements.
  2448. - Support API RecolorImage.
  2449. - Support API SegmentImage.
  2450. - Support API ChangeImageSize.
  2451. - Support API ExtendImageStyle.
  2452. - Support API RecognizeImageStyle.
  2453. - Support API MakeSuperResolutionImage.
  2454. 2019-08-22 Version 1.36.94
  2455. - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
  2456. 2019-08-21 Version 1.36.93
  2457. - Move StartExecution params to body.
  2458. 2019-08-21 Version 1.36.92
  2459. - Return backup job id when create backup.
  2460. - Return backup set size when describe backups.
  2461. 2019-08-20 Version 1.36.91
  2462. - API TaobaoFilmGetSchedules retrun col add hallId.
  2463. 2019-08-15 Version 1.36.90
  2464. - FnF public version.
  2465. - Add Report task api.
  2466. 2019-08-15 Version 1.36.89
  2467. - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
  2468. 2019-08-15 Version 1.36.88
  2469. - QueryInstanceBillResponse add ServicePeriod.
  2470. 2019-08-14 Version 1.36.87
  2471. - Generated 2018-01-20 for `Iot`.
  2472. 2019-08-13 Version 1.36.86
  2473. - Optimize return code.
  2474. - Edit QueryDataset.
  2475. 2019-08-13 Version 1.36.85
  2476. - Supported for openapi new version.
  2477. 2019-08-12 Version 1.36.84
  2478. - Support Defect Face API.
  2479. 2019-08-08 Version 1.36.83
  2480. - Add CreateStorageSet api to support storageSet.
  2481. - Add DeleteStorageSet api to support storageSet.
  2482. - Add ModifyStorageSetAttribute api to support storageSet.
  2483. - Add DescribeStorageSets api to support storageSet.
  2484. - Add DescribeStorageSetDetails api to support storageSet.
  2485. - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
  2486. - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
  2487. - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
  2488. 2019-08-08 Version 1.36.82
  2489. - Group, Plugin support tag authentication.
  2490. 2019-08-06 Version 1.36.81
  2491. - Supported GetMediaMeta for IMM.
  2492. 2019-08-06 Version 1.36.80
  2493. - Supported GetMediaMeta for IMM.
  2494. 2019-08-06 Version 1.36.79
  2495. - Supported GetMediaMeta for IMM.
  2496. 2019-08-06 Version 1.36.78
  2497. - Supported GetMediaMeta for IMM.
  2498. 2019-08-06 Version 1.36.77
  2499. - Supported GetMediaMeta for IMM.
  2500. 2019-08-05 Version 1.36.76
  2501. - GetOrderDetail add originalConfig param.
  2502. 2019-08-05 Version 1.36.75
  2503. - GetOrderDetail add originalConfig param.
  2504. 2019-08-05 Version 1.36.74
  2505. - Modify DBS API DescribeFullBackupList.
  2506. 2019-08-02 Version 1.36.73
  2507. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  2508. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  2509. 2019-07-31 Version 1.36.72
  2510. - Endpoint auto route.
  2511. 2019-07-26 Version 1.36.71
  2512. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  2513. 2019-07-26 Version 1.36.70
  2514. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  2515. 2019-07-25 Version 1.36.69
  2516. - App-related actions support tag authentication.
  2517. 2019-07-23 Version 1.36.68
  2518. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  2519. 2019-07-19 Version 1.36.67
  2520. - QueryMonthlyBillResponse add roundDownDiscount.
  2521. - QueryBillResponse add roundDownDiscount.
  2522. - QueryInstanceBillResponse add item.
  2523. 2019-07-18 Version 1.36.66
  2524. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  2525. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  2526. 2019-07-14 Version 1.36.65
  2527. - Modify DBS API DescribeBackupPlanList.
  2528. 2019-07-14 Version 1.36.64
  2529. - Modify DBS API DescribeBackupPlanList.
  2530. 2019-07-12 Version 1.36.63
  2531. - Public api AddLivePullStreamInfoConfig.
  2532. 2019-07-11 Version 1.36.62
  2533. - Modify CreateBackupPlan.
  2534. - Modify ConfigureBackupPlan.
  2535. - Modify DescribeFullBackupList.
  2536. - Modify DescribeRestoreTaskList.
  2537. - Add ModifyBackupSourceEndpoint.
  2538. - Add ModifyBackupStrategy.
  2539. - Add ModifyBackupPlanName.
  2540. 2019-07-05 Version 1.36.61
  2541. - Supported library managment for simillarity scene.
  2542. - Remove the local file uploader code which can be downloaded from yundun content security document.
  2543. 2019-07-05 Version 1.36.60
  2544. - Add TaskCancelStatus for QueryTaskList api.
  2545. 2019-07-04 Version 1.36.59
  2546. - Supported API DescribeRecordStatisticsy for Query Volume.
  2547. - Supported API DescribeDomainStatistics for Query Volume.
  2548. 2019-07-03 Version 1.36.58
  2549. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  2550. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  2551. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  2552. - Supported API DescribeDomainDnsStatistics for Query Volume.
  2553. 2019-07-02 Version 1.36.57
  2554. - FnF public version.
  2555. 2019-07-02 Version 1.36.56
  2556. - Fix Double to double.
  2557. 2019-07-01 Version 1.36.55
  2558. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  2559. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  2560. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  2561. - Add RetentionDays to snapshot creating.
  2562. 2019-06-27 Version 1.36.54
  2563. - Added setting of crop_mode parameter.
  2564. 2019-06-24 Version 1.36.53
  2565. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  2566. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  2567. - 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.
  2568. - 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.
  2569. 2019-06-24 Version 1.36.52
  2570. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  2571. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  2572. - 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.
  2573. - 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.
  2574. 2019-06-18 Version 1.36.51
  2575. 1. Supported the related recommend.
  2576. 2. Supported exposure time controll and exposure filter by scene.
  2577. 2019-06-17 Version 1.36.50
  2578. companyreg release
  2579. 2019-06-13 Version 1.36.49
  2580. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  2581. 2019-06-13 Version 1.36.48
  2582. - Generated 2015-01-01 for `R-kvstore`
  2583. 2019-06-13 Version 1.36.47
  2584. Add Network Assistant openapi sdk
  2585. 2019-06-12 Version 1.36.46
  2586. 1, Add RenewBackupPlan DBS interface.
  2587. 2019-06-12 Version 1.36.45
  2588. 1.Fix bug
  2589. 2019-06-12 Version 1.36.44
  2590. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  2591. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  2592. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  2593. 2019-06-05 Version: 1.36.43
  2594. 1, Update DescribeDataLimitDetail interface, add password for response
  2595. 2019-06-04 Version: 1.36.42
  2596. 1, Add new API: UpdateLivePullStreamInfoConfig
  2597. 2019-06-03 Version: 1.36.41
  2598. 1, Add openapi of ACL.
  2599. 2019-05-31 Version: 1.36.40
  2600. 1, add api 'search traces count'
  2601. 2, add page index for api 'searchTraces'
  2602. 2019-05-31 Version: 1.36.39
  2603. 1, Add authority in GetMaterials API.
  2604. 2019-05-29 Version 1.36.38
  2605. update Smartag
  2606. 2019-05-29 Version 1.36.37
  2607. update product
  2608. 2019-05-29 Version: 1.36.36
  2609. 1, Fix ServiceCode typo in request
  2610. 2019-05-28 Version: 1.36.35
  2611. 1, CreateDBInstance now support autoRenew
  2612. 2019-05-27 Version: 1.36.34
  2613. 1, Support video transcode.
  2614. 2019-05-27 Version: 1.36.33
  2615. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  2616. 2019-05-22 Version: 1.36.32
  2617. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  2618. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  2619. 2019-05-20 Version: 1.36.31
  2620. 1, Add both api, ListNotaryInfos
  2621. 2019-05-20 Version: 1.36.30
  2622. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  2623. 2019-05-16 Version: 1.36.29
  2624. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  2625. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  2626. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  2627. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  2628. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  2629. 6, Add the field named UserData to SubmitSnapshotJob api request.
  2630. 2019-05-15 Version: 1.36.28
  2631. 1, Add InstanceId parameter to api CreateDisk
  2632. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  2633. 3, Add SecurityGroupIds parameter to Instance creation apis.
  2634. 2019-05-14 Version: 1.36.27
  2635. 1, support body detect
  2636. 2019-05-14 Version: 1.36.26
  2637. 1, Support body detect.
  2638. 2019-05-14 Version: 1.36.25
  2639. 1, Support body detect.
  2640. 2019-05-14 Version: 1.36.24
  2641. 1, Support body detect.
  2642. 2019-05-13 Version: 1.36.23
  2643. 1, Support for creating instances and joining multiple security groups at the same time.
  2644. 2019-04-26 Version: 1.36.22
  2645. 1, add new openapi.
  2646. 2019-04-23 Version: 1.36.21
  2647. 1, Support mounting multiple volumes using different protocol
  2648. 2, Support scaling out cross AZ
  2649. 2019-04-22 Version: 1.36.20
  2650. 1, This is an example of release-log.
  2651. 2, Please strictly follow this format to edit in English.
  2652. 3, Format:Number + , + Space + Description
  2653. 2019-04-18 Version: 1.36.19
  2654. 1, Add CreateAccount
  2655. 2019-04-18 Version: 1.36.18
  2656. 1, CreateCacheAnalysisTask prop modify
  2657. 2019-04-18 Version: 1.36.17
  2658. 1, add ReservedInstance API.
  2659. 2019-04-17 Version: 1.36.16
  2660. 1, Add DescribeRestoreTaskList DBS interface.
  2661. 2, Add DescribeNodeCidrList DBS interface.
  2662. 2019-04-16 Version: 1.36.15
  2663. 1, Fixed DescribeAccounts response type error.
  2664. 2019-04-16 Version: 1.36.14
  2665. 1, Add api about pushing security check commands
  2666. 2019-04-16 Version: 1.36.13
  2667. 1, Fixed describeAccounts response type error
  2668. 2019-04-16 Version: 1.36.12
  2669. 1, Mark CreateDiagnosticReport as public api.
  2670. 2, ModifySecurityIps support modifyMode parameter.
  2671. 2019-04-16 Version: 1.36.11
  2672. 1, Add group api.
  2673. 2019-04-16 Version: 1.36.10
  2674. 1, Add group api.
  2675. 2019-04-16 Version: 1.36.9
  2676. 1, Add group api.
  2677. 2019-04-16 Version: 1.36.8
  2678. 1, Add group api.
  2679. 2019-04-15 Version: 1.36.7
  2680. 1, Add CreateRestoreTask DBS interface.
  2681. 2, Add StartRestoreTask DBS interface.
  2682. 2019-04-15 Version: 1.36.6
  2683. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  2684. 2019-04-15 Version: 1.36.5
  2685. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  2686. 2019-04-15 Version: 1.36.4
  2687. 1, Add Group Api.
  2688. 2019-04-11 Version: 1.36.3
  2689. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  2690. 2019-04-11 Version: 1.36.2
  2691. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  2692. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  2693. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  2694. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  2695. 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.
  2696. 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.
  2697. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  2698. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  2699. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  2700. 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.
  2701. 2019-04-10 Version: 1.36.1
  2702. 1, Modify DescribeBackupGatewayList DBS interface.
  2703. 2019-04-10 Version: 1.36.0
  2704. 1, New APIs for visual service (VNC).
  2705. 2, New APIs for software management.
  2706. 3, New APIs for CPFS filesystem.
  2707. 2019-04-09 Version: 1.35.9
  2708. 1, support service account management networkInterface function.
  2709. 2019-04-09 Version: 1.35.8
  2710. 1, Add Apis for offline VerifySDK.
  2711. 2019-04-08 Version: 1.35.7
  2712. 1, Modify DescribeBackupPlanList DBS interface.
  2713. 2, Modify DescribeFullBackupList DBS interface.
  2714. 3, Modify DescribeIncrementBackupList DBS interface.
  2715. 4, Modify DescribeBackupGatewayList DBS interface.
  2716. 2019-04-08 Version: 1.35.6
  2717. 1, Add StopBackupPlan DBS interface.
  2718. 2, Add DescribeBackupPlanList DBS interface.
  2719. 3, Add DescribeFullBackupList DBS interface.
  2720. 4, Add DescribeIncrementBackupList DBS interface.
  2721. 5, Add DescribeBackupGatewayList DBS interface.
  2722. 2019-04-04 Version: 1.35.5
  2723. 1, ScalingConf systemDisk add DiskName and Description parameters.
  2724. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  2725. 2019-04-03 Version: 1.35.4
  2726. 1, Add interfaces related to vulnerability whitelist
  2727. 2, Add interfaces related to vulnerability auto-del configuration
  2728. 3, Add interfaces related to vulnerability fix advise
  2729. 4, Add interfaces searching and operating vulnerability
  2730. 2019-03-29 Version: 1.35.3
  2731. 1, Add DLQ message openAPI.
  2732. 2, Add Query the subscription relational openAPI.
  2733. 3, Remove white list restrictions.
  2734. 2019-03-28 Version: 1.35.2
  2735. 1, release bssopenapi
  2736. 2019-03-28 Version: 1.35.1
  2737. 1, Add multiple language support in DescribeZones
  2738. 2, Add gray parameter in CreateDisk
  2739. 2019-03-28 Version: 1.35.0
  2740. 1, Add logo detect.
  2741. 2019-03-27 Version: 1.34.66
  2742. 1, Add Project interface.
  2743. 2, Add Tag interface.
  2744. 3, Add TrainData interface.
  2745. 4, Add Train interface.
  2746. 5, Add Iteration interface.
  2747. 6, Add Predict interface.
  2748. 7, Add PredictData interface.
  2749. 2019-03-27 Version: 1.34.65
  2750. 1, Add Project interface.
  2751. 2, Add Tag interface.
  2752. 3, Add TrainData interface.
  2753. 4, Add Train interface.
  2754. 5, Add Iteration interface.
  2755. 6, Add Predict interface.
  2756. 7, Add PredictData interface.
  2757. 2019-03-27 Version: 1.34.64
  2758. 1, Add DLQ message openAPI.
  2759. 2, Add Query the subscription relational openAPI.
  2760. 3, Remove white list restrictions.
  2761. 2019-03-27 Version: 1.34.63
  2762. 1, Add DLQ message openAPI.
  2763. 2, Add Query the subscription relational openAPI.
  2764. 3, Remove white list restrictions.
  2765. 2019-03-27 Version: 1.34.62
  2766. 1, release dysmsapi
  2767. 2019-03-25 Version: 1.34.61
  2768. 1, cms fix duplicated struct definition
  2769. 2019-03-25 Version: 1.34.60
  2770. 1, mts fix duplication struct definition
  2771. 2019-03-25 Version: 1.34.59
  2772. 1, jarvis-pulic fix product code with dash
  2773. 2019-03-25 Version: 1.34.58
  2774. 1, sas-api, fix product code with dash
  2775. 2019-03-21 Version: 1.34.57
  2776. 1, Update Dependency
  2777. 2019-03-21 Version: 1.34.56
  2778. 1, Update Dependency
  2779. 2019-03-20 Version: 1.34.55
  2780. 1, Update the Dependency
  2781. 2019-03-20 Version: 1.34.54
  2782. 1, Update the Dependency
  2783. 2019-03-20 Version: 1.34.53
  2784. 1, cloudwf: update bool type parameter
  2785. 2019-03-20 Version: 1.34.52
  2786. 1, Update Dependency
  2787. 2019-03-19 Version: 1.34.51
  2788. 1, Support ' fc ' Source DomainName
  2789. 2019-03-19 Version: 1.34.50
  2790. 1, move fields: tag, associate_person, cid
  2791. 2019-03-19 Version: 1.34.49
  2792. 1, format fields: tags, associatePerson
  2793. 2019-03-19 Version: 1.34.48
  2794. 1, add query user oms data api
  2795. 2019-03-19 Version: 1.34.47
  2796. 1, Update Dependency
  2797. 2019-03-19 Version: 1.34.46
  2798. 1, Update Dependency
  2799. 2019-03-19 Version: 1.34.45
  2800. 1, This is an example of release-log.
  2801. 2, Please strictly follow this format to edit in English.
  2802. 3, Format:Number + , + Space + Description
  2803. 2019-03-18 Version: 1.34.44
  2804. 1, rds: deliver string true/false to server for bool type parameter, not previous 1/0
  2805. 2019-03-18 Version: 1.34.43
  2806. 1, deliver string true/false to server for bool type parameter, not previous 1/0
  2807. 2019-03-18 Version: 1.34.42
  2808. 1, Signature Document SDK.
  2809. 2, First version publish.
  2810. 3, Beta Version SDK
  2811. 2019-03-18 Version: 1.34.41
  2812. 1, Update Dependency
  2813. 2019-03-18 Version: 1.34.40
  2814. 1, move AssociatePerson\Tag field
  2815. 2, Optimize RealName field
  2816. 2019-03-18 Version: 1.34.39
  2817. 1, Update Dependency
  2818. 2019-03-18 Version: 1.34.38
  2819. 1, Update Dependency
  2820. 2019-03-18 Version: 1.34.37
  2821. 1, Update Dependency
  2822. 2019-03-18 Version: 1.34.36
  2823. 1, Update Dependency
  2824. 2019-03-15 Version: 1.34.35
  2825. 1, Update Dependency
  2826. 2019-03-15 Version: 1.34.34
  2827. 1, Update Dependency
  2828. 2019-03-15 Version: 1.34.33
  2829. 1, Update Dependency
  2830. 2019-03-15 Version: 1.34.32
  2831. 1, Update Dependency
  2832. 2019-03-15 Version: 1.34.31
  2833. 1, Update Dependency
  2834. 2019-03-15 Version: 1.34.30
  2835. 1, Update Dependency
  2836. 2019-03-15 Version: 1.34.29
  2837. 1, Update Dependency
  2838. 2019-03-15 Version: 1.34.28
  2839. 1, Update Dependency
  2840. 2019-03-15 Version: 1.34.27
  2841. 1, Update Dependency
  2842. 2019-03-15 Version: 1.34.26
  2843. 1, Update Dependency
  2844. 2019-03-15 Version: 1.34.25
  2845. 1, Update Dependency
  2846. 2019-03-14 Version: 1.34.24
  2847. 1, Update Dependency
  2848. 2019-03-14 Version: 1.34.23
  2849. 1, Update Dependency
  2850. 2019-03-14 Version: 1.34.22
  2851. 1, Update Dependency
  2852. 2019-03-14 Version: 1.34.21
  2853. 1, Update Dependency
  2854. 2019-03-14 Version: 1.34.20
  2855. 1, Update Dependency
  2856. 2019-03-14 Version: 1.34.19
  2857. 1, Update Dependency
  2858. 2019-03-14 Version: 1.34.18
  2859. 1, Update Dependency
  2860. 2019-03-14 Version: 1.34.17
  2861. 1, Update Dependency
  2862. 2019-03-14 Version: 1.34.16
  2863. 1, Update Dependency
  2864. 2019-03-13 Version: 1.34.15
  2865. 1, Update Dependency
  2866. 2019-03-13 Version: 1.34.14
  2867. 1, Update Dependency
  2868. 2019-03-13 Version: 1.34.13
  2869. 1, Update Dependency
  2870. 2019-03-13 Version: 1.34.12
  2871. 1, Distinguish between system and service parameters
  2872. 2019-03-13 Version: 1.34.11
  2873. 1, add DescribeDemands interface
  2874. 2019-03-13 Version: 1.34.10
  2875. 1, Distinguish between system and service parameters
  2876. 2019-03-12 Version: 1.34.9
  2877. 1, add agency infomation
  2878. 2, update sdk core resources
  2879. 2018-12-20 Version: 1.34.8
  2880. 1, Sync CDN API.
  2881. 2018-12-11 Version: 1.34.7
  2882. 1, Sync CDN API.
  2883. 2018-12-06 Version: 1.34.6
  2884. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  2885. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  2886. 2018-12-03 Version: 1.34.5
  2887. 1, Sync CDN API.
  2888. 2018-12-03 Version: 1.34.4
  2889. 1, Sync CDN API.
  2890. 2018-12-03 Version: 1.34.3
  2891. 1, Update 2014-11-11 API.
  2892. 2018-12-03 Version: 1.34.2
  2893. 1, Add a parameter to RemoveInstances.
  2894. 2018-11-30 Version: 1.34.1
  2895. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  2896. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  2897. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  2898. 2018-11-28 Version: 1.34.0
  2899. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  2900. 2018-11-28 Version: 1.33.6
  2901. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  2902. 2018-11-27 Version: 1.33.5
  2903. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  2904. 2018-11-22 Version: 1.33.4
  2905. 1, Increase the scene field
  2906. 2018-11-22 Version: 1.33.3
  2907. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  2908. 2018-11-21 Version: 1.33.2
  2909. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  2910. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  2911. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  2912. 2018-11-16 Version: 1.33.1
  2913. 1, update version
  2914. 2018-11-15 Version: 1.33.0
  2915. 1, ECS support ipv6Address
  2916. 2018-11-14 Version: 1.32.0
  2917. 1, Better support for hybrid cluster.
  2918. 2018-11-13 Version: 1.31.0
  2919. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  2920. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  2921. 3, Add DynamicCheck properties for results of CheckDomain interface.
  2922. 2018-11-10 Version: 1.30.5
  2923. 1, Update SetWaitingRoomConfig.
  2924. 2018-11-08 Version: 1.30.4
  2925. 1, Fix the http response receive bug
  2926. 2018-11-08 Version: 1.30.3
  2927. 1, Update Version.
  2928. 2018-11-07 Version: 1.30.2
  2929. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  2930. 2, Add API GetTaskStatus,StartTask,StopTask.
  2931. 3, Add API GetTaskParam,UpdateTaskParam.
  2932. 2018-11-02 Version: 1.30.1
  2933. 1, deviceName and productKey can be used instead of iotId.
  2934. 2, New productKey fields for queryauthentication output parameter.
  2935. 3, New deviceName fields for queryauthentication output parameter.
  2936. 2018-11-02 Version: 1.30.0
  2937. 1, first version
  2938. 2018-10-31 Version: 1.29.5
  2939. 1, Update SetWaitingRoomConfig.
  2940. 2018-10-31 Version: 1.29.4
  2941. 1, Add SetWaitingRoomConfig.
  2942. 2018-10-31 Version: 1.29.3
  2943. 1, Add SetWaitingRoomConfig.
  2944. 2018-10-30 Version: 1.29.2
  2945. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  2946. 2018-10-26 Version: 1.29.1
  2947. 1, Return AuditConclusions in SubmitMaterials API.
  2948. 2018-10-25 Version: 1.29.0
  2949. 1, Add apis for trademark domains.
  2950. 2, Add QueryDomainAdminDivision api.
  2951. 2018-10-16 Version: 1.28.3
  2952. 1, This version add MetricQuery interface to support retcode and apm metric query.
  2953. 2018-10-16 Version: 1.28.2
  2954. 1, This version add MetricQuery interface to support retcode and apm metric query.
  2955. 2018-10-16 Version: 1.28.1
  2956. 1, This version add MetricQuery interface to support retcode and apm metric query.
  2957. 2018-10-16 Version: 1.28.0
  2958. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  2959. 2, Add instance topology api DescribeInstanceTopology
  2960. 3, Add mount point in DescribeDisksFullStatus
  2961. 2018-10-16 Version: 1.27.11
  2962. 1, remove set group tags API.
  2963. 2018-10-13 Version: 1.27.10
  2964. 1, Add device group related APIs.
  2965. 2018-10-13 Version: 1.27.9
  2966. 1, Add device group related APIs.
  2967. 2018-10-13 Version: 1.27.8
  2968. 1, Add device group related APIs.
  2969. 2018-10-11 Version: 1.27.7
  2970. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  2971. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  2972. 3, Add a new api called UpdateImageInfos to update image information.
  2973. 2018-10-09 Version: 1.27.6
  2974. 1, v1.0.0-->v1.0.1
  2975. 2, provider new region:beijing/shenzhen/zhangjiakou
  2976. 3, provider service for VPC user;
  2977. 2018-09-30 Version: 1.27.5
  2978. 1, This is an example of release-log.
  2979. 2, Please strictly follow this format to edit in English.
  2980. 3, Format:Number + , + Space + Description
  2981. 2018-09-29 Version: 1.27.4
  2982. 1, Sync cdn api.
  2983. 2018-09-29 Version: 1.27.3
  2984. 1, This is an example of release-log.
  2985. 2, Please strictly follow this format to edit in English.
  2986. 3, Format:Number + , + Space + Description
  2987. 2018-09-29 Version: 1.27.2
  2988. 1, This is an example of release-log.
  2989. 2, Please strictly follow this format to edit in English.
  2990. 3, Format:Number + , + Space + Description
  2991. 2018-09-28 Version: 1.27.1
  2992. 1, Add one api, QueryAppDeviceList.
  2993. 2018-09-27 Version: 1.27.0
  2994. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  2995. 2018-09-27 Version: 1.26.4
  2996. 1, modify getFaces Api
  2997. 2018-09-27 Version: 1.26.3
  2998. 1, modify getFaces Api
  2999. 2018-09-25 Version: 1.26.2
  3000. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  3001. 2018-09-17 Version: 1.26.1
  3002. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  3003. 2018-09-14 Version: 1.26.0
  3004. 1, Add DedicatedHost Feature
  3005. 2018-09-13 Version: 1.25.3
  3006. 1, Add CreateChannelToken.
  3007. 2018-09-06 Version: 1.25.2
  3008. 1, AutoScaling support launchTemplate.
  3009. 2018-09-06 Version: 1.25.1
  3010. 1, Add API deleteProduct.
  3011. 2, Move all API to version 20180120.
  3012. 2018-09-05 Version: 1.25.0
  3013. 1, Add new APIs with control policy for querying price
  3014. 2018-09-03 Version: 1.24.2
  3015. 1, voice identify interface
  3016. 2, client upload credentials interface
  3017. 2018-09-03 Version: 1.24.1
  3018. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  3019. 2018-08-28 Version: 1.24.0
  3020. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  3021. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  3022. 2018-08-28 Version: 1.23.4
  3023. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  3024. 2018-08-27 Version: 1.23.3
  3025. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  3026. 2018-08-27 Version: 1.23.2
  3027. 1, Add api GetGatewayBySubDevice.
  3028. 2, Modified the time related response parameters.
  3029. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  3030. 2018-08-23 Version: 1.23.1
  3031. 1, RunInstance add privateIpAddress.
  3032. 2018-08-22 Version: 1.23.0
  3033. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  3034. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  3035. 2018-08-21 Version: 1.22.9
  3036. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  3037. 2018-08-21 Version: 1.22.8
  3038. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  3039. 2018-08-17 Version: 1.22.7
  3040. 1, Add a new api called DeleteImage to clear the image resource.
  3041. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  3042. 3, Add the field called OutputType to GetMezzanineInfo api response.
  3043. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  3044. 2018-08-17 Version: 1.22.6
  3045. 1, New apkpubkey fields for queryauthentication output parameter.
  3046. 2, New packagename fields for queryauthentication output parameter.
  3047. 3, New clientId fields for queryauthentication output parameter.
  3048. 2018-08-16 Version: 1.22.5
  3049. 1, ModifyScalingConfiguration add imageName.
  3050. 2, CreateScalingConfiguration add imageName.
  3051. 2018-08-15 Version: 1.22.4
  3052. 1, Fix bug in GetMaterials API.
  3053. 2, GetVerifyToken added a new param VerifyConfigs
  3054. 2018-08-15 Version: 1.22.3
  3055. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  3056. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  3057. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  3058. 2018-08-15 Version: 1.22.2
  3059. 1, Update ecs tag to 20 maximum
  3060. 2018-08-14 Version: 1.22.1
  3061. 1, Change parameter name of Dialogue
  3062. 2018-08-13 Version: 1.22.0
  3063. 1, New userinfo fields for registerface input parameter.
  3064. 2, New userinfo fields for updateface input parameter.
  3065. 3, New userinfo fields for queryface output parameter.
  3066. 2018-08-13 Version: 1.21.6
  3067. 1, Add cross domain support.
  3068. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  3069. 2018-08-08 Version: 1.21.5
  3070. 1, The official release 4.0.0
  3071. 2018-08-08 Version: 1.21.4
  3072. 1, Update FC apis.
  3073. 2018-08-08 Version: 1.21.3
  3074. 1, First release.
  3075. 2018-08-07 Version: 1.21.2
  3076. 1, Add api GetGatewayBySubDevice.
  3077. 2, Modified the time related response parameters.
  3078. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  3079. 2018-08-05 Version: 1.21.1
  3080. 1, Add Interface SubmitSubtitleJob
  3081. 2, Support convert ttml、stl subtitle to vtt
  3082. 2018-08-03 Version: 1.21.0
  3083. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  3084. 2018-08-01 Version: 1.20.5
  3085. 1, Add new API GetConversationDetailByContactId
  3086. 2018-08-01 Version: 1.20.4
  3087. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  3088. 2018-07-31 Version: 1.20.3
  3089. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  3090. 2018-07-26 Version: 1.20.2
  3091. 1, Add BatchGetJobMetricInfo API.
  3092. 2, Add BatchGetPluginConfigInfo API.
  3093. 3, Add GetJobTopology API.
  3094. 2018-07-25 Version: 1.20.1
  3095. 1, Add RemoveTerminals API.
  3096. 2018-07-13 Version: 1.20.0
  3097. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  3098. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  3099. 3, New APIs for Container applications: AddContainerApp, etc.
  3100. 2018-07-11 Version: 1.19.3
  3101. 1, new function: Attach and Detach Rds instance of scalingGroup.
  3102. 2018-07-11 Version: 1.19.2
  3103. 1, Add DetectFaceAttributesService.
  3104. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  3105. 2018-07-05 Version: 1.19.1
  3106. 1, new function, attach/detach load balancer of scalingGroup
  3107. 2018-07-05 Version: 1.19.0
  3108. 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.
  3109. 2018-06-28 Version: 1.18.1
  3110. 1, ScalingConfiguration support hostName and passwordInherit
  3111. 2, ScalingConfiguration support modify
  3112. 2018-06-27 Version: 1.18.0
  3113. 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.
  3114. 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
  3115. 2018-06-27 Version: 1.17.10
  3116. 1, DescribeNetworkInterfaces support query with vpcId
  3117. 2018-06-22 Version: 1.17.9
  3118. 1, rtc openapi
  3119. 2018-06-21 Version: 1.17.8
  3120. 1, This is add InstanceList.
  3121. 2018-06-20 Version: 1.17.7
  3122. 1, Add InstanceList in product security information query.
  3123. 2018-06-20 Version: 1.17.6
  3124. 1, Add InstanceList in product security information query.
  3125. 2018-06-14 Version: 1.17.5
  3126. 1, Add passwordInherit.
  3127. 2018-06-13 Version: 1.17.4
  3128. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  3129. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  3130. 3, Add return value fillMode DescribeCasterLayouts.
  3131. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  3132. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  3133. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  3134. 2018-06-13 Version: 1.17.3
  3135. 1, Add lifecycleHook.
  3136. 2018-06-08 Version: 1.17.2
  3137. 1, Add scdn interface,support scdn.
  3138. 2018-06-06 Version: 1.17.1
  3139. 1, Change the type of srcUid to int.
  3140. 2018-06-06 Version: 1.17.0
  3141. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  3142. 2018-05-29 Version: 1.16.0
  3143. 1, Add new interface DescribePhoneInfo to SDK.
  3144. 2018-05-28 Version: 1.15.0
  3145. 1, Add face 1-N,1-1 scan interface.
  3146. 2018-05-28 Version: 1.14.0
  3147. 1, ValidateSecurityGroup API
  3148. 2018-05-28 Version: 1.13.0
  3149. 1, This is an example of release-log.
  3150. 2, Please strictly follow this format to edit in English.
  3151. 3, Format:Number + , + Space + Description
  3152. 2018-05-23 Version: 1.12.0
  3153. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  3154. 2018-05-23 Version: 1.11.0
  3155. 1, Update API version to 2018-04-12.
  3156. 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.
  3157. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  3158. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  3159. 2018-05-23 Version: 1.10.3
  3160. 1, This is an example of release-log.
  3161. 2, Please strictly follow this format to edit in English.
  3162. 3, Format:Number + , + Space + Description
  3163. 2018-05-22 Version: 1.10.2
  3164. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  3165. 2, modify DescribeDBInstanceAttribute.
  3166. 2018-05-17 Version: 1.10.1
  3167. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  3168. 2018-05-17 Version: 1.10.0
  3169. 1, the first version of private dns SDK
  3170. 2018-05-11 Version: 1.9.1
  3171. 1, Add Function Compute interface,support Function Compute.
  3172. 2018-05-09 Version: 1.9.0
  3173. 1, Add apis for domain broker.
  3174. 2018-05-08 Version: 1.8.2
  3175. 1, Add instance params.
  3176. 2018-05-08 Version: 1.8.1
  3177. 1, Remove DescribeAccountAttributes.
  3178. 2018-05-02 Version: 1.8.0
  3179. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  3180. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  3181. 2018-04-28 Version: 1.7.3
  3182. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  3183. 2, Add dcdn config interface,Support set、delete、query domain config.
  3184. 2018-04-28 Version: 1.7.2
  3185. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  3186. 2, Add dcdn config interface,Support set、delete、query domain config.
  3187. 2018-04-27 Version: 1.7.1
  3188. 1, release hsm open api
  3189. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  3190. 2018-04-26 Version: 1.7.0
  3191. 1, Add apis for domain group.
  3192. 3, Add fields for QueryDomainList.
  3193. 2018-04-24 Version: 1.6.5
  3194. 1, add interface FetchPhotos
  3195. 2, add xflush log param unixTimestamp
  3196. 2018-04-23 Version: 1.6.4
  3197. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  3198. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  3199. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  3200. 2018-04-23 Version: 1.6.3
  3201. 1, Add notificationConfiguration.
  3202. 2, Add standby status.
  3203. 2018-04-17 Version: 1.6.2
  3204. 1, EditPhotos add input param TakenAt
  3205. 2, add FetchMomentPhotos
  3206. 3, ListAlbums add return param Remark
  3207. 2018-04-11 Version: 1.6.1
  3208. 1, GetLibrary/FetchLibraries add return ctime
  3209. 2, Editphotos add input param takenAt
  3210. 2018-04-10 Version: 1.6.0
  3211. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  3212. 2018-04-10 Version: 1.5.1
  3213. 1, publish Project API.
  3214. 2, publish Service API.
  3215. 3, publish Service order API.
  3216. 4, publish Credential API.
  3217. 5, publish CAS API.
  3218. 2018-04-08 Version: 1.5.0
  3219. 1, Add voice asynchronous scan interface.
  3220. 2018-04-03 Version: 1.4.0
  3221. 1, Add APIs for domain transfer in and transfer out.
  3222. 2, Add APIs for poll and acknowledge domain task.
  3223. 3, Add API for query domain group list.
  3224. 2018-03-30 Version: 1.3.8
  3225. 1, API QueryCustomerSaleInfo arguments update.
  3226. 2018-03-29 Version: 1.3.7
  3227. 1, edit FetchLibraries return param format
  3228. 2018-03-27 Version: 1.3.6
  3229. 1, Rename QueryCustomerSaleInfo to RegionName.
  3230. 2018-03-27 Version: 1.3.5
  3231. 1, publish Project API.
  3232. 2, publish Service API.
  3233. 3, publish Service order API.
  3234. 4, publish Credential API.
  3235. 5, publish CAS API.
  3236. 2018-03-27 Version: 1.3.4
  3237. 1, add interface FetchLibraries
  3238. 2018-03-23 Version: 1.3.3
  3239. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  3240. 2018-03-23 Version: 1.3.2
  3241. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  3242. 2018-03-23 Version: 1.3.1
  3243. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  3244. 2018-03-23 Version: 1.3.0
  3245. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  3246. 2, Remove 'QueryPushDetail' Api.
  3247. 2018-03-20 Version: 1.2.16
  3248. 1, add FetchAlbumTagPhotos
  3249. 2, CreatePhoto add optional param TakenAt
  3250. 2018-03-16 Version: 1.2.15
  3251. 1, Synchronize to the latest api list
  3252. 2018-03-15 Version: 1.2.14
  3253. 1, Synchronize to the latest api list
  3254. 2018-03-15 Version: 1.2.13
  3255. 1, Synchronize to the latest api list
  3256. 2018-03-15 Version: 1.2.12
  3257. 1, Synchronize to the latest api list
  3258. 2018-03-15 Version: 1.2.11
  3259. 1, Synchronize to the latest api list
  3260. 2018-03-15 Version: 1.2.10
  3261. 1, Add QueryCustomerSaleInfo API.
  3262. 2018-03-14 Version: 1.2.9
  3263. 1, Support predefine endpoints parse
  3264. 2018-03-13 Version: 1.2.8
  3265. 1, API GetQuotaHistoryInfo fix field error.
  3266. 2018-03-07 Version: 1.2.7
  3267. 1, add GetAlbumsByNames
  3268. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  3269. 3, add return IdStr for string
  3270. 2018-03-06 Version: 1.2.6
  3271. 1, add GetAlbumsByNames
  3272. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  3273. 3, add return IdStr for string
  3274. 2018-03-06 Version: 1.2.5
  3275. 1, add GetAlbumsByNames
  3276. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  3277. 3, add return IdStr for string
  3278. 2018-02-28 Version: 1.2.4
  3279. 1, Add query resource inventory API.
  3280. 2, Add query topology API.
  3281. 2018-02-27 Version: 1.2.3
  3282. 1, Add query topology API.
  3283. 2018-02-27 Version: 1.2.2
  3284. 1, Add new API: ListRecordingsByContactId.
  3285. 2018-02-27 Version: 1.2.1
  3286. 1, Add Action API.
  3287. 2018-02-27 Version: 1.2.0
  3288. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  3289. 2018-02-09 Version: 1.1.0
  3290. 1, Aliyun E-HPC service SDK, initial version.
  3291. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  3292. 2018-02-07 Version: 1.0.12
  3293. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  3294. 2018-02-06 Version: 1.0.11
  3295. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  3296. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  3297. 2018-02-02 Version: 1.0.10
  3298. 1, this version is new of captcha management and nvc analyze
  3299. 2018-01-26 Version: 1.0.9
  3300. 1, Update InstanceProfileCredentialsProvider
  3301. 2, Update common api
  3302. 2018-01-24 Version: 1.0.8
  3303. 1, Fixed a problem that the ActiveAlert interface name is not standard
  3304. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  3305. 2018-01-24 Version: 1.0.7
  3306. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  3307. 2018-01-23 Version: 1.0.6
  3308. 1, Tesla Dam API release.
  3309. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  3310. 2018-01-12 Version: 1.0.5
  3311. 1, First commit ess module
  3312. 2018-01-11 Version: 1.0.4
  3313. 1, replace photo tag 2000 upgrade to 5000
  3314. 2, add TrashQuota
  3315. 2018-01-10 Version: 1.0.3
  3316. 1, First release vpc for c++
  3317. 2018-01-10 Version: 1.0.2
  3318. 1, First release slb for C++
  3319. 2018-01-10 Version: 1.0.1
  3320. 1, First release ecs for C++
  3321. 2017-12-27 Version: 1.0.0
  3322. 1, Fix build failed on linux