CHANGELOG 125 KB

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