ChangeLog.txt 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  1. 2019-08-06 Version: 1.60.89
  2. - Supported GetMediaMeta for IMM.
  3. 2019-08-06 Version: 1.60.88
  4. - Supported GetMediaMeta for IMM.
  5. 2019-08-06 Version: 1.60.87
  6. - Supported GetMediaMeta for IMM.
  7. 2019-08-06 Version: 1.60.86
  8. - Enhencement for CostOptimized scaling group.
  9. 2019-08-05 Version: 1.60.85
  10. - Add response parameter LoadBalancerId for DescribeMasterSlaveServerGroupAttribute interface.
  11. 2019-08-05 Version: 1.60.84
  12. - GetOrderDetail add originalConfig param.
  13. 2019-08-05 Version: 1.60.83
  14. - GetOrderDetail add originalConfig param.
  15. 2019-08-05 Version: 1.60.82
  16. - Modify DBS API DescribeFullBackupList.
  17. 2019-08-02 Version: 1.60.81
  18. - Add a lot of new API.
  19. 2019-08-02 Version: 1.60.80
  20. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  21. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  22. 2019-07-31 Version: 1.60.79
  23. - Endpoint auto route.
  24. 2019-07-31 Version: 1.60.78
  25. - Generated 2014-06-18 for `Mts`.
  26. 2019-07-30 Version: 1.60.77
  27. - Generated 2014-06-18 for `Mts`.
  28. 2019-07-26 Version: 1.60.76
  29. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  30. 2019-07-26 Version: 1.60.75
  31. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  32. 2019-07-25 Version: 1.60.74
  33. - Api createKey add optional parameter `ProtectionLevel`.
  34. - Api describeKey add a field `ProtectionLevel` in the response.
  35. - Add Api `DescribeService`.
  36. 2019-07-25 Version: 1.60.73
  37. - Generated 2016-07-14 for `CloudAPI`.
  38. 2019-07-25 Version: 1.60.72
  39. - App-related actions support tag authentication.
  40. 2019-07-23 Version: 1.60.71
  41. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  42. 2019-07-19 Version: 1.60.70
  43. - QueryMonthlyBillResponse add roundDownDiscount.
  44. - QueryBillResponse add roundDownDiscount.
  45. - QueryInstanceBillResponse add item.
  46. 2019-07-18 Version: 1.60.69
  47. - Fix resolve wrong tagname IOS to iOS.
  48. 2019-07-18 Version: 1.60.68
  49. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  50. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  51. 2019-07-18 Version: 1.60.67
  52. - Supported open api for dbaudit management.
  53. 2019-07-15 Version: 1.60.66
  54. - Add filed `internalDomain` for api `get token`.
  55. 2019-07-12 Version: 1.60.65
  56. - Public api AddLivePullStreamInfoConfig.
  57. 2019-07-11 Version: 1.60.64
  58. - Modify CreateBackupPlan.
  59. - Modify ConfigureBackupPlan.
  60. - Modify DescribeFullBackupList.
  61. - Modify DescribeRestoreTaskList.
  62. - Add ModifyBackupSourceEndpoint.
  63. - Add ModifyBackupStrategy.
  64. - Add ModifyBackupPlanName.
  65. 2019-07-08 Version: 1.60.63
  66. - ActionName change to OOSActionName from ListActions API param and response.
  67. 2019-07-05 Version: 1.60.62
  68. - Add TaskCancelStatus for QueryTaskList api.
  69. 2019-07-05 Version: 1.60.61
  70. - Generated 2015-04-01 for `Sts`.
  71. 2019-07-05 Version: 1.60.60
  72. - Generated 2015-04-01 for `Sts`.
  73. 2019-07-04 Version: 1.60.59
  74. - Supported API DescribeRecordStatisticsy for Query Volume.
  75. - Supported API DescribeDomainStatistics for Query Volume.
  76. 2019-07-03 Version: 1.60.58
  77. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  78. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  79. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  80. - Supported API DescribeDomainDnsStatistics for Query Volume.
  81. 2019-07-02 Version: 1.60.57
  82. - FnF public version.
  83. 2019-07-01 Version: 1.60.56
  84. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  85. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  86. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  87. - Add RetentionDays to snapshot creating.
  88. 2019-06-27 Version: 1.60.55
  89. - Added setting of crop_mode parameter.
  90. 2019-06-25 Version: 1.60.54
  91. - Enhencement for CostOptimized scaling group.
  92. 2019-06-24 Version: 1.60.53
  93. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  94. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  95. - 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.
  96. - 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.
  97. 2019-06-24 Version: 1.60.52
  98. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  99. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  100. - 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.
  101. - 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.
  102. 2019-06-21 Version: 1.60.51
  103. - Support DeleteProtection api.
  104. 2019-06-20 Version: 1.60.50
  105. - OOS SDK first release for managing of templates, executions and actions.
  106. 2019-06-19 Version: 1.60.49
  107. 1, Add DefaultPolicyVersion as return field to GetPolicy interface, Facilitating to get policy document from this interface.
  108. 2, Add RotateStrategy as input field to CreatePolicyVersion interface for rotating policy version when reaching policy version limit.
  109. 2019-06-18 Version: 1.60.48
  110. 1. Supported the related recommend.
  111. 2. Supported exposure time controll and exposure filter by scene.
  112. 2019-06-17 Version: 1.60.47
  113. companyreg release
  114. 2019-06-14 Version: 1.60.46
  115. - Generated 2018-01-20 for `Iot`
  116. 2019-06-14 Version: 1.60.45
  117. 1. govendor rds sdk code problem.
  118. 2019-06-13 Version: 1.60.44
  119. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  120. 2019-06-13 Version: 1.60.43
  121. - Generated 2015-01-01 for `R-kvstore`
  122. 2019-06-13 Version: 1.60.42
  123. Add Network Assistant openapi sdk
  124. 2019-06-13 Version: 1.60.41
  125. 1, add DescribeAvailableResource OpenApi.
  126. 2, upgrade version to 2.3.8
  127. 2019-06-12 Version: 1.60.40
  128. 1, Add RenewBackupPlan DBS interface.
  129. 2019-06-12 Version: 1.60.39
  130. 1.Fix bug
  131. 2019-06-12 Version: 1.60.38
  132. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  133. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  134. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  135. 2019-06-06 Version: 1.60.37
  136. 1, Add RuleId in DescribeRuleAttribute.
  137. 2019-06-05 Version: 1.60.36
  138. 1, Update DescribeDataLimitDetail interface, add password for response
  139. 2019-06-04 Version: 1.60.35
  140. 1, Add new API: UpdateLivePullStreamInfoConfig
  141. 2019-06-03 Version: 1.60.34
  142. 1, Add openapi of ACL.
  143. 2019-06-03 Version: 1.60.33
  144. 1, Order info add relatedOrderId.
  145. 2019-05-31 Version: 1.60.32
  146. 1, add api 'search traces count'
  147. 2, add page index for api 'searchTraces'
  148. 2019-05-31 Version: 1.60.31
  149. 1, Add authority in GetMaterials API.
  150. 2019-05-30 Version: 1.60.30
  151. Fix: Handle the repeatlist parameter correctly
  152. 2019-05-30 Version: 1.60.29
  153. 1.Fix: Handle the repeatlist parameter correctly
  154. 2019-05-30 Version: 1.60.28
  155. 1. Re-generate for STS-2015-04-01.
  156. 2019-05-30 Version: 1.60.27
  157. 1. Re-generate for STS 2015-04-01.
  158. 2019-05-29 Version: 1.60.26
  159. 1, Fix ServiceCode typo in request
  160. 2019-05-29 Version: 1.60.25
  161. 1, Modify DescribeRestoreTaskList DBS interface.
  162. 2, Modify DescribeFullBackupList DBS interface.
  163. 2019-05-28 Version: 1.60.24
  164. 1, CreateDBInstance now support autoRenew
  165. 2019-05-27 Version: 1.60.23
  166. 1, Support video transcode.
  167. 2019-05-27 Version: 1.60.22
  168. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  169. 2019-05-24 Version: 1.60.21
  170. 1, The list of site monitoring probes adds ISP and city fields in English.
  171. 2, Fixed the capitalization problem of Describe MetricData and Describe Site Monitor Statistics API metricName.
  172. 2019-05-23 Version: 1.60.20
  173. 1, Fixed bug of the JSON list in GO sdk.
  174. 2019-05-22 Version: 1.60.19
  175. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  176. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  177. 2019-05-20 Version: 1.60.18
  178. 1, Added the cross zones supported.
  179. 2019-05-20 Version: 1.60.17
  180. 1, Add both api, ListNotaryInfos
  181. 2019-05-20 Version: 1.60.16
  182. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  183. 2019-05-20 Version: 1.60.15
  184. 1, DescribeRouteTableList add route table status
  185. 2, DescribeRouteTables add route table status
  186. 2019-05-18 Version: 1.60.14
  187. 1, Add ModifyBackupObjects DBS interface.
  188. 2019-05-16 Version: 1.60.13
  189. 1, Update SDK Version
  190. 2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public
  191. 2019-05-16 Version: 1.60.12
  192. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  193. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  194. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  195. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  196. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  197. 6, Add the field named UserData to SubmitSnapshotJob api request.
  198. 2019-05-16 Version: 1.60.11
  199. 1, Update SDK Version
  200. 2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public
  201. 2019-05-16 Version: 1.60.10
  202. 1, Update SDK version
  203. 2, Add api DescribeClusterAddonsVersion
  204. 2019-05-16 Version: 1.60.9
  205. 1, This is an example of release-log.
  206. 2, Please strictly follow this format to edit in English.
  207. 3, Format:Number + , + Space + Description
  208. 2019-05-16 Version: 1.60.8
  209. 1, Scaling configuration add security group ids
  210. 2019-05-15 Version: 1.60.7
  211. 1, Add InstanceId parameter to api CreateDisk
  212. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  213. 3, Add SecurityGroupIds parameter to Instance creation apis.
  214. 2019-05-14 Version: 1.60.6
  215. 1, Support body detect.
  216. 2019-05-14 Version: 1.60.5
  217. 1, support body detect
  218. 2019-05-14 Version: 1.60.4
  219. 1, Support body detect.
  220. 2019-05-14 Version: 1.60.3
  221. 1, Support body detect.
  222. 2019-05-14 Version: 1.60.2
  223. 1, Support body detect.
  224. 2019-05-14 Version: 1.60.1
  225. 1, Support body detect.
  226. 2019-05-13 Version: 1.60.0
  227. 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
  228. 2019-05-13 Version: 1.59.0
  229. 1, Add three new apis, SaveSingleTaskForSaveArtExtension, QueryArtExtension and CancelTask.
  230. 2019-05-13 Version: 1.58.11
  231. 1, Support for creating instances and joining multiple security groups at the same time.
  232. 2019-05-13 Version: 1.58.10
  233. 1, Add Vpc openapi interface,Support for new fields.
  234. 2, Support for nacl openapi.
  235. 3, Fixed some problems of the vpc openapi.
  236. 2019-05-13 Version: 1.58.9
  237. 1, Modify CreateRestoreTaskRequest DBS interface.
  238. 2019-05-05 Version: 1.58.8
  239. 1, CreateInstance add ClientToken parameter.
  240. 2019-04-29 Version: 1.58.7
  241. 1, add new api
  242. 2019-04-28 Version: 1.58.6
  243. 1, Publish DescribeAvailableResource.
  244. 2019-04-26 Version: 1.58.5
  245. 1, Add resource describe api.
  246. 2019-04-26 Version: 1.58.4
  247. 1, add new openapi.
  248. 2019-04-25 Version: 1.58.3
  249. 1, The alarm contact interface increases paging parameters
  250. 2019-04-25 Version: 1.58.2
  251. 1, upgrade sdk version.
  252. 2019-04-23 Version: 1.58.1
  253. 1, Support mounting multiple volumes using different protocol
  254. 2, Support scaling out cross AZ
  255. 2019-04-23 Version: 1.58.0
  256. 1, Add a new api, QueryDomainByDomainName.
  257. 2019-04-22 Version: 1.57.1
  258. 1, Add interface ModifyDBNodeClass.
  259. 2, Add interface ModifyAutoRenewAttribute and DescribeAutoRenewAttribute.
  260. 3, Param AutoRenew is supported in interface CreateDBCluster.
  261. 2019-04-22 Version: 1.57.0
  262. 1, Add a new api, QueryDomainByDomainName.
  263. 2019-04-22 Version: 1.56.14
  264. 1, This is an example of release-log.
  265. 2, Please strictly follow this format to edit in English.
  266. 3, Format:Number + , + Space + Description
  267. 2019-04-22 Version: 1.56.13
  268. 1, Add CreateDBCluster interface;
  269. 2, Add CreateDBNodes interface;
  270. 2019-04-18 Version: 1.56.12
  271. 1, New service
  272. 2019-04-18 Version: 1.56.11
  273. 1, CreateCacheAnalysisTask prop modify
  274. 2019-04-18 Version: 1.56.10
  275. 1, add ReservedInstance API.
  276. 2019-04-17 Version: 1.56.9
  277. 1, Add DescribeRestoreTaskList DBS interface.
  278. 2, Add DescribeNodeCidrList DBS interface.
  279. 2019-04-16 Version: 1.56.8
  280. 1, Fixed DescribeAccounts response type error.
  281. 2019-04-16 Version: 1.56.7
  282. 1, Add api about pushing security check commands
  283. 2019-04-16 Version: 1.56.6
  284. 1, Fixed describeAccounts response type error
  285. 2019-04-16 Version: 1.56.5
  286. 1, Mark CreateDiagnosticReport as public api.
  287. 2, ModifySecurityIps support modifyMode parameter.
  288. 2019-04-16 Version: 1.56.4
  289. 1, Add group api.
  290. 2019-04-16 Version: 1.56.3
  291. 1, Add group api.
  292. 2019-04-16 Version: 1.56.2
  293. 1, Add group api.
  294. 2019-04-16 Version: 1.56.1
  295. 1, Add group api.
  296. 2019-04-16 Version: 1.56.0
  297. 1, Add the go version of sdk.
  298. 2019-04-15 Version: 1.55.7
  299. 1, Add SDK for goLang version.
  300. 2019-04-15 Version: 1.55.6
  301. 1, Add CreateRestoreTask DBS interface.
  302. 2, Add StartRestoreTask DBS interface.
  303. 2019-04-15 Version: 1.55.5
  304. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  305. 2019-04-15 Version: 1.55.4
  306. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  307. 2019-04-15 Version: 1.55.3
  308. 1, Add Group Api.
  309. 2019-04-11 Version: 1.55.2
  310. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  311. 2019-04-11 Version: 1.55.1
  312. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  313. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  314. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  315. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  316. 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.
  317. 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.
  318. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  319. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  320. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  321. 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.
  322. 2019-04-11 Version: 1.55.0
  323. 1, Release AddImage/SearchImage/DeleteImage OpenApi.
  324. 2, Add 'SearchByName' feature to SearchImage
  325. 2019-04-10 Version: 1.54.1
  326. 1, Modify DescribeBackupGatewayList DBS interface.
  327. 2019-04-10 Version: 1.54.0
  328. 1, New APIs for visual service (VNC).
  329. 2, New APIs for software management.
  330. 3, New APIs for CPFS filesystem.
  331. 2019-04-09 Version: 1.53.93
  332. 1, Add APIs: TagResource, UntagResource, ListResourceTags.
  333. 2, Remove the optional parameter 'STSToken' and replace it with 'SecurityToken'.
  334. 2019-04-09 Version: 1.53.92
  335. 1, support service account management networkInterface function.
  336. 2019-04-09 Version: 1.53.91
  337. 1, Add Apis for offline VerifySDK.
  338. 2019-04-08 Version: 1.53.90
  339. 1, Modify DescribeBackupPlanList DBS interface.
  340. 2, Modify DescribeFullBackupList DBS interface.
  341. 3, Modify DescribeIncrementBackupList DBS interface.
  342. 4, Modify DescribeBackupGatewayList DBS interface.
  343. 2019-04-08 Version: 1.53.89
  344. 1, Add StopBackupPlan DBS interface.
  345. 2, Add DescribeBackupPlanList DBS interface.
  346. 3, Add DescribeFullBackupList DBS interface.
  347. 4, Add DescribeIncrementBackupList DBS interface.
  348. 5, Add DescribeBackupGatewayList DBS interface.
  349. 2019-04-04 Version: 1.53.88
  350. 1, ScalingConf systemDisk add DiskName and Description parameters.
  351. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  352. 2019-04-03 Version: 1.53.87
  353. 1, Support DNAT/ENI/Online user count features.
  354. 2019-04-03 Version: 1.53.86
  355. 1, Add interfaces related to vulnerability whitelist
  356. 2, Add interfaces related to vulnerability auto-del configuration
  357. 3, Add interfaces related to vulnerability fix advise
  358. 4, Add interfaces searching and operating vulnerability
  359. 2019-03-29 Version: 1.53.85
  360. 1, fix MNS Query params
  361. 2019-03-29 Version: 1.53.84
  362. 1, Fix error version
  363. 2019-03-29 Version: 1.53.83
  364. 1, Add DLQ message openAPI.
  365. 2, Add Query the subscription relational openAPI.
  366. 3, Remove white list restrictions.
  367. 2019-03-28 Version: 1.53.82
  368. 1, EDAS serverless support Pandora application deployment in war/jar mode
  369. 2019-03-28 Version: 1.53.81
  370. 1, Add multiple language support in DescribeZones
  371. 2, Add gray parameter in CreateDisk
  372. 2019-03-28 Version: 1.53.80
  373. 1, Add instance remark modify api.
  374. 2019-03-28 Version: 1.53.79
  375. 1, Add logo detect.
  376. 2019-03-27 Version: 1.53.78
  377. 1, Add Project interface.
  378. 2, Add Tag interface.
  379. 3, Add TrainData interface.
  380. 4, Add Train interface.
  381. 5, Add Iteration interface.
  382. 6, Add Predict interface.
  383. 7, Add PredictData interface.
  384. 2019-03-27 Version: 1.53.77
  385. 1, Add Project interface.
  386. 2, Add Tag interface.
  387. 3, Add TrainData interface.
  388. 4, Add Train interface.
  389. 5, Add Iteration interface.
  390. 6, Add Predict interface.
  391. 7, Add PredictData interface.
  392. 2019-03-27 Version: 1.53.76
  393. 1, Add DLQ message openAPI.
  394. 2, Add Query the subscription relational openAPI.
  395. 3, Remove white list restrictions.
  396. 2019-03-27 Version: 1.53.75
  397. 1, Add DLQ message openAPI.
  398. 2, Add Query the subscription relational openAPI.
  399. 3, Remove white list restrictions.
  400. 2019-03-21 Version: 1.53.74
  401. 1, Update Dependency
  402. 2019-03-21 Version: 1.53.73
  403. 1, Update Dependency
  404. 2019-03-20 Version: 1.53.72
  405. 1, Update the Dependency
  406. 2019-03-20 Version: 1.53.71
  407. 1, Update the Dependency
  408. 2019-03-20 Version: 1.53.70
  409. 1, Update the Dependency
  410. 2019-03-20 Version: 1.53.69
  411. 1, Update the Dependency
  412. 2019-03-20 Version: 1.53.68
  413. 1, Update Dependency
  414. 2019-03-19 Version: 1.53.67
  415. 1, Support ' fc ' Source DomainName
  416. 2019-03-19 Version: 1.53.66
  417. 1, move fields: tag, associate_person, cid
  418. 2019-03-19 Version: 1.53.65
  419. 1, format fields: tags, associatePerson
  420. 2019-03-19 Version: 1.53.63
  421. 1, Update Dependency
  422. 2019-03-19 Version: 1.53.62
  423. 1, Update Dependency
  424. 2019-03-19 Version: 1.53.61
  425. 1, This is an example of release-log.
  426. 2, Please strictly follow this format to edit in English.
  427. 3, Format:Number + , + Space + Description
  428. 2019-03-18 Version: 1.53.60
  429. 1, Signature Document SDK.
  430. 2, First version publish.
  431. 3, Beta Version SDK
  432. 2019-03-18 Version: 1.53.59
  433. 1, Update Dependency
  434. 2019-03-18 Version: 1.53.58
  435. 1, move AssociatePerson\Tag field
  436. 2, Optimize RealName field
  437. 2019-03-18 Version: 1.53.57
  438. 1, Update Dependency
  439. 2019-03-18 Version: 1.53.56
  440. 1, Update Dependency
  441. 2019-03-18 Version: 1.53.55
  442. 1, Update Dependency
  443. 2019-03-18 Version: 1.53.54
  444. 1, Update Dependency
  445. 2019-03-15 Version: 1.53.53
  446. 1, update api info
  447. 2019-03-15 Version: 1.53.52
  448. 1, Update Dependency
  449. 2019-03-15 Version: 1.53.51
  450. 1, Update Dependency
  451. 2019-03-15 Version: 1.53.50
  452. 1, Update Dependency
  453. 2019-03-15 Version: 1.53.49
  454. 1, Update Dependency
  455. 2019-03-15 Version: 1.53.48
  456. 1, Update Dependency
  457. 2019-03-15 Version: 1.53.47
  458. 1, Update Dependency
  459. 2019-03-15 Version: 1.53.46
  460. 1, update RemoveInstances, support to delete 50 instances at a time.
  461. 2019-03-15 Version: 1.53.45
  462. 1, Update Dependency
  463. 2019-03-15 Version: 1.53.44
  464. 1, Update Dependency
  465. 2019-03-15 Version: 1.53.43
  466. 1, Update Dependency
  467. 2019-03-15 Version: 1.53.42
  468. 1, Update Dependency
  469. 2019-03-14 Version: 1.53.41
  470. 1, Update Dependency
  471. 2019-03-14 Version: 1.53.40
  472. 1, Update Dependency
  473. 2019-03-14 Version: 1.53.39
  474. 1, Update Dependency
  475. 2019-03-14 Version: 1.53.38
  476. 1, Update Dependency
  477. 2019-03-14 Version: 1.53.37
  478. 1, Update Dependency
  479. 2019-03-14 Version: 1.53.36
  480. 1, Update Dependency
  481. 2019-03-14 Version: 1.53.35
  482. 1, Update Dependency
  483. 2019-03-14 Version: 1.53.34
  484. 1, Update Dependency
  485. 2019-03-14 Version: 1.53.33
  486. 1, Update Dependency
  487. 2019-03-13 Version: 1.53.32
  488. 1, Update Dependency
  489. 2019-03-13 Version: 1.53.31
  490. 1, Update Dependency
  491. 2019-03-13 Version: 1.53.30
  492. 1, Update Dependency
  493. 2019-03-13 Version: 1.53.29
  494. 1, Distinguish between system and service parameters
  495. 2019-03-13 Version: 1.53.28
  496. 1, add DescribeDemands interface
  497. 2019-03-13 Version: 1.53.27
  498. 1, Distinguish between system and service parameters
  499. 2019-03-13 Version: 1.53.26
  500. 1, Distinguish between system and service parameters
  501. 2019-03-12 Version: 1.53.25
  502. 1, Add application name support for config center APIs.
  503. 2, Add GetCluster API.
  504. 3, Support debug switch in user region APIs.
  505. 2019-03-12 Version: 1.53.24
  506. 1, Add Vpc openapi interface,Support for new fields.
  507. 2, Support for ipv6 gateway openapi.
  508. 3, Fixed some problems of the vpc openapi.
  509. 2019-03-12 Version: 1.53.23
  510. 1, add agency infomation
  511. 2, update sdk core resources
  512. 2019-03-11 Version: 1.53.22
  513. 1, add agency infomation
  514. 2, update sdk core resources
  515. 2019-03-11 Version: 1.53.21
  516. 1, Add face grouping feature .
  517. 2, Add head pose and face quality.
  518. 2019-03-11 Version: 1.53.20
  519. 1, Update aliyun-java-sdk-core version.
  520. 2019-03-08 Version: 1.53.19
  521. 1, Publish instance spec describe api.
  522. 2019-03-08 Version: 1.53.18
  523. 1, This is an example of release-log.
  524. 2, Please strictly follow this format to edit in English.
  525. 3, Format:Number + , + Space + Description
  526. 2019-03-07 Version: 1.53.17
  527. 1, Fix go api miss service_code problem
  528. 2019-03-07 Version: 1.53.16
  529. 1, Change service code to acr
  530. 2019-03-07 Version: 1.53.15
  531. 1, Publish instance describe and release apis.
  532. 2019-03-06 Version: 1.53.14
  533. 1, Release ActionTrail Go API.
  534. 2019-03-06 Version: 1.53.13
  535. 1, Update Service Code.
  536. 2019-03-05 Version: 1.53.12
  537. 1, Update the SDK version to 1.2.4
  538. 2019-03-04 Version: 1.53.11
  539. 1, This is an example of release-log.
  540. 2, Please strictly follow this format to edit in English.
  541. 3, Format:Number + , + Space + Description
  542. 2019-03-01 Version: 1.53.10
  543. 1, This is an example of release-log.
  544. 2, Please strictly follow this format to edit in English.
  545. 3, Format:Number + , + Space + Description
  546. 2019-03-01 Version: 1.53.9
  547. 1, Support Build Function Compute Backend By SDK
  548. 2019-03-01 Version: 1.53.8
  549. 1, Add API QueryRegionConfig
  550. 2, Add API SynchronizeResource
  551. 2019-02-28 Version: 1.53.7
  552. 1, Add new apis named ListTranscodeTask, GetTranscodeTask, GetTranscodeSummary.
  553. 2, Add the new field named TranscodeTemplateIds and ForceDelGroup to DeleteTranscodeTemplateGroup api request, and add a new field named NonExistTranscodeTemplateIds to the api response.
  554. 3, Add a new field named Rotate in VideoStream of Mezzanine struct to GetMezzanineInfo api response .
  555. 4, Add a new field named Status in ImageInfo to GetImageInfo api response.
  556. 5, Add a new field named CustomMediaInfo to UpdateVideoInfo, GetVideoInfo and SearchMedia api to support the custom mediaInfo feature.
  557. 6, Add a new filed named PlayInfoList and some Audit fields to SearchMedia api response.
  558. 7, Clean up an api named DeleteTranscodeTemplates, which is replaced with the api named DeleteTranscodeTemplateGroup.
  559. 2019-02-27 Version: 1.53.6
  560. 1, Add three APIs for tag. APIs : TagResources, UntagResources, ListTagResources.
  561. 2019-02-27 Version: 1.53.5
  562. 1, Update Config API.
  563. 2019-02-26 Version: 1.53.4
  564. 1, Industry brain v1.3.7 release
  565. 2, Add asynchronous APIs
  566. 3, version 1.3.7
  567. 2019-02-26 Version: 1.53.3
  568. 1, Add interface of tag.
  569. 2, Add tag info in DescribeDBClusters and DescribeDBClusterAttribute.
  570. 2019-02-25 Version: 1.53.2
  571. 1, add opensearch to GO sdk
  572. 2019-02-22 Version: 1.53.1
  573. 1, Fixed QueryAvailableInstances response unmarshal problem
  574. 2019-02-21 Version: 1.53.0
  575. 1, New DeleteDeviceGroup interface.
  576. 2, New DeleteDeviceAllGroup interface.
  577. 3, New GroupId fields for QuerySyncPicSchedule input parameter.
  578. 4, New GroupId fields for QueryAddUserInfo input parameter.
  579. 2019-02-20 Version: 1.52.2
  580. 1, Add code and message to inovkeService API
  581. 2, User could check code and message to get more specific information
  582. 3, 1.0.0 alpha release
  583. 2019-02-18 Version: 1.52.1
  584. 1, Initialization release SDK. EDAS now supports SDK implemented by current programming language.
  585. 2019-02-18 Version: 1.52.0
  586. 1, Instantiation: adding the property of instance.
  587. 2, Replace the "ProducerId" and "ConsumerId" properties with "GROUP_ID".
  588. 3, Remove parameter OnsRegionId to simplified usage.
  589. 2019-02-18 Version: 1.51.28
  590. 1, industrial-brain release.
  591. 2, publish SDK to public package stores.
  592. 3, 1.0.0 including all APIs in doc.
  593. 2019-02-18 Version: 1.51.27
  594. 1, Add DryRun into StartInstance, StopInstance and RebootInstance.
  595. 2, Add snapshot operations: ExportSnapshot and ImportSnapshot
  596. 2019-02-17 Version: 1.51.26
  597. 1, API definition support 'ForceNonceCheck', 'DisableInternet' parameter settings
  598. 2019-02-15 Version: 1.51.25
  599. 1, Modify DescribeDBInstances LastDowngradeTime DataType
  600. 2019-02-14 Version: 1.51.24
  601. 1, Update DescribeCdnTypes.
  602. 2019-02-14 Version: 1.51.23
  603. 1, Update DescribeTopDomainsByFlow.
  604. 2019-01-30 Version: 1.51.22
  605. 1, Add a new api called GetURLUploadInfos to query the upload task of UploadMediaByURL.
  606. 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.
  607. 3, Clean up the old AI related apis of VoD, such as SubmitAIASRJob, is replaced with the new AI api.
  608. 4, Clean up an api called GetVideoPlayInfo, which is used by the old player SDKs that are no longer supported.
  609. 5, Clean up some apis that used only by the VoD console to avoid misuse, such as OpenVodService.
  610. 2019-01-30 Version: 1.51.21
  611. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  612. 2019-01-30 Version: 1.51.20
  613. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  614. 2019-01-30 Version: 1.51.19
  615. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  616. 2019-01-30 Version: 1.51.18
  617. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  618. 2019-01-30 Version: 1.51.17
  619. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  620. 2019-01-29 Version: 1.51.16
  621. 1, Add a new pop interface to support deleting item by skuId which is defined by users to distinguish items
  622. 2019-01-29 Version: 1.51.15
  623. 1, This is an example of release-log.
  624. 2, Please strictly follow this format to edit in English.
  625. 3, Format:Number + , + Space + Description
  626. 2019-01-29 Version: 1.51.14
  627. 1, Make obsolete api offline.
  628. 2, Fix some bug.
  629. 2019-01-28 Version: 1.51.13
  630. 1, Release 3 new Alibaba Cloud Bill API(QueryBillOverview、QueryBill、QueryInstanceBill).
  631. 2, Kindly suggest replace to new APIs who is using the old ones(QueryMonthlyBill、QuerySettlementBill、QueryMonthlyInstanceConsumption).
  632. 2019-01-28 Version: 1.51.12
  633. 1, Support modify vSwitch of scalingGroup.
  634. 2, Support new target tracking scaling rule.
  635. 2019-01-28 Version: 1.51.11
  636. 1, modify DescribeSlowLogs OpenApi.
  637. 2019-01-23 Version: 1.51.10
  638. 1, release new version
  639. 2019-01-23 Version: 1.51.9
  640. 1, release new version
  641. 2019-01-23 Version: 1.51.8
  642. 1, new go version
  643. 2019-01-23 Version: 1.51.7
  644. 1, Add model relevant parameter
  645. 1, Add plugin relevant parameter
  646. 2019-01-23 Version: 1.51.6
  647. 1, Add model relevant parameter
  648. 2019-01-23 Version: 1.51.5
  649. 1, support plugin
  650. 2, support model
  651. 2019-01-23 Version: 1.51.4
  652. 1, Add model relevant parameter
  653. 2019-01-22 Version: 1.51.3
  654. 1, Add model relevant parameters
  655. 2019-01-22 Version: 1.51.2
  656. 1, support Stack Policy setting .
  657. 2019-01-21 Version: 1.51.1
  658. 1, Interface DescribePluginApis returns the modification
  659. 2019-01-17 Version: 1.51.0
  660. 1, Add api AcceptInquiredSystemEvent.
  661. 2, Add ExtendedAttribute to response of api DescribeInstanceHistoryEvents.
  662. 3, Add ExtendedAttribute to response of api DescribeInstancesFullStatus.
  663. 2019-01-16 Version: 1.50.10
  664. 1, The plugin feature is released and supports a variety of plugins, as follows:trafficControl、backendSignature、ipControl、jwtAuth、cors、caching
  665. 2019-01-15 Version: 1.50.9
  666. 1, Add SubmitVerification API for RPMin solution.
  667. 2, Return authority comparison score in GetStatus, SubmitMaterials and SubmitVerification.
  668. 2019-01-15 Version: 1.50.8
  669. 1, Go Lang API release
  670. 2, Support UploadCertificate,CertficateList function;
  671. 2019-01-15 Version: 1.50.7
  672. 1, Add new apis called AddTranscodeTemplateGroup, UpdateTranscodeTemplateGroup, ListTranscodeTemplateGroup, GetTranscodeTemplateGroup, SetDefaultTranscodeTemplateGroup ,DeleteTranscodeTemplateGroup and DeleteTranscodeTemplates which support transcode template feature.
  673. 2, Add new apis called AddAITemplate, DeleteAITemplate, UpdateAITemplate, GetAITemplate, ListAITemplate, GetDefaultAITemplate and SetDefaultAITemplate which support AI template feature.
  674. 3, Add new apis called SubmitAIMediaAuditJob, GetAIMediaAuditJob, GetMediaAuditResult, GetMediaAuditResultTimeline which support AIMediaAudit feature.
  675. 4, Add the field named Priority to SubmitTranscodeJobs api request.
  676. 5, Add the field named UserData to UploadMediaByURL api request.
  677. 6, Add the field named UserData to CreateUploadImage api request.
  678. 7, Add the field named UserData to CreateUploadAttachedMedia api request.
  679. 2019-01-14 Version: 1.50.6
  680. 1, Release Go SDK for CR
  681. 2019-01-11 Version: 1.50.5
  682. 1, CreateOfficeConversionTask, ConvertOfficeFormat support Hidecomments
  683. 2019-01-10 Version: 1.50.4
  684. 1, regenerated for ECS/2014-05-26
  685. 2019-01-10 Version: 1.50.3
  686. 1, Add fields for QueryBrokerDemand api.
  687. 2019-01-09 Version: 1.50.2
  688. 1, Add user role support.
  689. 2019-01-09 Version: 1.50.1
  690. 1, Add user role support.
  691. 2, Add new APIs for IMM.
  692. 2019-01-07 Version: 1.50.0
  693. 1, Airec SDK Release Version 1.0.0.
  694. 2019-01-04 Version: 1.49.4
  695. 1, modify DescribeSlowLogs, support query param SQLHASH, remove SQLID query param.
  696. 2, modify DescribeSlowLogRecords, response values add SQLHASH, remove SQLID.
  697. 3, upgrade rds sdk version 2.3.1.
  698. 2019-01-04 Version: 1.49.3
  699. 1, Change the DescribeInstance response esConfig List => Map
  700. 2018-12-29 Version: 1.49.2
  701. 1, re-generate go sdk for sts.
  702. 2018-12-29 Version: 1.49.1
  703. 1, re-generate Go SDK for RAM
  704. 2018-12-29 Version: 1.49.0
  705. 1, Add EnableUser interface, Support admin user to enable another user.
  706. 2, Add DisableUser Interface, Support admin user to disable another user.
  707. 3, Add DeleteUser Interface, Support admin user to delete another user.
  708. 2018-12-29 Version: 1.48.8
  709. 1, Add new set image video api
  710. 2018-12-28 Version: 1.48.7
  711. 1, Add new set image video api
  712. 2018-12-28 Version: 1.48.6
  713. 1, Add new set image video api
  714. 2018-12-28 Version: 1.48.5
  715. 1, Add new set image video api
  716. 2018-12-28 Version: 1.48.4
  717. 1, Add new set image video api.
  718. 2018-12-28 Version: 1.48.3
  719. 1, Add new set image video api.
  720. 2, Add video async task api.
  721. 2018-12-27 Version: 1.48.2
  722. 1, fix php sdk
  723. 2018-12-27 Version: 1.48.1
  724. 1, Add DescribeZones Api.
  725. 2018-12-27 Version: 1.48.0
  726. 1, Elasticsearch GO sdk release.
  727. 2018-12-25 Version: 1.47.3
  728. 1, Add interface of endpoint.
  729. 2, Add interface of cluster parameter.
  730. 2018-12-21 Version: 1.47.2
  731. 1, ARMS SDK 2018-12-19 go sdk upload
  732. 2018-12-20 Version: 1.47.1
  733. 1, Sync CDN API.
  734. 2018-12-20 Version: 1.47.0
  735. 1, Add Dns Sec apis.
  736. 2, Add coupon and promotion fields for order apis.
  737. 2018-12-20 Version: 1.46.0
  738. 1, Add Dns Sec apis.
  739. 2, Add coupon and promotion fields for order apis.
  740. 2018-12-17 Version: 1.45.3
  741. 1, Add EnableBillGeneration interface.
  742. 2, Authorization for Virtual Network Operator.
  743. 2018-12-17 Version: 1.45.2
  744. 1, First Release
  745. 2018-12-16 Version: 1.45.1
  746. 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.
  747. 2018-12-15 Version: 1.45.0
  748. 1, first release
  749. 2, this SDK is for control purposes, programmatic interface of HTTPDNS console: https://httpdns.console.aliyun.com
  750. 2018-12-14 Version: 1.44.2
  751. 1, fixed sdk unit loute .
  752. 2, upgrade rds sdk version 2.2.0.
  753. 2018-12-14 Version: 1.44.1
  754. 1, fix service code to rds
  755. 2018-12-13 Version: 1.44.0
  756. 1, Add SystemDiskSize in CreateCluster and AddNodes, add more parameters in RecoverCluster
  757. 2018-12-12 Version: 1.43.15
  758. 1, Add interface GrantAccountPrivilege;
  759. 2, Add interface RevokeAccountPrivilege;
  760. 2018-12-12 Version: 1.43.14
  761. 1, Sync CDN API.
  762. 2018-12-12 Version: 1.43.13
  763. 1, Fix a bug.
  764. 2018-12-12 Version: 1.43.12
  765. 1, Sync CDN API.
  766. 2018-12-11 Version: 1.43.11
  767. 1, Sync CDN API.
  768. 2018-12-11 Version: 1.43.10
  769. 1, Sync CDN API.
  770. 2018-12-11 Version: 1.43.9
  771. 1, Release Location Go SDK
  772. 2018-12-11 Version: 1.43.8
  773. 1, DescribeAccount support OwnerAccount params.
  774. 2, Upgrade Rds SDK Version to 2.3.0
  775. 2018-12-11 Version: 1.43.7
  776. 1, Modify DescribeDBInstances OpenApi lastDowngradeTime dataType.
  777. 2, Upgrade SDK Version to 2.0.3.
  778. 2018-12-11 Version: 1.43.6
  779. 1, Sync CDN API.
  780. 2018-12-11 Version: 1.43.5
  781. 1, Add ModifyInstanceVpcAuthMode OpenApi.
  782. 2, Upgrade SDK Version to 2.0.4.
  783. 2018-12-06 Version: 1.43.4
  784. 1, Add api RedeployInstance
  785. 2018-12-06 Version: 1.43.3
  786. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  787. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  788. 2018-12-05 Version: 1.43.2
  789. 1, Scaling group support vServerGroup.
  790. 2018-12-05 Version: 1.43.1
  791. 1, Add image async job.
  792. 2, Fix group bug.
  793. 2018-12-04 Version: 1.43.0
  794. 1, The first release of Alibaba Cloud BaaS SDK
  795. 2018-12-03 Version: 1.42.10
  796. 1, Sync CDN API.
  797. 2018-12-03 Version: 1.42.9
  798. 1, Sync CDN API.
  799. 2018-12-03 Version: 1.42.8
  800. 1, Update 2014-11-11 API.
  801. 2018-12-03 Version: 1.42.7
  802. 1, Add a parameter to RemoveInstances.
  803. 2018-11-30 Version: 1.42.6
  804. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  805. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  806. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  807. 2018-11-29 Version: 1.42.5
  808. 1, This is the first version of Uis service.
  809. 2018-11-28 Version: 1.42.4
  810. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  811. 2018-11-27 Version: 1.42.3
  812. 1, ConvertOfficeFormat support TgtFilePrefix, TgtFileSuffix, TgtFilePages, FitToPagesTall, FitToPagesWide
  813. 2018-11-27 Version: 1.42.2
  814. 1, add doc index api
  815. 2018-11-27 Version: 1.42.1
  816. 1, api for custom keyword lib、similartext lib、voice keyword lib
  817. 2, api for custom image lib
  818. 3, support client file detect for image detection scenes、voice detection scenes、video detection scenes、file detection scenes
  819. 2018-11-26 Version: 1.42.0
  820. 1, Add RegisterInstance interface, Support admin or DBA user to register new db instance.
  821. 2, Add RegisterUser Interface, Support admin user to register new user.
  822. 3, Add GetOpLog Interface, Support admin user to get operation log.
  823. 2018-11-22 Version: 1.41.2
  824. 1, Increase the scene field
  825. 2018-11-22 Version: 1.41.1
  826. 1, Provide attribute info for DescribePricingModule api.
  827. 2018-11-22 Version: 1.41.0
  828. 1, Add ScrollDomainList api.
  829. 2, Add email filter for QueryRegistrantProfile.
  830. 2018-11-22 Version: 1.40.4
  831. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  832. 2018-11-21 Version: 1.40.3
  833. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  834. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  835. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  836. 2018-11-20 Version: 1.40.2
  837. 1, Fix Compatibility Problems
  838. 2018-11-20 Version: 1.40.1
  839. 1, Add MNS STS Token Query API
  840. 2, Add MNS Minimal Package
  841. 2018-11-19 Version: 1.40.0
  842. 1, Add field BargainSellerPrice and BargainSellerMobile
  843. 2018-11-19 Version: 1.39.3
  844. 1, Fixed some problems.
  845. 2018-11-19 Version: 1.39.2
  846. 1, Add query support for redeem
  847. 2018-11-16 Version: 1.39.1
  848. 1, update version
  849. 2018-11-15 Version: 1.39.0
  850. 1, ECS support ipv6Address
  851. 2018-11-15 Version: 1.38.3
  852. 1, update version
  853. 2018-11-15 Version: 1.38.2
  854. 1, update version.
  855. 2018-11-15 Version: 1.38.1
  856. 1, Remove FaceCompare, FaceRegist, FaceSearch api.
  857. 2, Add DetectLogo api.
  858. 3, CreateOfficeConversionTask support IdempotentToken.
  859. 2018-11-14 Version: 1.38.0
  860. 1, Better support for hybrid cluster.
  861. 2018-11-13 Version: 1.37.0
  862. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  863. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  864. 3, Add DynamicCheck properties for results of CheckDomain interface.
  865. 2018-11-13 Version: 1.36.0
  866. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  867. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  868. 3, Add DynamicCheck properties for results of CheckDomain interface.
  869. 2018-11-10 Version: 1.35.4
  870. 1, Update SetWaitingRoomConfig.
  871. 2018-11-08 Version: 1.35.3
  872. 1, Update Version.
  873. 2018-11-07 Version: 1.35.2
  874. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  875. 2, Add API GetTaskStatus,StartTask,StopTask.
  876. 3, Add API GetTaskParam,UpdateTaskParam.
  877. 2018-11-02 Version: 1.35.1
  878. 1, deviceName and productKey can be used instead of iotId.
  879. 2, New productKey fields for queryauthentication output parameter.
  880. 3, New deviceName fields for queryauthentication output parameter.
  881. 2018-11-02 Version: 1.35.0
  882. 1, first version
  883. 2018-10-31 Version: 1.34.13
  884. 1, update
  885. 2018-10-31 Version: 1.34.12
  886. 1, Update SetWaitingRoomConfig.
  887. 2018-10-31 Version: 1.34.11
  888. 1, Add SetWaitingRoomConfig.
  889. 2018-10-31 Version: 1.34.10
  890. 1, Add SetWaitingRoomConfig.
  891. 2018-10-31 Version: 1.34.9
  892. 1, The DescribeDBInstanceAttribute add replicaSets response value.
  893. 2, The DescribeDBInstances support engine query.
  894. 2018-10-30 Version: 1.34.8
  895. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  896. 2018-10-29 Version: 1.34.7
  897. 1, Add ots trigger api interface.
  898. 2018-10-29 Version: 1.34.6
  899. 1, update
  900. 2018-10-26 Version: 1.34.5
  901. 1, Remove useless parameters QueryDomainAdminDivision api.
  902. 2018-10-26 Version: 1.34.4
  903. 1, Add apis for trademark domains.
  904. 2, Retry publish SDK.
  905. 2018-10-26 Version: 1.34.3
  906. 1, Add apis for trademark domains.
  907. 2018-10-26 Version: 1.34.2
  908. 1, Return AuditConclusions in SubmitMaterials API.
  909. 2018-10-25 Version: 1.34.1
  910. 1, Add apis for trademark domains.
  911. 2018-10-25 Version: 1.34.0
  912. 1, Add apis for trademark domains.
  913. 2018-10-25 Version: 1.33.0
  914. 1, Add apis for trademark domains.
  915. 2, Add QueryDomainAdminDivision api.
  916. 2018-10-16 Version: 1.32.3
  917. 1, This version add MetricQuery interface to support retcode and apm metric query.
  918. 2018-10-16 Version: 1.32.2
  919. 1, This version add MetricQuery interface to support retcode and apm metric query.
  920. 2018-10-16 Version: 1.32.1
  921. 1, This version add MetricQuery interface to support retcode and apm metric query.
  922. 2018-10-16 Version: 1.32.0
  923. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  924. 2, Add instance topology api DescribeInstanceTopology
  925. 3, Add mount point in DescribeDisksFullStatus
  926. 2018-10-12 Version: 1.31.8
  927. 1, ModifyCenAttribute supports ProtectionLevel.
  928. 2, New APIs: PublishRouteEntries/WithdrawPublishedRouteEntries/DescribePublishedRouteEntries
  929. 2018-10-11 Version: 1.31.7
  930. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  931. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  932. 3, Add a new api called UpdateImageInfos to update image information.
  933. 2018-10-10 Version: 1.31.6
  934. 1, add UpdateProject api, support update CU, ServiceRole
  935. 2, PutProject not support edit
  936. 3, CreateOfficeConversionTask api now supports FitToPagesTall, FitToPagesWide
  937. 4, Remove paramater Engines, Indexers from project apis
  938. 2018-10-09 Version: 1.31.5
  939. 1, v1.0.0-->v1.0.1
  940. 2, provider new region:beijing/shenzhen/zhangjiakou
  941. 3, provider service for VPC user;
  942. 2018-09-30 Version: 1.31.4
  943. 1, This is an example of release-log.
  944. 2, Please strictly follow this format to edit in English.
  945. 3, Format:Number + , + Space + Description
  946. 2018-09-29 Version: 1.31.3
  947. 1, Sync cdn api.
  948. 2018-09-29 Version: 1.31.2
  949. 1, This is an example of release-log.
  950. 2, Please strictly follow this format to edit in English.
  951. 3, Format:Number + , + Space + Description
  952. 2018-09-29 Version: 1.31.1
  953. 1, This is an example of release-log.
  954. 2, Please strictly follow this format to edit in English.
  955. 3, Format:Number + , + Space + Description
  956. 2018-09-27 Version: 1.31.0
  957. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  958. 2018-09-27 Version: 1.30.8
  959. 1, modify getFaces Api
  960. 2018-09-27 Version: 1.30.7
  961. 1, modify getFaces Api
  962. 2018-09-25 Version: 1.30.6
  963. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  964. 2018-09-25 Version: 1.30.5
  965. 1, Fix bug in GetVerifyToken and SubmitMaterials API.
  966. 2018-09-22 Version: 1.30.4
  967. 1, update
  968. 2018-09-20 Version: 1.30.3
  969. 1, Fix publish failure for Java, Python and C# SDK.
  970. 2018-09-20 Version: 1.30.2
  971. 1, BssOpenApi first deploy.
  972. 2018-09-20 Version: 1.30.1
  973. 1, BssOpenApi first deploy.
  974. 2018-09-19 Version: 1.30.0
  975. 1, Add ens api, include SaveSingleTaskForDisassociatingEns, SaveSingleTaskForAssociatingEns, QueryLocalEnsAssociation and QueryEnsAssociation.
  976. 2018-09-17 Version: 1.29.10
  977. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  978. 2018-09-17 Version: 1.29.9
  979. 1, describeRegions modify.
  980. 2018-09-17 Version: 1.29.8
  981. 1, ModifySecurityIps support WhitelistNetworkType
  982. 2018-09-16 Version: 1.29.7
  983. 1, add CheckInstanceExist OpenApi.
  984. 2018-09-14 Version: 1.29.6
  985. 1, Add DedicatedHost Feature
  986. 2018-09-13 Version: 1.29.5
  987. 1, modify CheckDBInstance OpenApi
  988. 2018-09-13 Version: 1.29.4
  989. 1, Add CreateChannelToken.
  990. 2018-09-11 Version: 1.29.3
  991. 1, add CheckDBInstance OpenApi.
  992. 2018-09-06 Version: 1.29.2
  993. 1, fixed DescirbeRegions zoneId date type.
  994. 2018-09-06 Version: 1.29.1
  995. 1, AutoScaling support launchTemplate.
  996. 2018-09-05 Version: 1.29.0
  997. 1, Add new APIs with control policy for querying price
  998. 2018-09-03 Version: 1.28.3
  999. 1, voice identify interface
  1000. 2, client upload credentials interface
  1001. 2018-09-03 Version: 1.28.2
  1002. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  1003. 2018-08-31 Version: 1.28.1
  1004. 1, The CreateInstance supported VPC IpAddress.
  1005. 2018-08-28 Version: 1.28.0
  1006. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  1007. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  1008. 2018-08-28 Version: 1.27.6
  1009. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  1010. 2018-08-27 Version: 1.27.5
  1011. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  1012. 2018-08-27 Version: 1.27.4
  1013. 1, createInstance supported IpAddress param.
  1014. 2018-08-24 Version: 1.27.3
  1015. 1, Add api: DetectQRCode
  1016. 2018-08-23 Version: 1.27.2
  1017. 1, RunInstance add privateIpAddress.
  1018. 2018-08-23 Version: 1.27.1
  1019. 1, This is an example of release-log.
  1020. 2, Please strictly follow this format to edit in English.
  1021. 3, Format:Number + , + Space + Description
  1022. 2018-08-23 Version: 1.27.0
  1023. 1, Add CreateVpnGateway API.
  1024. 2, Add product Ipv6Translator.
  1025. 2018-08-22 Version: 1.26.2
  1026. 1, upgrade mongodb sdk.
  1027. 2018-08-22 Version: 1.26.0
  1028. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  1029. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  1030. 2018-08-21 Version: 1.25.8
  1031. 1, DeleteFaceSearchImageByIdRequest add field: srcUri(String).
  1032. 2, CreateFaceSetResponse add field: faces(Long).
  1033. 3, GetFaceSetResponse add field: faces(Long).
  1034. 4, Fix class Blurness in IndexFaceResponse.
  1035. 2018-08-21 Version: 1.25.7
  1036. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  1037. 2018-08-17 Version: 1.25.6
  1038. 1, Add a new api called DeleteImage to clear the image resource.
  1039. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  1040. 3, Add the field called OutputType to GetMezzanineInfo api response.
  1041. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  1042. 2018-08-17 Version: 1.25.5
  1043. 1, New apkpubkey fields for queryauthentication output parameter.
  1044. 2, New packagename fields for queryauthentication output parameter.
  1045. 3, New clientId fields for queryauthentication output parameter.
  1046. 2018-08-16 Version: 1.25.4
  1047. 1, ModifyScalingConfiguration add imageName.
  1048. 2, CreateScalingConfiguration add imageName.
  1049. 2018-08-15 Version: 1.25.3
  1050. 1, Fix bug in GetMaterials API.
  1051. 2, GetVerifyToken added a new param VerifyConfigs
  1052. 2018-08-15 Version: 1.25.2
  1053. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  1054. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  1055. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  1056. 2018-08-15 Version: 1.25.1
  1057. 1, Update ecs tag to 20 maximum
  1058. 2018-08-13 Version: 1.25.0
  1059. 1, New userinfo fields for registerface input parameter.
  1060. 2, New userinfo fields for updateface input parameter.
  1061. 3, New userinfo fields for queryface output parameter.
  1062. 2018-08-13 Version: 1.24.7
  1063. 1, Add cross domain support.
  1064. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  1065. 2018-08-08 Version: 1.24.6
  1066. 1, The official release 4.0.0
  1067. 2018-08-08 Version: 1.24.5
  1068. 1, Update FC apis.
  1069. 2018-08-08 Version: 1.24.4
  1070. 1, First release.
  1071. 2018-08-05 Version: 1.24.3
  1072. 1, Add Interface SubmitSubtitleJob
  1073. 2, Support convert ttml、stl subtitle to vtt
  1074. 2018-08-04 Version: 1.24.2
  1075. 1, Add a new api called SetAuditSecurityIp to set audit security ip.
  1076. 2, Add a new api called ListAuditSecurityIp to query audit security ip list.
  1077. 3, Add a new api called UploadMediaByURL to bulk upload media based on urls.
  1078. 4, Add the field called StorageLocation and TemplateGroupId to GetVideoInfo api response.
  1079. 5, Add the field called StorageLocation and TemplateGroupId to GetVideoInfos api response.
  1080. 6, Add the field called OutputType and Status to GetPlayInfo api response.
  1081. 2018-08-04 Version: 1.24.1
  1082. 1, CreateOfficeConversionTask add TgtFilePages field to specify the final uploaded page
  1083. 2018-08-03 Version: 1.24.0
  1084. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  1085. 2018-08-02 Version: 1.23.7
  1086. 1, Add parameter(GroupId) for CreateNotifyPolicy,GetNotifyPolicy,DeleteNotifyPolicy,ListNotifyPolicy.
  1087. 2018-08-01 Version: 1.23.6
  1088. 1, Add parameter(DryRun) for CreateAlarm and UpdateAlarm.
  1089. 2018-08-01 Version: 1.23.5
  1090. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1091. 2018-08-01 Version: 1.23.4
  1092. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  1093. 2018-07-26 Version: 1.23.3
  1094. 1, Add RemoveTerminals API.
  1095. 2018-07-26 Version: 1.23.2
  1096. 1, Add new API: SendDryRunSystemEvent,PutMetricAlarm,DescribeAlarmsForDimensions,DescribeAlarms.
  1097. 2018-07-26 Version: 1.23.1
  1098. 1, Add BatchGetJobMetricInfo API.
  1099. 2, Add BatchGetPluginConfigInfo API.
  1100. 3, Add GetJobTopology API.
  1101. 2018-07-13 Version: 1.23.0
  1102. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  1103. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  1104. 3, New APIs for Container applications: AddContainerApp, etc.
  1105. 2018-07-13 Version: 1.22.6
  1106. 1, Release 2016-06-20 TableStore Open API
  1107. 2018-07-11 Version: 1.22.5
  1108. 1, new function: Attach and Detach Rds instance of scalingGroup.
  1109. 2018-07-11 Version: 1.22.4
  1110. 1, Add DetectFaceAttributesService.
  1111. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  1112. 2018-07-10 Version: 1.22.3
  1113. 1, Add new API: EnableEventRule,DisableEventRule,DeleteEventTargets,DeleteEventRule,ListEventRules.
  1114. 2, Modify the structured parameters for API: PutEventTargets,PutEventRule,DescribeEventRule.
  1115. 2018-07-09 Version: 1.22.2
  1116. 1, Add new API: DescribeEventRule,ListEventTargetsByRule,PutEventRule,PutEventTargets.
  1117. 2, Add return value(Id) for NodeProcessCreate.
  1118. 2018-07-05 Version: 1.22.1
  1119. 1, new function, attach/detach load balancer of scalingGroup
  1120. 2018-07-05 Version: 1.22.0
  1121. 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.
  1122. 2018-06-28 Version: 1.21.1
  1123. 1, ScalingConfiguration support hostName and passwordInherit
  1124. 2, ScalingConfiguration support modify
  1125. 2018-06-27 Version: 1.21.0
  1126. 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.
  1127. 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
  1128. 2018-06-27 Version: 1.20.6
  1129. 1, DescribeNetworkInterfaces support query with vpcId
  1130. 2018-06-22 Version: 1.20.5
  1131. 1, rtc openapi
  1132. 2018-06-22 Version: 1.20.4
  1133. 1, Add new API: DeleteGroupDynamicRule,ListGroupDynamicRule,ApplyTemplate,PutGroupDynamicRule.
  1134. 2, Add parameter(AlertIds) for CreateTask and ModifyTask.
  1135. 2018-06-21 Version: 1.20.3
  1136. 1, This is add InstanceList.
  1137. 2018-06-21 Version: 1.20.2
  1138. 1, This is add InstanceList.
  1139. 2018-06-20 Version: 1.20.1
  1140. 1, Add InstanceList in product security information query.
  1141. 2018-06-20 Version: 1.20.0
  1142. 1, This is the first version of jarvis-public.
  1143. 2018-06-20 Version: 1.19.6
  1144. 1, Add InstanceList in product security information query.
  1145. 2018-06-14 Version: 1.19.5
  1146. 1, Add passwordInherit.
  1147. 2018-06-13 Version: 1.19.4
  1148. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  1149. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  1150. 3, Add return value fillMode DescribeCasterLayouts.
  1151. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  1152. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  1153. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  1154. 2018-06-13 Version: 1.19.3
  1155. 1, Add lifecycleHook.
  1156. 2018-06-08 Version: 1.19.2
  1157. 1, Add scdn interface,support scdn.
  1158. 2018-06-06 Version: 1.19.1
  1159. 1, Change the type of srcUid to int.
  1160. 2018-06-06 Version: 1.19.0
  1161. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  1162. 2018-05-30 Version: 1.18.1
  1163. 1, Add new API: DescribeContact and GetContacts.
  1164. 2, Add return value: alertRule for CreateTask.
  1165. 2018-05-29 Version: 1.18.0
  1166. 1, Add new interface DescribePhoneInfo to SDK.
  1167. 2018-05-28 Version: 1.17.0
  1168. 1, Add face 1-N,1-1 scan interface.
  1169. 2018-05-28 Version: 1.16.0
  1170. 1, ValidateSecurityGroup API
  1171. 2018-05-28 Version: 1.15.1
  1172. 1, add new openapi .
  1173. 2018-05-28 Version: 1.15.0
  1174. 1, This is an example of release-log.
  1175. 2, Please strictly follow this format to edit in English.
  1176. 3, Format:Number + , + Space + Description
  1177. 2018-05-26 Version: 1.14.2
  1178. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  1179. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  1180. 2018-05-25 Version: 1.14.1
  1181. 1, CreateAlarm,DeleteAlarm,UpdateAlarm,DisableAlarm,EnableAlarm,ListAlarm,ListAlarmHistory,ListContactGroup,PutMetricData,QueryMetricData,QueryMetricLast,QueryMetricList,QueryMetricTop remove useless parameter: callby_cms_owner.
  1182. 2, QueryMetricList remove useless parameter: Page.
  1183. 3, UpdateMyGroupMembers add parameter: Readers.
  1184. 4, StopTasks,StartTasks,DeleteTasks add return value: Data.
  1185. 5, ModifyTask remove invalid parameter: TaskType.
  1186. 6, CreateTask fix bug: TaskName maybe duplicated.
  1187. 7, Add lost return value for CreateTask.
  1188. 8, DescribeISPAreaCity add parameter: isp and city.
  1189. 9, remove api: PutMetricData.
  1190. 2018-05-23 Version: 1.14.0
  1191. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  1192. 2018-05-23 Version: 1.13.1
  1193. 1, Add Function Compute interface,support Function Compute.
  1194. 2018-05-23 Version: 1.13.0
  1195. 1, Update API version to 2018-04-12.
  1196. 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.
  1197. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  1198. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  1199. 2018-05-23 Version: 1.12.5
  1200. 1, This is an example of release-log.
  1201. 2, Please strictly follow this format to edit in English.
  1202. 3, Format:Number + , + Space + Description
  1203. 2018-05-22 Version: 1.12.4
  1204. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  1205. 2, modify DescribeDBInstanceAttribute.
  1206. 2018-05-17 Version: 1.12.3
  1207. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  1208. 2018-05-17 Version: 1.12.2
  1209. 1, the first version of private dns SDK
  1210. 2018-05-11 Version: 1.12.1
  1211. 1, Add Function Compute interface,support Function Compute.
  1212. 2018-05-09 Version: 1.12.0
  1213. 1, Add apis for domain broker.
  1214. 2018-05-08 Version: 1.11.3
  1215. 1, Add instance params.
  1216. 2018-05-08 Version: 1.11.2
  1217. 1, Remove DescribeAccountAttributes.
  1218. 2018-05-03 Version: 1.11.1
  1219. 1, Publish DRDS go sdk for the first time.
  1220. 2, Support for creation/modification/deletion/description operation for DRDS instances and databases.
  1221. 2018-05-02 Version: 1.11.0
  1222. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  1223. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  1224. 2018-04-28 Version: 1.10.3
  1225. 1, Add api: DescribeTasks、StartTasks、StopTasks、DeleteTasks、ModifyTask、CreateTask、DescribeTaskDetail、DescribeISPAreaCity.
  1226. 2018-04-28 Version: 1.10.2
  1227. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  1228. 2, Add dcdn config interface,Support set、delete、query domain config.
  1229. 2018-04-27 Version: 1.10.1
  1230. 1, release hsm open api
  1231. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  1232. 2018-04-26 Version: 1.10.0
  1233. 1, Add apis for domain group.
  1234. 3, Add fields for QueryDomainList.
  1235. 2018-04-25 Version: 1.9.6
  1236. 1, CreateMyGroups add parameter "options"
  1237. 2018-04-24 Version: 1.9.5
  1238. 1, Add api:UpdateMyGroupMembers
  1239. 2018-04-24 Version: 1.9.4
  1240. 1, add interface FetchPhotos
  1241. 2, add xflush log param unixTimestamp
  1242. 2018-04-23 Version: 1.9.3
  1243. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  1244. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  1245. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  1246. 2018-04-23 Version: 1.9.2
  1247. 1, Add notificationConfiguration.
  1248. 2, Add standby status.
  1249. 2018-04-20 Version: 1.9.1
  1250. 1, Interface DescribeAlarmHistory/ListAlarmHistory Add return value instanceName.
  1251. 2018-04-17 Version: 1.8.3
  1252. 1, EditPhotos add input param TakenAt
  1253. 2, add FetchMomentPhotos
  1254. 3, ListAlbums add return param Remark
  1255. 2018-04-16 Version: 1.8.2
  1256. 1, Release go sdk
  1257. 2018-04-11 Version: 1.8.1
  1258. 1, GetLibrary/FetchLibraries add return ctime
  1259. 2, Editphotos add input param takenAt
  1260. 2018-04-10 Version: 1.8.0
  1261. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  1262. 2018-04-10 Version: 1.7.3
  1263. 1, publish Project API.
  1264. 2, publish Service API.
  1265. 3, publish Service order API.
  1266. 4, publish Credential API.
  1267. 5, publish CAS API.
  1268. 2018-04-09 Version: 1.7.2
  1269. 1, Add api: QueryMetricData, QueryMetricTop, TaskConfigCreate, TaskConfigDelete, TaskConfigEnable, TaskConfigList, TaskConfigModify, TaskConfigUnhealthy
  1270. 2, Remove api: PutSystemEvent
  1271. 2018-04-08 Version: 1.7.0
  1272. 1, Add voice asynchronous scan interface.
  1273. 2018-04-04 Version: 1.6.1
  1274. 1, add tablestore trigger pop api and sample code
  1275. 2018-04-04 Version: 1.6.0
  1276. 1, Add APIs for domain transfer in and transfer out.
  1277. 2, Add APIs for poll and acknowledge domain task.
  1278. 2018-04-03 Version: 1.5.0
  1279. 1, Add APIs for domain transfer in and transfer out.
  1280. 2, Add APIs for poll and acknowledge domain task.
  1281. 3, Add API for query domain group list.
  1282. 2018-03-30 Version: 1.4.11
  1283. 1, API QueryCustomerSaleInfo arguments update.
  1284. 2018-03-29 Version: 1.4.10
  1285. 1, edit FetchLibraries return param format
  1286. 2018-03-29 Version: 1.4.9
  1287. 1, Add APIs: CreateAlias, UpdateAlias, DeleteAlias, ListAliases, ListAliasesByKeyId.
  1288. 2, Add APIs: GetParametersForImport, ImportKeyMaterial, DeleteKeyMaterial.
  1289. 3, Update KeyMetadata for CreateKey and DescribeKey.
  1290. 2018-03-29 Version: 1.4.8
  1291. 1, Cloud Enterprise Network SDK initial release.
  1292. 2018-03-29 Version: 1.4.7
  1293. 1, Cloud Enterprise Network SDK initial release.
  1294. 2018-03-27 Version: 1.4.6
  1295. 1, Rename QueryCustomerSaleInfo to RegionName.
  1296. 2018-03-27 Version: 1.4.5
  1297. 1, publish Project API.
  1298. 2, publish Service API.
  1299. 3, publish Service order API.
  1300. 4, publish Credential API.
  1301. 5, publish CAS API.
  1302. 2018-03-27 Version: 1.4.4
  1303. 1, add interface FetchLibraries
  1304. 2018-03-23 Version: 1.4.3
  1305. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  1306. 2018-03-23 Version: 1.4.2
  1307. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  1308. 2018-03-23 Version: 1.4.1
  1309. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  1310. 2018-03-23 Version: 1.4.0
  1311. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  1312. 2, Remove 'QueryPushDetail' Api.
  1313. 2018-03-20 Version: 1.2.7
  1314. 1, add FetchAlbumTagPhotos
  1315. 2, CreatePhoto add optional param TakenAt
  1316. 2018-03-16 Version: 1.2.6
  1317. 1, Update GetQuotaInstance API.
  1318. 2018-03-16 Version: 1.2.5
  1319. 1, Synchronize to the latest api list
  1320. 2018-03-15 Version: 1.2.4
  1321. 1, Add QueryCustomerSaleInfo API.
  1322. 2018-03-09 Version:1.2.3
  1323. 1, fix bug:modify error message when roleArn is wrong
  1324. 2018-03-13 Version: 1.2.2
  1325. 1, API GetQuotaHistoryInfo fix field error.
  1326. 2018-03-09 Version: 1.2.1
  1327. 1, complete api comments
  1328. 2018-03-09 Version: 1.2.0
  1329. 1, improve endpoint resolver
  1330. 2018-03-07 Version: 1.1.7
  1331. 1, add GetAlbumsByNames
  1332. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1333. 3, add return IdStr for string
  1334. 2018-03-06 Version: 1.1.6
  1335. 1, add GetAlbumsByNames
  1336. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1337. 3, add return IdStr for string
  1338. 2018-03-06 Version: 1.1.5
  1339. 1, add GetAlbumsByNames
  1340. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1341. 3, add return IdStr for string
  1342. 2018-02-28 Version: 1.1.3
  1343. 1, Add query resource inventory API.
  1344. 2, Add query topology API.
  1345. 2018-02-28 Version: 1.1.2
  1346. 1, Add query topology API.
  1347. 2018-02-27 Version: 1.1.1
  1348. 1, Add Action API.
  1349. 2018-02-27 Version: 1.1.0
  1350. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  1351. 2018-02-12 Version: 1.0.0
  1352. 1. Optimize the nested structs in all response, this will bring the following incompatibilities:
  1353. * Api response struct changes, conclude:
  1354. * ecs.DescribeNetworkInterfaces
  1355. * ecs.DescribeDeploymentSetTopology
  1356. * rds.DescribeDBInstanceIPArrayList
  1357. * rds.DescribeDBInstancesAsCsv
  1358. * slb.DescribeLoadBalancersRelatedEcs
  1359. * vpc.DescribeVpcAttribute
  1360. * vpc.DescribeVirtualBorderRouters
  1361. * mts.RegisterMediaDetailPerson
  1362. * mts.QueryEditingJobList
  1363. * mts.SubmitEditingJobs
  1364. * mts.QueryMediaListByURL
  1365. * mts.ListJob
  1366. * mts.QueryMediaList
  1367. * mts.QueryJobList
  1368. * mts.SubmitJobs
  1369. * ehpc.DescribeCluster
  1370. * aegis.GetEntityList
  1371. * aegis.DescribeStratety
  1372. 2018-02-09 Version: 0.12.0
  1373. 1, Aliyun E-HPC service SDK, initial version.
  1374. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  1375. 2018-02-07 Version: 0.11.4
  1376. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  1377. 2018-02-06 Version: 0.11.3
  1378. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  1379. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  1380. 2018-02-02 Version: 0.11.2
  1381. 1, this version is new of captcha management and nvc analyze
  1382. 2018-01-31 Version: 0.11.1
  1383. 1. Fixed bugs that could cause signature errors while a ROA request contains lots of special symbols
  1384. 2. Optimization of the serverError.Error() interface
  1385. 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
  1386. 2018-01-29 Version: 0.11.0
  1387. 1, Support dep
  1388. 2, Add 4 usage of credentials for each services
  1389. 3, Standard interface naming
  1390. 2018-01-29 Version: 0.10.0
  1391. 1, Add 'notificationChannel' parameter to Push API
  1392. 2018-01-24 Version: 0.9.3
  1393. 1, Fixed a problem that the ActiveAlert interface name is not standard
  1394. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  1395. 2018-01-24 Version: 0.9.2
  1396. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  1397. 2018-01-24 Version: 0.9.1
  1398. 1. improve: asyncWithChan avoid panic of "write on closed channel"
  1399. 2. improve: asyncWithChan support select case usage
  1400. 3. bug fix: repeated signature nonce while retry
  1401. 4. bug fix: calling request.GetUrl() ahead of client.DoAction() will cause problems
  1402. 2018-01-24 Version: 0.9.0
  1403. 1, Publish domain config interface, allow users to create or delete a domain protect config under DDoS Pro.
  1404. 2, Publish domain config query interface, allow users to query a list of domain config or a single domain config.
  1405. 3, Publish domain proxy modify interface, allow users to set domain transmit proxy.
  1406. 4, Publish domain transmit rule config interface, including modify and delete type.
  1407. 5, Publish domain black and white list config interface.
  1408. 6, Publish domain cname auto status config interface.
  1409. 7, Publish domain certificate upload interface.
  1410. 8, Publish domain qps graph query interface.
  1411. 9, Publish ip attack events and traffic graph query interface.
  1412. 2018-01-23 Version: 0.8.3
  1413. 1, Tesla Dam API release.
  1414. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  1415. 2018-01-18 Version: 0.8.2
  1416. 1. Set default timeout to 10s
  1417. 2. Make integration tests more stable
  1418. 3. Fix the problem of LocationResolver in concurrency
  1419. 4. Modifying the naming specification
  1420. 2018-01-18 Version: 0.8.1
  1421. 1, Update ECS go SDK to catch up with other langs.
  1422. 2, DescribeImageSupportInstanceTypes add new param Filter and ActionType
  1423. 2018-01-16 Version: 0.8.0
  1424. 1, Add TriggerMode param in AddMediaWorkflow.
  1425. 2, Add TriggerMode param in QueryMediaWorkflowList/SearchMediaWorkflow/UpdateMediaWorkflow.
  1426. 3, Add interface UpdateMediaWorkflowTriggerMode.
  1427. 2018-01-11 Version: 0.7.8
  1428. 1. complete partly missed service codes
  1429. 2. add default http method for roa requests
  1430. 2018-01-11 Version: 0.7.7
  1431. 1, Bug fix: Replenish user interface
  1432. 2018-01-11 Version: 0.7.6
  1433. 1, replace photo tag 2000 upgrade to 5000
  1434. 2, add TrashQuota
  1435. 2018-01-11 Version: 0.7.5
  1436. 1, Make the json.Unmarshal more robust
  1437. 2018-01-09 Version: 0.7.4
  1438. 1, Add integration tests
  1439. 2018-01-04 Version: 0.7.3
  1440. 1, Remove get entity info API, replaced by get entity instance.
  1441. 2018-01-03 Version: 0.7.2
  1442. 1, Bug fix: fix the ecs unmarshal bug
  1443. 2018-01-03 Version: 0.7.1
  1444. 1, Bug fix: fix the unmarshal bug
  1445. 2017-12-29 Version: 0.7.0
  1446. 1, First release for Domain-intl.
  1447. 2, Add interfaces for domain name registration and management.
  1448. 2017-12-29 Version: 0.6.8
  1449. 1, Allow the setting of AcceptFormat in the Request.
  1450. 2017-12-26 Version: 0.6.5
  1451. 1, Add video AI service interface.
  1452. 2017-12-26 Version: 0.6.4
  1453. 1, Add video AI service interface.
  1454. 2017-12-20 Version: 0.6.3
  1455. 1, support tile dataset
  1456. 2, use dimension value type to replace isDrillDown
  1457. 2017-12-20 Version: 0.6.2
  1458. 1, support tile dataset
  1459. 2, use dimension value type to replace isDrillDown
  1460. 2017-12-19 Version: 0.6.1
  1461. 1, InactivatePhotos support customer inactiveTime
  1462. 2, support customer tags
  1463. 3, ListPhotoTags、ListTags add param lang
  1464. 2017-12-18 Version: 0.6.0
  1465. 1, Add Scdn API.
  1466. 2017-12-18 Version: 0.5.7
  1467. 1, This is the first release of CCC Open API.
  1468. 2017-12-15 Version: 0.5.6
  1469. 1, Update SetReqAuthConfig.
  1470. 2, Add Scdn API.
  1471. 2017-12-15 Version: 0.5.5
  1472. 1, fix test cases
  1473. 2017-12-15 Version: 0.5.4
  1474. 1, Add scdn API.
  1475. 2, Update SetReqAuthConfig.
  1476. 2017-12-12 Version: 0.5.1
  1477. 1, remove unused fmt.print
  1478. 2017-12-08 Version: 0.5.0
  1479. 1, Add ARMSQueryDataSet, WhereInDimQuery interface.
  1480. 2017-12-08 Version: 0.4.0
  1481. 1, support endpoint.xml resolver
  1482. 2017-12-08 Version: 0.3.1
  1483. 1, Add ARMSQueryDataSet, WhereInDimQuery interface.
  1484. 2017-12-01 Version: 0.2.2
  1485. 1, Fix ineffassign problems
  1486. 2017-12-01 Version: 0.2.1
  1487. 1, Fix capitalizes the first letter in each word of header
  1488. 2017-11-28 Version: 0.2.0
  1489. 1, AK2.0 & StsToken
  1490. 2017-11-27 Version: 0.1.3
  1491. 1, format ft code with gofmt
  1492. 2017-11-27 Version: 0.1.2
  1493. 1, format code with gofmt
  1494. 2017-11-27 Version: 0.1.1
  1495. 1, add glide files