ChangeLog.txt 59 KB

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