CHANGELOG 118 KB

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