CHANGELOG 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177
  1. 2020-09-19 Version: patch
  2. - Support query user tenant list and current active tenant.
  3. - Support query table meta information via table GUID.
  4. 2020-09-18 Version: patch
  5. - Update DetectLungNodule, DetectSpineMRI, DetectKneeXRay, DetectCovid19Cad.
  6. 2020-09-17 Version: patch
  7. - Add Api DetectIPCPedestrianOptimized.
  8. 2020-09-17 Version: patch
  9. - Add Api DetectIPCPedestrianOptimized.
  10. 2020-09-17 Version: patch
  11. - GetTitleIntelligence add interface.
  12. 2020-09-17 Version: patch
  13. - Fix endpoint.
  14. 2020-09-16 Version: patch
  15. - Add Content.
  16. 2020-09-15 Version: patch
  17. - Add describe devices to return device status.
  18. 2020-09-14 Version: patch
  19. - Support corp name search.
  20. 2020-09-14 Version: patch
  21. - Support corp name search.
  22. 2020-09-11 Version: patch
  23. - Support execute database script via open api.
  24. 2020-09-10 Version: patch
  25. - Add DisableBackupLog.
  26. - Add EnableBackupLog.
  27. - Add ReleaseBackupPlan.
  28. - Add ModifyStorageStrategy.
  29. - Modify ModifyBackupStrategy.
  30. - Modify ModifyBackupSetDownloadRules.
  31. 2020-09-10 Version: patch
  32. - Update HasRenewChangeOrder type to Boolean in DescribeInstances.
  33. 2020-09-09 Version: patch
  34. - Add support cn-beijing service region.
  35. - Add ai video cover interface,include submit and query.
  36. - Add dynamic image query interface.
  37. - Update SubmitMediaAuditJob support MediaAuditConfiguration to set ResourceType.
  38. 2020-09-09 Version: patch
  39. - Release ChangeSky.
  40. 2020-09-09 Version: patch
  41. - Release DetectChefCap.
  42. 2020-09-09 Version: patch
  43. - Release DetectKneeKeypointXRay, DetectHipKeypointXRay, CalcCACS, RunCTRegistration, ClassifyFNF.
  44. 2020-09-08 Version: patch
  45. - Supported backend interface for ICBU.
  46. 2020-09-08 Version: patch
  47. - Add DescribeActiveOperationTask.
  48. - Add DescribeActiveOperationTaskCount.
  49. - Add DescribeActiveOperationTaskRegion.
  50. - Add DescribeActiveOperationTaskType.
  51. - Add ModifyActiveOperationTask.
  52. 2020-09-08 Version: patch
  53. - Modify CreateAsyncPredict add new parameters.
  54. 2020-09-07 Version: patch
  55. - Support parameter APIs.
  56. 2020-09-07 Version: patch
  57. - Add describes devices API.
  58. 2020-09-07 Version: patch
  59. - Add describes devices API.
  60. 2020-09-07 Version: patch
  61. - Add describes devices API.
  62. 2020-09-07 Version: patch
  63. - Add describes devices API.
  64. 2020-09-07 Version: patch
  65. - Add describes devices API.
  66. 2020-09-05 Version: patch
  67. - Add describes devices API.
  68. 2020-09-04 Version: patch
  69. - Sync cdn APIs.
  70. 2020-09-04 Version: patch
  71. - Update Scdn API.
  72. 2020-09-04 Version: patch
  73. - Update domain API.
  74. 2020-09-04 Version: patch
  75. - Add GetImageQuality API.
  76. - Add more info as parameters to Images related APIs.
  77. 2020-09-03 Version: 1.36.632
  78. - DescribeCameraStatistics add parameters.
  79. 2020-09-02 Version: 1.36.631
  80. - Support sg for ml region.
  81. 2020-09-02 Version: 1.36.630
  82. - ChatApp second version.
  83. - Support new message fomat.
  84. 2020-09-02 Version: 1.36.629
  85. - Supported AndroidNotificationHuaweiChannel for Push and MassPush.
  86. 2020-09-02 Version: 1.36.628
  87. - Supported AndroidNotificationHuaweiChannel for Push and MassPush.
  88. 2020-09-01 Version: 1.36.627
  89. - Add Smart Verify API.
  90. 2020-09-01 Version: 1.36.626
  91. - Support region route.
  92. 2020-09-01 Version: 1.36.625
  93. - Support region route.
  94. 2020-09-01 Version: 1.36.624
  95. - Update Parameter.
  96. 2020-08-31 Version: 1.36.623
  97. - Support PersonList.
  98. 2020-08-31 Version: 1.36.622
  99. - GetPersonList Support LastShotTime.
  100. 2020-08-31 Version: 1.36.621
  101. - Support config resource recorder deliverychannel rule.
  102. 2020-08-31 Version: 1.36.620
  103. - Supported AAA for BBB.
  104. - Fixed bugs for CCC.
  105. 2020-08-31 Version: 1.36.619
  106. - Support config resource recorder deliverychannel rule.
  107. 2020-08-31 Version: 1.36.618
  108. - Supported AAA for BBB.
  109. - Fixed bugs for CCC.
  110. 2020-08-31 Version: 1.36.617
  111. - Supported AAA for BBB.
  112. - Fixed bugs for CCC.
  113. 2020-08-31 Version: 1.36.616
  114. - Add list person visit count API.
  115. 2020-08-28 Version: 1.36.615
  116. - Add name.
  117. 2020-08-28 Version: 1.36.614
  118. - Support multiple security group for one ehpc cluster.
  119. - Update GWS apis.
  120. 2020-08-28 Version: 1.36.613
  121. - Supported Add GetAlgorithmHistoryResult.
  122. 2020-08-27 Version: 1.36.612
  123. - Update parameter.
  124. 2020-08-25 Version: 1.36.611
  125. - Release ExtractPedestrianFeatureAttribute and BlurFace.
  126. 2020-08-25 Version: 1.36.610
  127. - Add list person visit count API.
  128. 2020-08-25 Version: 1.36.609
  129. - Video Content analytics template introduced to this SDK.
  130. 2020-08-25 Version: 1.36.608
  131. - Change DeviceSerialNumber to DeviceSn in API RegisterDevice.
  132. 2020-08-24 Version: 1.36.607
  133. - Change DeviceSerialNumber to DeviceSn in API RegisterDevice.
  134. 2020-08-24 Version: 1.36.606
  135. - Add project api.
  136. 2020-08-24 Version: 1.36.605
  137. - Edit QueryMetricByPage api.
  138. 2020-08-21 Version: 1.36.604
  139. - Add QueryMetricByPage api.
  140. - Add GetAppApiByPage api.
  141. 2020-08-20 Version: 1.36.603
  142. - PullActionData add parameters.
  143. - DescribeCursor add parameter.
  144. 2020-08-20 Version: 1.36.602
  145. - Add list person visit count API.
  146. 2020-08-20 Version: 1.36.601
  147. - Added Global Distribute Cache OpenAPIs.
  148. - Added direct connection OpenAPIs.
  149. 2020-08-19 Version: 1.36.600
  150. - Add DescribeLiveDomainCertificateInfo.
  151. 2020-08-19 Version: 1.36.599
  152. - Generated 2020-08-01 for `SmartHosting`.
  153. 2020-08-18 Version: 1.36.598
  154. - Support for describe hbaseue multi-zone model.
  155. 2020-08-18 Version: 1.36.597
  156. - Support session query operations.
  157. 2020-08-18 Version: 1.36.596
  158. - Public beta version.
  159. - Add Api Overseas.
  160. 2020-08-17 Version: 1.36.595
  161. - Add list event algorithm details.
  162. 2020-08-17 Version: 1.36.594
  163. - Add list event algorithm details.
  164. 2020-08-17 Version: 1.36.593
  165. - Add GetTrace api.
  166. - Edit Aler api.
  167. 2020-08-17 Version: 1.36.592
  168. - Add pipeline status api.
  169. 2020-08-17 Version: 1.36.591
  170. - Add list event algorithm details.
  171. 2020-08-17 Version: 1.36.590
  172. - Add list event algorithm details.
  173. 2020-08-17 Version: 1.36.589
  174. - Fix create project task.
  175. 2020-08-17 Version: 1.36.588
  176. - Public beta version.
  177. - Add Api Overseas.
  178. 2020-08-17 Version: 1.36.587
  179. - Add new tags for corp group.
  180. 2020-08-17 Version: 1.36.586
  181. - Add new tags for corp group.
  182. 2020-08-16 Version: 1.36.585
  183. - Add new tags for corp group.
  184. 2020-08-14 Version: 1.36.584
  185. - Add sdk.
  186. 2020-08-14 Version: 1.36.583
  187. - Supported Api DetectIPCPedestrian.
  188. 2020-08-14 Version: 1.36.582
  189. - Supported CheckCloudResourceAuthorized API.
  190. 2020-08-14 Version: 1.36.581
  191. - Add project Api.
  192. 2020-08-13 Version: 1.36.580
  193. - Add PipCode and CommodityCode for QueryInstanceBill, QueryBillOverview, QueryBill, QuerySettleBill, QueryAccountBill, QuerySplitItemBill.
  194. - Support BillOwnerId filter for QueryInstanceBill, QueryBillOverview, QueryBill, QuerySettleBill, QueryAccountBill, QuerySplitItemBill.
  195. 2020-08-13 Version: 1.36.579
  196. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  197. 2020-08-13 Version: 1.36.578
  198. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  199. 2020-08-13 Version: 1.36.577
  200. - Release DetectKneeXRay DetectSpineMRI TranslateMed.
  201. 2020-08-13 Version: 1.36.576
  202. - GetImageTranslate add column orc.
  203. 2020-08-13 Version: 1.36.575
  204. - DescribePrice update amount parameters type, float to string.
  205. - Add ResourceGroupId parameter to support resource group.
  206. 2020-08-13 Version: 1.36.574
  207. - Release SegmentHalfBody.
  208. 2020-08-13 Version: 1.36.573
  209. - Release SegmentHalfBody.
  210. 2020-08-12 Version: 1.36.572
  211. - Support corp group api.
  212. 2020-08-12 Version: 1.36.571
  213. - Add pipeline status api.
  214. 2020-08-12 Version: 1.36.570
  215. - Generated 2015-01-01 for `R-kvstore`.
  216. - SyncDtsStatus API add TaskId parameter.
  217. 2020-08-11 Version: 1.36.569
  218. - Generated 2020-05-18 for `dataworks-public`.
  219. 2020-08-11 Version: 1.36.568
  220. - Update DescribeRefreshTask.
  221. 2020-08-11 Version: 1.36.567
  222. - Add ResourceGroup in resource snapshot.
  223. 2020-08-10 Version: 1.36.566
  224. - Generated 2020-05-18 for `dataworks-public`.
  225. 2020-08-10 Version: 1.36.565
  226. - Add source id for list face detail.
  227. 2020-08-10 Version: 1.36.564
  228. - Add extend value for list event detail.
  229. 2020-08-09 Version: 1.36.563
  230. - Add extend value for list event detail.
  231. 2020-08-08 Version: 1.36.562
  232. - Update SearchImage.
  233. 2020-08-07 Version: 1.36.561
  234. - GetTitleDiagnose GetTitleGenerate GetImageTranslate supported.
  235. 2020-08-07 Version: 1.36.560
  236. - Generated 2020-05-18 for `dataworks-public`.
  237. 2020-08-07 Version: 1.36.559
  238. - GetTitleDiagnose GetTitleGenerate GetImageTranslate supported.
  239. 2020-08-07 Version: 1.36.558
  240. - Add FindServiceList and GetService qps.
  241. 2020-08-06 Version: 1.36.557
  242. - Add Smart Cloudauth API.
  243. 2020-08-04 Version: 1.36.556
  244. - Update RecognizeTable.
  245. 2020-08-04 Version: 1.36.555
  246. - Add Image Url parameter for invoke motor algorithm.
  247. 2020-08-04 Version: 1.36.554
  248. - Add source picture url for Monitor.
  249. 2020-08-03 Version: 1.36.553
  250. - Add source picture url for Monitor.
  251. 2020-08-03 Version: 1.36.552
  252. - Fix Some API Response Define.
  253. 2020-08-03 Version: 1.36.551
  254. - Add source picture url for Monitor.
  255. 2020-08-03 Version: 1.36.550
  256. - Add Voice Synchronous Scan API.
  257. 2020-08-03 Version: 1.36.549
  258. - Add ExtractPedestrianFeatureAttribute.
  259. 2020-07-31 Version: 1.36.548
  260. - Update DetectCelebrity.
  261. 2020-07-31 Version: 1.36.547
  262. - Edit GetStack api.
  263. 2020-07-30 Version: 1.36.546
  264. - Add Smart Cloudauth API.
  265. 2020-07-30 Version: 1.36.545
  266. - Supported ChatApp for SDK.
  267. 2020-07-30 Version: 1.36.544
  268. - Generated 2020-06-29 for `alinlp`.
  269. 2020-07-29 Version: 1.36.543
  270. - Add CreateGetDBListFromAgentTask.
  271. - Add GetDBListFromAgent.
  272. 2020-07-29 Version: 1.36.542
  273. - API GetTaskStatus return task detail.
  274. 2020-07-29 Version: 1.36.541
  275. - Generated 2020-05-18 for `dataworks-public`.
  276. 2020-07-27 Version: 1.36.540
  277. - Supported CheckCloudResourceAuthorized API.
  278. 2020-07-27 Version: 1.36.539
  279. - Add HSF apis.
  280. 2020-07-24 Version: 1.36.538
  281. - Edit ListTraceApp api with add tags.
  282. - Edit SearchTraceAppByName api with add tags.
  283. - Edut SearchTraceAppByPage api with add tags.
  284. 2020-07-24 Version: 1.36.537
  285. - Add DescribeBackupTasks.
  286. 2020-07-24 Version: 1.36.536
  287. - Support GetImageCroppingSuggestions API.
  288. - Add Remarks to face group related APIs.
  289. - Add Model parameter to blind watermark related APIs.
  290. 2020-07-24 Version: 1.36.535
  291. - First build.
  292. 2020-07-23 Version: 1.36.534
  293. - Supported CloudGame.
  294. 2020-07-23 Version: 1.36.533
  295. - Supported AAA for BBB.
  296. - Fixed bugs for CCC.
  297. 2020-07-23 Version: 1.36.532
  298. - Add AddSecretBlacklist and DeleteSecretBlacklist.
  299. - Suppoort ASR.
  300. 2020-07-23 Version: 1.36.531
  301. - Add GenerateAndExportDataKey, ExportDataKey, ReEncrypt api.
  302. 2020-07-23 Version: 1.36.530
  303. - Add GenerateAndExportDataKey, ExportDataKey, ReEncrypt api.
  304. 2020-07-22 Version: 1.36.529
  305. - Generated 2015-01-01 for `R-kvstore`.
  306. - Add SyncDtsStatus API.
  307. 2020-07-22 Version: 1.36.528
  308. - Add snapshot settings.
  309. - Add ElasticTask.
  310. 2020-07-22 Version: 1.36.527
  311. - Add SourceId for SearchFace.
  312. 2020-07-22 Version: 1.36.526
  313. - Add source id for file uploader.
  314. 2020-07-22 Version: 1.36.525
  315. - Add source id for file uploader.
  316. 2020-07-21 Version: 1.36.524
  317. - Support Tag API.
  318. 2020-07-21 Version: 1.36.523
  319. - Add algorithm type for ListPerson.
  320. 2020-07-17 Version: 1.36.522
  321. - Add DescribeRegions.
  322. - Modify DescribeFullBackupList.
  323. - Modify DescribeBackupPlanList.
  324. - Modify DescribeRestoreRangeInfo.
  325. 2020-07-17 Version: 1.36.521
  326. - Add DescribeDBClusterAuditLogCollector.
  327. - Add DescribeBackupPolicy.
  328. - Support polardb for pgsql and oracle customize endpoints.
  329. 2020-07-17 Version: 1.36.520
  330. - Public beta version.
  331. - Add Api Overseas.
  332. 2020-07-15 Version: 1.36.519
  333. - Edit ListTraceApp api.
  334. - Edit SearchTraceAppByName api.
  335. - Edut SearchTraceAppByPage api.
  336. 2020-07-15 Version: 1.36.518
  337. - Modify ConfigureBackupPlan.
  338. - Modify DescribeFullBackupList.
  339. - Modify DescribeBackupPlanList.
  340. - Modify DescribeRestoreRangeInfo.
  341. 2020-07-15 Version: 1.36.517
  342. - Support ModifyImageAttribute by LaunchPermission.
  343. - Support ImageFamily.
  344. 2020-07-14 Version: 1.36.516
  345. - Add ListEventAlgorithmResult API.
  346. 2020-07-14 Version: 1.36.515
  347. - Add ListEventAlgorithmResult API.
  348. 2020-07-14 Version: 1.36.514
  349. - Add ListBodyAlgorithmResult API.
  350. 2020-07-14 Version: 1.36.513
  351. - Add ListBodyAlgorithmResult API.
  352. 2020-07-14 Version: 1.36.512
  353. - Add ListBodyAlgorithmResult API.
  354. 2020-07-10 Version: 1.36.511
  355. - Add ListBodyAlgorithmResult API.
  356. 2020-07-10 Version: 1.36.510
  357. - Add ListBodyAlgorithmResult API.
  358. 2020-07-08 Version: 1.36.509
  359. - Remove GetFootwearPosition PullTakeShoesEvent PullTryOnShoesEvent.
  360. - Add GetFootwearEvent.
  361. - Please ignore the pd s pot.
  362. 2020-07-08 Version: 1.36.508
  363. - Generated 2020-05-18 for `dataworks-public`.
  364. 2020-07-08 Version: 1.36.507
  365. - Add video compose api.
  366. 2020-07-08 Version: 1.36.506
  367. - Add video summarization related API.
  368. 2020-07-07 Version: 1.36.505
  369. - Add video summarization related API.
  370. 2020-07-07 Version: 1.36.504
  371. - Generated 2020-05-18 for `dataworks-public`.
  372. 2020-07-03 Version: 1.36.503
  373. - Supported UpdateUserBucketConfig.
  374. 2020-07-03 Version: 1.36.502
  375. - Generated 2017-05-25 for `Dypnsapi`.
  376. 2020-07-03 Version: 1.36.501
  377. - Generated 2017-05-25 for `Dypnsapi`.
  378. 2020-07-03 Version: 1.36.500
  379. - Generated 2018-10-12 for `Airec`.
  380. 2020-07-03 Version: 1.36.499
  381. - Add ListResourceExecutionStatus API.
  382. - ListExecutions API supports filtering by resource id.
  383. - TriggerExecution API supports TimerTrigger.
  384. 2020-07-03 Version: 1.36.498
  385. - Supports tag management APIs.
  386. 2020-07-03 Version: 1.36.497
  387. - Add PicUrl parameter for picture related API.
  388. 2020-07-03 Version: 1.36.496
  389. - Add PicUrl parameter for picture related API.
  390. 2020-07-02 Version: 1.36.495
  391. - Generated 2020-05-18 for `dataworks-public`.
  392. 2020-07-02 Version: 1.36.494
  393. - Add GetFootwearPosition.
  394. - Add PullTakeShoesEvent.
  395. - Add PullTryOnShoesEvent.
  396. 2020-07-02 Version: 1.36.493
  397. - Add GetFootwearPosition.
  398. - Add PullTakeShoesEvent.
  399. - Add PullTryOnShoesEvent.
  400. 2020-07-02 Version: 1.36.492
  401. - Update endpoint.
  402. 2020-07-02 Version: 1.36.491
  403. - CreateShardingDBInstance add ProtocolType, to support DynamoDB.
  404. - DescribeDBInstances add return ResourceGroupId.
  405. 2020-07-01 Version: 1.36.490
  406. - Add ListFace-MotorAlgorithmResults API.
  407. 2020-07-01 Version: 1.36.489
  408. - Add API for GetMetadataAmount.
  409. 2020-07-01 Version: 1.36.488
  410. - Support Saf For ExecuteExtendService.
  411. 2020-06-30 Version: 1.36.487
  412. - Add ListMetrics API.
  413. 2020-06-29 Version: 1.36.486
  414. - Supported Rotate.
  415. 2020-06-29 Version: 1.36.485
  416. - Supported Rotate.
  417. 2020-06-29 Version: 1.36.484
  418. - Add Model Parameter For InitFaceVerify API.
  419. 2020-06-26 Version: 1.36.483
  420. - Supported Api EraseLogoInVideo.
  421. 2020-06-24 Version: 1.36.482
  422. - Add DescribeBackupPlanBilling.
  423. - Modify ConfigureBackupPlan.
  424. - Modify CreateBackupPlan.
  425. - Modify CreateRestoreTask.
  426. - Modify DescribeRestoreTaskList.
  427. - Modify DescribeBackupPlanList.
  428. - Modify ModifyBackupSourceEndpoint.
  429. - Modify ModifyBackupStrategy.
  430. 2020-06-23 Version: 1.36.481
  431. - Add face quality detection API.
  432. 2020-06-23 Version: 1.36.480
  433. - Add face quality detection API.
  434. 2020-06-23 Version: 1.36.479
  435. - Add face quality detection API.
  436. 2020-06-23 Version: 1.36.478
  437. - Add face quality detection API.
  438. 2020-06-23 Version: 1.36.477
  439. - Generated 2015-12-15 for `CS`.
  440. 2020-06-23 Version: 1.36.476
  441. - Support SubmitOperationAuditInfo for Support self-service submission of approval information.
  442. - Support SubmitOperationCredentials for self-service submission of certificate information.
  443. - Support CancelOperationAudit for cancel audit.
  444. - Support GetOperationOssUploadPolic for get oss policy.
  445. - Support QueryOperationAuditInfoLis for query audit list.
  446. - Support QueryOperationAuditInfoDetail for query audit details.
  447. 2020-06-23 Version: 1.36.475
  448. - Generated 2018-08-28 for `Tag`.
  449. 2020-06-23 Version: 1.36.474
  450. - Public beta version.
  451. - Add Api Overseas.
  452. 2020-06-23 Version: 1.36.473
  453. - Public beta version.
  454. - Add Api Overseas.
  455. 2020-06-23 Version: 1.36.472
  456. - Public beta version.
  457. - Add Api Overseas.
  458. 2020-06-22 Version: 1.36.471
  459. - Add support cn-shenzhen region.
  460. 2020-06-22 Version: 1.36.470
  461. - Add GetMultipleTrace api.
  462. - Add SearchTracesByPage api.
  463. - Add GetStack api.
  464. 2020-06-21 Version: 1.36.469
  465. - Add persons API.
  466. 2020-06-18 Version: 1.36.468
  467. - Supported TransformDBInstancePayType API.
  468. 2020-06-18 Version: 1.36.467
  469. - Add GetAuthToken OpenAPI.
  470. 2020-06-18 Version: 1.36.466
  471. - Public beta version.
  472. - Add Api Overseas.
  473. 2020-06-17 Version: 1.36.465
  474. - Supported sync create eni and assign private ip.
  475. 2020-06-17 Version: 1.36.464
  476. - Public beta version.
  477. - Add Api Overseas.
  478. 2020-06-16 Version: 1.36.463
  479. - Support TargetImageId in ApplyNodes Interface.
  480. 2020-06-16 Version: 1.36.462
  481. - Update monitor related API.
  482. 2020-06-15 Version: 1.36.461
  483. - Generated 2019-09-10 for `waf-openapi`.
  484. 2020-06-15 Version: 1.36.460
  485. - Generated 2019-09-10 for `waf-openapi`.
  486. 2020-06-12 Version: 1.36.459
  487. - Add CreateProduct API ProductSecret in Response.
  488. - Add AMQP APIs, including CreateSubscribeRelation, CreateConsumerGroup, etc.
  489. - Add LinkIoTEdge CreateSceneRule API.
  490. - Add LinkIoTEdge DeleteSceneRule API.
  491. - Add LinkIoTEdge UpdateSceneRule API.
  492. - Add LinkIoTEdge GetSceneRule API.
  493. - Add LinkIoTEdge QuerySceneRule API.
  494. - Add LinkIoTEdge EnableSceneRule API.
  495. - Add LinkIoTEdge DisableSceneRule API.
  496. - Add LinkIoTEdge TriggerSceneRule API.
  497. - Add LinkIoTEdge QuerySummarySceneRuleLog API.
  498. - Add LinkIoTEdge QueryDetailSceneRuleLog API.
  499. - Add LinkIoTEdge BindSceneRuleToEdgeInstance API.
  500. - Add LinkIoTEdge UnbindSceneRuleFromEdgeInstance API.
  501. - Add LinkIoTEdge QueryEdgeInstanceSceneRule API.
  502. 2020-06-12 Version: 1.36.458
  503. - Update monitor related API.
  504. 2020-06-12 Version: 1.36.457
  505. - Add support for enable hbaseue extra module like lindorm-search or lindorm-sql.
  506. 2020-06-11 Version: 1.36.456
  507. - Support ServicePeriodUnit in QueryInstanceBill.
  508. 2020-06-10 Version: 1.36.455
  509. - Public beta version.
  510. - Add Api Overseas.
  511. 2020-06-10 Version: 1.36.454
  512. - Public beta version.
  513. - Add Api Overseas.
  514. 2020-06-08 Version: 1.36.453
  515. - Generate dbfs sdk.
  516. 2020-06-08 Version: 1.36.452
  517. - Support offline instance.
  518. 2020-06-04 Version: 1.36.451
  519. - Support for addrp.
  520. 2020-06-04 Version: 1.36.450
  521. - Supported Eni Trunking.
  522. 2020-06-04 Version: 1.36.449
  523. - Update monitor related API.
  524. 2020-06-04 Version: 1.36.448
  525. - Add SubmitMediaDNADeleteJob and ListMediaDNADeleteJob.
  526. - Modify GetMediaAuditResult interface, support ad logo and live result.
  527. - Modify GetMediaAuditResultTimeline interface, support ad logo and live result.
  528. 2020-06-04 Version: 1.36.447
  529. - Update monitor related API.
  530. 2020-06-04 Version: 1.36.446
  531. - Update monitor related API.
  532. 2020-06-03 Version: 1.36.445
  533. - Describe describeAvailableResource.
  534. 2020-06-03 Version: 1.36.444
  535. - Describe describeAvailableResource.
  536. 2020-06-03 Version: 1.36.443
  537. - Generated 2019-01-01 for `Cassandra`.
  538. 2020-06-03 Version: 1.36.442
  539. - DescribeCameraStatistics add filed.
  540. 2020-06-02 Version: 1.36.441
  541. - Edit SearchTraces api.
  542. 2020-05-28 Version: 1.36.440
  543. - Supported AndroidNotificationXiaomiChannel for Push and MassPush.
  544. 2020-05-27 Version: 1.36.439
  545. - Added cn-heyuan endpoint url.
  546. - Added cn-wulanchabu endpoint url.
  547. 2020-05-27 Version: 1.36.438
  548. - Add support for create hbaseue multizone instance.
  549. 2020-05-26 Version: 1.36.437
  550. - Support DescribeAllEntity API.
  551. 2020-05-26 Version: 1.36.436
  552. - Add smartcall service api.
  553. 2020-05-26 Version: 1.36.435
  554. - Add smartcall service api.
  555. 2020-05-26 Version: 1.36.434
  556. - Add monitor related API.
  557. 2020-05-26 Version: 1.36.433
  558. - Add monitor related.
  559. 2020-05-26 Version: 1.36.432
  560. - Add monitor related.
  561. 2020-05-25 Version: 1.36.431
  562. - Add monitor related.
  563. 2020-05-25 Version: 1.36.430
  564. - Add monitor related.
  565. 2020-05-23 Version: 1.36.429
  566. - Generated 2015-01-01 for `R-kvstore`.
  567. - Add ModifyResourceGroup API.
  568. - DescribeInstanceAttribute return ResourceGroupId.
  569. 2020-05-22 Version: 1.36.428
  570. - Add schedule crud api.
  571. 2020-05-21 Version: 1.36.427
  572. - Support more error Codes.
  573. 2020-05-20 Version: 1.36.426
  574. - Generated 2019-09-10 for `waf-openapi`.
  575. 2020-05-20 Version: 1.36.425
  576. - Edit GetTrace and SearchTraces api.
  577. 2020-05-20 Version: 1.36.424
  578. - Public beta version.
  579. - Add Api Overseas.
  580. 2020-05-19 Version: 1.36.423
  581. - Public beta version.
  582. - Add Api Overseas.
  583. 2020-05-19 Version: 1.36.422
  584. - Initial version.
  585. 2020-05-18 Version: 1.36.421
  586. - Support sequence for listNodes.
  587. - Support StrictSatisfiedTargetCapacity for applyNodes.
  588. 2020-05-18 Version: 1.36.420
  589. - Fix DescribeIpcLiveAddress , add in params.
  590. 2020-05-18 Version: 1.36.419
  591. - Fix DescribeIpcLiveAddress , add in params.
  592. 2020-05-17 Version: 1.36.418
  593. - Open API publish.
  594. 2020-05-17 Version: 1.36.417
  595. - Open API publish.
  596. 2020-05-17 Version: 1.36.416
  597. - Open API publish.
  598. 2020-05-17 Version: 1.36.415
  599. - Open API publish.
  600. 2020-05-17 Version: 1.36.414
  601. - Open API publish.
  602. 2020-05-14 Version: 1.36.413
  603. - Generated 2015-01-01 for `R-kvstore`.
  604. - Fix DescribeCacheAnalysisReport return empty BigKeys because of wrong type defination.
  605. 2020-05-14 Version: 1.36.412
  606. - Supported Grant Permission.
  607. - Supported Revoke Permission.
  608. 2020-05-14 Version: 1.36.411
  609. - Add demo edition auth.
  610. 2020-05-13 Version: 1.36.410
  611. - Add ListDevicesImages DescribeIpcLiveAddress.
  612. - Modify DescribeDevices.
  613. 2020-05-13 Version: 1.36.409
  614. - Add ExportTas apis.
  615. 2020-05-13 Version: 1.36.408
  616. - Generated 2019-09-10 for `waf-openapi`.
  617. 2020-05-13 Version: 1.36.407
  618. - Supported AAA for BBB.
  619. - Fixed bugs for CCC.
  620. 2020-05-13 Version: 1.36.406
  621. - Add ExportTas apis.
  622. 2020-05-13 Version: 1.36.405
  623. - About 2019-03-07 and 2018-09-16 Version.
  624. 2020-05-12 Version: 1.36.404
  625. - Supported DRM.
  626. 2020-05-11 Version: 1.36.403
  627. - Add new openapi ApplyNodes.
  628. 2020-05-11 Version: 1.36.402
  629. - Support CreationCategory for CreateDBCluster.
  630. 2020-05-09 Version: 1.36.401
  631. - Generated 2019-01-01 for `Cassandra`.
  632. 2020-05-09 Version: 1.36.400
  633. - VideoSearch deploy SDK.
  634. 2020-05-08 Version: 1.36.399
  635. - Support sg for region.
  636. 2020-05-06 Version: 1.36.398
  637. - Describe describeAvailableResource.
  638. 2020-04-30 Version: 1.36.397
  639. - Add prometheus ListDashboards api.
  640. 2020-04-29 Version: 1.36.396
  641. - Add prometheus ListDashboards api.
  642. 2020-04-29 Version: 1.36.395
  643. - Add prometheus ListDashboards api.
  644. 2020-04-29 Version: 1.36.394
  645. - Supported VideoProduce.
  646. 2020-04-29 Version: 1.36.393
  647. - Supported VideoProduce.
  648. 2020-04-29 Version: 1.36.392
  649. - Supported VideoProduce.
  650. 2020-04-29 Version: 1.36.391
  651. - Add ListTemplateVersions API.
  652. - GenerateExecutionPolicy supports TemplateVersion.
  653. - CreateTemplate and UpdateTemplate support VersionName.
  654. 2020-04-29 Version: 1.36.390
  655. - Support groupId operations.
  656. 2020-04-29 Version: 1.36.389
  657. - Add ExportTas apis.
  658. 2020-04-29 Version: 1.36.388
  659. - Support Document Translation.
  660. - Support Lanuage Detection.
  661. 2020-04-29 Version: 1.36.387
  662. - Sync cdn APIs.
  663. 2020-04-29 Version: 1.36.386
  664. - Add Scdn APIS.
  665. - Sync cdn APIS.
  666. 2020-04-28 Version: 1.36.385
  667. - Generated 2019-03-15 for `fnf`.
  668. 2020-04-28 Version: 1.36.384
  669. - Add CompareFaceVerify API.
  670. 2020-04-27 Version: 1.36.383
  671. - Support watermark.
  672. 2020-04-27 Version: 1.36.382
  673. - Describe describeAvailableResource.
  674. 2020-04-27 Version: 1.36.381
  675. - ContrastFaceVerify Return SubCode.
  676. 2020-04-27 Version: 1.36.380
  677. - Generated 2019-01-01 for `Cassandra`.
  678. 2020-04-26 Version: 1.36.379
  679. - New api publish.
  680. 2020-04-25 Version: 1.36.378
  681. - Generated 2015-01-01 for `R-kvstore`.
  682. - Add RestoreTime for CreateInstance API.
  683. 2020-04-24 Version: 1.36.377
  684. - Publish apis for ledger instances.
  685. - Publish apis for members.
  686. - Publish apis for time anchors.
  687. - Publish apis for endpoints.
  688. 2020-04-24 Version: 1.36.376
  689. - Publish apis for ledger instances.
  690. - Publish apis for members.
  691. - Publish apis for time anchors.
  692. - Publish apis for endpoints.
  693. 2020-04-23 Version: 1.36.375
  694. - GetUser API return user execute query count information.
  695. 2020-04-23 Version: 1.36.374
  696. - Fixed bugs for MassPush API.
  697. 2020-04-23 Version: 1.36.373
  698. - Add location info.
  699. 2020-04-23 Version: 1.36.372
  700. - Support groupId operations.
  701. 2020-04-22 Version: 1.36.371
  702. - Generated 2019-01-01 for `Cassandra`.
  703. 2020-04-21 Version: 1.36.370
  704. - Supported API for DescribeTags.
  705. - Supported API for ListTagResources.
  706. - Supported API for TagResources.
  707. - Supported API for UntagResources.
  708. 2020-04-21 Version: 1.36.369
  709. - Supported PackageDesign Apis.
  710. - Supported Api ListPackageDesignModelTypes.
  711. - Supported Api PreviewModelForPackageDesign.
  712. - Supported Api RenderImageForPackageDesign.
  713. - Supported Api GetRenderResult.
  714. 2020-04-21 Version: 1.36.368
  715. - Add Statistics API.
  716. 2020-04-20 Version: 1.36.367
  717. - Add TemplateId.
  718. 2020-04-20 Version: 1.36.366
  719. - Fix FaceContrastPicture.
  720. 2020-04-20 Version: 1.36.365
  721. - Add kibana network white Ips.
  722. 2020-04-19 Version: 1.36.364
  723. - Multimedia poc modified.
  724. 2020-04-17 Version: 1.36.363
  725. - DescribeInstanceTypes support TotalEniQueueQuantity.
  726. 2020-04-16 Version: 1.36.362
  727. - Modify `SubmitSmarttagJob`.
  728. 2020-04-16 Version: 1.36.361
  729. - Add ModifyWhiteIps.
  730. 2020-04-16 Version: 1.36.360
  731. - Add BatchOptimization param in Stop and Start Instances.
  732. - Add RemoveSymbols in GetInstanceConsoleOutput.
  733. - Add ImageFamily in ModifyImageAttribute.
  734. - Customize InstanceType on DedicatedHosts is supported.
  735. - Add StorageCapacityUnit interfaces.
  736. - Add param Tag in CreateAutoSnapshotPolicy.
  737. 2020-04-16 Version: 1.36.359
  738. - Add features for open api.
  739. 2020-04-15 Version: 1.36.358
  740. - Add pre train service api.
  741. 2020-04-15 Version: 1.36.357
  742. - CreateNode API add return NodeId.
  743. 2020-04-15 Version: 1.36.356
  744. - Vision-poc response modified.
  745. 2020-04-14 Version: 1.36.355
  746. - Support ListSensitiveColumns, ListSensitiveColumnsDetail API.
  747. - ListUsers API return user execute query count information.
  748. - Fix ListWorkFlowTemplates to return create user information.
  749. - UpdateUser API support to update user max execute query count.
  750. 2020-04-14 Version: 1.36.354
  751. - Supported CreateSegmentBodyJob.
  752. 2020-04-13 Version: 1.36.353
  753. - Fix ListTaskExecutions SDK error.
  754. 2020-04-10 Version: 1.36.352
  755. - Generated 2017-05-25 for `Dypnsapi`.
  756. 2020-04-10 Version: 1.36.351
  757. - Support GetOfficeEditURL.
  758. - Support RefreshOfficeEditToken.
  759. 2020-04-10 Version: 1.36.350
  760. - Generated 2019-01-01 for `Cassandra`.
  761. 2020-04-10 Version: 1.36.349
  762. - Support DescribeIpv4Location.
  763. 2020-04-09 Version: 1.36.348
  764. - Add prometheus api AddGrafana and AddIntegration.
  765. 2020-04-09 Version: 1.36.347
  766. - Generated 2018-03-13 for `retailcloud`.
  767. 2020-04-09 Version: 1.36.346
  768. - Add DescribePrice API.
  769. 2020-04-09 Version: 1.36.345
  770. - WAF OpenApi SDK Release.
  771. 2020-04-09 Version: 1.36.344
  772. - Add DescribeDBClusterAvailableResources.
  773. 2020-04-09 Version: 1.36.343
  774. - Generated 2015-01-01 for `R-kvstore`.
  775. - Add DescribePrice API.
  776. 2020-04-08 Version: 1.36.342
  777. - Add SubCode for DescribeFaceVerify.
  778. 2020-04-08 Version: 1.36.341
  779. - Generated 2019-01-01 for `Cassandra`.
  780. 2020-04-03 Version: 1.36.340
  781. - Add trace api.
  782. - Add prometheus api.
  783. 2020-04-03 Version: 1.36.339
  784. - Support shelf type for planogram position.
  785. 2020-04-03 Version: 1.36.338
  786. - Support namespaces.
  787. 2020-04-02 Version: 1.36.337
  788. - Add API ContrastFaceVerify.
  789. 2020-04-02 Version: 1.36.336
  790. - Support for WaitTimeSeconds for DescribeExecution.
  791. 2020-04-01 Version: 1.36.335
  792. - DescribeVerifyToken API Add Parameters-UserIp and UserPhoneNumber and UserRegistTime.
  793. 2020-04-01 Version: 1.36.334
  794. - Parameters is string in StartExecution Response.
  795. 2020-04-01 Version: 1.36.333
  796. - Counters and Parameters are changed to Map in ListExections and StartExecution.
  797. 2020-03-24 Version: 1.36.332
  798. - DescribeInstanceTypes Supports EniIpv6AddressQuantity.
  799. 2020-03-24 Version: 1.36.331
  800. - DescribeInstanceTypes Supports EniIpv6AddressQuantity.
  801. 2020-03-23 Version: 1.36.330
  802. - Generated 2015-01-01 for `R-kvstore`.
  803. - Add DescribeSecurityGroupConfiguration API.
  804. - Add ModifySecurityGroupConfiguration API.
  805. 2020-03-23 Version: 1.36.329
  806. - Generated 2014-08-15 for `Rds`.
  807. 2020-03-20 Version: 1.36.328
  808. - Generated 2018-04-12 for `EHPC`.
  809. 2020-03-20 Version: 1.36.327
  810. - Add GetNetworkInterface interface.
  811. 2020-03-20 Version: 1.36.326
  812. - Generated 2018-04-12 for `EHPC`.
  813. 2020-03-18 Version: 1.36.325
  814. - Supported API for DescribeInstanceDomains.
  815. 2020-03-18 Version: 1.36.324
  816. - ACM POP SDK.
  817. 2020-03-18 Version: 1.36.323
  818. - Support product addrp.
  819. 2020-03-18 Version: 1.36.322
  820. - Generated 2018-08-28 for `Tag`.
  821. 2020-03-16 Version: 1.36.321
  822. - DescribeFaceVerify API Return DeviceToken Field.
  823. 2020-03-16 Version: 1.36.320
  824. - Release.
  825. - Add virtual host modification API.
  826. - Add exchange modification API.
  827. - Add queue modification API.
  828. - Add binding modification API.
  829. 2020-03-16 Version: 1.36.319
  830. - Add ImageFamily paramters and apis, in Instance creation apis and Image query apis, and add DescribeImageFromFamily.
  831. - Add Instance batch operation apis RebootInstances StartInstances and StopInstances.
  832. - Add EncryptAlgorithm paramter in instance creati
  833. 2020-03-13 Version: 1.36.318
  834. - ACM POP SDK.
  835. 2020-03-12 Version: 1.36.317
  836. - Add new Api SegmentBody.
  837. 2020-03-11 Version: 1.36.316
  838. - Update structure for DescribeAvailableResource without compatible.
  839. 2020-03-11 Version: 1.36.315
  840. - Add new Api SegmentBody.
  841. 2020-03-11 Version: 1.36.314
  842. - Support certificate translate.
  843. 2020-03-10 Version: 1.36.313
  844. - Add ExportTas apis.
  845. 2020-03-10 Version: 1.36.312
  846. - Add ExportTas apis.
  847. 2020-03-09 Version: 1.36.311
  848. - Add EmotionConfidence to GetImage.
  849. 2020-03-09 Version: 1.36.310
  850. - Add BackupStorageType.
  851. 2020-03-09 Version: 1.36.309
  852. - Add EmotionConfidence to GetImage.
  853. 2020-03-09 Version: 1.36.308
  854. - Add EmotionConfidence to GetImage.
  855. 2020-03-09 Version: 1.36.307
  856. - NlpAutoml update contract api.
  857. 2020-03-09 Version: 1.36.306
  858. - NlpAutoml update contract api.
  859. 2020-03-06 Version: 1.36.305
  860. - Supported Saf for cn.
  861. 2020-03-06 Version: 1.36.304
  862. - Supported Saf for cn.
  863. 2020-03-06 Version: 1.36.303
  864. - Supported Saf for oversea.
  865. 2020-03-06 Version: 1.36.302
  866. - Add request parameter groupType for OnsGroupCreate.
  867. - Add request parameter groupType for OnsGroupList.
  868. 2020-03-05 Version: 1.36.301
  869. - Add param InstanceType for ListImages and ListCustomImages.
  870. - Fix error codes for SubmitJobs and so on.
  871. 2020-03-04 Version: 1.36.300
  872. - Update.
  873. 2020-03-03 Version: 1.36.299
  874. - Supported secretmanager stable version for kms.
  875. 2020-03-03 Version: 1.36.298
  876. - Supported secretmanager stable version for kms.
  877. 2020-03-03 Version: 1.36.297
  878. - GeoIP Databases SDK initial release.
  879. 2020-03-03 Version: 1.36.296
  880. - Supported secretmanager for kms.
  881. 2020-02-28 Version: 1.36.295
  882. - Add QueryPhoneNoAByTrackNo and AddAxnTrackNo.
  883. 2020-02-28 Version: 1.36.294
  884. - Supported secretmanager for kms.
  885. 2020-02-27 Version: 1.36.293
  886. - Add translate api.
  887. 2020-02-27 Version: 1.36.292
  888. - Release Ft SDK.
  889. 2020-02-26 Version: 1.36.291
  890. - Fix tag upper case parameters.
  891. - Fix patch.
  892. 2020-02-26 Version: 1.36.290
  893. - Generated 2015-01-01 for `R-kvstore`.
  894. - Add VpcCloudInstanceId for DescribeInstanceAttribute.
  895. 2020-02-26 Version: 1.36.289
  896. - Add InitFaceVerify and DescribeFaceVerify API.
  897. 2020-02-25 Version: 1.36.288
  898. - Fix ListWorkFlowTemplates, ListWorkFlowNodes API Go SDK build error.
  899. 2020-02-25 Version: 1.36.287
  900. - Update backupsetDownloadset fun.
  901. 2020-02-24 Version: 1.36.286
  902. - ImmediateDelete.
  903. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  904. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  905. - DescribeIpWhitelist Groups GroupName.
  906. - CreateCluster.
  907. 2020-02-24 Version: 1.36.285
  908. - Release Ft SDK.
  909. 2020-02-24 Version: 1.36.284
  910. - Release Ft SDK.
  911. 2020-02-24 Version 1.36.283
  912. - Add tag of list instance parameters.
  913. 2020-02-24 Version 1.36.282
  914. - Generated 2018-06-12 for `VoiceNavigator`.
  915. 2020-02-24 Version 1.36.281
  916. - Generated 2019-12-26 for `OutboundBot`.
  917. 2020-02-24 Version 1.36.280
  918. - Generated 2019-12-26 for `OutboundBot`.
  919. 2020-02-24 Version 1.36.279
  920. - Generated 2019-12-26 for `OutboundBot`.
  921. 2020-02-21 Version 1.36.278
  922. - Support TAG API.
  923. 2020-02-20 Version 1.36.277
  924. - Generated 2019-09-28 for `reid`.
  925. 2020-02-20 Version 1.36.276
  926. - Add new interface ListMaskDetectionResults to support to pull mask detection results.
  927. 2020-02-15 Version 1.36.275
  928. - Add DescribeDBClusterSSL.
  929. - Add ModifyDBClusterSSL.
  930. 2020-02-14 Version 1.36.274
  931. - Update default endpoints.
  932. 2020-02-14 Version 1.36.273
  933. - Add callback params to StartExecution API.
  934. - Support ListExecutions with Status API.
  935. 2020-02-14 Version 1.36.272
  936. - Update default endpoints.
  937. 2020-02-13 Version 1.36.271
  938. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  939. - DescribeNetworkInterfaces support QueueNumber.
  940. 2020-02-13 Version 1.36.270
  941. - Add Staging apis.
  942. 2020-02-13 Version 1.36.269
  943. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  944. - DescribeNetworkInterfaces support QueueNumber.
  945. 2020-02-13 Version 1.36.268
  946. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  947. - DescribeNetworkInterfaces support QueueNumber.
  948. 2020-02-13 Version 1.36.267
  949. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  950. - DescribeNetworkInterfaces support QueueNumber.
  951. 2020-02-13 Version 1.36.266
  952. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  953. - DescribeNetworkInterfaces support QueueNumber.
  954. 2020-02-13 Version 1.36.265
  955. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  956. - DescribeNetworkInterfaces support QueueNumber.
  957. 2020-02-13 Version 1.36.264
  958. - Add Staging apis.
  959. 2020-02-13 Version 1.36.263
  960. - Add Staging apis.
  961. 2020-02-13 Version 1.36.262
  962. - Add Staging apis.
  963. 2020-02-13 Version 1.36.261
  964. - Add Staging apis.
  965. 2020-02-13 Version 1.36.260
  966. - Add Staging apis.
  967. 2020-02-13 Version 1.36.259
  968. - Init MQTT SDK .
  969. 2020-02-12 Version 1.36.258
  970. - Support to create, describe and expire demo access token.
  971. 2020-02-12 Version 1.36.257
  972. - Update Full showStorageTyp.
  973. 2020-02-12 Version 1.36.256
  974. - Add Full showStorageTyp.
  975. 2020-02-12 Version 1.36.255
  976. - Support mau.
  977. 2020-02-11 Version 1.36.254
  978. - Return `VpcInstanceId ` for DescribeDBClusterEndpoints.
  979. - Add DescribeBackupLogs.
  980. 2020-02-11 Version 1.36.253
  981. - Support ModifyInstanceAttributes for SecurityGroupIds.
  982. 2020-02-11 Version 1.36.252
  983. - Update default endpoints.
  984. 2020-02-10 Version 1.36.251
  985. - Supported address for GetMediaMeta.
  986. 2020-02-07 Version 1.36.250
  987. - Fix bug for DescribeZoneInfo, delete return result of reionId.
  988. - Fix bug for DeleteZone, parameter zoneId change to compulsory.
  989. - Fix bug for SetProxyPattern, parameter zoneId change to compulsory.
  990. 2020-02-05 Version 1.36.249
  991. - Supported GetOfficePreviewURL.
  992. - Supported RefreshOfficePreviewToken.
  993. 2020-02-04 Version 1.36.248
  994. - Update default endpoints.
  995. 2020-01-20 Version 1.36.247
  996. - Release on full language support.
  997. 2020-01-17 Version 1.36.246
  998. - Supported Add the history event signature function.
  999. 2020-01-16 Version 1.36.245
  1000. - Fix the result value of DeleteSiteMonitors.
  1001. 2020-01-16 Version 1.36.244
  1002. - Generated 2015-01-01 for `R-kvstore`.
  1003. - Update DescribeAvailableResource.
  1004. 2020-01-16 Version 1.36.243
  1005. - Add fields faceComparisonScore for DescribeVerifyResult and VerifyMaterials interface.
  1006. 2020-01-15 Version 1.36.242
  1007. - Fix parameter issues for label synchronization group.
  1008. 2020-01-15 Version 1.36.241
  1009. - Fix parameter issues for label synchronization group.
  1010. 2020-01-13 Version 1.36.240
  1011. - New API DescribeAvailableResource.
  1012. 2020-01-13 Version 1.36.239
  1013. - Add Dynamic Tag API.
  1014. 2020-01-13 Version 1.36.238
  1015. - Supported InstanceMaintenanceAtrributes for maintening the attributes of instances.
  1016. - Deleted MaintenanceProperty.
  1017. - Supported RedeployDedicatedHost for redeploying dedicated host in under-assessment status.
  1018. 2020-01-10 Version 1.36.237
  1019. - Return `ConsistentTime` for DescribeBackups.
  1020. - Return `DBNodeIds` for CreateDBNodes.
  1021. 2020-01-09 Version 1.36.236
  1022. - Support DAILY report in QueryInstanBill.
  1023. 2020-01-08 Version 1.36.235
  1024. - Add TagLevel to ListSetTags.
  1025. 2020-01-07 Version 1.36.234
  1026. - Modify desribeInstance return dict item.
  1027. 2020-01-07 Version 1.36.233
  1028. - Generated 2014-05-26 for `Ecs`.
  1029. 2020-01-03 Version 1.36.232
  1030. - Add GWS serie apis.
  1031. - Add QueryReport.
  1032. - Fix ListJobs.
  1033. - Etc.
  1034. 2020-01-03 Version 1.36.231
  1035. - New API DescribeAvailableResource.
  1036. 2020-01-03 Version 1.36.230
  1037. - ImmediateDelete.
  1038. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  1039. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  1040. - DescribeIpWhitelist Groups GroupName.
  1041. 2019-12-31 Version 1.36.229
  1042. - Supported SQL SERVER support delete backup set according to time range.
  1043. 2019-12-31 Version 1.36.228
  1044. - Support asymmetric keys.
  1045. 2019-12-31 Version 1.36.227
  1046. - Add request parameter groupType for OnsGroupCreate.
  1047. 2019-12-31 Version 1.36.226
  1048. - Supported image for process.
  1049. 2019-12-31 Version 1.36.225
  1050. - Generated 2019-09-28 for `reid`.
  1051. 2019-12-31 Version 1.36.224
  1052. - Support DeleteDBCluster.
  1053. - Support ModifyDBCluster.
  1054. - Support DescribeAvailableResource.
  1055. 2019-12-27 Version 1.36.223
  1056. - Update DescribeTrails Response.
  1057. 2019-12-26 Version 1.36.222
  1058. - NlpAutoml add async api.
  1059. 2019-12-26 Version 1.36.221
  1060. - Modify CreateRestoreTask.
  1061. 2019-12-20 Version 1.36.220
  1062. - Supported Search stream predict task list use modelId for IVISION.
  1063. 2019-12-20 Version 1.36.219
  1064. - Add result value for OnsConsumerStatus.
  1065. 2019-12-19 Version 1.36.218
  1066. - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
  1067. 2019-12-19 Version 1.36.217
  1068. - Generated 2019-09-28 for `reid`.
  1069. 2019-12-19 Version 1.36.216
  1070. - DescribeNetworkInterfaces Supports NextToken.
  1071. 2019-12-16 Version 1.36.215
  1072. - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
  1073. 2019-12-14 Version 1.36.214
  1074. - Generated 2015-01-01 for `R-kvstore`.
  1075. 2019-12-14 Version 1.36.213
  1076. - Update DescribeAvailableResource.
  1077. 2019-12-14 Version 1.36.212
  1078. - Update DescribeAvailableResource.
  1079. 2019-12-12 Version 1.36.211
  1080. - Generated 2019-06-10 for `et-industry-openapi`.
  1081. 2019-12-11 Version 1.36.210
  1082. - Supported Sync predict for Image.
  1083. - Supported Set Frame Frequency for Stream Predict.
  1084. - Fixed Errore Code For APIs.
  1085. 2019-12-11 Version 1.36.209
  1086. - Add tag API.
  1087. - Add group process monitoring API.
  1088. - Add API for batch setting alarm rules.
  1089. 2019-12-05 Version 1.36.208
  1090. - Add api QueryMetric.
  1091. 2019-12-04 Version 1.36.207
  1092. - Generated 2019-01-01 for `HBase`.
  1093. 2019-12-04 Version 1.36.206
  1094. - Supported ModifyDBInstanceSpec for Direction param.
  1095. 2019-12-02 Version 1.36.205
  1096. - Remove QuerySmsProdStatus OpenAPI.
  1097. 2019-11-29 Version 1.36.204
  1098. - Add RenewInstance.
  1099. - Add RenewLogstash.
  1100. - Add UpdateInstanceChargeType.
  1101. - Add UpdateLogstashChargeType.
  1102. 2019-11-28 Version 1.36.203
  1103. - Supported API GetTxtRecordForVerify.
  1104. - Supported API RetrieveDomain.
  1105. 2019-11-28 Version 1.36.202
  1106. - Supported dash for compress.
  1107. 2019-11-28 Version 1.36.201
  1108. - Eni Supports Multi-SecurityGroup.
  1109. 2019-11-27 Version 1.36.200
  1110. - CreateReplicationJob API supports the specified instance type.
  1111. 2019-11-26 Version 1.36.199
  1112. - Modify QueryBill, add SubOrderId in item of response.
  1113. 2019-11-26 Version 1.36.198
  1114. - Supported API BindInstanceDomains.
  1115. - Supported API UnbindInstanceDomains.
  1116. - Supported API AddCustomLine.
  1117. - Supported API UpdateCustomLine.
  1118. - Supported API DeleteCustomLines.
  1119. - Supported API DescribeCustomLine.
  1120. - Supported API DescribeCustomLines.
  1121. 2019-11-25 Version 1.36.197
  1122. - Generated 2019-10-30 for `aliyuncvc`.
  1123. 2019-11-25 Version 1.36.196
  1124. - One or more people can be subscribed when creating tasks.
  1125. 2019-11-21 Version 1.36.195
  1126. - Add ConvertPayType.
  1127. - Add ConvertLogstashPayType.
  1128. 2019-11-21 Version 1.36.194
  1129. - Generated 2017-10-11 for `Chatbot`.
  1130. 2019-11-21 Version 1.36.193
  1131. - Generated 2017-10-11 for `Chatbot`.
  1132. 2019-11-21 Version 1.36.192
  1133. - Generated 2019-10-30 for `aliyuncvc`.
  1134. 2019-11-20 Version 1.36.191
  1135. - Update Nlp Automl SDK.
  1136. 2019-11-20 Version 1.36.190
  1137. - Add new OpenAPI.
  1138. 2019-11-20 Version 1.36.189
  1139. - Add new pop api.
  1140. 2019-11-20 Version 1.36.188
  1141. - Generated 2014-05-26 for `Ecs`.
  1142. 2019-11-20 Version 1.36.187
  1143. - Generated 2018-04-12 for `EHPC`.
  1144. 2019-11-20 Version 1.36.186
  1145. - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
  1146. - Modify ecsDemand DescribesDemands API.
  1147. 2019-11-20 Version 1.36.185
  1148. - Generated 2019-01-01 for `HBase`.
  1149. 2019-11-20 Version 1.36.184
  1150. - Add API ReportVoipProblems.
  1151. - Add API QueryVoipNumberBindINfos.
  1152. 2019-11-15 Version 1.36.183
  1153. - Nlp Automl SDK.
  1154. 2019-11-15 Version 1.36.182
  1155. - Sync cdn APIs.
  1156. 2019-11-15 Version 1.36.181
  1157. - Fixed bugs.
  1158. 2019-11-15 Version 1.36.180
  1159. - Add Scdn APIS.
  1160. - Sync cdn APIS.
  1161. 2019-11-15 Version 1.36.179
  1162. - Modify QueryAccountBill, support group by product.
  1163. 2019-11-15 Version 1.36.178
  1164. - Modify DescribeRestoreRangeInfo.
  1165. 2019-11-15 Version 1.36.177
  1166. - Add DescribeRestoreRangeInfo.
  1167. 2019-11-14 Version 1.36.176
  1168. - Released dysms OpenAPI.
  1169. 2019-11-14 Version 1.36.175
  1170. - Support Tag OpenAPI.
  1171. - Fix endpoint problem.
  1172. 2019-11-14 Version 1.36.174
  1173. - Initial construction.
  1174. - Public beta version.
  1175. - Supported AliyunController for Interface.
  1176. - Supported ConsoleController for Interface.
  1177. - Supported AccountController for Interface.
  1178. 2019-11-13 Version 1.36.173
  1179. - Supported Stream analyse.
  1180. 2019-11-13 Version 1.36.172
  1181. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  1182. 2019-11-13 Version 1.36.171
  1183. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  1184. 2019-11-13 Version 1.36.170
  1185. - Add new API QueryBillToOSSSubscription.
  1186. 2019-11-13 Version 1.36.169
  1187. - Supported API UpdateDomainRemark for Update Domain Remark.
  1188. - Supported API UpdateDomainRecordRemark for Update Record Remark.
  1189. - Unsupported API CheckDomainRecord.
  1190. 2019-11-13 Version 1.36.168
  1191. - Support Go SDK.
  1192. - Support C SDK.
  1193. - Support PHP SDK.
  1194. 2019-11-08 Version 1.36.167
  1195. - Add DescribeJobErrorCode.
  1196. 2019-11-05 Version 1.36.166
  1197. - Add OperateBlackNo.
  1198. 2019-11-02 Version 1.36.165
  1199. - Generated 2017-05-25 for `Dyvmsapi`.
  1200. 2019-10-31 Version 1.36.164
  1201. - Initial construction.
  1202. - Public beta version.
  1203. - Supported AliyunController for Interface.
  1204. - Supported ConsoleController for Interface.
  1205. - Supported AccountController for Interface.
  1206. 2019-10-31 Version 1.36.163
  1207. - Initial construction.
  1208. - Public beta version.
  1209. - Supported AliyunController for Interface.
  1210. - Supported ConsoleController for Interface.
  1211. - Supported AccountController for Interface.
  1212. 2019-10-29 Version 1.36.162
  1213. - Add a new Alibaba Cloud Bill API named QueryAccountBill.
  1214. 2019-10-25 Version 1.36.161
  1215. - Initial construction.
  1216. - Public beta version.
  1217. - Supported AliyunController for Interface.
  1218. - Supported ConsoleController for Interface.
  1219. - Supported AccountController for Interface.
  1220. 2019-10-25 Version 1.36.160
  1221. - Supported query push records.
  1222. 2019-10-25 Version 1.36.159
  1223. - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
  1224. 2019-10-24 Version 1.36.158
  1225. - Generated 2017-12-14 for `BssOpenApi`.
  1226. 2019-10-23 Version 1.36.157
  1227. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  1228. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  1229. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  1230. - Modify the data type of return field StorageLocation to String.
  1231. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  1232. 2019-10-23 Version 1.36.156
  1233. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  1234. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  1235. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  1236. - Modify the data type of return field StorageLocation to String.
  1237. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  1238. 2019-10-23 Version 1.36.155
  1239. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  1240. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  1241. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  1242. - Modify the data type of return field StorageLocation to String.
  1243. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  1244. 2019-10-22 Version 1.36.154
  1245. - RunInstances support AutoSnapshotPolicyId.
  1246. 2019-10-22 Version 1.36.153
  1247. - Supported ExternalId IMM.
  1248. 2019-10-21 Version 1.36.152
  1249. - Release first version.
  1250. 2019-10-18 Version 1.36.151
  1251. - Generated 2019-09-10 for `DnsKnocker`.
  1252. 2019-10-16 Version 1.36.150
  1253. - Add ListTagResources OpenApi.
  1254. - Add TagResources OpenApi.
  1255. - Add UntagResources OpenApi.
  1256. - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
  1257. 2019-10-14 Version 1.36.149
  1258. - Support continuous pushing.
  1259. 2019-10-09 Version 1.36.148
  1260. - Add VideoCancelScan Api.
  1261. 2019-10-09 Version 1.36.147
  1262. - Support API RecognizeImageColor.
  1263. - Support API DetectImageElements.
  1264. - Support API RecolorImage.
  1265. - Support API SegmentImage.
  1266. - Support API ChangeImageSize.
  1267. - Support API ExtendImageStyle.
  1268. - Support API RecognizeImageStyle.
  1269. - Support API MakeSuperResolution.
  1270. 2019-10-08 Version 1.36.146
  1271. - Supported Grab Frame IMM.
  1272. 2019-10-08 Version 1.36.145
  1273. - Supported API MassPush for Push Message or Notice.
  1274. 2019-10-08 Version 1.36.144
  1275. - Generated 2016-01-20 for `Kms`.
  1276. 2019-09-26 Version 1.36.143
  1277. - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
  1278. - Add QuerySubsId.
  1279. 2019-09-23 Version 1.36.142
  1280. - Add param, DescribePrice supprot ReservedInstance.
  1281. 2019-09-19 Version 1.36.141
  1282. - Supported Video Abstract for IMM.
  1283. 2019-09-19 Version 1.36.140
  1284. - Generated 2018-01-20 for `Iot`.
  1285. 2019-09-19 Version 1.36.139
  1286. - Supported Video Abstract for IMM.
  1287. 2019-09-19 Version 1.36.138
  1288. - Add bizSubCode and so on.
  1289. 2019-09-18 Version 1.36.137
  1290. - Supported Video Abstract for IMM.
  1291. 2019-09-17 Version 1.36.136
  1292. - Generated 2018-04-12 for `EHPC`.
  1293. 2019-09-16 Version 1.36.135
  1294. - Generated 2018-04-12 for `EHPC`.
  1295. 2019-09-16 Version 1.36.134
  1296. - Generated 2018-04-12 for `EHPC`.
  1297. 2019-09-16 Version 1.36.133
  1298. - Generated 2016-11-11 for `aegis`.
  1299. 2019-09-15 Version 1.36.132
  1300. - Generated 2018-04-12 for `EHPC`.
  1301. 2019-09-14 Version 1.36.131
  1302. - Generated 2019-08-08 for `ARMS`.
  1303. 2019-09-12 Version 1.36.130
  1304. - Fixed CMakeLists file.
  1305. 2019-09-12 Version 1.36.129
  1306. - Fixed CMakeLists file.
  1307. 2019-09-12 Version 1.36.128
  1308. - Fixed CMakeLists file.
  1309. 2019-09-12 Version 1.36.127
  1310. - Fixed CMakeLists file.
  1311. 2019-09-12 Version 1.36.126
  1312. - Fixed CMakeLists file.
  1313. 2019-09-12 Version 1.36.125
  1314. - Fixed CMakeLists file.
  1315. 2019-09-12 Version 1.36.124
  1316. - Fixed CMakeLists file.
  1317. 2019-09-12 Version 1.36.123
  1318. - Fixed CMakeLists file.
  1319. 2019-09-12 Version 1.36.122
  1320. - Fixed CMakeLists file.
  1321. 2019-09-12 Version 1.36.121
  1322. - Fixed CMakeLists file.
  1323. 2019-09-12 Version 1.36.120
  1324. - Fixed CMakeLists file.
  1325. 2019-09-12 Version 1.36.119
  1326. - Fixed CMakeLists file.
  1327. 2019-09-12 Version 1.36.118
  1328. - Fixed CMakeLists file.
  1329. 2019-09-12 Version 1.36.117
  1330. - Fixed CMakeLists file.
  1331. 2019-09-09 Version 1.36.116
  1332. - CreateInstance add toen.
  1333. - UpdateInstance add toen.
  1334. 2019-09-06 Version 1.36.115
  1335. - Update endpoint data.
  1336. 2019-09-06 Version 1.36.114
  1337. - Generated 2016-04-28 for `Vpc`.
  1338. 2019-09-05 Version 1.36.113
  1339. - Supported for setEndpoint method.
  1340. 2019-09-05 Version 1.36.112
  1341. - Generated 2014-05-15 for `Slb`.
  1342. 2019-09-05 Version 1.36.111
  1343. - Generated 2017-07-05 for `CCC`.
  1344. 2019-09-05 Version 1.36.110
  1345. - Generated 2018-11-11 for `foas`.
  1346. 2019-09-05 Version 1.36.109
  1347. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  1348. 2019-09-05 Version 1.36.108
  1349. - Generated 2015-11-01 for `Market`.
  1350. 2019-09-05 Version 1.36.107
  1351. - Generated 2016-07-14 for `CloudAPI`.
  1352. 2019-09-05 Version 1.36.106
  1353. - Generated 2017-08-01 for `polardb`.
  1354. 2019-09-05 Version 1.36.105
  1355. - Generated 2017-12-14 for `BssOpenApi`.
  1356. 2019-09-03 Version 1.36.104
  1357. - Generated 2014-08-15 for `Rds`.
  1358. 2019-08-30 Version 1.36.103
  1359. - Revert to 2015-09-01.
  1360. 2019-08-30 Version 1.36.102
  1361. - Release Apis of Version 2019-09-10.
  1362. 2019-08-30 Version 1.36.101
  1363. - Supported Meida complex for IMM.
  1364. 2019-08-30 Version 1.36.100
  1365. - Add api for getTrace and searchTracelist.
  1366. 2019-08-29 Version 1.36.99
  1367. - Move StopExecution params to body.
  1368. 2019-08-29 Version 1.36.98
  1369. - For publish.
  1370. 2019-08-28 Version 1.36.97
  1371. - Add DBS API UpgradeBackupPlan.
  1372. - Add DBS API DescribePreCheckProgressList.
  1373. 2019-08-26 Version 1.36.96
  1374. - QueryInstanceBillResponse change ownerId type from Long to String.
  1375. - QueryInstanceBillResponse change usage type from float to String.
  1376. - QueryInstanceBillResponse change listPrice type from float to String.
  1377. - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
  1378. 2019-08-22 Version 1.36.95
  1379. - Support API RecognizeImageColor.
  1380. - Support API DetectImageElements.
  1381. - Support API RecolorImage.
  1382. - Support API SegmentImage.
  1383. - Support API ChangeImageSize.
  1384. - Support API ExtendImageStyle.
  1385. - Support API RecognizeImageStyle.
  1386. - Support API MakeSuperResolutionImage.
  1387. 2019-08-22 Version 1.36.94
  1388. - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
  1389. 2019-08-21 Version 1.36.93
  1390. - Move StartExecution params to body.
  1391. 2019-08-21 Version 1.36.92
  1392. - Return backup job id when create backup.
  1393. - Return backup set size when describe backups.
  1394. 2019-08-20 Version 1.36.91
  1395. - API TaobaoFilmGetSchedules retrun col add hallId.
  1396. 2019-08-15 Version 1.36.90
  1397. - FnF public version.
  1398. - Add Report task api.
  1399. 2019-08-15 Version 1.36.89
  1400. - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
  1401. 2019-08-15 Version 1.36.88
  1402. - QueryInstanceBillResponse add ServicePeriod.
  1403. 2019-08-14 Version 1.36.87
  1404. - Generated 2018-01-20 for `Iot`.
  1405. 2019-08-13 Version 1.36.86
  1406. - Optimize return code.
  1407. - Edit QueryDataset.
  1408. 2019-08-13 Version 1.36.85
  1409. - Supported for openapi new version.
  1410. 2019-08-12 Version 1.36.84
  1411. - Support Defect Face API.
  1412. 2019-08-08 Version 1.36.83
  1413. - Add CreateStorageSet api to support storageSet.
  1414. - Add DeleteStorageSet api to support storageSet.
  1415. - Add ModifyStorageSetAttribute api to support storageSet.
  1416. - Add DescribeStorageSets api to support storageSet.
  1417. - Add DescribeStorageSetDetails api to support storageSet.
  1418. - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
  1419. - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
  1420. - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
  1421. 2019-08-08 Version 1.36.82
  1422. - Group, Plugin support tag authentication.
  1423. 2019-08-06 Version 1.36.81
  1424. - Supported GetMediaMeta for IMM.
  1425. 2019-08-06 Version 1.36.80
  1426. - Supported GetMediaMeta for IMM.
  1427. 2019-08-06 Version 1.36.79
  1428. - Supported GetMediaMeta for IMM.
  1429. 2019-08-06 Version 1.36.78
  1430. - Supported GetMediaMeta for IMM.
  1431. 2019-08-06 Version 1.36.77
  1432. - Supported GetMediaMeta for IMM.
  1433. 2019-08-05 Version 1.36.76
  1434. - GetOrderDetail add originalConfig param.
  1435. 2019-08-05 Version 1.36.75
  1436. - GetOrderDetail add originalConfig param.
  1437. 2019-08-05 Version 1.36.74
  1438. - Modify DBS API DescribeFullBackupList.
  1439. 2019-08-02 Version 1.36.73
  1440. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  1441. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  1442. 2019-07-31 Version 1.36.72
  1443. - Endpoint auto route.
  1444. 2019-07-26 Version 1.36.71
  1445. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  1446. 2019-07-26 Version 1.36.70
  1447. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  1448. 2019-07-25 Version 1.36.69
  1449. - App-related actions support tag authentication.
  1450. 2019-07-23 Version 1.36.68
  1451. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  1452. 2019-07-19 Version 1.36.67
  1453. - QueryMonthlyBillResponse add roundDownDiscount.
  1454. - QueryBillResponse add roundDownDiscount.
  1455. - QueryInstanceBillResponse add item.
  1456. 2019-07-18 Version 1.36.66
  1457. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  1458. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  1459. 2019-07-14 Version 1.36.65
  1460. - Modify DBS API DescribeBackupPlanList.
  1461. 2019-07-14 Version 1.36.64
  1462. - Modify DBS API DescribeBackupPlanList.
  1463. 2019-07-12 Version 1.36.63
  1464. - Public api AddLivePullStreamInfoConfig.
  1465. 2019-07-11 Version 1.36.62
  1466. - Modify CreateBackupPlan.
  1467. - Modify ConfigureBackupPlan.
  1468. - Modify DescribeFullBackupList.
  1469. - Modify DescribeRestoreTaskList.
  1470. - Add ModifyBackupSourceEndpoint.
  1471. - Add ModifyBackupStrategy.
  1472. - Add ModifyBackupPlanName.
  1473. 2019-07-05 Version 1.36.61
  1474. - Supported library managment for simillarity scene.
  1475. - Remove the local file uploader code which can be downloaded from yundun content security document.
  1476. 2019-07-05 Version 1.36.60
  1477. - Add TaskCancelStatus for QueryTaskList api.
  1478. 2019-07-04 Version 1.36.59
  1479. - Supported API DescribeRecordStatisticsy for Query Volume.
  1480. - Supported API DescribeDomainStatistics for Query Volume.
  1481. 2019-07-03 Version 1.36.58
  1482. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  1483. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  1484. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  1485. - Supported API DescribeDomainDnsStatistics for Query Volume.
  1486. 2019-07-02 Version 1.36.57
  1487. - FnF public version.
  1488. 2019-07-02 Version 1.36.56
  1489. - Fix Double to double.
  1490. 2019-07-01 Version 1.36.55
  1491. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  1492. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  1493. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  1494. - Add RetentionDays to snapshot creating.
  1495. 2019-06-27 Version 1.36.54
  1496. - Added setting of crop_mode parameter.
  1497. 2019-06-24 Version 1.36.53
  1498. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  1499. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  1500. - 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.
  1501. - 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.
  1502. 2019-06-24 Version 1.36.52
  1503. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  1504. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  1505. - 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.
  1506. - 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.
  1507. 2019-06-18 Version 1.36.51
  1508. 1. Supported the related recommend.
  1509. 2. Supported exposure time controll and exposure filter by scene.
  1510. 2019-06-17 Version 1.36.50
  1511. companyreg release
  1512. 2019-06-13 Version 1.36.49
  1513. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  1514. 2019-06-13 Version 1.36.48
  1515. - Generated 2015-01-01 for `R-kvstore`
  1516. 2019-06-13 Version 1.36.47
  1517. Add Network Assistant openapi sdk
  1518. 2019-06-12 Version 1.36.46
  1519. 1, Add RenewBackupPlan DBS interface.
  1520. 2019-06-12 Version 1.36.45
  1521. 1.Fix bug
  1522. 2019-06-12 Version 1.36.44
  1523. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  1524. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  1525. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  1526. 2019-06-05 Version: 1.36.43
  1527. 1, Update DescribeDataLimitDetail interface, add password for response
  1528. 2019-06-04 Version: 1.36.42
  1529. 1, Add new API: UpdateLivePullStreamInfoConfig
  1530. 2019-06-03 Version: 1.36.41
  1531. 1, Add openapi of ACL.
  1532. 2019-05-31 Version: 1.36.40
  1533. 1, add api 'search traces count'
  1534. 2, add page index for api 'searchTraces'
  1535. 2019-05-31 Version: 1.36.39
  1536. 1, Add authority in GetMaterials API.
  1537. 2019-05-29 Version 1.36.38
  1538. update Smartag
  1539. 2019-05-29 Version 1.36.37
  1540. update product
  1541. 2019-05-29 Version: 1.36.36
  1542. 1, Fix ServiceCode typo in request
  1543. 2019-05-28 Version: 1.36.35
  1544. 1, CreateDBInstance now support autoRenew
  1545. 2019-05-27 Version: 1.36.34
  1546. 1, Support video transcode.
  1547. 2019-05-27 Version: 1.36.33
  1548. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  1549. 2019-05-22 Version: 1.36.32
  1550. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  1551. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  1552. 2019-05-20 Version: 1.36.31
  1553. 1, Add both api, ListNotaryInfos
  1554. 2019-05-20 Version: 1.36.30
  1555. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  1556. 2019-05-16 Version: 1.36.29
  1557. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  1558. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  1559. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  1560. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  1561. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  1562. 6, Add the field named UserData to SubmitSnapshotJob api request.
  1563. 2019-05-15 Version: 1.36.28
  1564. 1, Add InstanceId parameter to api CreateDisk
  1565. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  1566. 3, Add SecurityGroupIds parameter to Instance creation apis.
  1567. 2019-05-14 Version: 1.36.27
  1568. 1, support body detect
  1569. 2019-05-14 Version: 1.36.26
  1570. 1, Support body detect.
  1571. 2019-05-14 Version: 1.36.25
  1572. 1, Support body detect.
  1573. 2019-05-14 Version: 1.36.24
  1574. 1, Support body detect.
  1575. 2019-05-13 Version: 1.36.23
  1576. 1, Support for creating instances and joining multiple security groups at the same time.
  1577. 2019-04-26 Version: 1.36.22
  1578. 1, add new openapi.
  1579. 2019-04-23 Version: 1.36.21
  1580. 1, Support mounting multiple volumes using different protocol
  1581. 2, Support scaling out cross AZ
  1582. 2019-04-22 Version: 1.36.20
  1583. 1, This is an example of release-log.
  1584. 2, Please strictly follow this format to edit in English.
  1585. 3, Format:Number + , + Space + Description
  1586. 2019-04-18 Version: 1.36.19
  1587. 1, Add CreateAccount
  1588. 2019-04-18 Version: 1.36.18
  1589. 1, CreateCacheAnalysisTask prop modify
  1590. 2019-04-18 Version: 1.36.17
  1591. 1, add ReservedInstance API.
  1592. 2019-04-17 Version: 1.36.16
  1593. 1, Add DescribeRestoreTaskList DBS interface.
  1594. 2, Add DescribeNodeCidrList DBS interface.
  1595. 2019-04-16 Version: 1.36.15
  1596. 1, Fixed DescribeAccounts response type error.
  1597. 2019-04-16 Version: 1.36.14
  1598. 1, Add api about pushing security check commands
  1599. 2019-04-16 Version: 1.36.13
  1600. 1, Fixed describeAccounts response type error
  1601. 2019-04-16 Version: 1.36.12
  1602. 1, Mark CreateDiagnosticReport as public api.
  1603. 2, ModifySecurityIps support modifyMode parameter.
  1604. 2019-04-16 Version: 1.36.11
  1605. 1, Add group api.
  1606. 2019-04-16 Version: 1.36.10
  1607. 1, Add group api.
  1608. 2019-04-16 Version: 1.36.9
  1609. 1, Add group api.
  1610. 2019-04-16 Version: 1.36.8
  1611. 1, Add group api.
  1612. 2019-04-15 Version: 1.36.7
  1613. 1, Add CreateRestoreTask DBS interface.
  1614. 2, Add StartRestoreTask DBS interface.
  1615. 2019-04-15 Version: 1.36.6
  1616. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  1617. 2019-04-15 Version: 1.36.5
  1618. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  1619. 2019-04-15 Version: 1.36.4
  1620. 1, Add Group Api.
  1621. 2019-04-11 Version: 1.36.3
  1622. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  1623. 2019-04-11 Version: 1.36.2
  1624. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  1625. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  1626. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  1627. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  1628. 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.
  1629. 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.
  1630. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  1631. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  1632. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  1633. 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.
  1634. 2019-04-10 Version: 1.36.1
  1635. 1, Modify DescribeBackupGatewayList DBS interface.
  1636. 2019-04-10 Version: 1.36.0
  1637. 1, New APIs for visual service (VNC).
  1638. 2, New APIs for software management.
  1639. 3, New APIs for CPFS filesystem.
  1640. 2019-04-09 Version: 1.35.9
  1641. 1, support service account management networkInterface function.
  1642. 2019-04-09 Version: 1.35.8
  1643. 1, Add Apis for offline VerifySDK.
  1644. 2019-04-08 Version: 1.35.7
  1645. 1, Modify DescribeBackupPlanList DBS interface.
  1646. 2, Modify DescribeFullBackupList DBS interface.
  1647. 3, Modify DescribeIncrementBackupList DBS interface.
  1648. 4, Modify DescribeBackupGatewayList DBS interface.
  1649. 2019-04-08 Version: 1.35.6
  1650. 1, Add StopBackupPlan DBS interface.
  1651. 2, Add DescribeBackupPlanList DBS interface.
  1652. 3, Add DescribeFullBackupList DBS interface.
  1653. 4, Add DescribeIncrementBackupList DBS interface.
  1654. 5, Add DescribeBackupGatewayList DBS interface.
  1655. 2019-04-04 Version: 1.35.5
  1656. 1, ScalingConf systemDisk add DiskName and Description parameters.
  1657. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  1658. 2019-04-03 Version: 1.35.4
  1659. 1, Add interfaces related to vulnerability whitelist
  1660. 2, Add interfaces related to vulnerability auto-del configuration
  1661. 3, Add interfaces related to vulnerability fix advise
  1662. 4, Add interfaces searching and operating vulnerability
  1663. 2019-03-29 Version: 1.35.3
  1664. 1, Add DLQ message openAPI.
  1665. 2, Add Query the subscription relational openAPI.
  1666. 3, Remove white list restrictions.
  1667. 2019-03-28 Version: 1.35.2
  1668. 1, release bssopenapi
  1669. 2019-03-28 Version: 1.35.1
  1670. 1, Add multiple language support in DescribeZones
  1671. 2, Add gray parameter in CreateDisk
  1672. 2019-03-28 Version: 1.35.0
  1673. 1, Add logo detect.
  1674. 2019-03-27 Version: 1.34.66
  1675. 1, Add Project interface.
  1676. 2, Add Tag interface.
  1677. 3, Add TrainData interface.
  1678. 4, Add Train interface.
  1679. 5, Add Iteration interface.
  1680. 6, Add Predict interface.
  1681. 7, Add PredictData interface.
  1682. 2019-03-27 Version: 1.34.65
  1683. 1, Add Project interface.
  1684. 2, Add Tag interface.
  1685. 3, Add TrainData interface.
  1686. 4, Add Train interface.
  1687. 5, Add Iteration interface.
  1688. 6, Add Predict interface.
  1689. 7, Add PredictData interface.
  1690. 2019-03-27 Version: 1.34.64
  1691. 1, Add DLQ message openAPI.
  1692. 2, Add Query the subscription relational openAPI.
  1693. 3, Remove white list restrictions.
  1694. 2019-03-27 Version: 1.34.63
  1695. 1, Add DLQ message openAPI.
  1696. 2, Add Query the subscription relational openAPI.
  1697. 3, Remove white list restrictions.
  1698. 2019-03-27 Version: 1.34.62
  1699. 1, release dysmsapi
  1700. 2019-03-25 Version: 1.34.61
  1701. 1, cms fix duplicated struct definition
  1702. 2019-03-25 Version: 1.34.60
  1703. 1, mts fix duplication struct definition
  1704. 2019-03-25 Version: 1.34.59
  1705. 1, jarvis-pulic fix product code with dash
  1706. 2019-03-25 Version: 1.34.58
  1707. 1, sas-api, fix product code with dash
  1708. 2019-03-21 Version: 1.34.57
  1709. 1, Update Dependency
  1710. 2019-03-21 Version: 1.34.56
  1711. 1, Update Dependency
  1712. 2019-03-20 Version: 1.34.55
  1713. 1, Update the Dependency
  1714. 2019-03-20 Version: 1.34.54
  1715. 1, Update the Dependency
  1716. 2019-03-20 Version: 1.34.53
  1717. 1, cloudwf: update bool type parameter
  1718. 2019-03-20 Version: 1.34.52
  1719. 1, Update Dependency
  1720. 2019-03-19 Version: 1.34.51
  1721. 1, Support ' fc ' Source DomainName
  1722. 2019-03-19 Version: 1.34.50
  1723. 1, move fields: tag, associate_person, cid
  1724. 2019-03-19 Version: 1.34.49
  1725. 1, format fields: tags, associatePerson
  1726. 2019-03-19 Version: 1.34.48
  1727. 1, add query user oms data api
  1728. 2019-03-19 Version: 1.34.47
  1729. 1, Update Dependency
  1730. 2019-03-19 Version: 1.34.46
  1731. 1, Update Dependency
  1732. 2019-03-19 Version: 1.34.45
  1733. 1, This is an example of release-log.
  1734. 2, Please strictly follow this format to edit in English.
  1735. 3, Format:Number + , + Space + Description
  1736. 2019-03-18 Version: 1.34.44
  1737. 1, rds: deliver string true/false to server for bool type parameter, not previous 1/0
  1738. 2019-03-18 Version: 1.34.43
  1739. 1, deliver string true/false to server for bool type parameter, not previous 1/0
  1740. 2019-03-18 Version: 1.34.42
  1741. 1, Signature Document SDK.
  1742. 2, First version publish.
  1743. 3, Beta Version SDK
  1744. 2019-03-18 Version: 1.34.41
  1745. 1, Update Dependency
  1746. 2019-03-18 Version: 1.34.40
  1747. 1, move AssociatePerson\Tag field
  1748. 2, Optimize RealName field
  1749. 2019-03-18 Version: 1.34.39
  1750. 1, Update Dependency
  1751. 2019-03-18 Version: 1.34.38
  1752. 1, Update Dependency
  1753. 2019-03-18 Version: 1.34.37
  1754. 1, Update Dependency
  1755. 2019-03-18 Version: 1.34.36
  1756. 1, Update Dependency
  1757. 2019-03-15 Version: 1.34.35
  1758. 1, Update Dependency
  1759. 2019-03-15 Version: 1.34.34
  1760. 1, Update Dependency
  1761. 2019-03-15 Version: 1.34.33
  1762. 1, Update Dependency
  1763. 2019-03-15 Version: 1.34.32
  1764. 1, Update Dependency
  1765. 2019-03-15 Version: 1.34.31
  1766. 1, Update Dependency
  1767. 2019-03-15 Version: 1.34.30
  1768. 1, Update Dependency
  1769. 2019-03-15 Version: 1.34.29
  1770. 1, Update Dependency
  1771. 2019-03-15 Version: 1.34.28
  1772. 1, Update Dependency
  1773. 2019-03-15 Version: 1.34.27
  1774. 1, Update Dependency
  1775. 2019-03-15 Version: 1.34.26
  1776. 1, Update Dependency
  1777. 2019-03-15 Version: 1.34.25
  1778. 1, Update Dependency
  1779. 2019-03-14 Version: 1.34.24
  1780. 1, Update Dependency
  1781. 2019-03-14 Version: 1.34.23
  1782. 1, Update Dependency
  1783. 2019-03-14 Version: 1.34.22
  1784. 1, Update Dependency
  1785. 2019-03-14 Version: 1.34.21
  1786. 1, Update Dependency
  1787. 2019-03-14 Version: 1.34.20
  1788. 1, Update Dependency
  1789. 2019-03-14 Version: 1.34.19
  1790. 1, Update Dependency
  1791. 2019-03-14 Version: 1.34.18
  1792. 1, Update Dependency
  1793. 2019-03-14 Version: 1.34.17
  1794. 1, Update Dependency
  1795. 2019-03-14 Version: 1.34.16
  1796. 1, Update Dependency
  1797. 2019-03-13 Version: 1.34.15
  1798. 1, Update Dependency
  1799. 2019-03-13 Version: 1.34.14
  1800. 1, Update Dependency
  1801. 2019-03-13 Version: 1.34.13
  1802. 1, Update Dependency
  1803. 2019-03-13 Version: 1.34.12
  1804. 1, Distinguish between system and service parameters
  1805. 2019-03-13 Version: 1.34.11
  1806. 1, add DescribeDemands interface
  1807. 2019-03-13 Version: 1.34.10
  1808. 1, Distinguish between system and service parameters
  1809. 2019-03-12 Version: 1.34.9
  1810. 1, add agency infomation
  1811. 2, update sdk core resources
  1812. 2018-12-20 Version: 1.34.8
  1813. 1, Sync CDN API.
  1814. 2018-12-11 Version: 1.34.7
  1815. 1, Sync CDN API.
  1816. 2018-12-06 Version: 1.34.6
  1817. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  1818. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  1819. 2018-12-03 Version: 1.34.5
  1820. 1, Sync CDN API.
  1821. 2018-12-03 Version: 1.34.4
  1822. 1, Sync CDN API.
  1823. 2018-12-03 Version: 1.34.3
  1824. 1, Update 2014-11-11 API.
  1825. 2018-12-03 Version: 1.34.2
  1826. 1, Add a parameter to RemoveInstances.
  1827. 2018-11-30 Version: 1.34.1
  1828. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  1829. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  1830. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  1831. 2018-11-28 Version: 1.34.0
  1832. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  1833. 2018-11-28 Version: 1.33.6
  1834. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  1835. 2018-11-27 Version: 1.33.5
  1836. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  1837. 2018-11-22 Version: 1.33.4
  1838. 1, Increase the scene field
  1839. 2018-11-22 Version: 1.33.3
  1840. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  1841. 2018-11-21 Version: 1.33.2
  1842. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  1843. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  1844. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  1845. 2018-11-16 Version: 1.33.1
  1846. 1, update version
  1847. 2018-11-15 Version: 1.33.0
  1848. 1, ECS support ipv6Address
  1849. 2018-11-14 Version: 1.32.0
  1850. 1, Better support for hybrid cluster.
  1851. 2018-11-13 Version: 1.31.0
  1852. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  1853. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  1854. 3, Add DynamicCheck properties for results of CheckDomain interface.
  1855. 2018-11-10 Version: 1.30.5
  1856. 1, Update SetWaitingRoomConfig.
  1857. 2018-11-08 Version: 1.30.4
  1858. 1, Fix the http response receive bug
  1859. 2018-11-08 Version: 1.30.3
  1860. 1, Update Version.
  1861. 2018-11-07 Version: 1.30.2
  1862. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  1863. 2, Add API GetTaskStatus,StartTask,StopTask.
  1864. 3, Add API GetTaskParam,UpdateTaskParam.
  1865. 2018-11-02 Version: 1.30.1
  1866. 1, deviceName and productKey can be used instead of iotId.
  1867. 2, New productKey fields for queryauthentication output parameter.
  1868. 3, New deviceName fields for queryauthentication output parameter.
  1869. 2018-11-02 Version: 1.30.0
  1870. 1, first version
  1871. 2018-10-31 Version: 1.29.5
  1872. 1, Update SetWaitingRoomConfig.
  1873. 2018-10-31 Version: 1.29.4
  1874. 1, Add SetWaitingRoomConfig.
  1875. 2018-10-31 Version: 1.29.3
  1876. 1, Add SetWaitingRoomConfig.
  1877. 2018-10-30 Version: 1.29.2
  1878. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  1879. 2018-10-26 Version: 1.29.1
  1880. 1, Return AuditConclusions in SubmitMaterials API.
  1881. 2018-10-25 Version: 1.29.0
  1882. 1, Add apis for trademark domains.
  1883. 2, Add QueryDomainAdminDivision api.
  1884. 2018-10-16 Version: 1.28.3
  1885. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1886. 2018-10-16 Version: 1.28.2
  1887. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1888. 2018-10-16 Version: 1.28.1
  1889. 1, This version add MetricQuery interface to support retcode and apm metric query.
  1890. 2018-10-16 Version: 1.28.0
  1891. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  1892. 2, Add instance topology api DescribeInstanceTopology
  1893. 3, Add mount point in DescribeDisksFullStatus
  1894. 2018-10-16 Version: 1.27.11
  1895. 1, remove set group tags API.
  1896. 2018-10-13 Version: 1.27.10
  1897. 1, Add device group related APIs.
  1898. 2018-10-13 Version: 1.27.9
  1899. 1, Add device group related APIs.
  1900. 2018-10-13 Version: 1.27.8
  1901. 1, Add device group related APIs.
  1902. 2018-10-11 Version: 1.27.7
  1903. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  1904. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  1905. 3, Add a new api called UpdateImageInfos to update image information.
  1906. 2018-10-09 Version: 1.27.6
  1907. 1, v1.0.0-->v1.0.1
  1908. 2, provider new region:beijing/shenzhen/zhangjiakou
  1909. 3, provider service for VPC user;
  1910. 2018-09-30 Version: 1.27.5
  1911. 1, This is an example of release-log.
  1912. 2, Please strictly follow this format to edit in English.
  1913. 3, Format:Number + , + Space + Description
  1914. 2018-09-29 Version: 1.27.4
  1915. 1, Sync cdn api.
  1916. 2018-09-29 Version: 1.27.3
  1917. 1, This is an example of release-log.
  1918. 2, Please strictly follow this format to edit in English.
  1919. 3, Format:Number + , + Space + Description
  1920. 2018-09-29 Version: 1.27.2
  1921. 1, This is an example of release-log.
  1922. 2, Please strictly follow this format to edit in English.
  1923. 3, Format:Number + , + Space + Description
  1924. 2018-09-28 Version: 1.27.1
  1925. 1, Add one api, QueryAppDeviceList.
  1926. 2018-09-27 Version: 1.27.0
  1927. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  1928. 2018-09-27 Version: 1.26.4
  1929. 1, modify getFaces Api
  1930. 2018-09-27 Version: 1.26.3
  1931. 1, modify getFaces Api
  1932. 2018-09-25 Version: 1.26.2
  1933. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  1934. 2018-09-17 Version: 1.26.1
  1935. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  1936. 2018-09-14 Version: 1.26.0
  1937. 1, Add DedicatedHost Feature
  1938. 2018-09-13 Version: 1.25.3
  1939. 1, Add CreateChannelToken.
  1940. 2018-09-06 Version: 1.25.2
  1941. 1, AutoScaling support launchTemplate.
  1942. 2018-09-06 Version: 1.25.1
  1943. 1, Add API deleteProduct.
  1944. 2, Move all API to version 20180120.
  1945. 2018-09-05 Version: 1.25.0
  1946. 1, Add new APIs with control policy for querying price
  1947. 2018-09-03 Version: 1.24.2
  1948. 1, voice identify interface
  1949. 2, client upload credentials interface
  1950. 2018-09-03 Version: 1.24.1
  1951. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  1952. 2018-08-28 Version: 1.24.0
  1953. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  1954. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  1955. 2018-08-28 Version: 1.23.4
  1956. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  1957. 2018-08-27 Version: 1.23.3
  1958. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  1959. 2018-08-27 Version: 1.23.2
  1960. 1, Add api GetGatewayBySubDevice.
  1961. 2, Modified the time related response parameters.
  1962. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1963. 2018-08-23 Version: 1.23.1
  1964. 1, RunInstance add privateIpAddress.
  1965. 2018-08-22 Version: 1.23.0
  1966. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  1967. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  1968. 2018-08-21 Version: 1.22.9
  1969. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  1970. 2018-08-21 Version: 1.22.8
  1971. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1972. 2018-08-17 Version: 1.22.7
  1973. 1, Add a new api called DeleteImage to clear the image resource.
  1974. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  1975. 3, Add the field called OutputType to GetMezzanineInfo api response.
  1976. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  1977. 2018-08-17 Version: 1.22.6
  1978. 1, New apkpubkey fields for queryauthentication output parameter.
  1979. 2, New packagename fields for queryauthentication output parameter.
  1980. 3, New clientId fields for queryauthentication output parameter.
  1981. 2018-08-16 Version: 1.22.5
  1982. 1, ModifyScalingConfiguration add imageName.
  1983. 2, CreateScalingConfiguration add imageName.
  1984. 2018-08-15 Version: 1.22.4
  1985. 1, Fix bug in GetMaterials API.
  1986. 2, GetVerifyToken added a new param VerifyConfigs
  1987. 2018-08-15 Version: 1.22.3
  1988. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  1989. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  1990. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  1991. 2018-08-15 Version: 1.22.2
  1992. 1, Update ecs tag to 20 maximum
  1993. 2018-08-14 Version: 1.22.1
  1994. 1, Change parameter name of Dialogue
  1995. 2018-08-13 Version: 1.22.0
  1996. 1, New userinfo fields for registerface input parameter.
  1997. 2, New userinfo fields for updateface input parameter.
  1998. 3, New userinfo fields for queryface output parameter.
  1999. 2018-08-13 Version: 1.21.6
  2000. 1, Add cross domain support.
  2001. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  2002. 2018-08-08 Version: 1.21.5
  2003. 1, The official release 4.0.0
  2004. 2018-08-08 Version: 1.21.4
  2005. 1, Update FC apis.
  2006. 2018-08-08 Version: 1.21.3
  2007. 1, First release.
  2008. 2018-08-07 Version: 1.21.2
  2009. 1, Add api GetGatewayBySubDevice.
  2010. 2, Modified the time related response parameters.
  2011. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  2012. 2018-08-05 Version: 1.21.1
  2013. 1, Add Interface SubmitSubtitleJob
  2014. 2, Support convert ttml、stl subtitle to vtt
  2015. 2018-08-03 Version: 1.21.0
  2016. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  2017. 2018-08-01 Version: 1.20.5
  2018. 1, Add new API GetConversationDetailByContactId
  2019. 2018-08-01 Version: 1.20.4
  2020. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  2021. 2018-07-31 Version: 1.20.3
  2022. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  2023. 2018-07-26 Version: 1.20.2
  2024. 1, Add BatchGetJobMetricInfo API.
  2025. 2, Add BatchGetPluginConfigInfo API.
  2026. 3, Add GetJobTopology API.
  2027. 2018-07-25 Version: 1.20.1
  2028. 1, Add RemoveTerminals API.
  2029. 2018-07-13 Version: 1.20.0
  2030. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  2031. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  2032. 3, New APIs for Container applications: AddContainerApp, etc.
  2033. 2018-07-11 Version: 1.19.3
  2034. 1, new function: Attach and Detach Rds instance of scalingGroup.
  2035. 2018-07-11 Version: 1.19.2
  2036. 1, Add DetectFaceAttributesService.
  2037. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  2038. 2018-07-05 Version: 1.19.1
  2039. 1, new function, attach/detach load balancer of scalingGroup
  2040. 2018-07-05 Version: 1.19.0
  2041. 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.
  2042. 2018-06-28 Version: 1.18.1
  2043. 1, ScalingConfiguration support hostName and passwordInherit
  2044. 2, ScalingConfiguration support modify
  2045. 2018-06-27 Version: 1.18.0
  2046. 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.
  2047. 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
  2048. 2018-06-27 Version: 1.17.10
  2049. 1, DescribeNetworkInterfaces support query with vpcId
  2050. 2018-06-22 Version: 1.17.9
  2051. 1, rtc openapi
  2052. 2018-06-21 Version: 1.17.8
  2053. 1, This is add InstanceList.
  2054. 2018-06-20 Version: 1.17.7
  2055. 1, Add InstanceList in product security information query.
  2056. 2018-06-20 Version: 1.17.6
  2057. 1, Add InstanceList in product security information query.
  2058. 2018-06-14 Version: 1.17.5
  2059. 1, Add passwordInherit.
  2060. 2018-06-13 Version: 1.17.4
  2061. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  2062. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  2063. 3, Add return value fillMode DescribeCasterLayouts.
  2064. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  2065. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  2066. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  2067. 2018-06-13 Version: 1.17.3
  2068. 1, Add lifecycleHook.
  2069. 2018-06-08 Version: 1.17.2
  2070. 1, Add scdn interface,support scdn.
  2071. 2018-06-06 Version: 1.17.1
  2072. 1, Change the type of srcUid to int.
  2073. 2018-06-06 Version: 1.17.0
  2074. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  2075. 2018-05-29 Version: 1.16.0
  2076. 1, Add new interface DescribePhoneInfo to SDK.
  2077. 2018-05-28 Version: 1.15.0
  2078. 1, Add face 1-N,1-1 scan interface.
  2079. 2018-05-28 Version: 1.14.0
  2080. 1, ValidateSecurityGroup API
  2081. 2018-05-28 Version: 1.13.0
  2082. 1, This is an example of release-log.
  2083. 2, Please strictly follow this format to edit in English.
  2084. 3, Format:Number + , + Space + Description
  2085. 2018-05-23 Version: 1.12.0
  2086. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  2087. 2018-05-23 Version: 1.11.0
  2088. 1, Update API version to 2018-04-12.
  2089. 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.
  2090. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  2091. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  2092. 2018-05-23 Version: 1.10.3
  2093. 1, This is an example of release-log.
  2094. 2, Please strictly follow this format to edit in English.
  2095. 3, Format:Number + , + Space + Description
  2096. 2018-05-22 Version: 1.10.2
  2097. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  2098. 2, modify DescribeDBInstanceAttribute.
  2099. 2018-05-17 Version: 1.10.1
  2100. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  2101. 2018-05-17 Version: 1.10.0
  2102. 1, the first version of private dns SDK
  2103. 2018-05-11 Version: 1.9.1
  2104. 1, Add Function Compute interface,support Function Compute.
  2105. 2018-05-09 Version: 1.9.0
  2106. 1, Add apis for domain broker.
  2107. 2018-05-08 Version: 1.8.2
  2108. 1, Add instance params.
  2109. 2018-05-08 Version: 1.8.1
  2110. 1, Remove DescribeAccountAttributes.
  2111. 2018-05-02 Version: 1.8.0
  2112. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  2113. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  2114. 2018-04-28 Version: 1.7.3
  2115. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  2116. 2, Add dcdn config interface,Support set、delete、query domain config.
  2117. 2018-04-28 Version: 1.7.2
  2118. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  2119. 2, Add dcdn config interface,Support set、delete、query domain config.
  2120. 2018-04-27 Version: 1.7.1
  2121. 1, release hsm open api
  2122. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  2123. 2018-04-26 Version: 1.7.0
  2124. 1, Add apis for domain group.
  2125. 3, Add fields for QueryDomainList.
  2126. 2018-04-24 Version: 1.6.5
  2127. 1, add interface FetchPhotos
  2128. 2, add xflush log param unixTimestamp
  2129. 2018-04-23 Version: 1.6.4
  2130. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  2131. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  2132. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  2133. 2018-04-23 Version: 1.6.3
  2134. 1, Add notificationConfiguration.
  2135. 2, Add standby status.
  2136. 2018-04-17 Version: 1.6.2
  2137. 1, EditPhotos add input param TakenAt
  2138. 2, add FetchMomentPhotos
  2139. 3, ListAlbums add return param Remark
  2140. 2018-04-11 Version: 1.6.1
  2141. 1, GetLibrary/FetchLibraries add return ctime
  2142. 2, Editphotos add input param takenAt
  2143. 2018-04-10 Version: 1.6.0
  2144. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  2145. 2018-04-10 Version: 1.5.1
  2146. 1, publish Project API.
  2147. 2, publish Service API.
  2148. 3, publish Service order API.
  2149. 4, publish Credential API.
  2150. 5, publish CAS API.
  2151. 2018-04-08 Version: 1.5.0
  2152. 1, Add voice asynchronous scan interface.
  2153. 2018-04-03 Version: 1.4.0
  2154. 1, Add APIs for domain transfer in and transfer out.
  2155. 2, Add APIs for poll and acknowledge domain task.
  2156. 3, Add API for query domain group list.
  2157. 2018-03-30 Version: 1.3.8
  2158. 1, API QueryCustomerSaleInfo arguments update.
  2159. 2018-03-29 Version: 1.3.7
  2160. 1, edit FetchLibraries return param format
  2161. 2018-03-27 Version: 1.3.6
  2162. 1, Rename QueryCustomerSaleInfo to RegionName.
  2163. 2018-03-27 Version: 1.3.5
  2164. 1, publish Project API.
  2165. 2, publish Service API.
  2166. 3, publish Service order API.
  2167. 4, publish Credential API.
  2168. 5, publish CAS API.
  2169. 2018-03-27 Version: 1.3.4
  2170. 1, add interface FetchLibraries
  2171. 2018-03-23 Version: 1.3.3
  2172. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  2173. 2018-03-23 Version: 1.3.2
  2174. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  2175. 2018-03-23 Version: 1.3.1
  2176. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  2177. 2018-03-23 Version: 1.3.0
  2178. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  2179. 2, Remove 'QueryPushDetail' Api.
  2180. 2018-03-20 Version: 1.2.16
  2181. 1, add FetchAlbumTagPhotos
  2182. 2, CreatePhoto add optional param TakenAt
  2183. 2018-03-16 Version: 1.2.15
  2184. 1, Synchronize to the latest api list
  2185. 2018-03-15 Version: 1.2.14
  2186. 1, Synchronize to the latest api list
  2187. 2018-03-15 Version: 1.2.13
  2188. 1, Synchronize to the latest api list
  2189. 2018-03-15 Version: 1.2.12
  2190. 1, Synchronize to the latest api list
  2191. 2018-03-15 Version: 1.2.11
  2192. 1, Synchronize to the latest api list
  2193. 2018-03-15 Version: 1.2.10
  2194. 1, Add QueryCustomerSaleInfo API.
  2195. 2018-03-14 Version: 1.2.9
  2196. 1, Support predefine endpoints parse
  2197. 2018-03-13 Version: 1.2.8
  2198. 1, API GetQuotaHistoryInfo fix field error.
  2199. 2018-03-07 Version: 1.2.7
  2200. 1, add GetAlbumsByNames
  2201. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2202. 3, add return IdStr for string
  2203. 2018-03-06 Version: 1.2.6
  2204. 1, add GetAlbumsByNames
  2205. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2206. 3, add return IdStr for string
  2207. 2018-03-06 Version: 1.2.5
  2208. 1, add GetAlbumsByNames
  2209. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  2210. 3, add return IdStr for string
  2211. 2018-02-28 Version: 1.2.4
  2212. 1, Add query resource inventory API.
  2213. 2, Add query topology API.
  2214. 2018-02-27 Version: 1.2.3
  2215. 1, Add query topology API.
  2216. 2018-02-27 Version: 1.2.2
  2217. 1, Add new API: ListRecordingsByContactId.
  2218. 2018-02-27 Version: 1.2.1
  2219. 1, Add Action API.
  2220. 2018-02-27 Version: 1.2.0
  2221. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  2222. 2018-02-09 Version: 1.1.0
  2223. 1, Aliyun E-HPC service SDK, initial version.
  2224. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  2225. 2018-02-07 Version: 1.0.12
  2226. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  2227. 2018-02-06 Version: 1.0.11
  2228. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  2229. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  2230. 2018-02-02 Version: 1.0.10
  2231. 1, this version is new of captcha management and nvc analyze
  2232. 2018-01-26 Version: 1.0.9
  2233. 1, Update InstanceProfileCredentialsProvider
  2234. 2, Update common api
  2235. 2018-01-24 Version: 1.0.8
  2236. 1, Fixed a problem that the ActiveAlert interface name is not standard
  2237. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  2238. 2018-01-24 Version: 1.0.7
  2239. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  2240. 2018-01-23 Version: 1.0.6
  2241. 1, Tesla Dam API release.
  2242. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  2243. 2018-01-12 Version: 1.0.5
  2244. 1, First commit ess module
  2245. 2018-01-11 Version: 1.0.4
  2246. 1, replace photo tag 2000 upgrade to 5000
  2247. 2, add TrashQuota
  2248. 2018-01-10 Version: 1.0.3
  2249. 1, First release vpc for c++
  2250. 2018-01-10 Version: 1.0.2
  2251. 1, First release slb for C++
  2252. 2018-01-10 Version: 1.0.1
  2253. 1, First release ecs for C++
  2254. 2017-12-27 Version: 1.0.0
  2255. 1, Fix build failed on linux