| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946 |
- 2020-01-08 Version: v1.60.324
- - Generated 2017-09-06 for `imm`.
- - Add TagLevel to ListSetTags.
- 2020-01-08 Version: v1.60.323
- - Generated 2014-05-15 for `Slb`.
- - Supported upload Regional AlicloudCertificate.
- 2020-01-08 Version: v1.60.322
- - Generated 2014-08-15 for `Rds`.
- 2020-01-08 Version: v1.60.321
- - Generated 2014-08-15 for `Rds`.
- 2020-01-08 Version: v1.60.320
- - Generated 2018-03-13 for `retailcloud`.
- - Supported AAA for BBB.
- - Fixed bugs for CCC.
- 2020-01-07 Version: v1.60.319
- - Generated 2017-06-13 for `elasticsearch`.
- - Modify desribeInstance return dict item.
- 2020-01-07 Version: v1.60.318
- - Generated 2014-08-15 for `Rds`.
- 2020-01-03 Version: v1.60.317
- - Generated 2018-04-12 for `EHPC`.
- - Add GWS serie apis.
- - Add QueryReport.
- - Fix ListJobs.
- - Etc.
- 2020-01-03 Version: v1.60.316
- - Generated 2015-12-01 for `Dds`.
- - New API DescribeAvailableResource.
- 2020-01-03 Version: v1.60.315
- - Generated 2019-01-01 for `HBase`.
- - ImmediateDelete.
- - DescribeInstance CreateTimeUTC ExpireTimeUTC.
- - DescribeInstances CreateTimeUTC ExpireTimeUTC.
- - DescribeIpWhitelist Groups GroupName.
- 2019-01-02 Version: v1.60.314
- - Remove r-kvstore.
- 2019-12-31 Version: v1.60.313
- - Generated 2018-01-20 for `Iot`.
- - Add OTA APIs, including GenerateOTAUploadURL, CreateOTAFirmware, etc.
- - Add UpdateProductFilterConfig interface, support setting product filter config.
- 2019-12-31 Version: v1.60.312
- - Generated 2019-12-30 for `ocr`.
- - First version.
- 2019-12-31 Version: v1.60.311
- - Generated 2014-08-15 for `Rds`.
- - Supported SQL SERVER support delete backup set according to time range.
- 2019-12-31 Version: v1.60.310
- - Generated 2016-01-20 for `Kms`.
- - Support asymmetric keys.
- 2019-12-31 Version: v1.60.309
- - Generated 2019-02-14 for `Ons`.
- - Add request parameter groupType for OnsGroupCreate.
- 2019-12-31 Version: v1.60.308
- - Generated 2017-09-06 for `imm`.
- - Supported image for process.
- 2019-12-31 Version: v1.60.307
- - Generated 2019-09-28 for `reid`.
- 2019-12-31 Version: v1.60.306
- - Generated 2019-03-15 for `adb`.
- - Support DeleteDBCluster.
- - Support ModifyDBCluster.
- - Support DescribeAvailableResource.
- 2019-12-30 Version: v1.60.305
- - Generated 2018-01-20 for `Iot`.
- - Supported 2018-01-20 for Golang.
- 2019-12-26 Version: v1.60.304
- - Generated 2019-11-11 for `nlp-automl`.
- - NlpAutoml add async api.
- 2019-12-26 Version: v1.60.303
- - Generated 2019-03-06 for `Dbs`.
- - Modify CreateRestoreTask.
- 2019-12-23 Version: v1.60.302
- - Generated 2016-04-08 for `Emr`.
- - Bugfix.
- 2019-12-20 Version: v1.60.301
- - Generated 2018-11-01 for `dms-enterprise`.
- - Supported Authorization API, includes GrantUserPermission, RevokeUserPermission, ListDatabaseUserPermssions, ListUserPermissions.
- - Supported Database or Table Metadata synchronization API, includes SyncInstanceMeta, SyncDatabaseMeta.
- - Supported Database or Table Owner set up API.
- - Supported GetUser API to get information of one DMS user.
- - Supported set Dingding mobile number with RegisterUser API.
- 2019-12-20 Version: v1.60.300
- - Generated 2019-03-08 for `ivision`.
- - Supported Search stream predict task list use modelId for IVISION.
- 2019-12-20 Version: v1.60.299
- - Generated 2019-02-14 for `Ons`.
- - Add result value for OnsConsumerStatus.
- 2019-12-19 Version: v1.60.298
- - Generated 2017-08-01 for `polardb`.
- - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
- 2019-12-19 Version: v1.60.297
- - Generated 2019-09-28 for `reid`.
- 2019-12-19 Version: v1.60.296
- - Generated 2014-05-26 for `Ecs`.
- - DescribeNetworkInterfaces Supports NextToken.
- 2019-12-18 Version: v1.60.295
- - Generated 2014-08-15 for `Rds`.
- 2019-12-18 Version: v1.60.294
- - Generated 2019-09-16 for `alikafka`.
- - Support sasl and acl.
- 2019-12-16 Version: v1.60.293
- - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
- 2019-12-16 Version: v1.60.292
- - Update tag related api to publically visable.
- 2019-12-16 Version: v1.60.291
- - Update tag related api to publically visable.
- 2019-12-14 Version: v1.60.290
- - Generated 2015-01-01 for `R-kvstore`.
- 2019-12-14 Version: v1.60.289
- - Update DescribeAvailableResource.
- 2019-12-14 Version: v1.60.288
- - Update DescribeAvailableResource.
- 2019-12-11 Version: v1.60.287
- - Add tag API.
- - Add group process monitoring API.
- - Add API for batch setting alarm rules.
- 2019-12-11 Version: v1.60.286
- - Support GroupDeletionProtection.
- 2019-12-05 Version: v1.60.285
- - Add api QueryMetric.
- 2019-12-04 Version: v1.60.284
- - Delete invalid Api.
- 2019-12-04 Version: v1.60.283
- - Generated 2019-01-01 for `HBase`.
- 2019-12-04 Version: v1.60.282
- - Supported ModifyDBInstanceSpec for Direction param.
- 2019-12-03 Version: v1.60.281
- - Supported face library operation.
- - Supported task template and words.
- 2019-12-03 Version: v1.60.280
- - Bugfix for DescribeTrails.
- 2019-12-02 Version: v1.60.279
- - Generated 2019-01-23 for `Drds`.
- 2019-12-02 Version: v1.60.278
- - Update go sdk.
- 2019-12-02 Version: v1.60.277
- - Remove QuerySmsProdStatus OpenAPI.
- 2019-11-29 Version: v1.60.276
- - Add RenewInstance.
- - Add RenewLogstash.
- - Add UpdateInstanceChargeType.
- - Add UpdateLogstashChargeType.
- 2019-11-29 Version: v1.60.275
- - Add RWMutex to AddEndpointMapping and GetEndpointFromMap.
- 2019-11-28 Version: v1.60.274
- - Supported API GetTxtRecordForVerify.
- - Supported API RetrieveDomain.
- 2019-11-28 Version: v1.60.273
- - Supported dash for compress.
- 2019-11-28 Version: v1.60.272
- - Eni Supports Multi-SecurityGroup.
- 2019-11-28 Version: v1.60.271
- - Support Order Basis API, include CreateOrder, CloseOrder, ListOrders, GetOrderBaseInfo.
- - Support Order Approval API, include SubmitOrderApproval, ApproveOrder, GetApprovalDetail.
- - Support DataCorrect Order Operation API, include ExecuteDataCorrect, GetDataCorrectOrderDetail, GetDataCorrectBackupFiles.
- - Support DDL Order Operation API, include CreatePublishGroupTask.
- - Support DataExport Operation API, include ExecuteDataExport, GetDataExportOrderDetail, GetDataExportDownloadURL.
- 2019-11-27 Version: v1.60.270
- - Add Tag API.
- 2019-11-27 Version: v1.60.269
- - CreateReplicationJob API supports the specified instance type.
- 2019-11-27 Version: v1.60.268
- - Add enhanced natgateway sdk.
- 2019-11-26 Version: v1.60.267
- - Modify QueryBill, add SubOrderId in item of response.
- 2019-11-26 Version: v1.60.266
- - Generated 2015-12-01 for `Dds`.
- 2019-11-26 Version: v1.60.265
- - Supported API BindInstanceDomains.
- - Supported API UnbindInstanceDomains.
- - Supported API AddCustomLine.
- - Supported API UpdateCustomLine.
- - Supported API DeleteCustomLines.
- - Supported API DescribeCustomLine.
- - Supported API DescribeCustomLines.
- 2019-11-26 Version: v1.60.264
- - Generated 2015-12-01 for `Dds`.
- 2019-11-26 Version: v1.60.263
- - Refresh endpoint.
- 2019-11-26 Version: v1.60.262
- - Generated 2014-08-15 for `Rds`.
- 2019-11-25 Version: v1.60.261
- - Add v to release version.
- 2019-11-25 Version: 1.60.260
- - One or more people can be subscribed when creating tasks.
- 2019-11-22 Version: 1.60.259
- - Update Api Request And Response structure.
- 2019-11-22 Version: 1.60.258
- - First version.
- 2019-11-21 Version: 1.60.257
- - Add ConvertPayType.
- - Add ConvertLogstashPayType.
- 2019-11-21 Version: 1.60.256
- - Update Nlp Automl SDK.
- 2019-11-21 Version: 1.60.255
- - Add OpenAPI DescribeAvailableResourceInfo.
- - Deprecated OpenApi DescribeAvailableResource.
- 2019-11-21 Version: 1.60.254
- - First version.
- 2019-11-20 Version: 1.60.253
- - Add new pop api.
- 2019-11-20 Version: 1.60.252
- - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
- - Modify ecsDemand DescribesDemands API.
- 2019-11-20 Version: 1.60.251
- - Generated 2019-01-01 for `HBase`.
- 2019-11-20 Version: 1.60.250
- - Add API ReportVoipProblems.
- - Add API QueryVoipNumberBindINfos.
- 2019-11-19 Version: 1.60.249
- - Generated 2018-01-20 for `Iot`.
- 2019-11-15 Version: 1.60.248
- - Nlp Automl SDK.
- 2019-11-15 Version: 1.60.247
- - Support tags.
- - Support create pre paid alikafka instance.
- 2019-11-15 Version: 1.60.246
- - Sync cdn APIs.
- 2019-11-15 Version: 1.60.245
- - Fixed bugs.
- 2019-11-15 Version: 1.60.244
- - Add Scdn APIS.
- - Sync cdn APIS.
- 2019-11-15 Version: 1.60.243
- - Modify QueryAccountBill, support group by product.
- 2019-11-15 Version: 1.60.242
- - Modify DescribeRestoreRangeInfo.
- 2019-11-15 Version: 1.60.241
- - Add DescribeRestoreRangeInfo.
- 2019-11-14 Version: 1.60.240
- - Released dysms OpenAPI.
- 2019-11-14 Version: 1.60.239
- - Support Tag OpenAPI.
- - Fix endpoint problem.
- 2019-11-14 Version: 1.60.238
- - Initial construction.
- - Public beta version.
- - Supported AliyunController for Interface.
- - Supported ConsoleController for Interface.
- - Supported AccountController for Interface.
- 2019-11-13 Version: 1.60.237
- - Supported Stream analyse.
- 2019-11-13 Version: 1.60.236
- - Fix ResourceId type from Long to String on QueryCostUnitResource.
- 2019-11-13 Version: 1.60.235
- - Fix ResourceId type from Long to String on QueryCostUnitResource.
- 2019-11-13 Version: 1.60.234
- - Add new API QueryBillToOSSSubscription.
- 2019-11-13 Version: 1.60.233
- - Supported API UpdateDomainRemark for Update Domain Remark.
- - Supported API UpdateDomainRecordRemark for Update Record Remark.
- - Unsupported API CheckDomainRecord.
- 2019-11-13 Version: 1.60.232
- - Support Go SDK.
- - Support C SDK.
- - Support PHP SDK.
- 2019-11-12 Version: 1.60.231
- - Generated 2018-08-21, 2018-08-16 for `Rdc`.
- 2019-11-12 Version: 1.60.230
- - Generated 2018-08-21 for `Rdc`.
- 2019-11-08 Version: 1.60.229
- - Add DescribeJobErrorCode.
- 2019-11-05 Version: 1.60.228
- - Add OperateBlackNo.
- 2019-11-04 Version: 1.60.227
- - Supported Qos for smartag.
- 2019-11-04 Version: 1.60.226
- - Support console api for cloud bastionhost.
- 2019-11-02 Version: 1.60.225
- - Generated 2017-05-25 for `Dyvmsapi`.
- 2019-10-31 Version: 1.60.224
- - Initial construction.
- - Public beta version.
- - Supported AliyunController for Interface.
- - Supported ConsoleController for Interface.
- - Supported AccountController for Interface.
- 2019-10-31 Version: 1.60.223
- - Initial construction.
- - Public beta version.
- - Supported AliyunController for Interface.
- - Supported ConsoleController for Interface.
- - Supported AccountController for Interface.
- 2019-10-31 Version: 1.60.222
- - Support ListTagResources for tag fuzzy filter.
- 2019-10-30 Version: 1.60.221
- - Update interface params of the cloudauth.
- 2019-10-29 Version: 1.60.220
- - Add a new Alibaba Cloud Bill API named QueryAccountBill.
- 2019-10-28 Version: 1.60.219
- - FIX RefundInstance.
- 2019-10-25 Version: 1.60.218
- - ADD RefundInstance.
- 2019-10-25 Version: 1.60.217
- - Initial construction.
- - Public beta version.
- - Supported AliyunController for Interface.
- - Supported ConsoleController for Interface.
- - Supported AccountController for Interface.
- 2019-10-25 Version: 1.60.216
- - Supported query push records.
- 2019-10-25 Version: 1.60.215
- - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
- 2019-10-24 Version: 1.60.214
- - Optimize instance relevant interface.
- 2019-10-24 Version: 1.60.213
- - Generated 2017-12-14 for `BssOpenApi`.
- 2019-10-24 Version: 1.60.212
- - Generated 2017-12-14 for `BssOpenApi`.
- 2019-10-23 Version: 1.60.211
- - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
- - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
- - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
- - Modify the data type of return field StorageLocation to String.
- - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
- 2019-10-23 Version: 1.60.210
- - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
- - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
- - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
- - Modify the data type of return field StorageLocation to String.
- - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
- 2019-10-23 Version: 1.60.209
- - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
- - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
- - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
- - Modify the data type of return field StorageLocation to String.
- - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
- 2019-10-22 Version: 1.60.208
- - Supported Sync predict for Image.
- - Supported Set Frame Frequency for Stream Predict.
- - Fixed Errore Code For APIs.
- 2019-10-22 Version: 1.60.207
- - RunInstances support AutoSnapshotPolicyId.
- 2019-10-22 Version: 1.60.206
- - Fix ListDatabases CatalogName dataType integer to string.
- - Remove GetLogicDatabase invalid output param named TotalCount.
- - Remove ListIndexes invalid output param named ColumnList.
- - Support SearchTable API to filter searchTarget.
- 2019-10-22 Version: 1.60.205
- - Supported ExternalId IMM.
- 2019-10-21 Version: 1.60.204
- - Release first version.
- 2019-10-21 Version: 1.60.203
- - Init the standard baas sdk.
- 2019-10-18 Version: 1.60.202
- - Generated 2019-09-10 for `DnsKnocker`.
- 2019-10-18 Version: 1.60.201
- - Modify Yundun-dbaudit DescribeInstanceAttribute InstanceStatus Type.
- 2019-10-17 Version: 1.60.200
- - Support instance manage API, includes UpdateInstance and DeleteInstance.
- - Support user manage API, includes ListUsers and UpdateUser.
- - Support meta data information API, includes ListInstances, ListDatabases, ListLogicDatabases, ListTables, ListLogicTables, ListColumns, ListIndexes.
- - Support meta data search API, inclues SearchDatabase, SearcTable.
- - Support RegisterInstance API to set datalinkName and useDsql option.
- 2019-10-16 Version: 1.60.199
- - Optimize instance relevant interface.
- 2019-10-16 Version: 1.60.198
- - Add ListTagResources OpenApi.
- - Add TagResources OpenApi.
- - Add UntagResources OpenApi.
- - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
- 2019-10-14 Version: 1.60.197
- - Optimize instance relevant interface.
- 2019-10-14 Version: 1.60.196
- - Support continuous pushing.
- 2019-10-13 Version: 1.60.195
- - Add instance relevant interface.
- 2019-10-12 Version: 1.60.194
- - Add new api.
- 2019-10-11 Version: 1.60.193
- - Add response paramete for DescribeDomainExtensionAttribute.
- 2019-10-11 Version: 1.60.192
- - Add new interface DescribeDomainExtensionAttribute.
- 2019-10-10 Version: 1.60.191
- - Generated 2014-05-15 for `Slb`.
- 2019-10-10 Version: 1.60.190
- - Generated 2015-04-01 for `Sts`.
- 2019-10-09 Version: 1.60.189
- - Add VideoCancelScan Api.
- 2019-10-09 Version: 1.60.188
- - Support API RecognizeImageColor.
- - Support API DetectImageElements.
- - Support API RecolorImage.
- - Support API SegmentImage.
- - Support API ChangeImageSize.
- - Support API ExtendImageStyle.
- - Support API RecognizeImageStyle.
- - Support API MakeSuperResolution.
- 2019-10-09 Version: 1.60.187
- - Generated 2018-11-11 for `PTS`.
- 2019-10-09 Version: 1.60.186
- - DescribeIntance status type modification.
- 2019-10-08 Version: 1.60.185
- - Supported Grab Frame IMM.
- 2019-10-08 Version: 1.60.184
- - Supported API MassPush for Push Message or Notice.
- 2019-10-08 Version: 1.60.183
- - Generated 2016-01-20 for `Kms`.
- 2019-09-29 Version: 1.60.182
- - Generated 2015-01-01 for `R-kvstore`.
- 2019-09-29 Version: 1.60.181
- - Add new api.
- 2019-09-26 Version: 1.60.180
- - Update AHAS GetSentinelAppSumMetric API.
- 2019-09-26 Version: 1.60.179
- - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
- - Add QuerySubsId.
- 2019-09-25 Version: 1.60.178
- - Add new api.
- 2019-09-25 Version: 1.60.177
- - Update AHAS GetSentinelAppSumMetric API.
- 2019-09-25 Version: 1.60.176
- - Fix the capitalization problem of Describe Site Monitor Data.
- 2019-09-24 Version: 1.60.175
- - Generated 2019-08-10 for `multimediaai`.
- 2019-09-23 Version: 1.60.174
- - Generated 2019-06-12 for `MaxCompute`.
- 2019-09-23 Version: 1.60.173
- - Add param, DescribePrice supprot ReservedInstance.
- 2019-09-20 Version: 1.60.172
- - Generated 2017-12-14 for `BssOpenApi`.
- 2019-09-20 Version: 1.60.171
- - Generated 2018-02-01, 2018-07-20 for `ddosbgp`.
- 2019-09-19 Version: 1.60.170
- - Supported Video Abstract for IMM.
- 2019-09-19 Version: 1.60.169
- - Supported Video Abstract for IMM.
- 2019-09-19 Version: 1.60.168
- - Add bizSubCode and so on.
- 2019-09-18 Version: 1.60.167
- - Support to update layout in task for MPU.
- 2019-09-18 Version: 1.60.166
- - Optimize error code.
- 2019-09-18 Version: 1.60.165
- - Supported Video Abstract for IMM.
- 2019-09-18 Version: 1.60.164
- - Generated 2019-09-10 for `waf-openapi`.
- 2019-09-18 Version: 1.60.163
- - Generated 2016-11-01 for `live`.
- 2019-09-18 Version: 1.60.162
- - Add AHAS OpenAPI version 2019-09-01.
- 2019-09-16 Version: 1.60.161
- - Generated 2019-09-10 for `waf-openapi`.
- 2019-09-16 Version: 1.60.160
- - Add Region List.
- 2019-09-16 Version: 1.60.159
- - Fixed go struct file.
- 2019-09-16 Version: 1.60.158
- - Generated 2019-09-10 for `waf-openapi`.
- 2019-09-16 Version: 1.60.157
- - Generated 2019-09-10 for `waf-openapi`.
- 2019-09-12 Version: 1.60.156
- - Add DescribePrePaidInstanceStock.
- 2019-09-12 Version: 1.60.155
- - Support RDS.
- 2019-09-09 Version: 1.60.154
- - CreateInstance add toen.
- - UpdateInstance add toen.
- 2019-09-09 Version: 1.60.153
- - Generated 2017-05-25 for `Dysmsapi`.
- 2019-09-06 Version: 1.60.152
- - Generated 2018-01-17 for `waf-openapi`.
- 2019-09-06 Version: 1.60.151
- - Supported specifying vswitch when creating vpngateway.
- 2019-09-06 Version: 1.60.150
- - Update endpoint data.
- 2019-09-06 Version: 1.60.149
- - Add ReleasePostPaidInstance.
- - Add ReleasePrePaidInstance.
- 2019-09-06 Version: 1.60.148
- - Generated 2016-04-28 for `Vpc`.
- 2019-09-06 Version: 1.60.147
- - Generated 2014-05-15 for `Slb`.
- 2019-09-05 Version: 1.60.146
- - Supported for setEndpoint method.
- 2019-09-05 Version: 1.60.145
- - Generated 2014-05-15 for `Slb`.
- 2019-09-05 Version: 1.60.144
- - Generated 2017-07-05 for `CCC`.
- 2019-09-05 Version: 1.60.143
- - Generated 2018-11-11 for `foas`.
- 2019-09-05 Version: 1.60.142
- - Add DescribeInstanceTypes.
- - Add DescribeReservedResource.
- - Add DescribeInstances.
- 2019-09-05 Version: 1.60.141
- - Generated 2019-05-24 for `cusanalytic_sc_online`.
- 2019-09-05 Version: 1.60.140
- - Generated 2015-11-01 for `Market`.
- 2019-09-05 Version: 1.60.139
- - Generated 2016-07-14 for `CloudAPI`.
- 2019-09-05 Version: 1.60.138
- - Generated 2017-08-01 for `polardb`.
- 2019-09-05 Version: 1.60.137
- - Generated 2017-12-14 for `BssOpenApi`.
- 2019-09-05 Version: 1.60.136
- - Generated 2014-05-26 for `Ecs`.
- 2019-09-03 Version: 1.60.135
- - Generated 2018-02-01, 2018-07-20 for `ddosbgp`.
- 2019-09-03 Version: 1.60.134
- - Generated 2018-02-01 for `ddosbgp`.
- 2019-09-03 Version: 1.60.133
- - Generated 2014-08-15 for `Rds`.
- 2019-08-30 Version: 1.60.132
- - Add describeRegions.
- - Add toen.
- 2019-08-30 Version: 1.60.131
- - Revert to 2015-09-01.
- 2019-08-30 Version: 1.60.130
- - Release Apis of Version 2019-09-10.
- 2019-08-30 Version: 1.60.129
- - Support latest DRDS Open API for version 2019-01-23.
- 2019-08-30 Version: 1.60.128
- - Supported Meida complex for IMM.
- 2019-08-30 Version: 1.60.127
- - Add api for getTrace and searchTracelist.
- 2019-08-29 Version: 1.60.126
- - Move StopExecution params to body.
- 2019-08-29 Version: 1.60.125
- - Bugfix.
- 2019-08-29 Version: 1.60.124
- - For publish.
- 2019-08-28 Version: 1.60.123
- - Update emr go api.
- 2019-08-28 Version: 1.60.122
- - Add DBS API UpgradeBackupPlan.
- - Add DBS API DescribePreCheckProgressList.
- 2019-08-28 Version: 1.60.121
- - Add NamespaceId for listApplication.
- 2019-08-27 Version: 1.60.120
- - Add ModifyDBInstanceAutoUpgradeMinorVersion Openapi.
- 2019-08-26 Version: 1.60.119
- - QueryInstanceBillResponse change ownerId type from Long to String.
- - QueryInstanceBillResponse change usage type from float to String.
- - QueryInstanceBillResponse change listPrice type from float to String.
- - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
- 2019-08-22 Version: 1.60.118
- - Support API RecognizeImageColor.
- - Support API DetectImageElements.
- - Support API RecolorImage.
- - Support API SegmentImage.
- - Support API ChangeImageSize.
- - Support API ExtendImageStyle.
- - Support API RecognizeImageStyle.
- - Support API MakeSuperResolutionImage.
- 2019-08-22 Version: 1.60.117
- - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
- 2019-08-22 Version: 1.60.116
- - Api getTopicList add a new return value.
- 2019-08-21 Version: 1.60.115
- - Supported for CPFS new feature of client evict.
- 2019-08-21 Version: 1.60.114
- - Move StartExecution params to body.
- 2019-08-21 Version: 1.60.113
- - Return backup job id when create backup.
- - Return backup set size when describe backups.
- 2019-08-21 Version: 1.60.112
- - Modify getTopicList and getConsumerList response.
- 2019-08-21 Version: 1.60.111
- - Modify getInstanceList response.
- 2019-08-20 Version: 1.60.110
- - API TaobaoFilmGetSchedules retrun col add hallId.
- 2019-08-19 Version: 1.60.109
- - Optimize topic create parameters.
- 2019-08-19 Version: 1.60.108
- - Optimize topic create parameters.
- 2019-08-18 Version: 1.60.107
- - Support go sdk.
- 2019-08-16 Version: 1.60.106
- - Generated 2018-02-01 for `ddosbgp`.
- 2019-08-15 Version: 1.60.105
- - FnF public version.
- - Add Report task api.
- 2019-08-15 Version: 1.60.104
- - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
- 2019-08-15 Version: 1.60.103
- - QueryInstanceBillResponse add ServicePeriod.
- 2019-08-14 Version: 1.60.102
- - Expose the interface to the yundun-console.
- - Update interface definitions of the cloudauth.
- 2019-08-13 Version: 1.60.101
- - Optimize return code.
- - Edit QueryDataset.
- 2019-08-13 Version: 1.60.100
- - Supported for openapi new version.
- 2019-08-13 Version: 1.60.99
- - Support latest DRDS Open API for version 2019-01-23.
- 2019-08-13 Version: 1.60.98
- - Generated 2018-07-20 for `ddosbgp`.
- 2019-08-12 Version: 1.60.97
- - Supported create routeEntry with routeEntryName.
- 2019-08-12 Version: 1.60.96
- - Support Defect Face API.
- 2019-08-08 Version: 1.60.95
- - Supported DryRun for Vpc and VSwitch.
- 2019-08-08 Version: 1.60.94
- - Add CreateStorageSet api to support storageSet.
- - Add DeleteStorageSet api to support storageSet.
- - Add ModifyStorageSetAttribute api to support storageSet.
- - Add DescribeStorageSets api to support storageSet.
- - Add DescribeStorageSetDetails api to support storageSet.
- - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
- - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
- - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
- 2019-08-08 Version: 1.60.93
- - Group, Plugin support tag authentication.
- 2019-08-07 Version: 1.60.92
- - Generated 2019-03-20 for `WebPlus`.
- 2019-08-06 Version: 1.60.91
- - Supported GetMediaMeta for IMM.
- 2019-08-06 Version: 1.60.90
- - Supported GetMediaMeta for IMM.
- 2019-08-06 Version: 1.60.89
- - Supported GetMediaMeta for IMM.
- 2019-08-06 Version: 1.60.88
- - Supported GetMediaMeta for IMM.
- 2019-08-06 Version: 1.60.87
- - Supported GetMediaMeta for IMM.
- 2019-08-06 Version: 1.60.86
- - Enhencement for CostOptimized scaling group.
- 2019-08-05 Version: 1.60.85
- - Add response parameter LoadBalancerId for DescribeMasterSlaveServerGroupAttribute interface.
- 2019-08-05 Version: 1.60.84
- - GetOrderDetail add originalConfig param.
- 2019-08-05 Version: 1.60.83
- - GetOrderDetail add originalConfig param.
- 2019-08-05 Version: 1.60.82
- - Modify DBS API DescribeFullBackupList.
- 2019-08-02 Version: 1.60.81
- - Add a lot of new API.
- 2019-08-02 Version: 1.60.80
- - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
- - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
- 2019-07-31 Version: 1.60.79
- - Endpoint auto route.
- 2019-07-31 Version: 1.60.78
- - Generated 2014-06-18 for `Mts`.
- 2019-07-30 Version: 1.60.77
- - Generated 2014-06-18 for `Mts`.
- 2019-07-26 Version: 1.60.76
- - Generated 2019-05-24 for `cusanalytic_sc_online`.
- 2019-07-26 Version: 1.60.75
- - Generated 2019-05-24 for `cusanalytic_sc_online`.
- 2019-07-25 Version: 1.60.74
- - Api createKey add optional parameter `ProtectionLevel`.
- - Api describeKey add a field `ProtectionLevel` in the response.
- - Add Api `DescribeService`.
- 2019-07-25 Version: 1.60.73
- - Generated 2016-07-14 for `CloudAPI`.
- 2019-07-25 Version: 1.60.72
- - App-related actions support tag authentication.
- 2019-07-23 Version: 1.60.71
- - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
- 2019-07-19 Version: 1.60.70
- - QueryMonthlyBillResponse add roundDownDiscount.
- - QueryBillResponse add roundDownDiscount.
- - QueryInstanceBillResponse add item.
- 2019-07-18 Version: 1.60.69
- - Fix resolve wrong tagname IOS to iOS.
- 2019-07-18 Version: 1.60.68
- - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
- - Change the field MediaId of SubmitAIJob api to non-mandatory.
- 2019-07-18 Version: 1.60.67
- - Supported open api for dbaudit management.
- 2019-07-15 Version: 1.60.66
- - Add filed `internalDomain` for api `get token`.
- 2019-07-12 Version: 1.60.65
- - Public api AddLivePullStreamInfoConfig.
- 2019-07-11 Version: 1.60.64
- - Modify CreateBackupPlan.
- - Modify ConfigureBackupPlan.
- - Modify DescribeFullBackupList.
- - Modify DescribeRestoreTaskList.
- - Add ModifyBackupSourceEndpoint.
- - Add ModifyBackupStrategy.
- - Add ModifyBackupPlanName.
- 2019-07-08 Version: 1.60.63
- - ActionName change to OOSActionName from ListActions API param and response.
- 2019-07-05 Version: 1.60.62
- - Add TaskCancelStatus for QueryTaskList api.
- 2019-07-05 Version: 1.60.61
- - Generated 2015-04-01 for `Sts`.
- 2019-07-05 Version: 1.60.60
- - Generated 2015-04-01 for `Sts`.
- 2019-07-04 Version: 1.60.59
- - Supported API DescribeRecordStatisticsy for Query Volume.
- - Supported API DescribeDomainStatistics for Query Volume.
- 2019-07-03 Version: 1.60.58
- - Supported API DescribeRecordStatisticsSummary for Query Volume.
- - Supported API DescribeDomainStatisticsSummary for Query Volume.
- - Supported API DescribeRecordStatisticsHistory for Query Volume.
- - Supported API DescribeDomainDnsStatistics for Query Volume.
- 2019-07-02 Version: 1.60.57
- - FnF public version.
- 2019-07-01 Version: 1.60.56
- - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
- - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
- - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
- - Add RetentionDays to snapshot creating.
- 2019-06-27 Version: 1.60.55
- - Added setting of crop_mode parameter.
- 2019-06-25 Version: 1.60.54
- - Enhencement for CostOptimized scaling group.
- 2019-06-24 Version: 1.60.53
- - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
- - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
- - 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.
- - 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.
- 2019-06-24 Version: 1.60.52
- - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
- - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
- - 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.
- - 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.
- 2019-06-21 Version: 1.60.51
- - Support DeleteProtection api.
- 2019-06-20 Version: 1.60.50
- - OOS SDK first release for managing of templates, executions and actions.
- 2019-06-19 Version: 1.60.49
- 1, Add DefaultPolicyVersion as return field to GetPolicy interface, Facilitating to get policy document from this interface.
- 2, Add RotateStrategy as input field to CreatePolicyVersion interface for rotating policy version when reaching policy version limit.
- 2019-06-18 Version: 1.60.48
- 1. Supported the related recommend.
- 2. Supported exposure time controll and exposure filter by scene.
- 2019-06-17 Version: 1.60.47
- companyreg release
- 2019-06-14 Version: 1.60.46
- - Generated 2018-01-20 for `Iot`
- 2019-06-14 Version: 1.60.45
- 1. govendor rds sdk code problem.
- 2019-06-13 Version: 1.60.44
- 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
- 2019-06-13 Version: 1.60.43
- - Generated 2015-01-01 for `R-kvstore`
- 2019-06-13 Version: 1.60.42
- Add Network Assistant openapi sdk
- 2019-06-13 Version: 1.60.41
- 1, add DescribeAvailableResource OpenApi.
- 2, upgrade version to 2.3.8
- 2019-06-12 Version: 1.60.40
- 1, Add RenewBackupPlan DBS interface.
- 2019-06-12 Version: 1.60.39
- 1.Fix bug
- 2019-06-12 Version: 1.60.38
- 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
- 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
- 3, Add CreateDataAPIService interface, support create data api with sql statement.
- 2019-06-06 Version: 1.60.37
- 1, Add RuleId in DescribeRuleAttribute.
- 2019-06-05 Version: 1.60.36
- 1, Update DescribeDataLimitDetail interface, add password for response
- 2019-06-04 Version: 1.60.35
- 1, Add new API: UpdateLivePullStreamInfoConfig
- 2019-06-03 Version: 1.60.34
- 1, Add openapi of ACL.
- 2019-06-03 Version: 1.60.33
- 1, Order info add relatedOrderId.
- 2019-05-31 Version: 1.60.32
- 1, add api 'search traces count'
- 2, add page index for api 'searchTraces'
- 2019-05-31 Version: 1.60.31
- 1, Add authority in GetMaterials API.
- 2019-05-30 Version: 1.60.30
- Fix: Handle the repeatlist parameter correctly
- 2019-05-30 Version: 1.60.29
- 1.Fix: Handle the repeatlist parameter correctly
- 2019-05-30 Version: 1.60.28
- 1. Re-generate for STS-2015-04-01.
- 2019-05-30 Version: 1.60.27
- 1. Re-generate for STS 2015-04-01.
- 2019-05-29 Version: 1.60.26
- 1, Fix ServiceCode typo in request
- 2019-05-29 Version: 1.60.25
- 1, Modify DescribeRestoreTaskList DBS interface.
- 2, Modify DescribeFullBackupList DBS interface.
- 2019-05-28 Version: 1.60.24
- 1, CreateDBInstance now support autoRenew
- 2019-05-27 Version: 1.60.23
- 1, Support video transcode.
- 2019-05-27 Version: 1.60.22
- 1, Initial release of api, including data management api, rule configuration api and system configuration api.
- 2019-05-24 Version: 1.60.21
- 1, The list of site monitoring probes adds ISP and city fields in English.
- 2, Fixed the capitalization problem of Describe MetricData and Describe Site Monitor Statistics API metricName.
- 2019-05-23 Version: 1.60.20
- 1, Fixed bug of the JSON list in GO sdk.
- 2019-05-22 Version: 1.60.19
- 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
- 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
- 2019-05-20 Version: 1.60.18
- 1, Added the cross zones supported.
- 2019-05-20 Version: 1.60.17
- 1, Add both api, ListNotaryInfos
- 2019-05-20 Version: 1.60.16
- 1, Initial release of api, including data management api, rule configuration api and system configuration api.
- 2019-05-20 Version: 1.60.15
- 1, DescribeRouteTableList add route table status
- 2, DescribeRouteTables add route table status
- 2019-05-18 Version: 1.60.14
- 1, Add ModifyBackupObjects DBS interface.
- 2019-05-16 Version: 1.60.13
- 1, Update SDK Version
- 2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public
- 2019-05-16 Version: 1.60.12
- 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
- 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
- 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
- 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
- 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
- 6, Add the field named UserData to SubmitSnapshotJob api request.
- 2019-05-16 Version: 1.60.11
- 1, Update SDK Version
- 2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public
- 2019-05-16 Version: 1.60.10
- 1, Update SDK version
- 2, Add api DescribeClusterAddonsVersion
- 2019-05-16 Version: 1.60.9
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-05-16 Version: 1.60.8
- 1, Scaling configuration add security group ids
- 2019-05-15 Version: 1.60.7
- 1, Add InstanceId parameter to api CreateDisk
- 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
- 3, Add SecurityGroupIds parameter to Instance creation apis.
- 2019-05-14 Version: 1.60.6
- 1, Support body detect.
- 2019-05-14 Version: 1.60.5
- 1, support body detect
- 2019-05-14 Version: 1.60.4
- 1, Support body detect.
- 2019-05-14 Version: 1.60.3
- 1, Support body detect.
- 2019-05-14 Version: 1.60.2
- 1, Support body detect.
- 2019-05-14 Version: 1.60.1
- 1, Support body detect.
- 2019-05-13 Version: 1.60.0
- 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
- 2019-05-13 Version: 1.59.0
- 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
- 2019-05-13 Version: 1.58.11
- 1, Support for creating instances and joining multiple security groups at the same time.
- 2019-05-13 Version: 1.58.10
- 1, Add Vpc openapi interface,Support for new fields.
- 2, Support for nacl openapi.
- 3, Fixed some problems of the vpc openapi.
- 2019-05-13 Version: 1.58.9
- 1, Modify CreateRestoreTaskRequest DBS interface.
- 2019-05-05 Version: 1.58.8
- 1, CreateInstance add ClientToken parameter.
- 2019-04-29 Version: 1.58.7
- 1, add new api
- 2019-04-28 Version: 1.58.6
- 1, Publish DescribeAvailableResource.
- 2019-04-26 Version: 1.58.5
- 1, Add resource describe api.
- 2019-04-26 Version: 1.58.4
- 1, add new openapi.
- 2019-04-25 Version: 1.58.3
- 1, The alarm contact interface increases paging parameters
- 2019-04-25 Version: 1.58.2
- 1, upgrade sdk version.
- 2019-04-23 Version: 1.58.1
- 1, Support mounting multiple volumes using different protocol
- 2, Support scaling out cross AZ
- 2019-04-23 Version: 1.58.0
- 1, Add a new api, QueryDomainByDomainName.
- 2019-04-22 Version: 1.57.1
- 1, Add interface ModifyDBNodeClass.
- 2, Add interface ModifyAutoRenewAttribute and DescribeAutoRenewAttribute.
- 3, Param AutoRenew is supported in interface CreateDBCluster.
- 2019-04-22 Version: 1.57.0
- 1, Add a new api, QueryDomainByDomainName.
- 2019-04-22 Version: 1.56.14
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-04-22 Version: 1.56.13
- 1, Add CreateDBCluster interface;
- 2, Add CreateDBNodes interface;
- 2019-04-18 Version: 1.56.12
- 1, New service
- 2019-04-18 Version: 1.56.11
- 1, CreateCacheAnalysisTask prop modify
- 2019-04-18 Version: 1.56.10
- 1, add ReservedInstance API.
- 2019-04-17 Version: 1.56.9
- 1, Add DescribeRestoreTaskList DBS interface.
- 2, Add DescribeNodeCidrList DBS interface.
- 2019-04-16 Version: 1.56.8
- 1, Fixed DescribeAccounts response type error.
- 2019-04-16 Version: 1.56.7
- 1, Add api about pushing security check commands
- 2019-04-16 Version: 1.56.6
- 1, Fixed describeAccounts response type error
- 2019-04-16 Version: 1.56.5
- 1, Mark CreateDiagnosticReport as public api.
- 2, ModifySecurityIps support modifyMode parameter.
- 2019-04-16 Version: 1.56.4
- 1, Add group api.
- 2019-04-16 Version: 1.56.3
- 1, Add group api.
- 2019-04-16 Version: 1.56.2
- 1, Add group api.
- 2019-04-16 Version: 1.56.1
- 1, Add group api.
- 2019-04-16 Version: 1.56.0
- 1, Add the go version of sdk.
- 2019-04-15 Version: 1.55.7
- 1, Add SDK for goLang version.
- 2019-04-15 Version: 1.55.6
- 1, Add CreateRestoreTask DBS interface.
- 2, Add StartRestoreTask DBS interface.
- 2019-04-15 Version: 1.55.5
- 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
- 2019-04-15 Version: 1.55.4
- 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
- 2019-04-15 Version: 1.55.3
- 1, Add Group Api.
- 2019-04-11 Version: 1.55.2
- 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
- 2019-04-11 Version: 1.55.1
- 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
- 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
- 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
- 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
- 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.
- 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.
- 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
- 8, Add a new field named AttachedMedia to api response to support the attached media feature.
- 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
- 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.
- 2019-04-11 Version: 1.55.0
- 1, Release AddImage/SearchImage/DeleteImage OpenApi.
- 2, Add 'SearchByName' feature to SearchImage
- 2019-04-10 Version: 1.54.1
- 1, Modify DescribeBackupGatewayList DBS interface.
- 2019-04-10 Version: 1.54.0
- 1, New APIs for visual service (VNC).
- 2, New APIs for software management.
- 3, New APIs for CPFS filesystem.
- 2019-04-09 Version: 1.53.93
- 1, Add APIs: TagResource, UntagResource, ListResourceTags.
- 2, Remove the optional parameter 'STSToken' and replace it with 'SecurityToken'.
- 2019-04-09 Version: 1.53.92
- 1, support service account management networkInterface function.
- 2019-04-09 Version: 1.53.91
- 1, Add Apis for offline VerifySDK.
- 2019-04-08 Version: 1.53.90
- 1, Modify DescribeBackupPlanList DBS interface.
- 2, Modify DescribeFullBackupList DBS interface.
- 3, Modify DescribeIncrementBackupList DBS interface.
- 4, Modify DescribeBackupGatewayList DBS interface.
- 2019-04-08 Version: 1.53.89
- 1, Add StopBackupPlan DBS interface.
- 2, Add DescribeBackupPlanList DBS interface.
- 3, Add DescribeFullBackupList DBS interface.
- 4, Add DescribeIncrementBackupList DBS interface.
- 5, Add DescribeBackupGatewayList DBS interface.
- 2019-04-04 Version: 1.53.88
- 1, ScalingConf systemDisk add DiskName and Description parameters.
- 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
- 2019-04-03 Version: 1.53.87
- 1, Support DNAT/ENI/Online user count features.
- 2019-04-03 Version: 1.53.86
- 1, Add interfaces related to vulnerability whitelist
- 2, Add interfaces related to vulnerability auto-del configuration
- 3, Add interfaces related to vulnerability fix advise
- 4, Add interfaces searching and operating vulnerability
- 2019-03-29 Version: 1.53.85
- 1, fix MNS Query params
- 2019-03-29 Version: 1.53.84
- 1, Fix error version
- 2019-03-29 Version: 1.53.83
- 1, Add DLQ message openAPI.
- 2, Add Query the subscription relational openAPI.
- 3, Remove white list restrictions.
- 2019-03-28 Version: 1.53.82
- 1, EDAS serverless support Pandora application deployment in war/jar mode
- 2019-03-28 Version: 1.53.81
- 1, Add multiple language support in DescribeZones
- 2, Add gray parameter in CreateDisk
- 2019-03-28 Version: 1.53.80
- 1, Add instance remark modify api.
- 2019-03-28 Version: 1.53.79
- 1, Add logo detect.
- 2019-03-27 Version: 1.53.78
- 1, Add Project interface.
- 2, Add Tag interface.
- 3, Add TrainData interface.
- 4, Add Train interface.
- 5, Add Iteration interface.
- 6, Add Predict interface.
- 7, Add PredictData interface.
- 2019-03-27 Version: 1.53.77
- 1, Add Project interface.
- 2, Add Tag interface.
- 3, Add TrainData interface.
- 4, Add Train interface.
- 5, Add Iteration interface.
- 6, Add Predict interface.
- 7, Add PredictData interface.
- 2019-03-27 Version: 1.53.76
- 1, Add DLQ message openAPI.
- 2, Add Query the subscription relational openAPI.
- 3, Remove white list restrictions.
- 2019-03-27 Version: 1.53.75
- 1, Add DLQ message openAPI.
- 2, Add Query the subscription relational openAPI.
- 3, Remove white list restrictions.
- 2019-03-21 Version: 1.53.74
- 1, Update Dependency
- 2019-03-21 Version: 1.53.73
- 1, Update Dependency
- 2019-03-20 Version: 1.53.72
- 1, Update the Dependency
- 2019-03-20 Version: 1.53.71
- 1, Update the Dependency
- 2019-03-20 Version: 1.53.70
- 1, Update the Dependency
- 2019-03-20 Version: 1.53.69
- 1, Update the Dependency
- 2019-03-20 Version: 1.53.68
- 1, Update Dependency
- 2019-03-19 Version: 1.53.67
- 1, Support ' fc ' Source DomainName
- 2019-03-19 Version: 1.53.66
- 1, move fields: tag, associate_person, cid
- 2019-03-19 Version: 1.53.65
- 1, format fields: tags, associatePerson
- 2019-03-19 Version: 1.53.63
- 1, Update Dependency
- 2019-03-19 Version: 1.53.62
- 1, Update Dependency
- 2019-03-19 Version: 1.53.61
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-03-18 Version: 1.53.60
- 1, Signature Document SDK.
- 2, First version publish.
- 3, Beta Version SDK
- 2019-03-18 Version: 1.53.59
- 1, Update Dependency
- 2019-03-18 Version: 1.53.58
- 1, move AssociatePerson\Tag field
- 2, Optimize RealName field
- 2019-03-18 Version: 1.53.57
- 1, Update Dependency
- 2019-03-18 Version: 1.53.56
- 1, Update Dependency
- 2019-03-18 Version: 1.53.55
- 1, Update Dependency
- 2019-03-18 Version: 1.53.54
- 1, Update Dependency
- 2019-03-15 Version: 1.53.53
- 1, update api info
- 2019-03-15 Version: 1.53.52
- 1, Update Dependency
- 2019-03-15 Version: 1.53.51
- 1, Update Dependency
- 2019-03-15 Version: 1.53.50
- 1, Update Dependency
- 2019-03-15 Version: 1.53.49
- 1, Update Dependency
- 2019-03-15 Version: 1.53.48
- 1, Update Dependency
- 2019-03-15 Version: 1.53.47
- 1, Update Dependency
- 2019-03-15 Version: 1.53.46
- 1, update RemoveInstances, support to delete 50 instances at a time.
- 2019-03-15 Version: 1.53.45
- 1, Update Dependency
- 2019-03-15 Version: 1.53.44
- 1, Update Dependency
- 2019-03-15 Version: 1.53.43
- 1, Update Dependency
- 2019-03-15 Version: 1.53.42
- 1, Update Dependency
- 2019-03-14 Version: 1.53.41
- 1, Update Dependency
- 2019-03-14 Version: 1.53.40
- 1, Update Dependency
- 2019-03-14 Version: 1.53.39
- 1, Update Dependency
- 2019-03-14 Version: 1.53.38
- 1, Update Dependency
- 2019-03-14 Version: 1.53.37
- 1, Update Dependency
- 2019-03-14 Version: 1.53.36
- 1, Update Dependency
- 2019-03-14 Version: 1.53.35
- 1, Update Dependency
- 2019-03-14 Version: 1.53.34
- 1, Update Dependency
- 2019-03-14 Version: 1.53.33
- 1, Update Dependency
- 2019-03-13 Version: 1.53.32
- 1, Update Dependency
- 2019-03-13 Version: 1.53.31
- 1, Update Dependency
- 2019-03-13 Version: 1.53.30
- 1, Update Dependency
- 2019-03-13 Version: 1.53.29
- 1, Distinguish between system and service parameters
- 2019-03-13 Version: 1.53.28
- 1, add DescribeDemands interface
- 2019-03-13 Version: 1.53.27
- 1, Distinguish between system and service parameters
- 2019-03-13 Version: 1.53.26
- 1, Distinguish between system and service parameters
- 2019-03-12 Version: 1.53.25
- 1, Add application name support for config center APIs.
- 2, Add GetCluster API.
- 3, Support debug switch in user region APIs.
- 2019-03-12 Version: 1.53.24
- 1, Add Vpc openapi interface,Support for new fields.
- 2, Support for ipv6 gateway openapi.
- 3, Fixed some problems of the vpc openapi.
- 2019-03-12 Version: 1.53.23
- 1, add agency infomation
- 2, update sdk core resources
- 2019-03-11 Version: 1.53.22
- 1, add agency infomation
- 2, update sdk core resources
- 2019-03-11 Version: 1.53.21
- 1, Add face grouping feature .
- 2, Add head pose and face quality.
- 2019-03-11 Version: 1.53.20
- 1, Update aliyun-java-sdk-core version.
- 2019-03-08 Version: 1.53.19
- 1, Publish instance spec describe api.
- 2019-03-08 Version: 1.53.18
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-03-07 Version: 1.53.17
- 1, Fix go api miss service_code problem
- 2019-03-07 Version: 1.53.16
- 1, Change service code to acr
- 2019-03-07 Version: 1.53.15
- 1, Publish instance describe and release apis.
- 2019-03-06 Version: 1.53.14
- 1, Release ActionTrail Go API.
- 2019-03-06 Version: 1.53.13
- 1, Update Service Code.
- 2019-03-05 Version: 1.53.12
- 1, Update the SDK version to 1.2.4
- 2019-03-04 Version: 1.53.11
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-03-01 Version: 1.53.10
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-03-01 Version: 1.53.9
- 1, Support Build Function Compute Backend By SDK
- 2019-03-01 Version: 1.53.8
- 1, Add API QueryRegionConfig
- 2, Add API SynchronizeResource
- 2019-02-28 Version: 1.53.7
- 1, Add new apis named ListTranscodeTask, GetTranscodeTask, GetTranscodeSummary.
- 2, Add the new field named TranscodeTemplateIds and ForceDelGroup to DeleteTranscodeTemplateGroup api request, and add a new field named NonExistTranscodeTemplateIds to the api response.
- 3, Add a new field named Rotate in VideoStream of Mezzanine struct to GetMezzanineInfo api response .
- 4, Add a new field named Status in ImageInfo to GetImageInfo api response.
- 5, Add a new field named CustomMediaInfo to UpdateVideoInfo, GetVideoInfo and SearchMedia api to support the custom mediaInfo feature.
- 6, Add a new filed named PlayInfoList and some Audit fields to SearchMedia api response.
- 7, Clean up an api named DeleteTranscodeTemplates, which is replaced with the api named DeleteTranscodeTemplateGroup.
- 2019-02-27 Version: 1.53.6
- 1, Add three APIs for tag. APIs : TagResources, UntagResources, ListTagResources.
- 2019-02-27 Version: 1.53.5
- 1, Update Config API.
- 2019-02-26 Version: 1.53.4
- 1, Industry brain v1.3.7 release
- 2, Add asynchronous APIs
- 3, version 1.3.7
- 2019-02-26 Version: 1.53.3
- 1, Add interface of tag.
- 2, Add tag info in DescribeDBClusters and DescribeDBClusterAttribute.
- 2019-02-25 Version: 1.53.2
- 1, add opensearch to GO sdk
- 2019-02-22 Version: 1.53.1
- 1, Fixed QueryAvailableInstances response unmarshal problem
- 2019-02-21 Version: 1.53.0
- 1, New DeleteDeviceGroup interface.
- 2, New DeleteDeviceAllGroup interface.
- 3, New GroupId fields for QuerySyncPicSchedule input parameter.
- 4, New GroupId fields for QueryAddUserInfo input parameter.
- 2019-02-20 Version: 1.52.2
- 1, Add code and message to inovkeService API
- 2, User could check code and message to get more specific information
- 3, 1.0.0 alpha release
- 2019-02-18 Version: 1.52.1
- 1, Initialization release SDK. EDAS now supports SDK implemented by current programming language.
- 2019-02-18 Version: 1.52.0
- 1, Instantiation: adding the property of instance.
- 2, Replace the "ProducerId" and "ConsumerId" properties with "GROUP_ID".
- 3, Remove parameter OnsRegionId to simplified usage.
- 2019-02-18 Version: 1.51.28
- 1, industrial-brain release.
- 2, publish SDK to public package stores.
- 3, 1.0.0 including all APIs in doc.
- 2019-02-18 Version: 1.51.27
- 1, Add DryRun into StartInstance, StopInstance and RebootInstance.
- 2, Add snapshot operations: ExportSnapshot and ImportSnapshot
- 2019-02-17 Version: 1.51.26
- 1, API definition support 'ForceNonceCheck', 'DisableInternet' parameter settings
- 2019-02-15 Version: 1.51.25
- 1, Modify DescribeDBInstances LastDowngradeTime DataType
- 2019-02-14 Version: 1.51.24
- 1, Update DescribeCdnTypes.
- 2019-02-14 Version: 1.51.23
- 1, Update DescribeTopDomainsByFlow.
- 2019-01-30 Version: 1.51.22
- 1, Add a new api called GetURLUploadInfos to query the upload task of UploadMediaByURL.
- 2, Clean up the old api related to the CDN of VoD that is going offline, such as DescribeDomainBpsData, is replaced with the new CDN api.
- 3, Clean up the old AI related apis of VoD, such as SubmitAIASRJob, is replaced with the new AI api.
- 4, Clean up an api called GetVideoPlayInfo, which is used by the old player SDKs that are no longer supported.
- 5, Clean up some apis that used only by the VoD console to avoid misuse, such as OpenVodService.
- 2019-01-30 Version: 1.51.21
- 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
- 2019-01-30 Version: 1.51.20
- 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
- 2019-01-30 Version: 1.51.19
- 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
- 2019-01-30 Version: 1.51.18
- 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
- 2019-01-30 Version: 1.51.17
- 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
- 2019-01-29 Version: 1.51.16
- 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
- 2019-01-29 Version: 1.51.15
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2019-01-29 Version: 1.51.14
- 1, Make obsolete api offline.
- 2, Fix some bug.
- 2019-01-28 Version: 1.51.13
- 1, Release 3 new Alibaba Cloud Bill API(QueryBillOverview、QueryBill、QueryInstanceBill).
- 2, Kindly suggest replace to new APIs who is using the old ones(QueryMonthlyBill、QuerySettlementBill、QueryMonthlyInstanceConsumption).
- 2019-01-28 Version: 1.51.12
- 1, Support modify vSwitch of scalingGroup.
- 2, Support new target tracking scaling rule.
- 2019-01-28 Version: 1.51.11
- 1, modify DescribeSlowLogs OpenApi.
- 2019-01-23 Version: 1.51.10
- 1, release new version
- 2019-01-23 Version: 1.51.9
- 1, release new version
- 2019-01-23 Version: 1.51.8
- 1, new go version
- 2019-01-23 Version: 1.51.7
- 1, Add model relevant parameter
- 1, Add plugin relevant parameter
- 2019-01-23 Version: 1.51.6
- 1, Add model relevant parameter
- 2019-01-23 Version: 1.51.5
- 1, support plugin
- 2, support model
- 2019-01-23 Version: 1.51.4
- 1, Add model relevant parameter
- 2019-01-22 Version: 1.51.3
- 1, Add model relevant parameters
- 2019-01-22 Version: 1.51.2
- 1, support Stack Policy setting .
- 2019-01-21 Version: 1.51.1
- 1, Interface DescribePluginApis returns the modification
- 2019-01-17 Version: 1.51.0
- 1, Add api AcceptInquiredSystemEvent.
- 2, Add ExtendedAttribute to response of api DescribeInstanceHistoryEvents.
- 3, Add ExtendedAttribute to response of api DescribeInstancesFullStatus.
- 2019-01-16 Version: 1.50.10
- 1, The plugin feature is released and supports a variety of plugins, as follows:trafficControl、backendSignature、ipControl、jwtAuth、cors、caching
- 2019-01-15 Version: 1.50.9
- 1, Add SubmitVerification API for RPMin solution.
- 2, Return authority comparison score in GetStatus, SubmitMaterials and SubmitVerification.
- 2019-01-15 Version: 1.50.8
- 1, Go Lang API release
- 2, Support UploadCertificate,CertficateList function;
- 2019-01-15 Version: 1.50.7
- 1, Add new apis called AddTranscodeTemplateGroup, UpdateTranscodeTemplateGroup, ListTranscodeTemplateGroup, GetTranscodeTemplateGroup, SetDefaultTranscodeTemplateGroup ,DeleteTranscodeTemplateGroup and DeleteTranscodeTemplates which support transcode template feature.
- 2, Add new apis called AddAITemplate, DeleteAITemplate, UpdateAITemplate, GetAITemplate, ListAITemplate, GetDefaultAITemplate and SetDefaultAITemplate which support AI template feature.
- 3, Add new apis called SubmitAIMediaAuditJob, GetAIMediaAuditJob, GetMediaAuditResult, GetMediaAuditResultTimeline which support AIMediaAudit feature.
- 4, Add the field named Priority to SubmitTranscodeJobs api request.
- 5, Add the field named UserData to UploadMediaByURL api request.
- 6, Add the field named UserData to CreateUploadImage api request.
- 7, Add the field named UserData to CreateUploadAttachedMedia api request.
- 2019-01-14 Version: 1.50.6
- 1, Release Go SDK for CR
- 2019-01-11 Version: 1.50.5
- 1, CreateOfficeConversionTask, ConvertOfficeFormat support Hidecomments
- 2019-01-10 Version: 1.50.4
- 1, regenerated for ECS/2014-05-26
- 2019-01-10 Version: 1.50.3
- 1, Add fields for QueryBrokerDemand api.
- 2019-01-09 Version: 1.50.2
- 1, Add user role support.
- 2019-01-09 Version: 1.50.1
- 1, Add user role support.
- 2, Add new APIs for IMM.
- 2019-01-07 Version: 1.50.0
- 1, Airec SDK Release Version 1.0.0.
- 2019-01-04 Version: 1.49.4
- 1, modify DescribeSlowLogs, support query param SQLHASH, remove SQLID query param.
- 2, modify DescribeSlowLogRecords, response values add SQLHASH, remove SQLID.
- 3, upgrade rds sdk version 2.3.1.
- 2019-01-04 Version: 1.49.3
- 1, Change the DescribeInstance response esConfig List => Map
- 2018-12-29 Version: 1.49.2
- 1, re-generate go sdk for sts.
- 2018-12-29 Version: 1.49.1
- 1, re-generate Go SDK for RAM
- 2018-12-29 Version: 1.49.0
- 1, Add EnableUser interface, Support admin user to enable another user.
- 2, Add DisableUser Interface, Support admin user to disable another user.
- 3, Add DeleteUser Interface, Support admin user to delete another user.
- 2018-12-29 Version: 1.48.8
- 1, Add new set image video api
- 2018-12-28 Version: 1.48.7
- 1, Add new set image video api
- 2018-12-28 Version: 1.48.6
- 1, Add new set image video api
- 2018-12-28 Version: 1.48.5
- 1, Add new set image video api
- 2018-12-28 Version: 1.48.4
- 1, Add new set image video api.
- 2018-12-28 Version: 1.48.3
- 1, Add new set image video api.
- 2, Add video async task api.
- 2018-12-27 Version: 1.48.2
- 1, fix php sdk
- 2018-12-27 Version: 1.48.1
- 1, Add DescribeZones Api.
- 2018-12-27 Version: 1.48.0
- 1, Elasticsearch GO sdk release.
- 2018-12-25 Version: 1.47.3
- 1, Add interface of endpoint.
- 2, Add interface of cluster parameter.
- 2018-12-21 Version: 1.47.2
- 1, ARMS SDK 2018-12-19 go sdk upload
- 2018-12-20 Version: 1.47.1
- 1, Sync CDN API.
- 2018-12-20 Version: 1.47.0
- 1, Add Dns Sec apis.
- 2, Add coupon and promotion fields for order apis.
- 2018-12-20 Version: 1.46.0
- 1, Add Dns Sec apis.
- 2, Add coupon and promotion fields for order apis.
- 2018-12-17 Version: 1.45.3
- 1, Add EnableBillGeneration interface.
- 2, Authorization for Virtual Network Operator.
- 2018-12-17 Version: 1.45.2
- 1, First Release
- 2018-12-16 Version: 1.45.1
- 1, Add a new api called AddMediaSequences to add media sequences of vod videos with in/out or live streams with start time/end time.
- 2018-12-15 Version: 1.45.0
- 1, first release
- 2, this SDK is for control purposes, programmatic interface of HTTPDNS console: https://httpdns.console.aliyun.com
- 2018-12-14 Version: 1.44.2
- 1, fixed sdk unit loute .
- 2, upgrade rds sdk version 2.2.0.
- 2018-12-14 Version: 1.44.1
- 1, fix service code to rds
- 2018-12-13 Version: 1.44.0
- 1, Add SystemDiskSize in CreateCluster and AddNodes, add more parameters in RecoverCluster
- 2018-12-12 Version: 1.43.15
- 1, Add interface GrantAccountPrivilege;
- 2, Add interface RevokeAccountPrivilege;
- 2018-12-12 Version: 1.43.14
- 1, Sync CDN API.
- 2018-12-12 Version: 1.43.13
- 1, Fix a bug.
- 2018-12-12 Version: 1.43.12
- 1, Sync CDN API.
- 2018-12-11 Version: 1.43.11
- 1, Sync CDN API.
- 2018-12-11 Version: 1.43.10
- 1, Sync CDN API.
- 2018-12-11 Version: 1.43.9
- 1, Release Location Go SDK
- 2018-12-11 Version: 1.43.8
- 1, DescribeAccount support OwnerAccount params.
- 2, Upgrade Rds SDK Version to 2.3.0
- 2018-12-11 Version: 1.43.7
- 1, Modify DescribeDBInstances OpenApi lastDowngradeTime dataType.
- 2, Upgrade SDK Version to 2.0.3.
- 2018-12-11 Version: 1.43.6
- 1, Sync CDN API.
- 2018-12-11 Version: 1.43.5
- 1, Add ModifyInstanceVpcAuthMode OpenApi.
- 2, Upgrade SDK Version to 2.0.4.
- 2018-12-06 Version: 1.43.4
- 1, Add api RedeployInstance
- 2018-12-06 Version: 1.43.3
- 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
- 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
- 2018-12-05 Version: 1.43.2
- 1, Scaling group support vServerGroup.
- 2018-12-05 Version: 1.43.1
- 1, Add image async job.
- 2, Fix group bug.
- 2018-12-04 Version: 1.43.0
- 1, The first release of Alibaba Cloud BaaS SDK
- 2018-12-03 Version: 1.42.10
- 1, Sync CDN API.
- 2018-12-03 Version: 1.42.9
- 1, Sync CDN API.
- 2018-12-03 Version: 1.42.8
- 1, Update 2014-11-11 API.
- 2018-12-03 Version: 1.42.7
- 1, Add a parameter to RemoveInstances.
- 2018-11-30 Version: 1.42.6
- 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
- 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
- 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
- 2018-11-29 Version: 1.42.5
- 1, This is the first version of Uis service.
- 2018-11-28 Version: 1.42.4
- 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
- 2018-11-27 Version: 1.42.3
- 1, ConvertOfficeFormat support TgtFilePrefix, TgtFileSuffix, TgtFilePages, FitToPagesTall, FitToPagesWide
- 2018-11-27 Version: 1.42.2
- 1, add doc index api
- 2018-11-27 Version: 1.42.1
- 1, api for custom keyword lib、similartext lib、voice keyword lib
- 2, api for custom image lib
- 3, support client file detect for image detection scenes、voice detection scenes、video detection scenes、file detection scenes
- 2018-11-26 Version: 1.42.0
- 1, Add RegisterInstance interface, Support admin or DBA user to register new db instance.
- 2, Add RegisterUser Interface, Support admin user to register new user.
- 3, Add GetOpLog Interface, Support admin user to get operation log.
- 2018-11-22 Version: 1.41.2
- 1, Increase the scene field
- 2018-11-22 Version: 1.41.1
- 1, Provide attribute info for DescribePricingModule api.
- 2018-11-22 Version: 1.41.0
- 1, Add ScrollDomainList api.
- 2, Add email filter for QueryRegistrantProfile.
- 2018-11-22 Version: 1.40.4
- 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
- 2018-11-21 Version: 1.40.3
- 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
- 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
- 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
- 2018-11-20 Version: 1.40.2
- 1, Fix Compatibility Problems
- 2018-11-20 Version: 1.40.1
- 1, Add MNS STS Token Query API
- 2, Add MNS Minimal Package
- 2018-11-19 Version: 1.40.0
- 1, Add field BargainSellerPrice and BargainSellerMobile
- 2018-11-19 Version: 1.39.3
- 1, Fixed some problems.
- 2018-11-19 Version: 1.39.2
- 1, Add query support for redeem
- 2018-11-16 Version: 1.39.1
- 1, update version
- 2018-11-15 Version: 1.39.0
- 1, ECS support ipv6Address
- 2018-11-15 Version: 1.38.3
- 1, update version
- 2018-11-15 Version: 1.38.2
- 1, update version.
- 2018-11-15 Version: 1.38.1
- 1, Remove FaceCompare, FaceRegist, FaceSearch api.
- 2, Add DetectLogo api.
- 3, CreateOfficeConversionTask support IdempotentToken.
- 2018-11-14 Version: 1.38.0
- 1, Better support for hybrid cluster.
- 2018-11-13 Version: 1.37.0
- 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
- 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
- 3, Add DynamicCheck properties for results of CheckDomain interface.
- 2018-11-13 Version: 1.36.0
- 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
- 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
- 3, Add DynamicCheck properties for results of CheckDomain interface.
- 2018-11-10 Version: 1.35.4
- 1, Update SetWaitingRoomConfig.
- 2018-11-08 Version: 1.35.3
- 1, Update Version.
- 2018-11-07 Version: 1.35.2
- 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
- 2, Add API GetTaskStatus,StartTask,StopTask.
- 3, Add API GetTaskParam,UpdateTaskParam.
- 2018-11-02 Version: 1.35.1
- 1, deviceName and productKey can be used instead of iotId.
- 2, New productKey fields for queryauthentication output parameter.
- 3, New deviceName fields for queryauthentication output parameter.
- 2018-11-02 Version: 1.35.0
- 1, first version
- 2018-10-31 Version: 1.34.13
- 1, update
- 2018-10-31 Version: 1.34.12
- 1, Update SetWaitingRoomConfig.
- 2018-10-31 Version: 1.34.11
- 1, Add SetWaitingRoomConfig.
- 2018-10-31 Version: 1.34.10
- 1, Add SetWaitingRoomConfig.
- 2018-10-31 Version: 1.34.9
- 1, The DescribeDBInstanceAttribute add replicaSets response value.
- 2, The DescribeDBInstances support engine query.
- 2018-10-30 Version: 1.34.8
- 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
- 2018-10-29 Version: 1.34.7
- 1, Add ots trigger api interface.
- 2018-10-29 Version: 1.34.6
- 1, update
- 2018-10-26 Version: 1.34.5
- 1, Remove useless parameters QueryDomainAdminDivision api.
- 2018-10-26 Version: 1.34.4
- 1, Add apis for trademark domains.
- 2, Retry publish SDK.
- 2018-10-26 Version: 1.34.3
- 1, Add apis for trademark domains.
- 2018-10-26 Version: 1.34.2
- 1, Return AuditConclusions in SubmitMaterials API.
- 2018-10-25 Version: 1.34.1
- 1, Add apis for trademark domains.
- 2018-10-25 Version: 1.34.0
- 1, Add apis for trademark domains.
- 2018-10-25 Version: 1.33.0
- 1, Add apis for trademark domains.
- 2, Add QueryDomainAdminDivision api.
- 2018-10-16 Version: 1.32.3
- 1, This version add MetricQuery interface to support retcode and apm metric query.
- 2018-10-16 Version: 1.32.2
- 1, This version add MetricQuery interface to support retcode and apm metric query.
- 2018-10-16 Version: 1.32.1
- 1, This version add MetricQuery interface to support retcode and apm metric query.
- 2018-10-16 Version: 1.32.0
- 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
- 2, Add instance topology api DescribeInstanceTopology
- 3, Add mount point in DescribeDisksFullStatus
- 2018-10-12 Version: 1.31.8
- 1, ModifyCenAttribute supports ProtectionLevel.
- 2, New APIs: PublishRouteEntries/WithdrawPublishedRouteEntries/DescribePublishedRouteEntries
- 2018-10-11 Version: 1.31.7
- 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
- 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
- 3, Add a new api called UpdateImageInfos to update image information.
- 2018-10-10 Version: 1.31.6
- 1, add UpdateProject api, support update CU, ServiceRole
- 2, PutProject not support edit
- 3, CreateOfficeConversionTask api now supports FitToPagesTall, FitToPagesWide
- 4, Remove paramater Engines, Indexers from project apis
- 2018-10-09 Version: 1.31.5
- 1, v1.0.0-->v1.0.1
- 2, provider new region:beijing/shenzhen/zhangjiakou
- 3, provider service for VPC user;
- 2018-09-30 Version: 1.31.4
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2018-09-29 Version: 1.31.3
- 1, Sync cdn api.
- 2018-09-29 Version: 1.31.2
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2018-09-29 Version: 1.31.1
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2018-09-27 Version: 1.31.0
- 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
- 2018-09-27 Version: 1.30.8
- 1, modify getFaces Api
- 2018-09-27 Version: 1.30.7
- 1, modify getFaces Api
- 2018-09-25 Version: 1.30.6
- 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
- 2018-09-25 Version: 1.30.5
- 1, Fix bug in GetVerifyToken and SubmitMaterials API.
- 2018-09-22 Version: 1.30.4
- 1, update
- 2018-09-20 Version: 1.30.3
- 1, Fix publish failure for Java, Python and C# SDK.
- 2018-09-20 Version: 1.30.2
- 1, BssOpenApi first deploy.
- 2018-09-20 Version: 1.30.1
- 1, BssOpenApi first deploy.
- 2018-09-19 Version: 1.30.0
- 1, Add ens api, include SaveSingleTaskForDisassociatingEns, SaveSingleTaskForAssociatingEns, QueryLocalEnsAssociation and QueryEnsAssociation.
- 2018-09-17 Version: 1.29.10
- 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
- 2018-09-17 Version: 1.29.9
- 1, describeRegions modify.
- 2018-09-17 Version: 1.29.8
- 1, ModifySecurityIps support WhitelistNetworkType
- 2018-09-16 Version: 1.29.7
- 1, add CheckInstanceExist OpenApi.
- 2018-09-14 Version: 1.29.6
- 1, Add DedicatedHost Feature
- 2018-09-13 Version: 1.29.5
- 1, modify CheckDBInstance OpenApi
- 2018-09-13 Version: 1.29.4
- 1, Add CreateChannelToken.
- 2018-09-11 Version: 1.29.3
- 1, add CheckDBInstance OpenApi.
- 2018-09-06 Version: 1.29.2
- 1, fixed DescirbeRegions zoneId date type.
- 2018-09-06 Version: 1.29.1
- 1, AutoScaling support launchTemplate.
- 2018-09-05 Version: 1.29.0
- 1, Add new APIs with control policy for querying price
- 2018-09-03 Version: 1.28.3
- 1, voice identify interface
- 2, client upload credentials interface
- 2018-09-03 Version: 1.28.2
- 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
- 2018-08-31 Version: 1.28.1
- 1, The CreateInstance supported VPC IpAddress.
- 2018-08-28 Version: 1.28.0
- 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
- 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
- 2018-08-28 Version: 1.27.6
- 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
- 2018-08-27 Version: 1.27.5
- 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
- 2018-08-27 Version: 1.27.4
- 1, createInstance supported IpAddress param.
- 2018-08-24 Version: 1.27.3
- 1, Add api: DetectQRCode
- 2018-08-23 Version: 1.27.2
- 1, RunInstance add privateIpAddress.
- 2018-08-23 Version: 1.27.1
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2018-08-23 Version: 1.27.0
- 1, Add CreateVpnGateway API.
- 2, Add product Ipv6Translator.
- 2018-08-22 Version: 1.26.2
- 1, upgrade mongodb sdk.
- 2018-08-22 Version: 1.26.0
- 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
- 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
- 2018-08-21 Version: 1.25.8
- 1, DeleteFaceSearchImageByIdRequest add field: srcUri(String).
- 2, CreateFaceSetResponse add field: faces(Long).
- 3, GetFaceSetResponse add field: faces(Long).
- 4, Fix class Blurness in IndexFaceResponse.
- 2018-08-21 Version: 1.25.7
- 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
- 2018-08-17 Version: 1.25.6
- 1, Add a new api called DeleteImage to clear the image resource.
- 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
- 3, Add the field called OutputType to GetMezzanineInfo api response.
- 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
- 2018-08-17 Version: 1.25.5
- 1, New apkpubkey fields for queryauthentication output parameter.
- 2, New packagename fields for queryauthentication output parameter.
- 3, New clientId fields for queryauthentication output parameter.
- 2018-08-16 Version: 1.25.4
- 1, ModifyScalingConfiguration add imageName.
- 2, CreateScalingConfiguration add imageName.
- 2018-08-15 Version: 1.25.3
- 1, Fix bug in GetMaterials API.
- 2, GetVerifyToken added a new param VerifyConfigs
- 2018-08-15 Version: 1.25.2
- 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
- 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
- 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
- 2018-08-15 Version: 1.25.1
- 1, Update ecs tag to 20 maximum
- 2018-08-13 Version: 1.25.0
- 1, New userinfo fields for registerface input parameter.
- 2, New userinfo fields for updateface input parameter.
- 3, New userinfo fields for queryface output parameter.
- 2018-08-13 Version: 1.24.7
- 1, Add cross domain support.
- 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
- 2018-08-08 Version: 1.24.6
- 1, The official release 4.0.0
- 2018-08-08 Version: 1.24.5
- 1, Update FC apis.
- 2018-08-08 Version: 1.24.4
- 1, First release.
- 2018-08-05 Version: 1.24.3
- 1, Add Interface SubmitSubtitleJob
- 2, Support convert ttml、stl subtitle to vtt
- 2018-08-04 Version: 1.24.2
- 1, Add a new api called SetAuditSecurityIp to set audit security ip.
- 2, Add a new api called ListAuditSecurityIp to query audit security ip list.
- 3, Add a new api called UploadMediaByURL to bulk upload media based on urls.
- 4, Add the field called StorageLocation and TemplateGroupId to GetVideoInfo api response.
- 5, Add the field called StorageLocation and TemplateGroupId to GetVideoInfos api response.
- 6, Add the field called OutputType and Status to GetPlayInfo api response.
- 2018-08-04 Version: 1.24.1
- 1, CreateOfficeConversionTask add TgtFilePages field to specify the final uploaded page
- 2018-08-03 Version: 1.24.0
- 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
- 2018-08-02 Version: 1.23.7
- 1, Add parameter(GroupId) for CreateNotifyPolicy,GetNotifyPolicy,DeleteNotifyPolicy,ListNotifyPolicy.
- 2018-08-01 Version: 1.23.6
- 1, Add parameter(DryRun) for CreateAlarm and UpdateAlarm.
- 2018-08-01 Version: 1.23.5
- 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
- 2018-08-01 Version: 1.23.4
- 1, Support describePrice for market image, add return detailInfo in interface describePrice
- 2018-07-26 Version: 1.23.3
- 1, Add RemoveTerminals API.
- 2018-07-26 Version: 1.23.2
- 1, Add new API: SendDryRunSystemEvent,PutMetricAlarm,DescribeAlarmsForDimensions,DescribeAlarms.
- 2018-07-26 Version: 1.23.1
- 1, Add BatchGetJobMetricInfo API.
- 2, Add BatchGetPluginConfigInfo API.
- 3, Add GetJobTopology API.
- 2018-07-13 Version: 1.23.0
- 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
- 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
- 3, New APIs for Container applications: AddContainerApp, etc.
- 2018-07-13 Version: 1.22.6
- 1, Release 2016-06-20 TableStore Open API
- 2018-07-11 Version: 1.22.5
- 1, new function: Attach and Detach Rds instance of scalingGroup.
- 2018-07-11 Version: 1.22.4
- 1, Add DetectFaceAttributesService.
- 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
- 2018-07-10 Version: 1.22.3
- 1, Add new API: EnableEventRule,DisableEventRule,DeleteEventTargets,DeleteEventRule,ListEventRules.
- 2, Modify the structured parameters for API: PutEventTargets,PutEventRule,DescribeEventRule.
- 2018-07-09 Version: 1.22.2
- 1, Add new API: DescribeEventRule,ListEventTargetsByRule,PutEventRule,PutEventTargets.
- 2, Add return value(Id) for NodeProcessCreate.
- 2018-07-05 Version: 1.22.1
- 1, new function, attach/detach load balancer of scalingGroup
- 2018-07-05 Version: 1.22.0
- 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.
- 2018-06-28 Version: 1.21.1
- 1, ScalingConfiguration support hostName and passwordInherit
- 2, ScalingConfiguration support modify
- 2018-06-27 Version: 1.21.0
- 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.
- 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
- 2018-06-27 Version: 1.20.6
- 1, DescribeNetworkInterfaces support query with vpcId
- 2018-06-22 Version: 1.20.5
- 1, rtc openapi
- 2018-06-22 Version: 1.20.4
- 1, Add new API: DeleteGroupDynamicRule,ListGroupDynamicRule,ApplyTemplate,PutGroupDynamicRule.
- 2, Add parameter(AlertIds) for CreateTask and ModifyTask.
- 2018-06-21 Version: 1.20.3
- 1, This is add InstanceList.
- 2018-06-21 Version: 1.20.2
- 1, This is add InstanceList.
- 2018-06-20 Version: 1.20.1
- 1, Add InstanceList in product security information query.
- 2018-06-20 Version: 1.20.0
- 1, This is the first version of jarvis-public.
- 2018-06-20 Version: 1.19.6
- 1, Add InstanceList in product security information query.
- 2018-06-14 Version: 1.19.5
- 1, Add passwordInherit.
- 2018-06-13 Version: 1.19.4
- 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
- 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
- 3, Add return value fillMode DescribeCasterLayouts.
- 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
- 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
- 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
- 2018-06-13 Version: 1.19.3
- 1, Add lifecycleHook.
- 2018-06-08 Version: 1.19.2
- 1, Add scdn interface,support scdn.
- 2018-06-06 Version: 1.19.1
- 1, Change the type of srcUid to int.
- 2018-06-06 Version: 1.19.0
- 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
- 2018-05-30 Version: 1.18.1
- 1, Add new API: DescribeContact and GetContacts.
- 2, Add return value: alertRule for CreateTask.
- 2018-05-29 Version: 1.18.0
- 1, Add new interface DescribePhoneInfo to SDK.
- 2018-05-28 Version: 1.17.0
- 1, Add face 1-N,1-1 scan interface.
- 2018-05-28 Version: 1.16.0
- 1, ValidateSecurityGroup API
- 2018-05-28 Version: 1.15.1
- 1, add new openapi .
- 2018-05-28 Version: 1.15.0
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2018-05-26 Version: 1.14.2
- 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
- 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
- 2018-05-25 Version: 1.14.1
- 1, CreateAlarm,DeleteAlarm,UpdateAlarm,DisableAlarm,EnableAlarm,ListAlarm,ListAlarmHistory,ListContactGroup,PutMetricData,QueryMetricData,QueryMetricLast,QueryMetricList,QueryMetricTop remove useless parameter: callby_cms_owner.
- 2, QueryMetricList remove useless parameter: Page.
- 3, UpdateMyGroupMembers add parameter: Readers.
- 4, StopTasks,StartTasks,DeleteTasks add return value: Data.
- 5, ModifyTask remove invalid parameter: TaskType.
- 6, CreateTask fix bug: TaskName maybe duplicated.
- 7, Add lost return value for CreateTask.
- 8, DescribeISPAreaCity add parameter: isp and city.
- 9, remove api: PutMetricData.
- 2018-05-23 Version: 1.14.0
- 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
- 2018-05-23 Version: 1.13.1
- 1, Add Function Compute interface,support Function Compute.
- 2018-05-23 Version: 1.13.0
- 1, Update API version to 2018-04-12.
- 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.
- 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
- 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
- 2018-05-23 Version: 1.12.5
- 1, This is an example of release-log.
- 2, Please strictly follow this format to edit in English.
- 3, Format:Number + , + Space + Description
- 2018-05-22 Version: 1.12.4
- 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
- 2, modify DescribeDBInstanceAttribute.
- 2018-05-17 Version: 1.12.3
- 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
- 2018-05-17 Version: 1.12.2
- 1, the first version of private dns SDK
- 2018-05-11 Version: 1.12.1
- 1, Add Function Compute interface,support Function Compute.
- 2018-05-09 Version: 1.12.0
- 1, Add apis for domain broker.
- 2018-05-08 Version: 1.11.3
- 1, Add instance params.
- 2018-05-08 Version: 1.11.2
- 1, Remove DescribeAccountAttributes.
- 2018-05-03 Version: 1.11.1
- 1, Publish DRDS go sdk for the first time.
- 2, Support for creation/modification/deletion/description operation for DRDS instances and databases.
- 2018-05-02 Version: 1.11.0
- 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
- 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
- 2018-04-28 Version: 1.10.3
- 1, Add api: DescribeTasks、StartTasks、StopTasks、DeleteTasks、ModifyTask、CreateTask、DescribeTaskDetail、DescribeISPAreaCity.
- 2018-04-28 Version: 1.10.2
- 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
- 2, Add dcdn config interface,Support set、delete、query domain config.
- 2018-04-27 Version: 1.10.1
- 1, release hsm open api
- 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
- 2018-04-26 Version: 1.10.0
- 1, Add apis for domain group.
- 3, Add fields for QueryDomainList.
- 2018-04-25 Version: 1.9.6
- 1, CreateMyGroups add parameter "options"
- 2018-04-24 Version: 1.9.5
- 1, Add api:UpdateMyGroupMembers
- 2018-04-24 Version: 1.9.4
- 1, add interface FetchPhotos
- 2, add xflush log param unixTimestamp
- 2018-04-23 Version: 1.9.3
- 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
- 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
- 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
- 2018-04-23 Version: 1.9.2
- 1, Add notificationConfiguration.
- 2, Add standby status.
- 2018-04-20 Version: 1.9.1
- 1, Interface DescribeAlarmHistory/ListAlarmHistory Add return value instanceName.
- 2018-04-17 Version: 1.8.3
- 1, EditPhotos add input param TakenAt
- 2, add FetchMomentPhotos
- 3, ListAlbums add return param Remark
- 2018-04-16 Version: 1.8.2
- 1, Release go sdk
- 2018-04-11 Version: 1.8.1
- 1, GetLibrary/FetchLibraries add return ctime
- 2, Editphotos add input param takenAt
- 2018-04-10 Version: 1.8.0
- 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
- 2018-04-10 Version: 1.7.3
- 1, publish Project API.
- 2, publish Service API.
- 3, publish Service order API.
- 4, publish Credential API.
- 5, publish CAS API.
- 2018-04-09 Version: 1.7.2
- 1, Add api: QueryMetricData, QueryMetricTop, TaskConfigCreate, TaskConfigDelete, TaskConfigEnable, TaskConfigList, TaskConfigModify, TaskConfigUnhealthy
- 2, Remove api: PutSystemEvent
- 2018-04-08 Version: 1.7.0
- 1, Add voice asynchronous scan interface.
- 2018-04-04 Version: 1.6.1
- 1, add tablestore trigger pop api and sample code
- 2018-04-04 Version: 1.6.0
- 1, Add APIs for domain transfer in and transfer out.
- 2, Add APIs for poll and acknowledge domain task.
- 2018-04-03 Version: 1.5.0
- 1, Add APIs for domain transfer in and transfer out.
- 2, Add APIs for poll and acknowledge domain task.
- 3, Add API for query domain group list.
- 2018-03-30 Version: 1.4.11
- 1, API QueryCustomerSaleInfo arguments update.
- 2018-03-29 Version: 1.4.10
- 1, edit FetchLibraries return param format
- 2018-03-29 Version: 1.4.9
- 1, Add APIs: CreateAlias, UpdateAlias, DeleteAlias, ListAliases, ListAliasesByKeyId.
- 2, Add APIs: GetParametersForImport, ImportKeyMaterial, DeleteKeyMaterial.
- 3, Update KeyMetadata for CreateKey and DescribeKey.
- 2018-03-29 Version: 1.4.8
- 1, Cloud Enterprise Network SDK initial release.
- 2018-03-29 Version: 1.4.7
- 1, Cloud Enterprise Network SDK initial release.
- 2018-03-27 Version: 1.4.6
- 1, Rename QueryCustomerSaleInfo to RegionName.
- 2018-03-27 Version: 1.4.5
- 1, publish Project API.
- 2, publish Service API.
- 3, publish Service order API.
- 4, publish Credential API.
- 5, publish CAS API.
- 2018-03-27 Version: 1.4.4
- 1, add interface FetchLibraries
- 2018-03-23 Version: 1.4.3
- 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
- 2018-03-23 Version: 1.4.2
- 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
- 2018-03-23 Version: 1.4.1
- 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
- 2018-03-23 Version: 1.4.0
- 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
- 2, Remove 'QueryPushDetail' Api.
- 2018-03-20 Version: 1.2.7
- 1, add FetchAlbumTagPhotos
- 2, CreatePhoto add optional param TakenAt
- 2018-03-16 Version: 1.2.6
- 1, Update GetQuotaInstance API.
- 2018-03-16 Version: 1.2.5
- 1, Synchronize to the latest api list
- 2018-03-15 Version: 1.2.4
- 1, Add QueryCustomerSaleInfo API.
- 2018-03-09 Version:1.2.3
- 1, fix bug:modify error message when roleArn is wrong
- 2018-03-13 Version: 1.2.2
- 1, API GetQuotaHistoryInfo fix field error.
- 2018-03-09 Version: 1.2.1
- 1, complete api comments
- 2018-03-09 Version: 1.2.0
- 1, improve endpoint resolver
- 2018-03-07 Version: 1.1.7
- 1, add GetAlbumsByNames
- 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
- 3, add return IdStr for string
- 2018-03-06 Version: 1.1.6
- 1, add GetAlbumsByNames
- 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
- 3, add return IdStr for string
- 2018-03-06 Version: 1.1.5
- 1, add GetAlbumsByNames
- 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
- 3, add return IdStr for string
- 2018-02-28 Version: 1.1.3
- 1, Add query resource inventory API.
- 2, Add query topology API.
- 2018-02-28 Version: 1.1.2
- 1, Add query topology API.
- 2018-02-27 Version: 1.1.1
- 1, Add Action API.
- 2018-02-27 Version: 1.1.0
- 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
- 2018-02-12 Version: 1.0.0
- 1. Optimize the nested structs in all response, this will bring the following incompatibilities:
- * Api response struct changes, conclude:
- * ecs.DescribeNetworkInterfaces
- * ecs.DescribeDeploymentSetTopology
- * rds.DescribeDBInstanceIPArrayList
- * rds.DescribeDBInstancesAsCsv
- * slb.DescribeLoadBalancersRelatedEcs
- * vpc.DescribeVpcAttribute
- * vpc.DescribeVirtualBorderRouters
- * mts.RegisterMediaDetailPerson
- * mts.QueryEditingJobList
- * mts.SubmitEditingJobs
- * mts.QueryMediaListByURL
- * mts.ListJob
- * mts.QueryMediaList
- * mts.QueryJobList
- * mts.SubmitJobs
- * ehpc.DescribeCluster
- * aegis.GetEntityList
- * aegis.DescribeStratety
- 2018-02-09 Version: 0.12.0
- 1, Aliyun E-HPC service SDK, initial version.
- 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
- 2018-02-07 Version: 0.11.4
- 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
- 2018-02-06 Version: 0.11.3
- 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
- 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
- 2018-02-02 Version: 0.11.2
- 1, this version is new of captcha management and nvc analyze
- 2018-01-31 Version: 0.11.1
- 1. Fixed bugs that could cause signature errors while a ROA request contains lots of special symbols
- 2. Optimization of the serverError.Error() interface
- 3. When there is an error of "SignatureDoseNotMatch", it is now possible to tell user if the AccessKeySecret is wrong or caused by a sdk bug
- 2018-01-29 Version: 0.11.0
- 1, Support dep
- 2, Add 4 usage of credentials for each services
- 3, Standard interface naming
- 2018-01-29 Version: 0.10.0
- 1, Add 'notificationChannel' parameter to Push API
- 2018-01-24 Version: 0.9.3
- 1, Fixed a problem that the ActiveAlert interface name is not standard
- 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
- 2018-01-24 Version: 0.9.2
- 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
- 2018-01-24 Version: 0.9.1
- 1. improve: asyncWithChan avoid panic of "write on closed channel"
- 2. improve: asyncWithChan support select case usage
- 3. bug fix: repeated signature nonce while retry
- 4. bug fix: calling request.GetUrl() ahead of client.DoAction() will cause problems
- 2018-01-24 Version: 0.9.0
- 1, Publish domain config interface, allow users to create or delete a domain protect config under DDoS Pro.
- 2, Publish domain config query interface, allow users to query a list of domain config or a single domain config.
- 3, Publish domain proxy modify interface, allow users to set domain transmit proxy.
- 4, Publish domain transmit rule config interface, including modify and delete type.
- 5, Publish domain black and white list config interface.
- 6, Publish domain cname auto status config interface.
- 7, Publish domain certificate upload interface.
- 8, Publish domain qps graph query interface.
- 9, Publish ip attack events and traffic graph query interface.
- 2018-01-23 Version: 0.8.3
- 1, Tesla Dam API release.
- 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
- 2018-01-18 Version: 0.8.2
- 1. Set default timeout to 10s
- 2. Make integration tests more stable
- 3. Fix the problem of LocationResolver in concurrency
- 4. Modifying the naming specification
- 2018-01-18 Version: 0.8.1
- 1, Update ECS go SDK to catch up with other langs.
- 2, DescribeImageSupportInstanceTypes add new param Filter and ActionType
- 2018-01-16 Version: 0.8.0
- 1, Add TriggerMode param in AddMediaWorkflow.
- 2, Add TriggerMode param in QueryMediaWorkflowList/SearchMediaWorkflow/UpdateMediaWorkflow.
- 3, Add interface UpdateMediaWorkflowTriggerMode.
- 2018-01-11 Version: 0.7.8
- 1. complete partly missed service codes
- 2. add default http method for roa requests
- 2018-01-11 Version: 0.7.7
- 1, Bug fix: Replenish user interface
- 2018-01-11 Version: 0.7.6
- 1, replace photo tag 2000 upgrade to 5000
- 2, add TrashQuota
- 2018-01-11 Version: 0.7.5
- 1, Make the json.Unmarshal more robust
- 2018-01-09 Version: 0.7.4
- 1, Add integration tests
- 2018-01-04 Version: 0.7.3
- 1, Remove get entity info API, replaced by get entity instance.
- 2018-01-03 Version: 0.7.2
- 1, Bug fix: fix the ecs unmarshal bug
- 2018-01-03 Version: 0.7.1
- 1, Bug fix: fix the unmarshal bug
- 2017-12-29 Version: 0.7.0
- 1, First release for Domain-intl.
- 2, Add interfaces for domain name registration and management.
- 2017-12-29 Version: 0.6.8
- 1, Allow the setting of AcceptFormat in the Request.
- 2017-12-26 Version: 0.6.5
- 1, Add video AI service interface.
- 2017-12-26 Version: 0.6.4
- 1, Add video AI service interface.
- 2017-12-20 Version: 0.6.3
- 1, support tile dataset
- 2, use dimension value type to replace isDrillDown
- 2017-12-20 Version: 0.6.2
- 1, support tile dataset
- 2, use dimension value type to replace isDrillDown
- 2017-12-19 Version: 0.6.1
- 1, InactivatePhotos support customer inactiveTime
- 2, support customer tags
- 3, ListPhotoTags、ListTags add param lang
- 2017-12-18 Version: 0.6.0
- 1, Add Scdn API.
- 2017-12-18 Version: 0.5.7
- 1, This is the first release of CCC Open API.
- 2017-12-15 Version: 0.5.6
- 1, Update SetReqAuthConfig.
- 2, Add Scdn API.
- 2017-12-15 Version: 0.5.5
- 1, fix test cases
- 2017-12-15 Version: 0.5.4
- 1, Add scdn API.
- 2, Update SetReqAuthConfig.
- 2017-12-12 Version: 0.5.1
- 1, remove unused fmt.print
- 2017-12-08 Version: 0.5.0
- 1, Add ARMSQueryDataSet, WhereInDimQuery interface.
- 2017-12-08 Version: 0.4.0
- 1, support endpoint.xml resolver
- 2017-12-08 Version: 0.3.1
- 1, Add ARMSQueryDataSet, WhereInDimQuery interface.
- 2017-12-01 Version: 0.2.2
- 1, Fix ineffassign problems
- 2017-12-01 Version: 0.2.1
- 1, Fix capitalizes the first letter in each word of header
- 2017-11-28 Version: 0.2.0
- 1, AK2.0 & StsToken
- 2017-11-27 Version: 0.1.3
- 1, format ft code with gofmt
- 2017-11-27 Version: 0.1.2
- 1, format code with gofmt
- 2017-11-27 Version: 0.1.1
- 1, add glide files
|