CHANGELOG 120 KB

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