CHANGELOG 87 KB

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