CHANGELOG 85 KB

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