CHANGELOG 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. 2020-02-14 Version 1.36.274
  2. - Update default endpoints.
  3. 2020-02-14 Version 1.36.273
  4. - Add callback params to StartExecution API.
  5. - Support ListExecutions with Status API.
  6. 2020-02-14 Version 1.36.272
  7. - Update default endpoints.
  8. 2020-02-13 Version 1.36.271
  9. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  10. - DescribeNetworkInterfaces support QueueNumber.
  11. 2020-02-13 Version 1.36.270
  12. - Add Staging apis.
  13. 2020-02-13 Version 1.36.269
  14. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  15. - DescribeNetworkInterfaces support QueueNumber.
  16. 2020-02-13 Version 1.36.268
  17. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  18. - DescribeNetworkInterfaces support QueueNumber.
  19. 2020-02-13 Version 1.36.267
  20. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  21. - DescribeNetworkInterfaces support QueueNumber.
  22. 2020-02-13 Version 1.36.266
  23. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  24. - DescribeNetworkInterfaces support QueueNumber.
  25. 2020-02-13 Version 1.36.265
  26. - ModifyNetworkInterfaceAttribute support modify QueueNumber.
  27. - DescribeNetworkInterfaces support QueueNumber.
  28. 2020-02-13 Version 1.36.264
  29. - Add Staging apis.
  30. 2020-02-13 Version 1.36.263
  31. - Add Staging apis.
  32. 2020-02-13 Version 1.36.262
  33. - Add Staging apis.
  34. 2020-02-13 Version 1.36.261
  35. - Add Staging apis.
  36. 2020-02-13 Version 1.36.260
  37. - Add Staging apis.
  38. 2020-02-13 Version 1.36.259
  39. - Init MQTT SDK .
  40. 2020-02-12 Version 1.36.258
  41. - Support to create, describe and expire demo access token.
  42. 2020-02-12 Version 1.36.257
  43. - Update Full showStorageTyp.
  44. 2020-02-12 Version 1.36.256
  45. - Add Full showStorageTyp.
  46. 2020-02-12 Version 1.36.255
  47. - Support mau.
  48. 2020-02-11 Version 1.36.254
  49. - Return `VpcInstanceId ` for DescribeDBClusterEndpoints.
  50. - Add DescribeBackupLogs.
  51. 2020-02-11 Version 1.36.253
  52. - Support ModifyInstanceAttributes for SecurityGroupIds.
  53. 2020-02-11 Version 1.36.252
  54. - Update default endpoints.
  55. 2020-02-10 Version 1.36.251
  56. - Supported address for GetMediaMeta.
  57. 2020-02-07 Version 1.36.250
  58. - Fix bug for DescribeZoneInfo, delete return result of reionId.
  59. - Fix bug for DeleteZone, parameter zoneId change to compulsory.
  60. - Fix bug for SetProxyPattern, parameter zoneId change to compulsory.
  61. 2020-02-05 Version 1.36.249
  62. - Supported GetOfficePreviewURL.
  63. - Supported RefreshOfficePreviewToken.
  64. 2020-02-04 Version 1.36.248
  65. - Update default endpoints.
  66. 2020-01-20 Version 1.36.247
  67. - Release on full language support.
  68. 2020-01-17 Version 1.36.246
  69. - Supported Add the history event signature function.
  70. 2020-01-16 Version 1.36.245
  71. - Fix the result value of DeleteSiteMonitors.
  72. 2020-01-16 Version 1.36.244
  73. - Generated 2015-01-01 for `R-kvstore`.
  74. - Update DescribeAvailableResource.
  75. 2020-01-16 Version 1.36.243
  76. - Add fields faceComparisonScore for DescribeVerifyResult and VerifyMaterials interface.
  77. 2020-01-15 Version 1.36.242
  78. - Fix parameter issues for label synchronization group.
  79. 2020-01-15 Version 1.36.241
  80. - Fix parameter issues for label synchronization group.
  81. 2020-01-13 Version 1.36.240
  82. - New API DescribeAvailableResource.
  83. 2020-01-13 Version 1.36.239
  84. - Add Dynamic Tag API.
  85. 2020-01-13 Version 1.36.238
  86. - Supported InstanceMaintenanceAtrributes for maintening the attributes of instances.
  87. - Deleted MaintenanceProperty.
  88. - Supported RedeployDedicatedHost for redeploying dedicated host in under-assessment status.
  89. 2020-01-10 Version 1.36.237
  90. - Return `ConsistentTime` for DescribeBackups.
  91. - Return `DBNodeIds` for CreateDBNodes.
  92. 2020-01-09 Version 1.36.236
  93. - Support DAILY report in QueryInstanBill.
  94. 2020-01-08 Version 1.36.235
  95. - Add TagLevel to ListSetTags.
  96. 2020-01-07 Version 1.36.234
  97. - Modify desribeInstance return dict item.
  98. 2020-01-07 Version 1.36.233
  99. - Generated 2014-05-26 for `Ecs`.
  100. 2020-01-03 Version 1.36.232
  101. - Add GWS serie apis.
  102. - Add QueryReport.
  103. - Fix ListJobs.
  104. - Etc.
  105. 2020-01-03 Version 1.36.231
  106. - New API DescribeAvailableResource.
  107. 2020-01-03 Version 1.36.230
  108. - ImmediateDelete.
  109. - DescribeInstance CreateTimeUTC ExpireTimeUTC.
  110. - DescribeInstances CreateTimeUTC ExpireTimeUTC.
  111. - DescribeIpWhitelist Groups GroupName.
  112. 2019-12-31 Version 1.36.229
  113. - Supported SQL SERVER support delete backup set according to time range.
  114. 2019-12-31 Version 1.36.228
  115. - Support asymmetric keys.
  116. 2019-12-31 Version 1.36.227
  117. - Add request parameter groupType for OnsGroupCreate.
  118. 2019-12-31 Version 1.36.226
  119. - Supported image for process.
  120. 2019-12-31 Version 1.36.225
  121. - Generated 2019-09-28 for `reid`.
  122. 2019-12-31 Version 1.36.224
  123. - Support DeleteDBCluster.
  124. - Support ModifyDBCluster.
  125. - Support DescribeAvailableResource.
  126. 2019-12-27 Version 1.36.223
  127. - Update DescribeTrails Response.
  128. 2019-12-26 Version 1.36.222
  129. - NlpAutoml add async api.
  130. 2019-12-26 Version 1.36.221
  131. - Modify CreateRestoreTask.
  132. 2019-12-20 Version 1.36.220
  133. - Supported Search stream predict task list use modelId for IVISION.
  134. 2019-12-20 Version 1.36.219
  135. - Add result value for OnsConsumerStatus.
  136. 2019-12-19 Version 1.36.218
  137. - Add DescribeSlowLogRecords,DescribeSlowLogs for SlowLog.
  138. 2019-12-19 Version 1.36.217
  139. - Generated 2019-09-28 for `reid`.
  140. 2019-12-19 Version 1.36.216
  141. - DescribeNetworkInterfaces Supports NextToken.
  142. 2019-12-16 Version 1.36.215
  143. - DescribeTransferDomains add query param, TargetUserId, FromUserId, DomainName.
  144. 2019-12-14 Version 1.36.214
  145. - Generated 2015-01-01 for `R-kvstore`.
  146. 2019-12-14 Version 1.36.213
  147. - Update DescribeAvailableResource.
  148. 2019-12-14 Version 1.36.212
  149. - Update DescribeAvailableResource.
  150. 2019-12-12 Version 1.36.211
  151. - Generated 2019-06-10 for `et-industry-openapi`.
  152. 2019-12-11 Version 1.36.210
  153. - Supported Sync predict for Image.
  154. - Supported Set Frame Frequency for Stream Predict.
  155. - Fixed Errore Code For APIs.
  156. 2019-12-11 Version 1.36.209
  157. - Add tag API.
  158. - Add group process monitoring API.
  159. - Add API for batch setting alarm rules.
  160. 2019-12-05 Version 1.36.208
  161. - Add api QueryMetric.
  162. 2019-12-04 Version 1.36.207
  163. - Generated 2019-01-01 for `HBase`.
  164. 2019-12-04 Version 1.36.206
  165. - Supported ModifyDBInstanceSpec for Direction param.
  166. 2019-12-02 Version 1.36.205
  167. - Remove QuerySmsProdStatus OpenAPI.
  168. 2019-11-29 Version 1.36.204
  169. - Add RenewInstance.
  170. - Add RenewLogstash.
  171. - Add UpdateInstanceChargeType.
  172. - Add UpdateLogstashChargeType.
  173. 2019-11-28 Version 1.36.203
  174. - Supported API GetTxtRecordForVerify.
  175. - Supported API RetrieveDomain.
  176. 2019-11-28 Version 1.36.202
  177. - Supported dash for compress.
  178. 2019-11-28 Version 1.36.201
  179. - Eni Supports Multi-SecurityGroup.
  180. 2019-11-27 Version 1.36.200
  181. - CreateReplicationJob API supports the specified instance type.
  182. 2019-11-26 Version 1.36.199
  183. - Modify QueryBill, add SubOrderId in item of response.
  184. 2019-11-26 Version 1.36.198
  185. - Supported API BindInstanceDomains.
  186. - Supported API UnbindInstanceDomains.
  187. - Supported API AddCustomLine.
  188. - Supported API UpdateCustomLine.
  189. - Supported API DeleteCustomLines.
  190. - Supported API DescribeCustomLine.
  191. - Supported API DescribeCustomLines.
  192. 2019-11-25 Version 1.36.197
  193. - Generated 2019-10-30 for `aliyuncvc`.
  194. 2019-11-25 Version 1.36.196
  195. - One or more people can be subscribed when creating tasks.
  196. 2019-11-21 Version 1.36.195
  197. - Add ConvertPayType.
  198. - Add ConvertLogstashPayType.
  199. 2019-11-21 Version 1.36.194
  200. - Generated 2017-10-11 for `Chatbot`.
  201. 2019-11-21 Version 1.36.193
  202. - Generated 2017-10-11 for `Chatbot`.
  203. 2019-11-21 Version 1.36.192
  204. - Generated 2019-10-30 for `aliyuncvc`.
  205. 2019-11-20 Version 1.36.191
  206. - Update Nlp Automl SDK.
  207. 2019-11-20 Version 1.36.190
  208. - Add new OpenAPI.
  209. 2019-11-20 Version 1.36.189
  210. - Add new pop api.
  211. 2019-11-20 Version 1.36.188
  212. - Generated 2014-05-26 for `Ecs`.
  213. 2019-11-20 Version 1.36.187
  214. - Generated 2018-04-12 for `EHPC`.
  215. 2019-11-20 Version 1.36.186
  216. - Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
  217. - Modify ecsDemand DescribesDemands API.
  218. 2019-11-20 Version 1.36.185
  219. - Generated 2019-01-01 for `HBase`.
  220. 2019-11-20 Version 1.36.184
  221. - Add API ReportVoipProblems.
  222. - Add API QueryVoipNumberBindINfos.
  223. 2019-11-15 Version 1.36.183
  224. - Nlp Automl SDK.
  225. 2019-11-15 Version 1.36.182
  226. - Sync cdn APIs.
  227. 2019-11-15 Version 1.36.181
  228. - Fixed bugs.
  229. 2019-11-15 Version 1.36.180
  230. - Add Scdn APIS.
  231. - Sync cdn APIS.
  232. 2019-11-15 Version 1.36.179
  233. - Modify QueryAccountBill, support group by product.
  234. 2019-11-15 Version 1.36.178
  235. - Modify DescribeRestoreRangeInfo.
  236. 2019-11-15 Version 1.36.177
  237. - Add DescribeRestoreRangeInfo.
  238. 2019-11-14 Version 1.36.176
  239. - Released dysms OpenAPI.
  240. 2019-11-14 Version 1.36.175
  241. - Support Tag OpenAPI.
  242. - Fix endpoint problem.
  243. 2019-11-14 Version 1.36.174
  244. - Initial construction.
  245. - Public beta version.
  246. - Supported AliyunController for Interface.
  247. - Supported ConsoleController for Interface.
  248. - Supported AccountController for Interface.
  249. 2019-11-13 Version 1.36.173
  250. - Supported Stream analyse.
  251. 2019-11-13 Version 1.36.172
  252. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  253. 2019-11-13 Version 1.36.171
  254. - Fix ResourceId type from Long to String on QueryCostUnitResource.
  255. 2019-11-13 Version 1.36.170
  256. - Add new API QueryBillToOSSSubscription.
  257. 2019-11-13 Version 1.36.169
  258. - Supported API UpdateDomainRemark for Update Domain Remark.
  259. - Supported API UpdateDomainRecordRemark for Update Record Remark.
  260. - Unsupported API CheckDomainRecord.
  261. 2019-11-13 Version 1.36.168
  262. - Support Go SDK.
  263. - Support C SDK.
  264. - Support PHP SDK.
  265. 2019-11-08 Version 1.36.167
  266. - Add DescribeJobErrorCode.
  267. 2019-11-05 Version 1.36.166
  268. - Add OperateBlackNo.
  269. 2019-11-02 Version 1.36.165
  270. - Generated 2017-05-25 for `Dyvmsapi`.
  271. 2019-10-31 Version 1.36.164
  272. - Initial construction.
  273. - Public beta version.
  274. - Supported AliyunController for Interface.
  275. - Supported ConsoleController for Interface.
  276. - Supported AccountController for Interface.
  277. 2019-10-31 Version 1.36.163
  278. - Initial construction.
  279. - Public beta version.
  280. - Supported AliyunController for Interface.
  281. - Supported ConsoleController for Interface.
  282. - Supported AccountController for Interface.
  283. 2019-10-29 Version 1.36.162
  284. - Add a new Alibaba Cloud Bill API named QueryAccountBill.
  285. 2019-10-25 Version 1.36.161
  286. - Initial construction.
  287. - Public beta version.
  288. - Supported AliyunController for Interface.
  289. - Supported ConsoleController for Interface.
  290. - Supported AccountController for Interface.
  291. 2019-10-25 Version 1.36.160
  292. - Supported query push records.
  293. 2019-10-25 Version 1.36.159
  294. - Add DescribeDBClusterPerformance, DescribeDBNodePerformance for performance.
  295. 2019-10-24 Version 1.36.158
  296. - Generated 2017-12-14 for `BssOpenApi`.
  297. 2019-10-23 Version 1.36.157
  298. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  299. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  300. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  301. - Modify the data type of return field StorageLocation to String.
  302. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  303. 2019-10-23 Version 1.36.156
  304. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  305. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  306. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  307. - Modify the data type of return field StorageLocation to String.
  308. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  309. 2019-10-23 Version 1.36.155
  310. - Add a new api named SubmitDynamicImageJob capture a certain part of the video as a dynamic image.
  311. - Add a new api named SubmitWorkflowJob to initiate the VoD workflow processing for audio and video.
  312. - Add a new field AuditStatus in the structure ImageInfo to GetImageInfo api response, which is used to identify the audit status of the image.
  313. - Modify the data type of return field StorageLocation to String.
  314. - Add a new field named MediaType to SubmitAIMediaAuditJob api request.
  315. 2019-10-22 Version 1.36.154
  316. - RunInstances support AutoSnapshotPolicyId.
  317. 2019-10-22 Version 1.36.153
  318. - Supported ExternalId IMM.
  319. 2019-10-21 Version 1.36.152
  320. - Release first version.
  321. 2019-10-18 Version 1.36.151
  322. - Generated 2019-09-10 for `DnsKnocker`.
  323. 2019-10-16 Version 1.36.150
  324. - Add ListTagResources OpenApi.
  325. - Add TagResources OpenApi.
  326. - Add UntagResources OpenApi.
  327. - Add ModifyDBInstanceAutoUpgradeMinorVersion OpenApi.
  328. 2019-10-14 Version 1.36.149
  329. - Support continuous pushing.
  330. 2019-10-09 Version 1.36.148
  331. - Add VideoCancelScan Api.
  332. 2019-10-09 Version 1.36.147
  333. - Support API RecognizeImageColor.
  334. - Support API DetectImageElements.
  335. - Support API RecolorImage.
  336. - Support API SegmentImage.
  337. - Support API ChangeImageSize.
  338. - Support API ExtendImageStyle.
  339. - Support API RecognizeImageStyle.
  340. - Support API MakeSuperResolution.
  341. 2019-10-08 Version 1.36.146
  342. - Supported Grab Frame IMM.
  343. 2019-10-08 Version 1.36.145
  344. - Supported API MassPush for Push Message or Notice.
  345. 2019-10-08 Version 1.36.144
  346. - Generated 2016-01-20 for `Kms`.
  347. 2019-09-26 Version 1.36.143
  348. - Supported RingConfig for BindAxb,BindAxn,BindAxg,BindAxnExtension.
  349. - Add QuerySubsId.
  350. 2019-09-23 Version 1.36.142
  351. - Add param, DescribePrice supprot ReservedInstance.
  352. 2019-09-19 Version 1.36.141
  353. - Supported Video Abstract for IMM.
  354. 2019-09-19 Version 1.36.140
  355. - Generated 2018-01-20 for `Iot`.
  356. 2019-09-19 Version 1.36.139
  357. - Supported Video Abstract for IMM.
  358. 2019-09-19 Version 1.36.138
  359. - Add bizSubCode and so on.
  360. 2019-09-18 Version 1.36.137
  361. - Supported Video Abstract for IMM.
  362. 2019-09-17 Version 1.36.136
  363. - Generated 2018-04-12 for `EHPC`.
  364. 2019-09-16 Version 1.36.135
  365. - Generated 2018-04-12 for `EHPC`.
  366. 2019-09-16 Version 1.36.134
  367. - Generated 2018-04-12 for `EHPC`.
  368. 2019-09-16 Version 1.36.133
  369. - Generated 2016-11-11 for `aegis`.
  370. 2019-09-15 Version 1.36.132
  371. - Generated 2018-04-12 for `EHPC`.
  372. 2019-09-14 Version 1.36.131
  373. - Generated 2019-08-08 for `ARMS`.
  374. 2019-09-12 Version 1.36.130
  375. - Fixed CMakeLists file.
  376. 2019-09-12 Version 1.36.129
  377. - Fixed CMakeLists file.
  378. 2019-09-12 Version 1.36.128
  379. - Fixed CMakeLists file.
  380. 2019-09-12 Version 1.36.127
  381. - Fixed CMakeLists file.
  382. 2019-09-12 Version 1.36.126
  383. - Fixed CMakeLists file.
  384. 2019-09-12 Version 1.36.125
  385. - Fixed CMakeLists file.
  386. 2019-09-12 Version 1.36.124
  387. - Fixed CMakeLists file.
  388. 2019-09-12 Version 1.36.123
  389. - Fixed CMakeLists file.
  390. 2019-09-12 Version 1.36.122
  391. - Fixed CMakeLists file.
  392. 2019-09-12 Version 1.36.121
  393. - Fixed CMakeLists file.
  394. 2019-09-12 Version 1.36.120
  395. - Fixed CMakeLists file.
  396. 2019-09-12 Version 1.36.119
  397. - Fixed CMakeLists file.
  398. 2019-09-12 Version 1.36.118
  399. - Fixed CMakeLists file.
  400. 2019-09-12 Version 1.36.117
  401. - Fixed CMakeLists file.
  402. 2019-09-09 Version 1.36.116
  403. - CreateInstance add toen.
  404. - UpdateInstance add toen.
  405. 2019-09-06 Version 1.36.115
  406. - Update endpoint data.
  407. 2019-09-06 Version 1.36.114
  408. - Generated 2016-04-28 for `Vpc`.
  409. 2019-09-05 Version 1.36.113
  410. - Supported for setEndpoint method.
  411. 2019-09-05 Version 1.36.112
  412. - Generated 2014-05-15 for `Slb`.
  413. 2019-09-05 Version 1.36.111
  414. - Generated 2017-07-05 for `CCC`.
  415. 2019-09-05 Version 1.36.110
  416. - Generated 2018-11-11 for `foas`.
  417. 2019-09-05 Version 1.36.109
  418. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  419. 2019-09-05 Version 1.36.108
  420. - Generated 2015-11-01 for `Market`.
  421. 2019-09-05 Version 1.36.107
  422. - Generated 2016-07-14 for `CloudAPI`.
  423. 2019-09-05 Version 1.36.106
  424. - Generated 2017-08-01 for `polardb`.
  425. 2019-09-05 Version 1.36.105
  426. - Generated 2017-12-14 for `BssOpenApi`.
  427. 2019-09-03 Version 1.36.104
  428. - Generated 2014-08-15 for `Rds`.
  429. 2019-08-30 Version 1.36.103
  430. - Revert to 2015-09-01.
  431. 2019-08-30 Version 1.36.102
  432. - Release Apis of Version 2019-09-10.
  433. 2019-08-30 Version 1.36.101
  434. - Supported Meida complex for IMM.
  435. 2019-08-30 Version 1.36.100
  436. - Add api for getTrace and searchTracelist.
  437. 2019-08-29 Version 1.36.99
  438. - Move StopExecution params to body.
  439. 2019-08-29 Version 1.36.98
  440. - For publish.
  441. 2019-08-28 Version 1.36.97
  442. - Add DBS API UpgradeBackupPlan.
  443. - Add DBS API DescribePreCheckProgressList.
  444. 2019-08-26 Version 1.36.96
  445. - QueryInstanceBillResponse change ownerId type from Long to String.
  446. - QueryInstanceBillResponse change usage type from float to String.
  447. - QueryInstanceBillResponse change listPrice type from float to String.
  448. - QueryInstanceBillResponse change deductedByResourcePackage type from float to String.
  449. 2019-08-22 Version 1.36.95
  450. - Support API RecognizeImageColor.
  451. - Support API DetectImageElements.
  452. - Support API RecolorImage.
  453. - Support API SegmentImage.
  454. - Support API ChangeImageSize.
  455. - Support API ExtendImageStyle.
  456. - Support API RecognizeImageStyle.
  457. - Support API MakeSuperResolutionImage.
  458. 2019-08-22 Version 1.36.94
  459. - Api release 2019-08-08 public sdk 2-5-2 sdk release 20190822 shichun-fsc.
  460. 2019-08-21 Version 1.36.93
  461. - Move StartExecution params to body.
  462. 2019-08-21 Version 1.36.92
  463. - Return backup job id when create backup.
  464. - Return backup set size when describe backups.
  465. 2019-08-20 Version 1.36.91
  466. - API TaobaoFilmGetSchedules retrun col add hallId.
  467. 2019-08-15 Version 1.36.90
  468. - FnF public version.
  469. - Add Report task api.
  470. 2019-08-15 Version 1.36.89
  471. - Add API BatchStartCdnDomain, BatchStopCdnDomain, DescribeTagResources, DescribeUserTags, TagResources, UntagResources.
  472. 2019-08-15 Version 1.36.88
  473. - QueryInstanceBillResponse add ServicePeriod.
  474. 2019-08-14 Version 1.36.87
  475. - Generated 2018-01-20 for `Iot`.
  476. 2019-08-13 Version 1.36.86
  477. - Optimize return code.
  478. - Edit QueryDataset.
  479. 2019-08-13 Version 1.36.85
  480. - Supported for openapi new version.
  481. 2019-08-12 Version 1.36.84
  482. - Support Defect Face API.
  483. 2019-08-08 Version 1.36.83
  484. - Add CreateStorageSet api to support storageSet.
  485. - Add DeleteStorageSet api to support storageSet.
  486. - Add ModifyStorageSetAttribute api to support storageSet.
  487. - Add DescribeStorageSets api to support storageSet.
  488. - Add DescribeStorageSetDetails api to support storageSet.
  489. - Add parameter StorageSetId,StorageSetPartitionNumber to api CreateDisk,RunInstances,CreateInstance support storageSet.
  490. - Add StorageSetId,StorageSetPartitionNumber with response of api DescribeDisks.
  491. - Add DescribeNetworkInterfaces to support filter by PrivateIpAddress.
  492. 2019-08-08 Version 1.36.82
  493. - Group, Plugin support tag authentication.
  494. 2019-08-06 Version 1.36.81
  495. - Supported GetMediaMeta for IMM.
  496. 2019-08-06 Version 1.36.80
  497. - Supported GetMediaMeta for IMM.
  498. 2019-08-06 Version 1.36.79
  499. - Supported GetMediaMeta for IMM.
  500. 2019-08-06 Version 1.36.78
  501. - Supported GetMediaMeta for IMM.
  502. 2019-08-06 Version 1.36.77
  503. - Supported GetMediaMeta for IMM.
  504. 2019-08-05 Version 1.36.76
  505. - GetOrderDetail add originalConfig param.
  506. 2019-08-05 Version 1.36.75
  507. - GetOrderDetail add originalConfig param.
  508. 2019-08-05 Version 1.36.74
  509. - Modify DBS API DescribeFullBackupList.
  510. 2019-08-02 Version 1.36.73
  511. - SubscribeBillToOSSRequest add multAccountRelSubscribe, bucketOwnerId.
  512. - UnsubscribeBillToOSSRequest add multAccountRelSubscribe.
  513. 2019-07-31 Version 1.36.72
  514. - Endpoint auto route.
  515. 2019-07-26 Version 1.36.71
  516. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  517. 2019-07-26 Version 1.36.70
  518. - Generated 2019-05-24 for `cusanalytic_sc_online`.
  519. 2019-07-25 Version 1.36.69
  520. - App-related actions support tag authentication.
  521. 2019-07-23 Version 1.36.68
  522. - Supported CreationOption of CreateDBCluster with `CloneFromPolarDB `,`CloneFromRDS`,`MigrationFromRDS`.
  523. 2019-07-19 Version 1.36.67
  524. - QueryMonthlyBillResponse add roundDownDiscount.
  525. - QueryBillResponse add roundDownDiscount.
  526. - QueryInstanceBillResponse add item.
  527. 2019-07-18 Version 1.36.66
  528. - Add a new field named Input to SubmitAIJob api request to set the input file of AI job.
  529. - Change the field MediaId of SubmitAIJob api to non-mandatory.
  530. 2019-07-14 Version 1.36.65
  531. - Modify DBS API DescribeBackupPlanList.
  532. 2019-07-14 Version 1.36.64
  533. - Modify DBS API DescribeBackupPlanList.
  534. 2019-07-12 Version 1.36.63
  535. - Public api AddLivePullStreamInfoConfig.
  536. 2019-07-11 Version 1.36.62
  537. - Modify CreateBackupPlan.
  538. - Modify ConfigureBackupPlan.
  539. - Modify DescribeFullBackupList.
  540. - Modify DescribeRestoreTaskList.
  541. - Add ModifyBackupSourceEndpoint.
  542. - Add ModifyBackupStrategy.
  543. - Add ModifyBackupPlanName.
  544. 2019-07-05 Version 1.36.61
  545. - Supported library managment for simillarity scene.
  546. - Remove the local file uploader code which can be downloaded from yundun content security document.
  547. 2019-07-05 Version 1.36.60
  548. - Add TaskCancelStatus for QueryTaskList api.
  549. 2019-07-04 Version 1.36.59
  550. - Supported API DescribeRecordStatisticsy for Query Volume.
  551. - Supported API DescribeDomainStatistics for Query Volume.
  552. 2019-07-03 Version 1.36.58
  553. - Supported API DescribeRecordStatisticsSummary for Query Volume.
  554. - Supported API DescribeDomainStatisticsSummary for Query Volume.
  555. - Supported API DescribeRecordStatisticsHistory for Query Volume.
  556. - Supported API DescribeDomainDnsStatistics for Query Volume.
  557. 2019-07-02 Version 1.36.57
  558. - FnF public version.
  559. 2019-07-02 Version 1.36.56
  560. - Fix Double to double.
  561. 2019-07-01 Version 1.36.55
  562. - Support cloud_essd disk category for API CreateDisk, CreateInstance and RunInstances, and support configurating PerformanceLevel when choose cloud_essd.
  563. - Add ModifyDiskSpec API to support cloud_essd PerformanceLevel modification.
  564. - Add AutoProvisioningGroup interfaces, provide AutoProvisioningGroup function.
  565. - Add RetentionDays to snapshot creating.
  566. 2019-06-27 Version 1.36.54
  567. - Added setting of crop_mode parameter.
  568. 2019-06-24 Version 1.36.53
  569. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  570. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  571. - 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.
  572. - 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.
  573. 2019-06-24 Version 1.36.52
  574. - Add some new apis to manage VoD domain, such as AddVodDomain, UpdateVodDomain, DeleteVodDomain, BatchStartVodDomain, BatchStopVodDomain, DescribeVodUserDomains, DescribeVodDomainDetail.
  575. - Add some new apis to manage VoD domain config, such as BatchSetVodDomainConfigs, DescribeVodDomainConfigs, DeleteVodSpecificConfig, SetVodDomainCertificate, DescribeVodCertificateList, DescribeVodDomainCertificateInfo.
  576. - 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.
  577. - 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.
  578. 2019-06-18 Version 1.36.51
  579. 1. Supported the related recommend.
  580. 2. Supported exposure time controll and exposure filter by scene.
  581. 2019-06-17 Version 1.36.50
  582. companyreg release
  583. 2019-06-13 Version 1.36.49
  584. 1, fixed DescribeAvailableResource OpenApi AvailableZones value problem.
  585. 2019-06-13 Version 1.36.48
  586. - Generated 2015-01-01 for `R-kvstore`
  587. 2019-06-13 Version 1.36.47
  588. Add Network Assistant openapi sdk
  589. 2019-06-12 Version 1.36.46
  590. 1, Add RenewBackupPlan DBS interface.
  591. 2019-06-12 Version 1.36.45
  592. 1.Fix bug
  593. 2019-06-12 Version 1.36.44
  594. 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
  595. 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.
  596. 3, Add CreateDataAPIService interface, support create data api with sql statement.
  597. 2019-06-05 Version: 1.36.43
  598. 1, Update DescribeDataLimitDetail interface, add password for response
  599. 2019-06-04 Version: 1.36.42
  600. 1, Add new API: UpdateLivePullStreamInfoConfig
  601. 2019-06-03 Version: 1.36.41
  602. 1, Add openapi of ACL.
  603. 2019-05-31 Version: 1.36.40
  604. 1, add api 'search traces count'
  605. 2, add page index for api 'searchTraces'
  606. 2019-05-31 Version: 1.36.39
  607. 1, Add authority in GetMaterials API.
  608. 2019-05-29 Version 1.36.38
  609. update Smartag
  610. 2019-05-29 Version 1.36.37
  611. update product
  612. 2019-05-29 Version: 1.36.36
  613. 1, Fix ServiceCode typo in request
  614. 2019-05-28 Version: 1.36.35
  615. 1, CreateDBInstance now support autoRenew
  616. 2019-05-27 Version: 1.36.34
  617. 1, Support video transcode.
  618. 2019-05-27 Version: 1.36.33
  619. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  620. 2019-05-22 Version: 1.36.32
  621. 1, Add EndTime parameter to api ModifyPrepayInstanceSpec
  622. 2, Add RebootTime parameter to api ModifyPrepayInstanceSpec
  623. 2019-05-20 Version: 1.36.31
  624. 1, Add both api, ListNotaryInfos
  625. 2019-05-20 Version: 1.36.30
  626. 1, Initial release of api, including data management api, rule configuration api and system configuration api.
  627. 2019-05-16 Version: 1.36.29
  628. 1, Add some new apis to fetch the usage data from VoD, such as DescribeVodDomainUsageData, DescribeVodStorageData, DescribeVodTranscodeData, DescribeVodAIData.
  629. 2, Add a new api named GetUploadDetails to describe the upload detail, such as uploading time and uploading source.
  630. 3, Add a new api named GetAIVideoTagResult to describe the result of AI tag.
  631. 4, Add new field Icon and OnlineStatus to some apis to manage short video materials, such as SearchMedia, GetAttachedMediaInfo, CreateUploadAttachedMedia.
  632. 5, Add a new field RegionId to the response of GetAttachedMediaInfo and GetImageInfo.
  633. 6, Add the field named UserData to SubmitSnapshotJob api request.
  634. 2019-05-15 Version: 1.36.28
  635. 1, Add InstanceId parameter to api CreateDisk
  636. 2, Add parameter Affinity and Tenancy in ECS instance DedicatedHost related apis.
  637. 3, Add SecurityGroupIds parameter to Instance creation apis.
  638. 2019-05-14 Version: 1.36.27
  639. 1, support body detect
  640. 2019-05-14 Version: 1.36.26
  641. 1, Support body detect.
  642. 2019-05-14 Version: 1.36.25
  643. 1, Support body detect.
  644. 2019-05-14 Version: 1.36.24
  645. 1, Support body detect.
  646. 2019-05-13 Version: 1.36.23
  647. 1, Support for creating instances and joining multiple security groups at the same time.
  648. 2019-04-26 Version: 1.36.22
  649. 1, add new openapi.
  650. 2019-04-23 Version: 1.36.21
  651. 1, Support mounting multiple volumes using different protocol
  652. 2, Support scaling out cross AZ
  653. 2019-04-22 Version: 1.36.20
  654. 1, This is an example of release-log.
  655. 2, Please strictly follow this format to edit in English.
  656. 3, Format:Number + , + Space + Description
  657. 2019-04-18 Version: 1.36.19
  658. 1, Add CreateAccount
  659. 2019-04-18 Version: 1.36.18
  660. 1, CreateCacheAnalysisTask prop modify
  661. 2019-04-18 Version: 1.36.17
  662. 1, add ReservedInstance API.
  663. 2019-04-17 Version: 1.36.16
  664. 1, Add DescribeRestoreTaskList DBS interface.
  665. 2, Add DescribeNodeCidrList DBS interface.
  666. 2019-04-16 Version: 1.36.15
  667. 1, Fixed DescribeAccounts response type error.
  668. 2019-04-16 Version: 1.36.14
  669. 1, Add api about pushing security check commands
  670. 2019-04-16 Version: 1.36.13
  671. 1, Fixed describeAccounts response type error
  672. 2019-04-16 Version: 1.36.12
  673. 1, Mark CreateDiagnosticReport as public api.
  674. 2, ModifySecurityIps support modifyMode parameter.
  675. 2019-04-16 Version: 1.36.11
  676. 1, Add group api.
  677. 2019-04-16 Version: 1.36.10
  678. 1, Add group api.
  679. 2019-04-16 Version: 1.36.9
  680. 1, Add group api.
  681. 2019-04-16 Version: 1.36.8
  682. 1, Add group api.
  683. 2019-04-15 Version: 1.36.7
  684. 1, Add CreateRestoreTask DBS interface.
  685. 2, Add StartRestoreTask DBS interface.
  686. 2019-04-15 Version: 1.36.6
  687. 1, add arns parameter to CreateDisk/CreateInstance API in order to support disk encryption by performing a sts role play.
  688. 2019-04-15 Version: 1.36.5
  689. 1, Add apis, DescribeScreenHostStatistics、DescribeScreenSummaryInfo、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData、DescribeScreenAttackAnalysisData
  690. 2019-04-15 Version: 1.36.4
  691. 1, Add Group Api.
  692. 2019-04-11 Version: 1.36.3
  693. 1, The ‘CreateProject’ interface adds the ‘ModelId’ parameter
  694. 2019-04-11 Version: 1.36.2
  695. 1, Add some new apis to manage VoD's App, such as CreateAppInfo, GetAppInfos, ListAppInfos, UpdateAppInfo, DeleteAppInfo, AttachAppPolicyToIdentity, DetachAppPolicyFromIdentity, ListAppPoliciesForIdentity and MoveAppResource.
  696. 2, Add new apis SetMessageCallback, GetMessageCallback and DeleteMessageCallback to manage message callback configuration.
  697. 3, Add new apis GetAttachedMedia, UpdateAttachedMediaInfos and DeleteAttachedMedia to manage attached media information.
  698. 4, Add a new api named DeleteMultipartUpload to clean up the fragmented files generated during the upload process.
  699. 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.
  700. 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.
  701. 7, Add new fields named TranscodeFileRegular, Clip and Rotate to GetTranscodeTemplateGroup api response to support the custom file path feature.
  702. 8, Add a new field named AttachedMedia to api response to support the attached media feature.
  703. 9, Add a new field named SubTotal to GetCategories response to show the number of sub category.
  704. 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.
  705. 2019-04-10 Version: 1.36.1
  706. 1, Modify DescribeBackupGatewayList DBS interface.
  707. 2019-04-10 Version: 1.36.0
  708. 1, New APIs for visual service (VNC).
  709. 2, New APIs for software management.
  710. 3, New APIs for CPFS filesystem.
  711. 2019-04-09 Version: 1.35.9
  712. 1, support service account management networkInterface function.
  713. 2019-04-09 Version: 1.35.8
  714. 1, Add Apis for offline VerifySDK.
  715. 2019-04-08 Version: 1.35.7
  716. 1, Modify DescribeBackupPlanList DBS interface.
  717. 2, Modify DescribeFullBackupList DBS interface.
  718. 3, Modify DescribeIncrementBackupList DBS interface.
  719. 4, Modify DescribeBackupGatewayList DBS interface.
  720. 2019-04-08 Version: 1.35.6
  721. 1, Add StopBackupPlan DBS interface.
  722. 2, Add DescribeBackupPlanList DBS interface.
  723. 3, Add DescribeFullBackupList DBS interface.
  724. 4, Add DescribeIncrementBackupList DBS interface.
  725. 5, Add DescribeBackupGatewayList DBS interface.
  726. 2019-04-04 Version: 1.35.5
  727. 1, ScalingConf systemDisk add DiskName and Description parameters.
  728. 2, ScalingConf dataDisk add DiskName & Description & Encrypted & KMSKeyId parameters.
  729. 2019-04-03 Version: 1.35.4
  730. 1, Add interfaces related to vulnerability whitelist
  731. 2, Add interfaces related to vulnerability auto-del configuration
  732. 3, Add interfaces related to vulnerability fix advise
  733. 4, Add interfaces searching and operating vulnerability
  734. 2019-03-29 Version: 1.35.3
  735. 1, Add DLQ message openAPI.
  736. 2, Add Query the subscription relational openAPI.
  737. 3, Remove white list restrictions.
  738. 2019-03-28 Version: 1.35.2
  739. 1, release bssopenapi
  740. 2019-03-28 Version: 1.35.1
  741. 1, Add multiple language support in DescribeZones
  742. 2, Add gray parameter in CreateDisk
  743. 2019-03-28 Version: 1.35.0
  744. 1, Add logo detect.
  745. 2019-03-27 Version: 1.34.66
  746. 1, Add Project interface.
  747. 2, Add Tag interface.
  748. 3, Add TrainData interface.
  749. 4, Add Train interface.
  750. 5, Add Iteration interface.
  751. 6, Add Predict interface.
  752. 7, Add PredictData interface.
  753. 2019-03-27 Version: 1.34.65
  754. 1, Add Project interface.
  755. 2, Add Tag interface.
  756. 3, Add TrainData interface.
  757. 4, Add Train interface.
  758. 5, Add Iteration interface.
  759. 6, Add Predict interface.
  760. 7, Add PredictData interface.
  761. 2019-03-27 Version: 1.34.64
  762. 1, Add DLQ message openAPI.
  763. 2, Add Query the subscription relational openAPI.
  764. 3, Remove white list restrictions.
  765. 2019-03-27 Version: 1.34.63
  766. 1, Add DLQ message openAPI.
  767. 2, Add Query the subscription relational openAPI.
  768. 3, Remove white list restrictions.
  769. 2019-03-27 Version: 1.34.62
  770. 1, release dysmsapi
  771. 2019-03-25 Version: 1.34.61
  772. 1, cms fix duplicated struct definition
  773. 2019-03-25 Version: 1.34.60
  774. 1, mts fix duplication struct definition
  775. 2019-03-25 Version: 1.34.59
  776. 1, jarvis-pulic fix product code with dash
  777. 2019-03-25 Version: 1.34.58
  778. 1, sas-api, fix product code with dash
  779. 2019-03-21 Version: 1.34.57
  780. 1, Update Dependency
  781. 2019-03-21 Version: 1.34.56
  782. 1, Update Dependency
  783. 2019-03-20 Version: 1.34.55
  784. 1, Update the Dependency
  785. 2019-03-20 Version: 1.34.54
  786. 1, Update the Dependency
  787. 2019-03-20 Version: 1.34.53
  788. 1, cloudwf: update bool type parameter
  789. 2019-03-20 Version: 1.34.52
  790. 1, Update Dependency
  791. 2019-03-19 Version: 1.34.51
  792. 1, Support ' fc ' Source DomainName
  793. 2019-03-19 Version: 1.34.50
  794. 1, move fields: tag, associate_person, cid
  795. 2019-03-19 Version: 1.34.49
  796. 1, format fields: tags, associatePerson
  797. 2019-03-19 Version: 1.34.48
  798. 1, add query user oms data api
  799. 2019-03-19 Version: 1.34.47
  800. 1, Update Dependency
  801. 2019-03-19 Version: 1.34.46
  802. 1, Update Dependency
  803. 2019-03-19 Version: 1.34.45
  804. 1, This is an example of release-log.
  805. 2, Please strictly follow this format to edit in English.
  806. 3, Format:Number + , + Space + Description
  807. 2019-03-18 Version: 1.34.44
  808. 1, rds: deliver string true/false to server for bool type parameter, not previous 1/0
  809. 2019-03-18 Version: 1.34.43
  810. 1, deliver string true/false to server for bool type parameter, not previous 1/0
  811. 2019-03-18 Version: 1.34.42
  812. 1, Signature Document SDK.
  813. 2, First version publish.
  814. 3, Beta Version SDK
  815. 2019-03-18 Version: 1.34.41
  816. 1, Update Dependency
  817. 2019-03-18 Version: 1.34.40
  818. 1, move AssociatePerson\Tag field
  819. 2, Optimize RealName field
  820. 2019-03-18 Version: 1.34.39
  821. 1, Update Dependency
  822. 2019-03-18 Version: 1.34.38
  823. 1, Update Dependency
  824. 2019-03-18 Version: 1.34.37
  825. 1, Update Dependency
  826. 2019-03-18 Version: 1.34.36
  827. 1, Update Dependency
  828. 2019-03-15 Version: 1.34.35
  829. 1, Update Dependency
  830. 2019-03-15 Version: 1.34.34
  831. 1, Update Dependency
  832. 2019-03-15 Version: 1.34.33
  833. 1, Update Dependency
  834. 2019-03-15 Version: 1.34.32
  835. 1, Update Dependency
  836. 2019-03-15 Version: 1.34.31
  837. 1, Update Dependency
  838. 2019-03-15 Version: 1.34.30
  839. 1, Update Dependency
  840. 2019-03-15 Version: 1.34.29
  841. 1, Update Dependency
  842. 2019-03-15 Version: 1.34.28
  843. 1, Update Dependency
  844. 2019-03-15 Version: 1.34.27
  845. 1, Update Dependency
  846. 2019-03-15 Version: 1.34.26
  847. 1, Update Dependency
  848. 2019-03-15 Version: 1.34.25
  849. 1, Update Dependency
  850. 2019-03-14 Version: 1.34.24
  851. 1, Update Dependency
  852. 2019-03-14 Version: 1.34.23
  853. 1, Update Dependency
  854. 2019-03-14 Version: 1.34.22
  855. 1, Update Dependency
  856. 2019-03-14 Version: 1.34.21
  857. 1, Update Dependency
  858. 2019-03-14 Version: 1.34.20
  859. 1, Update Dependency
  860. 2019-03-14 Version: 1.34.19
  861. 1, Update Dependency
  862. 2019-03-14 Version: 1.34.18
  863. 1, Update Dependency
  864. 2019-03-14 Version: 1.34.17
  865. 1, Update Dependency
  866. 2019-03-14 Version: 1.34.16
  867. 1, Update Dependency
  868. 2019-03-13 Version: 1.34.15
  869. 1, Update Dependency
  870. 2019-03-13 Version: 1.34.14
  871. 1, Update Dependency
  872. 2019-03-13 Version: 1.34.13
  873. 1, Update Dependency
  874. 2019-03-13 Version: 1.34.12
  875. 1, Distinguish between system and service parameters
  876. 2019-03-13 Version: 1.34.11
  877. 1, add DescribeDemands interface
  878. 2019-03-13 Version: 1.34.10
  879. 1, Distinguish between system and service parameters
  880. 2019-03-12 Version: 1.34.9
  881. 1, add agency infomation
  882. 2, update sdk core resources
  883. 2018-12-20 Version: 1.34.8
  884. 1, Sync CDN API.
  885. 2018-12-11 Version: 1.34.7
  886. 1, Sync CDN API.
  887. 2018-12-06 Version: 1.34.6
  888. 1, Add DescribeLiveDomainRealTimeBpsData, DescribeLiveDomainRealTimeHttpCodeData,DescribeLiveDomainRealTimeTrafficData.
  889. 2, Update DescirbeCasterChannels and DescribeCasterStreamUrl.
  890. 2018-12-03 Version: 1.34.5
  891. 1, Sync CDN API.
  892. 2018-12-03 Version: 1.34.4
  893. 1, Sync CDN API.
  894. 2018-12-03 Version: 1.34.3
  895. 1, Update 2014-11-11 API.
  896. 2018-12-03 Version: 1.34.2
  897. 1, Add a parameter to RemoveInstances.
  898. 2018-11-30 Version: 1.34.1
  899. 1, Add new apis called AddVodTemplate, UpdateVodTemplate, DeleteVodTemplate, ListVodTemplate, GetVodTemplate and SetDefaultVodTemplate which support vodtemplate feature.
  900. 2, Add a new api called CreateUploadAttachedMedia to get upload auth for attached media
  901. 3, Add new apis called AddWorkFlow, UpdateWorkFlow, DeleteWorkFlow, ListWorkFlow, GetWorkFlow which support workflow feature.
  902. 2018-11-28 Version: 1.34.0
  903. 1, Add RedeployInstance interface, and support to migrate ecs instance with specified maintenance events actively
  904. 2018-11-28 Version: 1.33.6
  905. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  906. 2018-11-27 Version: 1.33.5
  907. 1, Add APIs InvokeThingsService, SetDevicesProperty and QueryDeviceByTags .
  908. 2018-11-22 Version: 1.33.4
  909. 1, Increase the scene field
  910. 2018-11-22 Version: 1.33.3
  911. 1, Add parameter DeletionProtection when creating instance and modifying instance attribute
  912. 2018-11-21 Version: 1.33.2
  913. 1, Add new apis called AddWatermark, UpdateWatermark, DeleteWatermark, ListWatermarks, GetWatermark and SetDefaultWatermark which support watermark feature.
  914. 2, Add a new api called RegisterMedia which supports registration of audio and video media files that already exist in the OSS bucket.
  915. 3, Add the field named OverrideParams to SubmitTranscodeJobs api request.
  916. 2018-11-16 Version: 1.33.1
  917. 1, update version
  918. 2018-11-15 Version: 1.33.0
  919. 1, ECS support ipv6Address
  920. 2018-11-14 Version: 1.32.0
  921. 1, Better support for hybrid cluster.
  922. 2018-11-13 Version: 1.31.0
  923. 1, Add FuzzyMatchDomainSensitiveWord interface,Support fuzzy matching sensitive words.
  924. 2, Add BatchFuzzyMatchDomainSensitiveWord interface,Support batch fuzzy matching sensitive words.
  925. 3, Add DynamicCheck properties for results of CheckDomain interface.
  926. 2018-11-10 Version: 1.30.5
  927. 1, Update SetWaitingRoomConfig.
  928. 2018-11-08 Version: 1.30.4
  929. 1, Fix the http response receive bug
  930. 2018-11-08 Version: 1.30.3
  931. 1, Update Version.
  932. 2018-11-07 Version: 1.30.2
  933. 1, Add API CreateTemplate,DeleteTemplate,GetAllTemplate,GetTemplateInfo.
  934. 2, Add API GetTaskStatus,StartTask,StopTask.
  935. 3, Add API GetTaskParam,UpdateTaskParam.
  936. 2018-11-02 Version: 1.30.1
  937. 1, deviceName and productKey can be used instead of iotId.
  938. 2, New productKey fields for queryauthentication output parameter.
  939. 3, New deviceName fields for queryauthentication output parameter.
  940. 2018-11-02 Version: 1.30.0
  941. 1, first version
  942. 2018-10-31 Version: 1.29.5
  943. 1, Update SetWaitingRoomConfig.
  944. 2018-10-31 Version: 1.29.4
  945. 1, Add SetWaitingRoomConfig.
  946. 2018-10-31 Version: 1.29.3
  947. 1, Add SetWaitingRoomConfig.
  948. 2018-10-30 Version: 1.29.2
  949. 1, Add API DescribeLiveDomainBpsData,DescribeLiveDomainTrafficData.
  950. 2018-10-26 Version: 1.29.1
  951. 1, Return AuditConclusions in SubmitMaterials API.
  952. 2018-10-25 Version: 1.29.0
  953. 1, Add apis for trademark domains.
  954. 2, Add QueryDomainAdminDivision api.
  955. 2018-10-16 Version: 1.28.3
  956. 1, This version add MetricQuery interface to support retcode and apm metric query.
  957. 2018-10-16 Version: 1.28.2
  958. 1, This version add MetricQuery interface to support retcode and apm metric query.
  959. 2018-10-16 Version: 1.28.1
  960. 1, This version add MetricQuery interface to support retcode and apm metric query.
  961. 2018-10-16 Version: 1.28.0
  962. 1, Delete deprecated and unusable apis : AddIpRange, UnbindIpRange, BindIpRange, DescribeIntranetAttributeKb, DescribeIpRanges, ModifyIntranetBandwidthKb, DescribeEventDetail, CheckAutoSnapshotPolicy, CheckDiskEnableAutoSnapshotValidation, DescribeAutoSnapshotPolicy
  963. 2, Add instance topology api DescribeInstanceTopology
  964. 3, Add mount point in DescribeDisksFullStatus
  965. 2018-10-16 Version: 1.27.11
  966. 1, remove set group tags API.
  967. 2018-10-13 Version: 1.27.10
  968. 1, Add device group related APIs.
  969. 2018-10-13 Version: 1.27.9
  970. 1, Add device group related APIs.
  971. 2018-10-13 Version: 1.27.8
  972. 1, Add device group related APIs.
  973. 2018-10-11 Version: 1.27.7
  974. 1, Add a new api called DeleteMezzanines to clear mezzanine infos and storages.
  975. 2, Add the field called PlayConfig to GetVideoPlayAuth and GetPlayInfo api request.
  976. 3, Add a new api called UpdateImageInfos to update image information.
  977. 2018-10-09 Version: 1.27.6
  978. 1, v1.0.0-->v1.0.1
  979. 2, provider new region:beijing/shenzhen/zhangjiakou
  980. 3, provider service for VPC user;
  981. 2018-09-30 Version: 1.27.5
  982. 1, This is an example of release-log.
  983. 2, Please strictly follow this format to edit in English.
  984. 3, Format:Number + , + Space + Description
  985. 2018-09-29 Version: 1.27.4
  986. 1, Sync cdn api.
  987. 2018-09-29 Version: 1.27.3
  988. 1, This is an example of release-log.
  989. 2, Please strictly follow this format to edit in English.
  990. 3, Format:Number + , + Space + Description
  991. 2018-09-29 Version: 1.27.2
  992. 1, This is an example of release-log.
  993. 2, Please strictly follow this format to edit in English.
  994. 3, Format:Number + , + Space + Description
  995. 2018-09-28 Version: 1.27.1
  996. 1, Add one api, QueryAppDeviceList.
  997. 2018-09-27 Version: 1.27.0
  998. 1, Add new API ListQueues, modify API SetAutoScaleConfig to support queue related features.
  999. 2018-09-27 Version: 1.26.4
  1000. 1, modify getFaces Api
  1001. 2018-09-27 Version: 1.26.3
  1002. 1, modify getFaces Api
  1003. 2018-09-25 Version: 1.26.2
  1004. 1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0
  1005. 2018-09-17 Version: 1.26.1
  1006. 1, Add field for AddCasterVideoResource, DescribeCasterVideoResources, ModifyCasterVideoResource.
  1007. 2018-09-14 Version: 1.26.0
  1008. 1, Add DedicatedHost Feature
  1009. 2018-09-13 Version: 1.25.3
  1010. 1, Add CreateChannelToken.
  1011. 2018-09-06 Version: 1.25.2
  1012. 1, AutoScaling support launchTemplate.
  1013. 2018-09-06 Version: 1.25.1
  1014. 1, Add API deleteProduct.
  1015. 2, Move all API to version 20180120.
  1016. 2018-09-05 Version: 1.25.0
  1017. 1, Add new APIs with control policy for querying price
  1018. 2018-09-03 Version: 1.24.2
  1019. 1, voice identify interface
  1020. 2, client upload credentials interface
  1021. 2018-09-03 Version: 1.24.1
  1022. 1, Add new service API:FindServiceStatisticalData, which can support query service statistical data.
  1023. 2018-08-28 Version: 1.24.0
  1024. 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
  1025. 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.
  1026. 2018-08-28 Version: 1.23.4
  1027. 1, Add param for DescribeRegions,support AcceptLanguage,RegionEndpoint.
  1028. 2018-08-27 Version: 1.23.3
  1029. 1, add Ess alarm task api, CreateAlarm, DeleteAlarm, DescribeAlarms, DeleteAlarm, EnableAlarm, DisableAlarm
  1030. 2018-08-27 Version: 1.23.2
  1031. 1, Add api GetGatewayBySubDevice.
  1032. 2, Modified the time related response parameters.
  1033. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1034. 2018-08-23 Version: 1.23.1
  1035. 1, RunInstance add privateIpAddress.
  1036. 2018-08-22 Version: 1.23.0
  1037. 1, Add api CreateSimulatedSystemEvents, support creating one or more simulated system events.
  1038. 2, Add api CancelSimulatedSystemEvents, support cancelling one or more simulated system events.
  1039. 2018-08-21 Version: 1.22.9
  1040. 1, Repair describeLaunchTemplateVersions securityEnhancementStrategy type
  1041. 2018-08-21 Version: 1.22.8
  1042. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1043. 2018-08-17 Version: 1.22.7
  1044. 1, Add a new api called DeleteImage to clear the image resource.
  1045. 2, Add the field called AdditionType and OutputType to GetMezzanineInfo api request.
  1046. 3, Add the field called OutputType to GetMezzanineInfo api response.
  1047. 4, Add the field called CreationTime and ModificationTime to GetPlayInfo api response.
  1048. 2018-08-17 Version: 1.22.6
  1049. 1, New apkpubkey fields for queryauthentication output parameter.
  1050. 2, New packagename fields for queryauthentication output parameter.
  1051. 3, New clientId fields for queryauthentication output parameter.
  1052. 2018-08-16 Version: 1.22.5
  1053. 1, ModifyScalingConfiguration add imageName.
  1054. 2, CreateScalingConfiguration add imageName.
  1055. 2018-08-15 Version: 1.22.4
  1056. 1, Fix bug in GetMaterials API.
  1057. 2, GetVerifyToken added a new param VerifyConfigs
  1058. 2018-08-15 Version: 1.22.3
  1059. 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
  1060. 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.
  1061. 3, Add domain config api BatchSetLiveDomainConfigs,BatchDeleteLiveDomainConfigs,DeleteLiveSpecificConfig,DescribeLiveDomainConfigs.
  1062. 2018-08-15 Version: 1.22.2
  1063. 1, Update ecs tag to 20 maximum
  1064. 2018-08-14 Version: 1.22.1
  1065. 1, Change parameter name of Dialogue
  1066. 2018-08-13 Version: 1.22.0
  1067. 1, New userinfo fields for registerface input parameter.
  1068. 2, New userinfo fields for updateface input parameter.
  1069. 3, New userinfo fields for queryface output parameter.
  1070. 2018-08-13 Version: 1.21.6
  1071. 1, Add cross domain support.
  1072. 2, Add parameter SerialNumber to interface RebootSmartAccessGateway.
  1073. 2018-08-08 Version: 1.21.5
  1074. 1, The official release 4.0.0
  1075. 2018-08-08 Version: 1.21.4
  1076. 1, Update FC apis.
  1077. 2018-08-08 Version: 1.21.3
  1078. 1, First release.
  1079. 2018-08-07 Version: 1.21.2
  1080. 1, Add api GetGatewayBySubDevice.
  1081. 2, Modified the time related response parameters.
  1082. 3, Add messageId in response with InvokeThingService,SetDeviceProperty and NotifyAddThingTopo.
  1083. 2018-08-05 Version: 1.21.1
  1084. 1, Add Interface SubmitSubtitleJob
  1085. 2, Support convert ttml、stl subtitle to vtt
  1086. 2018-08-03 Version: 1.21.0
  1087. 1, Add new API AddLocalNodes, for adding local machine to a hybrid cluster
  1088. 2018-08-01 Version: 1.20.5
  1089. 1, Add new API GetConversationDetailByContactId
  1090. 2018-08-01 Version: 1.20.4
  1091. 1, Add api: MoPenQueryCanvas, MoPenDoRecognize, MoPenSendMqttMessage, MoPenFindGroup
  1092. 2018-07-31 Version: 1.20.3
  1093. 1, Support describePrice for market image, add return detailInfo in interface describePrice
  1094. 2018-07-26 Version: 1.20.2
  1095. 1, Add BatchGetJobMetricInfo API.
  1096. 2, Add BatchGetPluginConfigInfo API.
  1097. 3, Add GetJobTopology API.
  1098. 2018-07-25 Version: 1.20.1
  1099. 1, Add RemoveTerminals API.
  1100. 2018-07-13 Version: 1.20.0
  1101. 1, New APIs for batch executing commands in cluster: InvokeShellCommand, ListCommands, etc.
  1102. 2, New APIs for HybridCluster (link E-HPC with cluster in local IDC): CreateHybridCluster, etc.
  1103. 3, New APIs for Container applications: AddContainerApp, etc.
  1104. 2018-07-11 Version: 1.19.3
  1105. 1, new function: Attach and Detach Rds instance of scalingGroup.
  1106. 2018-07-11 Version: 1.19.2
  1107. 1, Add DetectFaceAttributesService.
  1108. 2, Add cloudauthPageUrl to GetVerifyTokenResponse.
  1109. 2018-07-05 Version: 1.19.1
  1110. 1, new function, attach/detach load balancer of scalingGroup
  1111. 2018-07-05 Version: 1.19.0
  1112. 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.
  1113. 2018-06-28 Version: 1.18.1
  1114. 1, ScalingConfiguration support hostName and passwordInherit
  1115. 2, ScalingConfiguration support modify
  1116. 2018-06-27 Version: 1.18.0
  1117. 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.
  1118. 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
  1119. 2018-06-27 Version: 1.17.10
  1120. 1, DescribeNetworkInterfaces support query with vpcId
  1121. 2018-06-22 Version: 1.17.9
  1122. 1, rtc openapi
  1123. 2018-06-21 Version: 1.17.8
  1124. 1, This is add InstanceList.
  1125. 2018-06-20 Version: 1.17.7
  1126. 1, Add InstanceList in product security information query.
  1127. 2018-06-20 Version: 1.17.6
  1128. 1, Add InstanceList in product security information query.
  1129. 2018-06-14 Version: 1.17.5
  1130. 1, Add passwordInherit.
  1131. 2018-06-13 Version: 1.17.4
  1132. 1, Add API AddCasterEpisodeGroupContent,CreateCaster.
  1133. 2, Add Parameter fillMode for AddCasterLayout,ModifyCasterLayout.
  1134. 3, Add return value fillMode DescribeCasterLayouts.
  1135. 4, Update ErrorCode for StartCaster,StartCasterScene,DescribeCasters,CopyCaster.
  1136. 5, Update ErrorCode for ModifyCasterLayout,DeleteCasterLayout,DeleteLiveAppRecordConfig.
  1137. 6, Update ForbidLiveStream,DescribeLiveStreamsPublishList,DescribeLiveStreamsOnlineList.
  1138. 2018-06-13 Version: 1.17.3
  1139. 1, Add lifecycleHook.
  1140. 2018-06-08 Version: 1.17.2
  1141. 1, Add scdn interface,support scdn.
  1142. 2018-06-06 Version: 1.17.1
  1143. 1, Change the type of srcUid to int.
  1144. 2018-06-06 Version: 1.17.0
  1145. 1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
  1146. 2018-05-29 Version: 1.16.0
  1147. 1, Add new interface DescribePhoneInfo to SDK.
  1148. 2018-05-28 Version: 1.15.0
  1149. 1, Add face 1-N,1-1 scan interface.
  1150. 2018-05-28 Version: 1.14.0
  1151. 1, ValidateSecurityGroup API
  1152. 2018-05-28 Version: 1.13.0
  1153. 1, This is an example of release-log.
  1154. 2, Please strictly follow this format to edit in English.
  1155. 3, Format:Number + , + Space + Description
  1156. 2018-05-23 Version: 1.12.0
  1157. 1, Add CreateDrdsAccount API, to support creating account for all databases of a DRDS instance.
  1158. 2018-05-23 Version: 1.11.0
  1159. 1, Update API version to 2018-04-12.
  1160. 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.
  1161. 3, New parameters for CreateCluster API: EcsChargeType. Support creating a pre-paid cluster.
  1162. 4, New parameters for CreateCluster API: DeploymentMode. Support creating a cluster with fewer manager nodes.
  1163. 2018-05-23 Version: 1.10.3
  1164. 1, This is an example of release-log.
  1165. 2, Please strictly follow this format to edit in English.
  1166. 3, Format:Number + , + Space + Description
  1167. 2018-05-22 Version: 1.10.2
  1168. 1, add DescribeMigrateTasks,DescribeOssDownloads,CheckRecoveryConditions.
  1169. 2, modify DescribeDBInstanceAttribute.
  1170. 2018-05-17 Version: 1.10.1
  1171. 1, Supporting ethnicGroup and idCardStartDate fields in GetMaterials api
  1172. 2018-05-17 Version: 1.10.0
  1173. 1, the first version of private dns SDK
  1174. 2018-05-11 Version: 1.9.1
  1175. 1, Add Function Compute interface,support Function Compute.
  1176. 2018-05-09 Version: 1.9.0
  1177. 1, Add apis for domain broker.
  1178. 2018-05-08 Version: 1.8.2
  1179. 1, Add instance params.
  1180. 2018-05-08 Version: 1.8.1
  1181. 1, Remove DescribeAccountAttributes.
  1182. 2018-05-02 Version: 1.8.0
  1183. 1, Add new interface InstallCloudAssistant, support Cloud Assistant client installation.
  1184. 2, Add new interface DescribeCloudAssistantStatus, support Cloud Assistant client status detection.
  1185. 2018-04-28 Version: 1.7.3
  1186. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  1187. 2, Add dcdn config interface,Support set、delete、query domain config.
  1188. 2018-04-28 Version: 1.7.2
  1189. 1, Add dcdn domain interface,Support add、modify、delete、query dcdn domain.
  1190. 2, Add dcdn config interface,Support set、delete、query domain config.
  1191. 2018-04-27 Version: 1.7.1
  1192. 1, release hsm open api
  1193. 2, hsm open api includes DescribeRegions, DescribeInstances, ModityInstance, ConfigNetwork, ConfigWhiteList
  1194. 2018-04-26 Version: 1.7.0
  1195. 1, Add apis for domain group.
  1196. 3, Add fields for QueryDomainList.
  1197. 2018-04-24 Version: 1.6.5
  1198. 1, add interface FetchPhotos
  1199. 2, add xflush log param unixTimestamp
  1200. 2018-04-23 Version: 1.6.4
  1201. 1, DescribeInstanceHistoryEvents adds parameter instanceEventTypes and instanceEventCycleStatuss.
  1202. 2, InstanceId parameter is not necessary for DescribeInstanceHistoryEvents now.
  1203. 3, DescribeInstancesFullStatus adds parameter instanceEventTypes.
  1204. 2018-04-23 Version: 1.6.3
  1205. 1, Add notificationConfiguration.
  1206. 2, Add standby status.
  1207. 2018-04-17 Version: 1.6.2
  1208. 1, EditPhotos add input param TakenAt
  1209. 2, add FetchMomentPhotos
  1210. 3, ListAlbums add return param Remark
  1211. 2018-04-11 Version: 1.6.1
  1212. 1, GetLibrary/FetchLibraries add return ctime
  1213. 2, Editphotos add input param takenAt
  1214. 2018-04-10 Version: 1.6.0
  1215. 1, Add three interfaces CreateNetworkInterfacePermission DeleteNetworkInterfacePermission DescribeNetworkInterfacePermissions.
  1216. 2018-04-10 Version: 1.5.1
  1217. 1, publish Project API.
  1218. 2, publish Service API.
  1219. 3, publish Service order API.
  1220. 4, publish Credential API.
  1221. 5, publish CAS API.
  1222. 2018-04-08 Version: 1.5.0
  1223. 1, Add voice asynchronous scan interface.
  1224. 2018-04-03 Version: 1.4.0
  1225. 1, Add APIs for domain transfer in and transfer out.
  1226. 2, Add APIs for poll and acknowledge domain task.
  1227. 3, Add API for query domain group list.
  1228. 2018-03-30 Version: 1.3.8
  1229. 1, API QueryCustomerSaleInfo arguments update.
  1230. 2018-03-29 Version: 1.3.7
  1231. 1, edit FetchLibraries return param format
  1232. 2018-03-27 Version: 1.3.6
  1233. 1, Rename QueryCustomerSaleInfo to RegionName.
  1234. 2018-03-27 Version: 1.3.5
  1235. 1, publish Project API.
  1236. 2, publish Service API.
  1237. 3, publish Service order API.
  1238. 4, publish Credential API.
  1239. 5, publish CAS API.
  1240. 2018-03-27 Version: 1.3.4
  1241. 1, add interface FetchLibraries
  1242. 2018-03-23 Version: 1.3.3
  1243. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  1244. 2018-03-23 Version: 1.3.2
  1245. 1, interface DescribeInstanceTypes output InstancePpsRx InstancePpsTx
  1246. 2018-03-23 Version: 1.3.1
  1247. 1, ModifyPrepayInstanceSpec support migrateAcrossZone.
  1248. 2018-03-23 Version: 1.3.0
  1249. 1, Add 'QueryDevicesByAccount' and 'QueryDevicesByAlias' Api.
  1250. 2, Remove 'QueryPushDetail' Api.
  1251. 2018-03-20 Version: 1.2.16
  1252. 1, add FetchAlbumTagPhotos
  1253. 2, CreatePhoto add optional param TakenAt
  1254. 2018-03-16 Version: 1.2.15
  1255. 1, Synchronize to the latest api list
  1256. 2018-03-15 Version: 1.2.14
  1257. 1, Synchronize to the latest api list
  1258. 2018-03-15 Version: 1.2.13
  1259. 1, Synchronize to the latest api list
  1260. 2018-03-15 Version: 1.2.12
  1261. 1, Synchronize to the latest api list
  1262. 2018-03-15 Version: 1.2.11
  1263. 1, Synchronize to the latest api list
  1264. 2018-03-15 Version: 1.2.10
  1265. 1, Add QueryCustomerSaleInfo API.
  1266. 2018-03-14 Version: 1.2.9
  1267. 1, Support predefine endpoints parse
  1268. 2018-03-13 Version: 1.2.8
  1269. 1, API GetQuotaHistoryInfo fix field error.
  1270. 2018-03-07 Version: 1.2.7
  1271. 1, add GetAlbumsByNames
  1272. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1273. 3, add return IdStr for string
  1274. 2018-03-06 Version: 1.2.6
  1275. 1, add GetAlbumsByNames
  1276. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1277. 3, add return IdStr for string
  1278. 2018-03-06 Version: 1.2.5
  1279. 1, add GetAlbumsByNames
  1280. 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
  1281. 3, add return IdStr for string
  1282. 2018-02-28 Version: 1.2.4
  1283. 1, Add query resource inventory API.
  1284. 2, Add query topology API.
  1285. 2018-02-27 Version: 1.2.3
  1286. 1, Add query topology API.
  1287. 2018-02-27 Version: 1.2.2
  1288. 1, Add new API: ListRecordingsByContactId.
  1289. 2018-02-27 Version: 1.2.1
  1290. 1, Add Action API.
  1291. 2018-02-27 Version: 1.2.0
  1292. 1, add new api DescribeClusters,DescribeClusterLogs,DescribeClusterNodes,UpgradeClusterComponents
  1293. 2018-02-09 Version: 1.1.0
  1294. 1, Aliyun E-HPC service SDK, initial version.
  1295. 2, Include APIs of E-HPC clusters, nodes, users, jobs, job templates etc.
  1296. 2018-02-07 Version: 1.0.12
  1297. 1, add the access interface of logs such as vulnerabilities, baselines, exceptions, etc.
  1298. 2018-02-06 Version: 1.0.11
  1299. 1, ModifyInstanceChargeType add instanceChargeType param, support prepay instance to postpay instance.
  1300. 2, ModifyPrepayInstanceSpec add operatorType param, support downgrade prepay ecs.
  1301. 2018-02-02 Version: 1.0.10
  1302. 1, this version is new of captcha management and nvc analyze
  1303. 2018-01-26 Version: 1.0.9
  1304. 1, Update InstanceProfileCredentialsProvider
  1305. 2, Update common api
  1306. 2018-01-24 Version: 1.0.8
  1307. 1, Fixed a problem that the ActiveAlert interface name is not standard
  1308. 2, Update ActiveAlert interface : ListProductOfActiveAlert / DisableActiveAlert / EnableActiveAlert
  1309. 2018-01-24 Version: 1.0.7
  1310. 1, Add ActiveAlert API : ListActiveAlertRuleRequest/ListProductOfActiceAlertRequest/EnableActiceAlertRequest/DisableActiceAlertRequest
  1311. 2018-01-23 Version: 1.0.6
  1312. 1, Tesla Dam API release.
  1313. 2, Add ActionDiskCheck, ActionDiskMask, ActionDiskRma, HostGets.
  1314. 2018-01-12 Version: 1.0.5
  1315. 1, First commit ess module
  1316. 2018-01-11 Version: 1.0.4
  1317. 1, replace photo tag 2000 upgrade to 5000
  1318. 2, add TrashQuota
  1319. 2018-01-10 Version: 1.0.3
  1320. 1, First release vpc for c++
  1321. 2018-01-10 Version: 1.0.2
  1322. 1, First release slb for C++
  1323. 2018-01-10 Version: 1.0.1
  1324. 1, First release ecs for C++
  1325. 2017-12-27 Version: 1.0.0
  1326. 1, Fix build failed on linux