forked from aliyun/aliyun-openapi-cpp-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
4976 lines (3492 loc) · 126 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2021-06-21 Version: 1.36.795
- Public V430.
2021-06-21 Version: 1.36.794
- Generated 2019-11-20 for `Ga`.
2021-06-21 Version: 1.36.793
- Generated 2019-11-20 for `Ga`.
2021-06-21 Version: 1.36.792
- Generated 2016-04-28 for `Vpc`.
2021-06-18 Version: 1.36.791
- Support DescribeInstallCaptcha API.
2021-06-18 Version: 1.36.790
- Supported 20210618 version for sdk.
2021-06-17 Version: 1.36.789
- Generated 2019-11-20 for `Ga`.
2021-06-16 Version: 1.36.788
- Update imageaudit.
2021-06-16 Version: 1.36.787
- Encrypt Dialog Content.
2021-06-15 Version: 1.36.786
- Add ListDevopsProjects.
2021-06-15 Version: 1.36.785
- Supported EncryptNewTables for ModifyDBClusterTDE.
- Supported SSLAutoRotate for ModifyDBClusterSSL.
2021-06-15 Version: 1.36.784
- Support API for Trail.
2021-06-11 Version: 1.36.783
- Add CreateSshKey OpenAPI.
2021-06-10 Version: 1.36.782
- Support SQLReview Order API.
2021-06-10 Version: 1.36.781
- Generated 2016-11-01 for `live`.
2021-06-10 Version: 1.36.780
- DiskEncryption.
2021-06-10 Version: 1.36.779
- Generated 2016-04-28 for `Vpc`.
2021-06-09 Version: 1.36.778
- Update TMP API, including QueryDevice, CreateThingModel, UpdateThingModel, ImportThingModelTsl, BatchPickThingModel, ListDeviceDistributeJob.
- Add TMP API, including QueryDeviceInfo.
- Update OTA API, including CreateOTAVerifyJob, CreateOTAStaticUpgradeJob, CreateOTADynamicUpgradeJob, CancelOTATaskByJob, QueryOTAJob.
- Add OTA API, including ListOTAUnfinishedTaskByDevice,ConfirmOTATask.
2021-06-09 Version: 1.36.777
- Public beta version.
- Add Api Overseas.
2021-06-09 Version: 1.36.776
- Create Lindorm Open api.
2021-06-09 Version: 1.36.775
- Create Lindorm Open api.
2021-06-09 Version: 1.36.774
- Edit GetTrace.
2021-06-08 Version: 1.36.773
- Support Aliyun Workorder OpenAPI.
2021-06-08 Version: 1.36.772
- Refine API response for GetCallDetailRecord.
2021-06-08 Version: 1.36.771
- Support input parameter LaunchConfigurationHostNames and MinTargetCapacity for CreateAutoProvisioningGroup.
2021-06-08 Version: 1.36.770
- Increase detection frequency for availability monitoring.
- Add application group to query in batch according to group ID.
2021-06-05 Version: 1.36.769
- Supported new version of Ticket for Alibaba Cloud.
2021-06-05 Version: 1.36.768
- New API Version of Work Order System.
2021-06-04 Version: 1.36.767
- Add Emon-Service support.
- Remove Deprecated Interfaces.
2021-06-04 Version: 1.36.766
- Supported multi attach feature for disk.
2021-06-04 Version: 1.36.765
- Delete live API.
2021-06-03 Version: 1.36.764
- Add name.
2021-06-03 Version: 1.36.763
- Support name.
2021-06-02 Version: 1.36.762
- Support key deletion protection.
2021-05-31 Version: 1.36.761
- Support upgrade.
2021-05-28 Version: 1.36.760
- Add TriggerRemoteSync api.
2021-05-28 Version: 1.36.759
- Create Lindorm Open api.
2021-05-28 Version: 1.36.758
- Create Lindorm Open api.
2021-05-27 Version: 1.36.757
- Generated 2019-09-10 for `waf-openapi`.
2021-05-25 Version: 1.36.756
- Export new API for IVR tracking.
2021-05-24 Version: 1.36.755
- Support a2a openapi.
2021-05-24 Version: 1.36.754
- Export new API for report.
2021-05-24 Version: 1.36.753
- Support TransformDBClusterPayType.
2021-05-23 Version: 1.36.752
- New API- GetDrdsDbRdsRelationInfo, which can get private RDS list under certain DB out of DRDS instance ID and DB name.
2021-05-22 Version: 1.36.751
- Aaaaa.
2021-05-21 Version: 1.36.750
- Supported DescribeLoadBalancers with DeleteProtection and so on.
2021-05-21 Version: 1.36.749
- Support StrictResourceProvision in ApplyNodes.
2021-05-20 Version: 1.36.748
- Upgrade mongodb sdk.
2021-05-20 Version: 1.36.747
- DescribeAvailableResource frequency.
2021-05-19 Version: 1.36.746
- Generated 2020-05-18 for `dataworks-public`.
2021-05-19 Version: 1.36.745
- Update API.
2021-05-19 Version: 1.36.744
- Publish multi language sdk.
2021-05-18 Version: 1.36.743
- Add IoT Studio SetStudioProjectCooperation API.
- Add IoT Studio QueryStudioProjectList API.
- Add IoT Studio QueryStudioAppList API.
- Add IoT Studio QueryStudioAppPageListOpen API.
- Add IoT Studio QueryStudioAppDomainListOpen API.
- Add IoT Studio DeleteStudioAppDomainOpen API.
- Add IoT Studio CreateStudioAppDomainOpen API.
- Add IoT Studio GetStudioAppTokenOpen API.
- Add IoT Studio SetupStudioAppAuthModeOpen API.
- Add IoT Studio RefreshStudioAppTokenOpen API.
- Add IoT Studio PublishStudioApp API.
2021-05-18 Version: 1.36.742
- Support MinCount for AddNodes.
- Support HostNamePreffix and HostNameSuffix for ListNodes.
2021-05-17 Version: 1.36.741
- Add API ListQuotaReviewTasks.
2021-05-17 Version: 1.36.740
- Support DescribeInstallCaptcha API.
2021-05-17 Version: 1.36.739
- Export new API for predictive dialer.
2021-05-17 Version: 1.36.738
- Add DescribeDcdnRefreshTaskById.
2021-05-14 Version: 1.36.737
- Release ExtractFingerPrint.
2021-05-14 Version: 1.36.736
- EnableAdditionalBandwidth add AutoRenew,AutoRenewPeriod parameter.
2021-05-14 Version: 1.36.735
- Update ScreenChestCT.
2021-05-14 Version: 1.36.734
- Support Private RDS management through OpenAPI.
- ManagePrivateRds to do RDS information query and some management.
- DescribeDrdsRdsInstances to find RDS under a certain DRDS instance.
- UpdatePrivateRdsClass to Upgrade or Downgrade your Private RDS class.
2021-05-14 Version: 1.36.733
- Support Private RDS management through OpenAPI.
- ManagePrivateRds to do RDS information query and some management.
- DescribeDrdsRdsInstances to find RDS under a certain DRDS instance.
- UpdatePrivateRdsClass to Upgrade or Downgrade your Private RDS class.
2021-05-13 Version: 1.36.732
- Support query quota.
- Supprt create quota increase request.
2021-05-13 Version: 1.36.731
- Generated 2020-01-01 for `ddoscoo`.
2021-05-13 Version: 1.36.730
- Add Indexing-Service support.
- Remove jsonItem form.
2021-05-12 Version: 1.36.729
- Add GetRepositoryCommit and ListRepositoryCommitDiff API.
2021-05-12 Version: 1.36.728
- Create Lindorm Open api.
2021-05-12 Version: 1.36.727
- Generated 2020-05-18 for `dataworks-public`.
2021-05-11 Version: 1.36.726
- Generated 2020-05-18 for `dataworks-public`.
2021-05-11 Version: 1.36.725
- CreateInstance API add Port, Tags, DryRun.
2021-05-11 Version: 1.36.724
- SDK device authorization API.
2021-05-10 Version: 1.36.723
- Update RecognizeDriverLicense RecognizeLicensePlate.
2021-05-10 Version: 1.36.722
- Add API GenerateMergedTable.
- Add API ListDateSourceTables.
- Add API ListDateSourceTableFields.
- Add API ListRamRoles.
2021-05-10 Version: 1.36.721
- Delete API.
2021-05-10 Version: 1.36.720
- Delete live API.
2021-05-10 Version: 1.36.719
- Delete Api.
2021-05-10 Version: 1.36.718
- Delete API.
2021-05-08 Version: 1.36.717
- Support SLB DescribeLoadBalancerListeners.
2021-05-08 Version: 1.36.716
- Generated 2020-05-18 for `dataworks-public`.
2021-05-08 Version: 1.36.715
- Generated 2018-01-20 for `Iot`.
2021-05-08 Version: 1.36.714
- Generated 2018-07-13 for `Ft`.
2021-05-08 Version: 1.36.713
- Generated 2019-09-16 for `alikafka`.
2021-05-07 Version: 1.36.712
- Support interface DescribeDBInstanceEncryptionKey for DB Instance Cloud Disk Encryption.
2021-05-06 Version: 1.36.711
- Generated 2016-11-01 for `live`.
2021-05-06 Version: 1.36.710
- Update Open API.
2021-05-06 Version: 1.36.709
- Support DescribePolarSQLCollectorPolicy.
2021-04-30 Version: 1.36.708
- Add OpenArmsServiceSecondVersion.
2021-04-29 Version: 1.36.707
- ModifyNodeSpec API add SwitchTime.
2021-04-29 Version: 1.36.706
- Add DescribeInstances API.
2021-04-29 Version: 1.36.705
- Update RecognizeFace.
2021-04-29 Version: 1.36.704
- Support sag reseller.
2021-04-29 Version: 1.36.703
- Support latest openAPIs.
2021-04-28 Version: 1.36.702
- Export new API.
2021-04-27 Version: 1.36.701
- GetProjectMember support pageSize.
2021-04-27 Version: 1.36.700
- Generated 2016-11-01 for `live`.
2021-04-27 Version: 1.36.699
- Add CustomMessage to CreateMergeFaceGroupsJob.
2021-04-26 Version: 1.36.698
- Generated 2019-06-01 for `smc`.
2021-04-22 Version: 1.36.697
- Support NetworkInterface TrafficMode.
2021-04-22 Version: 1.36.696
- AcceptInquiredSystemEvent adds Choice parameter.
- DescribeInstanceHistoryEvents supports multiple resource types.
2021-04-22 Version: 1.36.695
- Support CEN latest Apis.
2021-04-22 Version: 1.36.694
- Support GetPhysicalDatabase API.
2021-04-21 Version: 1.36.693
- Add API to list repo members with group inherited info.
2021-04-20 Version: 1.36.692
- Support Tag.
2021-04-20 Version: 1.36.691
- Export predictive dialer API.
2021-04-20 Version: 1.36.690
- Create Lindorm Open api.
2021-04-20 Version: 1.36.689
- LivenessFaceVerify ContrastFaceVerify CompareFaceVerify API Return CertifyId.
2021-04-19 Version: 1.36.688
- Export StartBack2BackCall API.
2021-04-19 Version: 1.36.687
- Generated 2020-10-29 for `reid_cloud`.
2021-04-17 Version: 1.36.686
- Update RunMedQA.
2021-04-16 Version: 1.36.685
- Support devops organization deletion.
2021-04-16 Version: 1.36.684
- Add CheckProductOpen.
- Add az routing policy.
2021-04-16 Version: 1.36.683
- Generated 2020-10-29 for `reid_cloud`.
2021-04-16 Version: 1.36.682
- Add API GetDomain.
- Add API ListSystemAnalyzers.
- Add parameter domain to API ListAppGroups, ModifyAppGroup, CreateAppGroup, DescribeAppGroup, DescribeApp.
2021-04-14 Version: 1.36.681
- Support latest openAPIs.
2021-04-14 Version: 1.36.680
- Delete MultiMedia Post Scan API.
2021-04-14 Version: 1.36.679
- Download url add fixed domain.
2021-04-13 Version: 1.36.678
- Supported ConfigureDtsJob SynchronizationDirection.
- Fixed DescribePreCheckStatus JobProgress bootTime.
2021-04-13 Version: 1.36.677
- Release AddFaceVideoTemplate DeleteFaceVideoTemplate QueryFaceVideoTemplate MergeVideoModelFace.
2021-04-12 Version: 1.36.676
- Export config api.
2021-04-12 Version: 1.36.675
- Support GetDBTopology API.
2021-04-09 Version: 1.36.674
- Bank Card Ocr and Verify.
2021-04-09 Version: 1.36.673
- Update API param.
2021-04-08 Version: 1.36.672
- Supported ModifyDtsJob and DeleteDtsJob.
2021-04-08 Version: 1.36.671
- Add DetectIPCVideoObject.
2021-04-08 Version: 1.36.670
- Release DetectVideoIPCObject.
2021-04-06 Version: 1.36.669
- Release MonitorExamination.
2021-04-06 Version: 1.36.668
- Update ScreenChestCT DetectRibFracture.
2021-04-01 Version: 1.36.667
- Add data service api, including ListAnalyticsData.
- Update file uploading api, including GenerateFileUploadURL.
2021-03-31 Version: 1.36.666
- Ecs support hibernation.
- DescribeSnapshotGroups add ProgressStatus.
2021-03-30 Version: 1.36.665
- Generated 2020-05-18 for `dataworks-public`.
2021-03-30 Version: 1.36.664
- Generated 2020-05-18 for `dataworks-public`.
2021-03-30 Version: 1.36.663
- Generated 2020-11-26 for `Airec`.
2021-03-30 Version: 1.36.662
- Supported MultiMedia Post scan.
2021-03-30 Version: 1.36.661
- Supported Open Api.
2021-03-30 Version: 1.36.660
- Supported Open Api.
2021-03-30 Version: 1.36.659
- Support ListDDLPublishRecords API.
- Fixed GetMetaTableColumn, GetMetaTableDetailInfo API response param DataLength lack of precision.
2021-03-30 Version: 1.36.658
- Add CreateAndStartBackupPlan.
- Add DescribeFullBackupSet.
- Add DescribeLogicalBackupSet.
2021-03-26 Version: 1.36.657
- Update api.
2021-03-26 Version: 1.36.656
- Add RenewAdditionalBandwidth API.
2021-03-26 Version: 1.36.655
- Upgrade mongodb sdk.
2021-03-25 Version: 1.36.654
- Add DescribeInstanceBill.
- Update QuerySettleBill to support RecordID filter.
2021-03-25 Version: 1.36.653
- Release autoscaling apis for timer features.
2021-03-25 Version: 1.36.652
- Change indicator date type of ListHistoriticalAgentReport.
2021-03-24 Version: 1.36.651
- Export new API.
2021-03-23 Version: 1.36.650
- Update Open API.
2021-03-22 Version: 1.36.649
- CreateEai api adds SecurityGroupId, VSwitchId parameters.
2021-03-22 Version: 1.36.648
- Add OneConsole support.
- Add ACK support.
- Edit ListSearchLog etc.
2021-03-21 Version: 1.36.647
- Support watermark.
- Support pdf preview.
2021-03-19 Version: 1.36.646
- StateConfiguration in CreateStateConfigurationResponse changes from list to single object.
2021-03-19 Version: 1.36.645
- Modify the helpUrl parameter of OnsTopicList and OnsGroupList API to be invisible.
2021-03-19 Version: 1.36.644
- Export new API.
2021-03-19 Version: 1.36.643
- Export new API for predictive dialer.
2021-03-18 Version: 1.36.642
- Edit GetTrace api.
- Edit GetMultipleTrace api.
2021-03-18 Version: 1.36.641
- Generated 2020-05-18 for `dataworks-public`.
2021-03-17 Version: 1.36.640
- Add organizaition security center API.
2021-03-17 Version: 1.36.639
- EnableAdditionalBandwidth API add SourceBiz.
- DescribeAvailableResource add ProductType to support buy OnECS instance.
2021-03-17 Version: 1.36.638
- Add group alarm rule resource extension parameter.
2021-03-17 Version: 1.36.637
- Update MakeSuperResolutionImage.
2021-03-16 Version: 1.36.636
- Supported aliyun cloud environment.
2021-03-15 Version: 1.36.635
- Increase availability monitoring increase HTP header.
2021-03-14 Version: 1.36.634
- Generated 2018-07-13 for `Ft`.
2021-03-14 Version: 1.36.633
- Generated 2018-07-13 for `Ft`.
2021-03-13 Version: patch
- Supportd DescribeTableStatisticsRequest.
2021-03-12 Version: patch
- Add EnableAdditionalBandwidth API.
- Add CreateTairInstance API.
2021-03-12 Version: patch
- Supported batch delete for contact template.
- Supported save for contact template.
- Supported set default for contact template.
2021-03-11 Version: patch
- Update DetectIPCPedestrian.
2021-03-10 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-03-09 Version: patch
- Export new API for predictive dialer.
2021-03-08 Version: patch
- Support Mysql Parameter Group API.
2021-03-08 Version: patch
- Update CreateAndStartBackupPlan Response with createBackupSet.
2021-03-08 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-03-08 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-03-04 Version: patch
- Release RecognizeHandGesture.
2021-03-04 Version: patch
- Update Ocr.
2021-03-03 Version: patch
- Add GetRepositoryTagV2 and DeleteRepositoryTagV2 API.
2021-03-03 Version: patch
- Update Compareface.
2021-03-03 Version: patch
- Update Open API.
2021-03-03 Version: patch
- Support TableStructSync Order API.
- Support Upload File API.
- Support GetOwnerApplyOrderDetail, GetPermApplyOrderDetail API.
- Support ListDBTaskSQLJob, ListDBTaskSQLJobDetail API.
- Support GetDataCorrectSQLFile API.
2021-03-03 Version: patch
- Add Api.
2021-03-03 Version: patch
- Delete API.
2021-03-03 Version: patch
- Generated 2018-06-01 for `dataworks-public`.
2021-03-03 Version: patch
- Update ScreenChestCT.
2021-03-02 Version: patch
- Update default endpoints.
2021-03-02 Version: patch
- Supported API for dnsCache.
- Supported API for GTM.
2021-03-02 Version: patch
- Support GroupCoverFace ExternalId for ListFaceGroups.
- Support ResetItems for UpdateFaceGroup.
2021-03-01 Version: patch
- AMP Version Change.
2021-02-28 Version: patch
- AMP Version Change.
2021-02-26 Version: patch
- Add TaskId for DescribeMigrationJobStatus, DescribeSubscriptionInstanceStatus, DescribeSynchronizationJobStatus.
- Add API CreateDtsInstance, ConfigureDtsJob, StartDtsJob.
2021-02-26 Version: patch
- Support SLR by InitializeDbsServiceLinkedRole action.
- Change DescribeIncrementBackupList and DescribeFullBackupList to Support Range filter by endTimestamp.
- Change DescribeRestoreTaskList to Support Range filter by createTime.
2021-02-25 Version: patch
- Support SLR by InitializeDbsServiceLinkedRole action.
- Change DescribeIncrementBackupList and DescribeFullBackupList to Support Range filter.
2021-02-25 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-02-24 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-02-24 Version: patch
- ALL API.
2021-02-23 Version: patch
- Supported List Namespaces.
- Supported List Groups.
- Supported List Jobs.
2021-02-22 Version: patch
- Support input parameter DeploymentSetId for CreateAutoProvisioningGroup.
2021-02-19 Version: patch
- Generated 2020-01-11 for `servicemesh`.
2021-02-19 Version: patch
- Add new API for recording.
2021-02-19 Version: patch
- Add API OpenOnsService which can active ons service.
2021-02-19 Version: patch
- Generated 2018-06-01 for `dataworks-public`.
2021-02-19 Version: patch
- Update SegmentBody.
2021-02-19 Version: patch
- DescribeAvailableResource support list available resource for modify instance.
2021-02-19 Version: patch
- Update SetVideoSeekConfig.
2021-02-19 Version: patch
- Release InterpolateVideoFrame.
2021-02-19 Version: patch
- Create TSDB Open api.
2021-02-19 Version: patch
- Add.
2021-02-19 Version: patch
- Generated 2019-01-01 for `Cassandra`.
2021-02-19 Version: patch
- Supported API for GTM.
2021-02-19 Version: patch
- Support CPP and Go and PHP.
2021-02-19 Version: patch
- Support some MergeRequest API.
2021-02-08 Version: patch
- Fix IoT Studio BatchBindDevicesIntoProject API return datatype.
- Fix IoT Studio BatchBindProductsIntoProject API return datatype.
- Fix IoT Studio BatchUnbindProjectDevices API return datatype.
- Fix IoT Studio BatchUnbindProjectProducts API return datatype.
2021-02-08 Version: patch
- Add username for RunCommand and InvokeCommand.
2021-02-08 Version: patch
- Update PedestrianDetectAttribute.
2021-02-07 Version: patch
- Add IoT Studio BatchBindDevicesIntoProject API.
- Add IoT Studio BatchBindProductsIntoProject API.
- Add IoT Studio BatchUnbindProjectDevices API.
- Add IoT Studio BatchUnbindProjectProducts API.
2021-02-07 Version: patch
- Support patch manager apis.
2021-02-07 Version: patch
- Support some MergeRequest API.
2021-02-05 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-02-05 Version: patch
- Update Open API.
2021-02-05 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-02-04 Version: patch
- Update DetectVehicleIllegalParking DetectVehicleICongestion.
2021-02-04 Version: patch
- Supported scheduler for outbound call.
2021-02-04 Version: patch
- Supported console.
2021-02-04 Version: patch
- Supported console.
2021-02-04 Version: patch
- Update TaggingImage.
2021-02-03 Version: patch
- After normalizing the API group name, regenerate the SDK.
2021-02-03 Version: patch
- Add ModifyAuditLogConfig API.
2021-02-02 Version: patch
- Add.
2021-02-02 Version: patch
- CreateShardingDBInstance add ReadOnlyReplicas in ReplicaSet.
2021-02-01 Version: patch
- Support device credential for mqtt.
2021-02-01 Version: patch
- Release GenerateHumanSketchStyle MergeImageFace AddFaceImageTemplate QueryFaceImageTemplate DeleteFaceImageTemplate.
2021-02-01 Version: patch
- Add.
2021-02-01 Version: patch
- Release GenerateHumanSketchStyle MergeImageFace AddFaceImageTemplate QueryFaceImageTemplate DeleteFaceImageTemplate.
2021-02-01 Version: patch
- Release RecognizeFood.
2021-02-01 Version: patch
- Release UnderstandVideoContent.
2021-02-01 Version: patch
- Release SegmentGreenScreenVideo.
2021-02-01 Version: patch
- Release DetectVehicleIllegalParking DetectVehicleICongestion.
2021-01-31 Version: patch
- ConvertInstance.
2021-01-30 Version: patch
- Update rate limit.
2021-01-29 Version: patch
- Update Monitor Api.
2021-01-29 Version: patch
- Update Monitor Api.
2021-01-29 Version: patch
- Update Open API.
2021-01-29 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2021-01-28 Version: patch
- Generated 2018-03-13 for `retailcloud`.
2021-01-27 Version: patch
- Add New BatchTranslate API.
2021-01-27 Version: patch
- Add New BatchTranslate API.
2021-01-27 Version: patch
- DetectFaceAttributes Add Score.
2021-01-26 Version: patch
- Support ModifyDBClusterPrimaryZone timer task.
2021-01-25 Version: patch
- Regenerate SDK to override list implement.
2021-01-25 Version: patch
- Update Open API.
2021-01-21 Version: patch
- Modify some field types.
2021-01-21 Version: patch
- Generated 2019-09-10 for `waf-openapi`.
2021-01-21 Version: patch
- Add.
2021-01-21 Version: patch
- Supported RunInstances specifiy Dedicated Host Cluster Id.
2021-01-19 Version: patch
- Update Function.
2021-01-18 Version: patch
- Generated 2019-03-27 for `dg`.
2021-01-18 Version: patch
- Add a set of API to support device distribution management, including CreateProductDistributeJob, CreateDeviceDistributeJob, QueryDeviceDistributeJob, ListDeviceDistributeJob, QueryDeviceDistributeDetail, DeleteDeviceDistributeJob, ListDistributedDevice, ListDistributedProduct etc.
2021-01-18 Version: patch
- Add a set of api to support device distribution management, including CreateProductDistributeJob, CreateDeviceDistributeJob, QueryDeviceDistributeJob, ListDeviceDistributeJob, QueryDeviceDistributeDetail, DeleteDeviceDistributeJob, ListDistributedDevice, ListDistributedProduct etc.
2021-01-18 Version: patch
- Add ListMergeRequests api.
- Add protected branch api, CreateRepositoryProtectedBranch and DeleteRepositoryProtectedBranch.
- Add repository deploy key api, EnableRepositoryDeployKey and CreateRepositoryDeployKey.
- Add UpdateRepository api.
- Update GetUserInfo, support use OrganizationId param to get user organization name.
2021-01-15 Version: patch
- Add result value spanId for GetTrace api.
2021-01-15 Version: patch
- Update Function.
2021-01-15 Version: patch
- Update Function.
2021-01-15 Version: patch
- Add API CreateSortScriptValidation.
- Add parameter resourceGroupId to API ListAppGroups.
2021-01-15 Version: patch
- Remove drcGuidRouteApi, ModifyDtsJobPassword API.
2021-01-15 Version: patch
- Generated 2016-11-01 for `live`.
2021-01-14 Version: patch
- Add function.
2021-01-14 Version: patch
- Add BillingDate support in QueryAccontBill.
- Add SplitAccountId, SplitAccountName, SplitBillingCycle, SplitProductDetail, SplitCommodityCode, ServicePeriodUnit support in QuerySplitItemBill.
2021-01-14 Version: patch
- Update Open API.
2021-01-14 Version: patch
- Update function.
2021-01-14 Version: patch
- Fixed ListUsers, GetUser, EnableUser, RegisterUser, DisableUser, DeleteUser API parameter of uid data type error, from number into string.
- Supported ListInstances, GetInstance API to return Owner information.
- Supported SetOwners API to set INSTANCE owner.
2021-01-14 Version: patch
- Create Lindorm Open api.
2021-01-13 Version: patch
- Add SwitchInstanceHA API.
- ModifyInstanceSpec add SourceBiz param.
2021-01-13 Version: patch
- Add support for IoT jobs, including job management and query APIs like CreateJob, UpdateJob, QueryJob, CancelJob, ListTask, QueryTask, QueryJobStatistics etc.
2021-01-13 Version: patch
- Generated 2016-11-01 for `live`.
2021-01-12 Version: patch
- Add new API for recording.
2021-01-11 Version: patch
- Create a new sdk.
2021-01-11 Version: patch
- Add result value spanId for GetTrace api.
2021-01-11 Version: patch
- Support DescribeScheduleTasks.
- Support CancelScheduleTasks.
- Upgrade UpgradeDBClusterMinorVersion.
2021-01-08 Version: patch
- Added batch drop list domain.
2021-01-08 Version: patch
- Add new API for configuration and report, generate SDK again.
2021-01-07 Version: patch
- Add new API for configuration and report.
2021-01-07 Version: patch
- Add CreateAndStartBackupPlan.
- Add DescribeDLAService.
- Add CreateDLAService.
- Add CloseDLAService.
2021-01-07 Version: patch
- Generated 2019-09-10 for `waf-openapi`.
2021-01-06 Version: patch
- DescribeAvailableResource.
2021-01-06 Version: patch
- Initial release.
2021-01-06 Version: patch
- Update DetectLungNodule.
2021-01-06 Version: patch
- Support input parameter ClientToken for CreateAutoProvisioningGroup.
2021-01-06 Version: patch
- Add API.
2021-01-05 Version: patch
- Remove legacy APIs.
2021-01-05 Version: patch
- Add DescribeBackupTasks API.
2021-01-04 Version: patch
- Generated 2014-05-26 for `Ecs`.
2021-01-04 Version: patch
- Supported API for GTM.
2020-12-31 Version: patch
- Add support for thing model function block features, including thing model APIs like CreateThingModel,UpdateThingModel,SetDeviceProperty,InvokeThingService etc.
2020-12-31 Version: patch
- Update Open API.
2020-12-30 Version: patch
- Add DescribeActiveOperationTask API.
- Add ModifyActiveOperationTask API.
2020-12-29 Version: patch
- ListNodesNoPaging return with instance type.
2020-12-28 Version: patch
- Generated 2020-05-18 for `dataworks-public`.
2020-12-28 Version: patch
- Release InterpolateVideoFrame ToneSdrVideo ConvertHdrVideo.
2020-12-28 Version: patch
- Release GenRealPersonVerificationToken GetRealPersonVerificationResult.
2020-12-28 Version: patch
- Add CommodityCode For QueryOrderAPI.
2020-12-28 Version: patch
- Add some console API operations.
2020-12-25 Version: patch
- Generated 2016-04-08 for `Emr`.
2020-12-25 Version: patch
- Supported for weboffice edit.
2020-12-24 Version: patch
- Modify ConfigureBackupPlan.
2020-12-24 Version: patch
- Update Open API.
2020-12-23 Version: patch
- CDRS First edition.
2020-12-23 Version: patch
- Add 2019 openapi.