CHANGELOG 84 KB

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