CHANGELOG 119 KB

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