ChangeLog.txt 63 KB

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