tencentcloud-sdk-nodejs-intl-en 3.0.1308 → 3.0.1310

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -674,6 +674,172 @@ class ModifyBackupDownloadRestrictionResponse extends AbstractModel {
674
674
  }
675
675
  }
676
676
 
677
+ /**
678
+ * Instance audit details.
679
+ * @class
680
+ */
681
+ class InstanceDbAuditStatus extends AbstractModel {
682
+ constructor(){
683
+ super();
684
+
685
+ /**
686
+ * Instance ID.
687
+ * @type {string || null}
688
+ */
689
+ this.InstanceId = null;
690
+
691
+ /**
692
+ * Audit status. ON - Audit is enabled, OFF - Audit is disabled.
693
+ * @type {string || null}
694
+ */
695
+ this.AuditStatus = null;
696
+
697
+ /**
698
+ * Task status. Valid values: 0 - No task; 1 - Enabling audit; 2 - Disabling audit.
699
+ * @type {number || null}
700
+ */
701
+ this.AuditTask = null;
702
+
703
+ /**
704
+ * Log retention period. Valid values:7 - One week;30 - One month;90 - Three months;180 - Six months;365 - One year;1095 - Three years;1825 - Five years.
705
+ * @type {number || null}
706
+ */
707
+ this.LogExpireDay = null;
708
+
709
+ /**
710
+ * High-frequency storage period. Valid values:3 - 3 days;7 - One week;30 - One month;90 - Three months;180 - Six months;365 - One year;1095 - Three years;1825 - Five years.
711
+ * @type {number || null}
712
+ */
713
+ this.HighLogExpireDay = null;
714
+
715
+ /**
716
+ * Low-frequency storage period (in days). This equals the log retention period minus the high-frequency storage period.
717
+ * @type {number || null}
718
+ */
719
+ this.LowLogExpireDay = null;
720
+
721
+ /**
722
+ * Log storage volume (in GB).
723
+ * @type {number || null}
724
+ */
725
+ this.BillingAmount = null;
726
+
727
+ /**
728
+ * High-frequency storage volume (in GB).
729
+ * @type {number || null}
730
+ */
731
+ this.HighRealStorage = null;
732
+
733
+ /**
734
+ * Low-frequency storage volume (in GB).
735
+ * @type {number || null}
736
+ */
737
+ this.LowRealStorage = null;
738
+
739
+ /**
740
+ * Whether full audit is enabled. true - Full audit.
741
+ * @type {boolean || null}
742
+ */
743
+ this.AuditAll = null;
744
+
745
+ /**
746
+ * Time when the audit service was activated.
747
+ * @type {string || null}
748
+ */
749
+ this.CreateAt = null;
750
+
751
+ /**
752
+ * Related information about the instance.
753
+ * @type {AuditInstanceInfo || null}
754
+ */
755
+ this.InstanceInfo = null;
756
+
757
+ /**
758
+ * Total storage volume (in GB).
759
+ * @type {number || null}
760
+ */
761
+ this.RealStorage = null;
762
+
763
+ /**
764
+ * Whether an audit policy is configured.
765
+ * @type {boolean || null}
766
+ */
767
+ this.OldRule = null;
768
+
769
+ /**
770
+ * Rule template applied to the instance.
771
+ * @type {Array.<string> || null}
772
+ */
773
+ this.RuleTemplateIds = null;
774
+
775
+ /**
776
+ * Trial status.
777
+ * @type {string || null}
778
+ */
779
+ this.TrialStatus = null;
780
+
781
+ /**
782
+ * Trial start time.
783
+ * @type {number || null}
784
+ */
785
+ this.TrialStartTime = null;
786
+
787
+ /**
788
+ * Trial duration.
789
+ * @type {number || null}
790
+ */
791
+ this.TrialDuration = null;
792
+
793
+ /**
794
+ * Trial end time.
795
+ * @type {number || null}
796
+ */
797
+ this.TrialCloseTime = null;
798
+
799
+ /**
800
+ * Log query time limit during the trial period.
801
+ * @type {number || null}
802
+ */
803
+ this.TrialDescribeLogHours = null;
804
+
805
+ }
806
+
807
+ /**
808
+ * @private
809
+ */
810
+ deserialize(params) {
811
+ if (!params) {
812
+ return;
813
+ }
814
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
815
+ this.AuditStatus = 'AuditStatus' in params ? params.AuditStatus : null;
816
+ this.AuditTask = 'AuditTask' in params ? params.AuditTask : null;
817
+ this.LogExpireDay = 'LogExpireDay' in params ? params.LogExpireDay : null;
818
+ this.HighLogExpireDay = 'HighLogExpireDay' in params ? params.HighLogExpireDay : null;
819
+ this.LowLogExpireDay = 'LowLogExpireDay' in params ? params.LowLogExpireDay : null;
820
+ this.BillingAmount = 'BillingAmount' in params ? params.BillingAmount : null;
821
+ this.HighRealStorage = 'HighRealStorage' in params ? params.HighRealStorage : null;
822
+ this.LowRealStorage = 'LowRealStorage' in params ? params.LowRealStorage : null;
823
+ this.AuditAll = 'AuditAll' in params ? params.AuditAll : null;
824
+ this.CreateAt = 'CreateAt' in params ? params.CreateAt : null;
825
+
826
+ if (params.InstanceInfo) {
827
+ let obj = new AuditInstanceInfo();
828
+ obj.deserialize(params.InstanceInfo)
829
+ this.InstanceInfo = obj;
830
+ }
831
+ this.RealStorage = 'RealStorage' in params ? params.RealStorage : null;
832
+ this.OldRule = 'OldRule' in params ? params.OldRule : null;
833
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
834
+ this.TrialStatus = 'TrialStatus' in params ? params.TrialStatus : null;
835
+ this.TrialStartTime = 'TrialStartTime' in params ? params.TrialStartTime : null;
836
+ this.TrialDuration = 'TrialDuration' in params ? params.TrialDuration : null;
837
+ this.TrialCloseTime = 'TrialCloseTime' in params ? params.TrialCloseTime : null;
838
+ this.TrialDescribeLogHours = 'TrialDescribeLogHours' in params ? params.TrialDescribeLogHours : null;
839
+
840
+ }
841
+ }
842
+
677
843
  /**
678
844
  * ModifyTimeWindow response structure.
679
845
  * @class
@@ -891,6 +1057,56 @@ class DescribeBackupOverviewRequest extends AbstractModel {
891
1057
  }
892
1058
  }
893
1059
 
1060
+ /**
1061
+ * DescribeAuditInstanceList response structure.
1062
+ * @class
1063
+ */
1064
+ class DescribeAuditInstanceListResponse extends AbstractModel {
1065
+ constructor(){
1066
+ super();
1067
+
1068
+ /**
1069
+ * Total number of eligible instances.
1070
+ * @type {number || null}
1071
+ */
1072
+ this.TotalCount = null;
1073
+
1074
+ /**
1075
+ * List of audit instance details.Note: This field may return null, indicating that no valid values can be obtained.
1076
+ * @type {Array.<InstanceDbAuditStatus> || null}
1077
+ */
1078
+ this.Items = null;
1079
+
1080
+ /**
1081
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1082
+ * @type {string || null}
1083
+ */
1084
+ this.RequestId = null;
1085
+
1086
+ }
1087
+
1088
+ /**
1089
+ * @private
1090
+ */
1091
+ deserialize(params) {
1092
+ if (!params) {
1093
+ return;
1094
+ }
1095
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
1096
+
1097
+ if (params.Items) {
1098
+ this.Items = new Array();
1099
+ for (let z in params.Items) {
1100
+ let obj = new InstanceDbAuditStatus();
1101
+ obj.deserialize(params.Items[z]);
1102
+ this.Items.push(obj);
1103
+ }
1104
+ }
1105
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
1106
+
1107
+ }
1108
+ }
1109
+
894
1110
  /**
895
1111
  * ModifyDBInstanceProject response structure.
896
1112
  * @class
@@ -1031,6 +1247,41 @@ class DescribeDataBackupOverviewResponse extends AbstractModel {
1031
1247
  }
1032
1248
  }
1033
1249
 
1250
+ /**
1251
+ * DeleteAuditPolicy request structure.
1252
+ * @class
1253
+ */
1254
+ class DeleteAuditPolicyRequest extends AbstractModel {
1255
+ constructor(){
1256
+ super();
1257
+
1258
+ /**
1259
+ * Audit policy ID.
1260
+ * @type {string || null}
1261
+ */
1262
+ this.PolicyId = null;
1263
+
1264
+ /**
1265
+ * Instance ID.
1266
+ * @type {string || null}
1267
+ */
1268
+ this.InstanceId = null;
1269
+
1270
+ }
1271
+
1272
+ /**
1273
+ * @private
1274
+ */
1275
+ deserialize(params) {
1276
+ if (!params) {
1277
+ return;
1278
+ }
1279
+ this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
1280
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1281
+
1282
+ }
1283
+ }
1284
+
1034
1285
  /**
1035
1286
  * Statistical items of instance backup
1036
1287
  * @class
@@ -1680,6 +1931,34 @@ Note that tags cannot be queried for instances being created.
1680
1931
  }
1681
1932
  }
1682
1933
 
1934
+ /**
1935
+ * CreateRotationPassword response structure.
1936
+ * @class
1937
+ */
1938
+ class CreateRotationPasswordResponse extends AbstractModel {
1939
+ constructor(){
1940
+ super();
1941
+
1942
+ /**
1943
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1944
+ * @type {string || null}
1945
+ */
1946
+ this.RequestId = null;
1947
+
1948
+ }
1949
+
1950
+ /**
1951
+ * @private
1952
+ */
1953
+ deserialize(params) {
1954
+ if (!params) {
1955
+ return;
1956
+ }
1957
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
1958
+
1959
+ }
1960
+ }
1961
+
1683
1962
  /**
1684
1963
  * ModifyCdbProxyAddressDesc request structure.
1685
1964
  * @class
@@ -1950,18 +2229,18 @@ class CloseWanServiceRequest extends AbstractModel {
1950
2229
  }
1951
2230
 
1952
2231
  /**
1953
- * OpenAuditService response structure.
2232
+ * DescribeAuditConfig request structure.
1954
2233
  * @class
1955
2234
  */
1956
- class OpenAuditServiceResponse extends AbstractModel {
2235
+ class DescribeAuditConfigRequest extends AbstractModel {
1957
2236
  constructor(){
1958
2237
  super();
1959
2238
 
1960
2239
  /**
1961
- * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2240
+ * Instance ID, in the format such as cdb-c1nl9rpv or cdbro-c1nl9rpv. This matches the instance ID displayed on the TencentDB console.
1962
2241
  * @type {string || null}
1963
2242
  */
1964
- this.RequestId = null;
2243
+ this.InstanceId = null;
1965
2244
 
1966
2245
  }
1967
2246
 
@@ -1972,7 +2251,7 @@ class OpenAuditServiceResponse extends AbstractModel {
1972
2251
  if (!params) {
1973
2252
  return;
1974
2253
  }
1975
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
2254
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1976
2255
 
1977
2256
  }
1978
2257
  }
@@ -2452,20 +2731,13 @@ class AnalyzeAuditLogsRequest extends AbstractModel {
2452
2731
  }
2453
2732
 
2454
2733
  /**
2455
- * StopReplication response structure.
2734
+ * ModifyBackupEncryptionStatus response structure.
2456
2735
  * @class
2457
2736
  */
2458
- class StopReplicationResponse extends AbstractModel {
2737
+ class ModifyBackupEncryptionStatusResponse extends AbstractModel {
2459
2738
  constructor(){
2460
2739
  super();
2461
2740
 
2462
- /**
2463
- * Async task ID.
2464
- Note: this field may return `null`, indicating that no valid values can be obtained.
2465
- * @type {string || null}
2466
- */
2467
- this.AsyncRequestId = null;
2468
-
2469
2741
  /**
2470
2742
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2471
2743
  * @type {string || null}
@@ -2481,7 +2753,6 @@ Note: this field may return `null`, indicating that no valid values can be obtai
2481
2753
  if (!params) {
2482
2754
  return;
2483
2755
  }
2484
- this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
2485
2756
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
2486
2757
 
2487
2758
  }
@@ -2734,105 +3005,34 @@ class TagInfoUnit extends AbstractModel {
2734
3005
  }
2735
3006
 
2736
3007
  /**
2737
- * OpenAuditService request structure.
3008
+ * DescribeAuditRules request structure.
2738
3009
  * @class
2739
3010
  */
2740
- class OpenAuditServiceRequest extends AbstractModel {
3011
+ class DescribeAuditRulesRequest extends AbstractModel {
2741
3012
  constructor(){
2742
3013
  super();
2743
3014
 
2744
3015
  /**
2745
- * TencentDB for MySQL instance ID
3016
+ * Audit rule ID.
2746
3017
  * @type {string || null}
2747
3018
  */
2748
- this.InstanceId = null;
3019
+ this.RuleId = null;
2749
3020
 
2750
3021
  /**
2751
- * Retention period of the audit log. Valid values: `7` (one week), `30` (one month), `90` (three months), `180` (six months), `365` (one year), `1095` (three years), `1825` (five years).
2752
- * @type {number || null}
3022
+ * Audit rule name. Fuzzy match query is supported.
3023
+ * @type {string || null}
2753
3024
  */
2754
- this.LogExpireDay = null;
3025
+ this.RuleName = null;
2755
3026
 
2756
3027
  /**
2757
- * Retention period of high-frequency audit logs. Valid values: `7` (one week), `30` (one month).
3028
+ * Number of entries per page. Value range: 1-100. Default value: 20.
2758
3029
  * @type {number || null}
2759
3030
  */
2760
- this.HighLogExpireDay = null;
3031
+ this.Limit = null;
2761
3032
 
2762
3033
  /**
2763
- * Audit rule If both this parameter and `RuleTemplateIds` are left empty, full audit will be applied.
2764
- * @type {Array.<AuditRuleFilters> || null}
2765
- */
2766
- this.AuditRuleFilters = null;
2767
-
2768
- /**
2769
- * Rule template ID. If both this parameter and AuditRuleFilters are not specified, all SQL statements will be recorded.
2770
- * @type {Array.<string> || null}
2771
- */
2772
- this.RuleTemplateIds = null;
2773
-
2774
- /**
2775
- * Audit type. Valid values: true: Record all; false: Record by rules (default value).
2776
- * @type {boolean || null}
2777
- */
2778
- this.AuditAll = null;
2779
-
2780
- }
2781
-
2782
- /**
2783
- * @private
2784
- */
2785
- deserialize(params) {
2786
- if (!params) {
2787
- return;
2788
- }
2789
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
2790
- this.LogExpireDay = 'LogExpireDay' in params ? params.LogExpireDay : null;
2791
- this.HighLogExpireDay = 'HighLogExpireDay' in params ? params.HighLogExpireDay : null;
2792
-
2793
- if (params.AuditRuleFilters) {
2794
- this.AuditRuleFilters = new Array();
2795
- for (let z in params.AuditRuleFilters) {
2796
- let obj = new AuditRuleFilters();
2797
- obj.deserialize(params.AuditRuleFilters[z]);
2798
- this.AuditRuleFilters.push(obj);
2799
- }
2800
- }
2801
- this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
2802
- this.AuditAll = 'AuditAll' in params ? params.AuditAll : null;
2803
-
2804
- }
2805
- }
2806
-
2807
- /**
2808
- * DescribeAuditRules request structure.
2809
- * @class
2810
- */
2811
- class DescribeAuditRulesRequest extends AbstractModel {
2812
- constructor(){
2813
- super();
2814
-
2815
- /**
2816
- * Audit rule ID.
2817
- * @type {string || null}
2818
- */
2819
- this.RuleId = null;
2820
-
2821
- /**
2822
- * Audit rule name. Fuzzy match query is supported.
2823
- * @type {string || null}
2824
- */
2825
- this.RuleName = null;
2826
-
2827
- /**
2828
- * Number of entries per page. Value range: 1-100. Default value: 20.
2829
- * @type {number || null}
2830
- */
2831
- this.Limit = null;
2832
-
2833
- /**
2834
- * Pagination offset. Default value: 0
2835
- * @type {number || null}
3034
+ * Pagination offset. Default value: 0
3035
+ * @type {number || null}
2836
3036
  */
2837
3037
  this.Offset = null;
2838
3038
 
@@ -3600,20 +3800,13 @@ class ModifyParamTemplateRequest extends AbstractModel {
3600
3800
  }
3601
3801
 
3602
3802
  /**
3603
- * StartReplication response structure.
3803
+ * OpenAuditService response structure.
3604
3804
  * @class
3605
3805
  */
3606
- class StartReplicationResponse extends AbstractModel {
3806
+ class OpenAuditServiceResponse extends AbstractModel {
3607
3807
  constructor(){
3608
3808
  super();
3609
3809
 
3610
- /**
3611
- * Async task ID.
3612
- Note: this field may return `null`, indicating that no valid values can be obtained.
3613
- * @type {string || null}
3614
- */
3615
- this.AsyncRequestId = null;
3616
-
3617
3810
  /**
3618
3811
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
3619
3812
  * @type {string || null}
@@ -3629,7 +3822,6 @@ Note: this field may return `null`, indicating that no valid values can be obtai
3629
3822
  if (!params) {
3630
3823
  return;
3631
3824
  }
3632
- this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
3633
3825
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
3634
3826
 
3635
3827
  }
@@ -3927,6 +4119,69 @@ class ModifyAutoRenewFlagRequest extends AbstractModel {
3927
4119
  }
3928
4120
  }
3929
4121
 
4122
+ /**
4123
+ * DescribeAuditConfig response structure.
4124
+ * @class
4125
+ */
4126
+ class DescribeAuditConfigResponse extends AbstractModel {
4127
+ constructor(){
4128
+ super();
4129
+
4130
+ /**
4131
+ * Audit log retention period. Valid values: [0, 7, 30, 180, 365, 1095, 1825].
4132
+ * @type {number || null}
4133
+ */
4134
+ this.LogExpireDay = null;
4135
+
4136
+ /**
4137
+ * Audit log storage type. Valid value: "storage" - Storage type.
4138
+ * @type {string || null}
4139
+ */
4140
+ this.LogType = null;
4141
+
4142
+ /**
4143
+ * Whether the audit service is being disabled. Valid values: "false" - No, "true" - Yes.
4144
+ * @type {string || null}
4145
+ */
4146
+ this.IsClosing = null;
4147
+
4148
+ /**
4149
+ * Whether the audit service is being enabled. Valid values: "false" - No, "true" - Yes.
4150
+ * @type {string || null}
4151
+ */
4152
+ this.IsOpening = null;
4153
+
4154
+ /**
4155
+ * Time when the audit service was activated.
4156
+ * @type {string || null}
4157
+ */
4158
+ this.CreateTime = null;
4159
+
4160
+ /**
4161
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
4162
+ * @type {string || null}
4163
+ */
4164
+ this.RequestId = null;
4165
+
4166
+ }
4167
+
4168
+ /**
4169
+ * @private
4170
+ */
4171
+ deserialize(params) {
4172
+ if (!params) {
4173
+ return;
4174
+ }
4175
+ this.LogExpireDay = 'LogExpireDay' in params ? params.LogExpireDay : null;
4176
+ this.LogType = 'LogType' in params ? params.LogType : null;
4177
+ this.IsClosing = 'IsClosing' in params ? params.IsClosing : null;
4178
+ this.IsOpening = 'IsOpening' in params ? params.IsOpening : null;
4179
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
4180
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
4181
+
4182
+ }
4183
+ }
4184
+
3930
4185
  /**
3931
4186
  * ModifyBackupConfig response structure.
3932
4187
  * @class
@@ -3983,6 +4238,34 @@ class OpenWanServiceRequest extends AbstractModel {
3983
4238
  }
3984
4239
  }
3985
4240
 
4241
+ /**
4242
+ * DeleteAuditPolicy response structure.
4243
+ * @class
4244
+ */
4245
+ class DeleteAuditPolicyResponse extends AbstractModel {
4246
+ constructor(){
4247
+ super();
4248
+
4249
+ /**
4250
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
4251
+ * @type {string || null}
4252
+ */
4253
+ this.RequestId = null;
4254
+
4255
+ }
4256
+
4257
+ /**
4258
+ * @private
4259
+ */
4260
+ deserialize(params) {
4261
+ if (!params) {
4262
+ return;
4263
+ }
4264
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
4265
+
4266
+ }
4267
+ }
4268
+
3986
4269
  /**
3987
4270
  * DescribeParamTemplateInfo response structure.
3988
4271
  * @class
@@ -4212,8 +4495,7 @@ class AuditRuleFilters extends AbstractModel {
4212
4495
  super();
4213
4496
 
4214
4497
  /**
4215
- * Audit rule
4216
- Note: This field may return null, indicating that no valid values can be obtained.
4498
+ * A single audit rule.
4217
4499
  * @type {Array.<RuleFilters> || null}
4218
4500
  */
4219
4501
  this.RuleFilters = null;
@@ -4554,6 +4836,69 @@ class ReleaseResult extends AbstractModel {
4554
4836
  }
4555
4837
  }
4556
4838
 
4839
+ /**
4840
+ * ModifyDBInstanceVipVport request structure.
4841
+ * @class
4842
+ */
4843
+ class ModifyDBInstanceVipVportRequest extends AbstractModel {
4844
+ constructor(){
4845
+ super();
4846
+
4847
+ /**
4848
+ * Instance ID in the format of cdb-c1nl9rpv, cdbro-c2nl9rpv, or cdbrg-c3nl9rpv. It is the same as the instance ID displayed on the TencentDB Console page. You can use the [DescribeDBInstances](https://www.tencentcloud.com/document/product/236/15872) API to query the ID, which is the value of the `InstanceId` output parameter.
4849
+ * @type {string || null}
4850
+ */
4851
+ this.InstanceId = null;
4852
+
4853
+ /**
4854
+ * Target IP. Either this parameter or `DstPort` must be passed in.
4855
+ * @type {string || null}
4856
+ */
4857
+ this.DstIp = null;
4858
+
4859
+ /**
4860
+ * Target port number. Value range: 1024-65535. Either this parameter or `DstIp` must be passed in.
4861
+ * @type {number || null}
4862
+ */
4863
+ this.DstPort = null;
4864
+
4865
+ /**
4866
+ * Unified VPC ID
4867
+ * @type {string || null}
4868
+ */
4869
+ this.UniqVpcId = null;
4870
+
4871
+ /**
4872
+ * Unified subnet ID
4873
+ * @type {string || null}
4874
+ */
4875
+ this.UniqSubnetId = null;
4876
+
4877
+ /**
4878
+ * Repossession duration in hours for old IP in the original network when changing from classic network to VPC or changing the VPC subnet. Value range: 0–168. Default value: `24`.
4879
+ * @type {number || null}
4880
+ */
4881
+ this.ReleaseDuration = null;
4882
+
4883
+ }
4884
+
4885
+ /**
4886
+ * @private
4887
+ */
4888
+ deserialize(params) {
4889
+ if (!params) {
4890
+ return;
4891
+ }
4892
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
4893
+ this.DstIp = 'DstIp' in params ? params.DstIp : null;
4894
+ this.DstPort = 'DstPort' in params ? params.DstPort : null;
4895
+ this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
4896
+ this.UniqSubnetId = 'UniqSubnetId' in params ? params.UniqSubnetId : null;
4897
+ this.ReleaseDuration = 'ReleaseDuration' in params ? params.ReleaseDuration : null;
4898
+
4899
+ }
4900
+ }
4901
+
4557
4902
  /**
4558
4903
  * Audit rule
4559
4904
  * @class
@@ -4806,18 +5151,48 @@ class RuleFilters extends AbstractModel {
4806
5151
  }
4807
5152
 
4808
5153
  /**
4809
- * ModifyRemoteBackupConfig response structure.
5154
+ * ModifyAuditRuleTemplates request structure.
4810
5155
  * @class
4811
5156
  */
4812
- class ModifyRemoteBackupConfigResponse extends AbstractModel {
5157
+ class ModifyAuditRuleTemplatesRequest extends AbstractModel {
4813
5158
  constructor(){
4814
5159
  super();
4815
5160
 
4816
5161
  /**
4817
- * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
5162
+ * Audit rule template ID, which can be obtained through the [DescribeAuditRuleTemplates](https://www.tencentcloud.comom/document/api/236/101811?from_cn_redirect=1) API.
5163
+ * @type {Array.<string> || null}
5164
+ */
5165
+ this.RuleTemplateIds = null;
5166
+
5167
+ /**
5168
+ * Modified audit rule.
5169
+ * @type {Array.<RuleFilters> || null}
5170
+ */
5171
+ this.RuleFilters = null;
5172
+
5173
+ /**
5174
+ * Modified rule template name.
4818
5175
  * @type {string || null}
4819
5176
  */
4820
- this.RequestId = null;
5177
+ this.RuleTemplateName = null;
5178
+
5179
+ /**
5180
+ * Modified rule template description.
5181
+ * @type {string || null}
5182
+ */
5183
+ this.Description = null;
5184
+
5185
+ /**
5186
+ * Alarm level. Valid values: 1 - Low risk, 2 - Medium risk, 3 - High risk.
5187
+ * @type {number || null}
5188
+ */
5189
+ this.AlarmLevel = null;
5190
+
5191
+ /**
5192
+ * Alarm policy. Valid values: 0 - Alarm disabled, 1 - Alarm enabled.
5193
+ * @type {number || null}
5194
+ */
5195
+ this.AlarmPolicy = null;
4821
5196
 
4822
5197
  }
4823
5198
 
@@ -4828,9 +5203,50 @@ class ModifyRemoteBackupConfigResponse extends AbstractModel {
4828
5203
  if (!params) {
4829
5204
  return;
4830
5205
  }
4831
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
5206
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
4832
5207
 
4833
- }
5208
+ if (params.RuleFilters) {
5209
+ this.RuleFilters = new Array();
5210
+ for (let z in params.RuleFilters) {
5211
+ let obj = new RuleFilters();
5212
+ obj.deserialize(params.RuleFilters[z]);
5213
+ this.RuleFilters.push(obj);
5214
+ }
5215
+ }
5216
+ this.RuleTemplateName = 'RuleTemplateName' in params ? params.RuleTemplateName : null;
5217
+ this.Description = 'Description' in params ? params.Description : null;
5218
+ this.AlarmLevel = 'AlarmLevel' in params ? params.AlarmLevel : null;
5219
+ this.AlarmPolicy = 'AlarmPolicy' in params ? params.AlarmPolicy : null;
5220
+
5221
+ }
5222
+ }
5223
+
5224
+ /**
5225
+ * ModifyRemoteBackupConfig response structure.
5226
+ * @class
5227
+ */
5228
+ class ModifyRemoteBackupConfigResponse extends AbstractModel {
5229
+ constructor(){
5230
+ super();
5231
+
5232
+ /**
5233
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
5234
+ * @type {string || null}
5235
+ */
5236
+ this.RequestId = null;
5237
+
5238
+ }
5239
+
5240
+ /**
5241
+ * @private
5242
+ */
5243
+ deserialize(params) {
5244
+ if (!params) {
5245
+ return;
5246
+ }
5247
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5248
+
5249
+ }
4834
5250
  }
4835
5251
 
4836
5252
  /**
@@ -4948,6 +5364,42 @@ class AssociateSecurityGroupsRequest extends AbstractModel {
4948
5364
  }
4949
5365
  }
4950
5366
 
5367
+ /**
5368
+ * StartReplication response structure.
5369
+ * @class
5370
+ */
5371
+ class StartReplicationResponse extends AbstractModel {
5372
+ constructor(){
5373
+ super();
5374
+
5375
+ /**
5376
+ * Async task ID.
5377
+ Note: this field may return `null`, indicating that no valid values can be obtained.
5378
+ * @type {string || null}
5379
+ */
5380
+ this.AsyncRequestId = null;
5381
+
5382
+ /**
5383
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
5384
+ * @type {string || null}
5385
+ */
5386
+ this.RequestId = null;
5387
+
5388
+ }
5389
+
5390
+ /**
5391
+ * @private
5392
+ */
5393
+ deserialize(params) {
5394
+ if (!params) {
5395
+ return;
5396
+ }
5397
+ this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
5398
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5399
+
5400
+ }
5401
+ }
5402
+
4951
5403
  /**
4952
5404
  * DescribeDBFeatures response structure.
4953
5405
  * @class
@@ -5166,6 +5618,63 @@ class DescribeDefaultParamsRequest extends AbstractModel {
5166
5618
  }
5167
5619
  }
5168
5620
 
5621
+ /**
5622
+ * Audit instance details.
5623
+ * @class
5624
+ */
5625
+ class AuditInstanceInfo extends AbstractModel {
5626
+ constructor(){
5627
+ super();
5628
+
5629
+ /**
5630
+ * Project ID.
5631
+ * @type {number || null}
5632
+ */
5633
+ this.ProjectId = null;
5634
+
5635
+ /**
5636
+ * Tag information.
5637
+ * @type {Array.<TagInfoUnit> || null}
5638
+ */
5639
+ this.TagList = null;
5640
+
5641
+ /**
5642
+ * Database engine type.
5643
+ * @type {string || null}
5644
+ */
5645
+ this.DbType = null;
5646
+
5647
+ /**
5648
+ * Database engine version.
5649
+ * @type {string || null}
5650
+ */
5651
+ this.DbVersion = null;
5652
+
5653
+ }
5654
+
5655
+ /**
5656
+ * @private
5657
+ */
5658
+ deserialize(params) {
5659
+ if (!params) {
5660
+ return;
5661
+ }
5662
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
5663
+
5664
+ if (params.TagList) {
5665
+ this.TagList = new Array();
5666
+ for (let z in params.TagList) {
5667
+ let obj = new TagInfoUnit();
5668
+ obj.deserialize(params.TagList[z]);
5669
+ this.TagList.push(obj);
5670
+ }
5671
+ }
5672
+ this.DbType = 'DbType' in params ? params.DbType : null;
5673
+ this.DbVersion = 'DbVersion' in params ? params.DbVersion : null;
5674
+
5675
+ }
5676
+ }
5677
+
5169
5678
  /**
5170
5679
  * Proxy configuration
5171
5680
  * @class
@@ -6049,6 +6558,34 @@ class ImportRecord extends AbstractModel {
6049
6558
  }
6050
6559
  }
6051
6560
 
6561
+ /**
6562
+ * DeleteAuditLogFile response structure.
6563
+ * @class
6564
+ */
6565
+ class DeleteAuditLogFileResponse extends AbstractModel {
6566
+ constructor(){
6567
+ super();
6568
+
6569
+ /**
6570
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6571
+ * @type {string || null}
6572
+ */
6573
+ this.RequestId = null;
6574
+
6575
+ }
6576
+
6577
+ /**
6578
+ * @private
6579
+ */
6580
+ deserialize(params) {
6581
+ if (!params) {
6582
+ return;
6583
+ }
6584
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6585
+
6586
+ }
6587
+ }
6588
+
6052
6589
  /**
6053
6590
  * Database instance parameter
6054
6591
  * @class
@@ -6249,6 +6786,112 @@ class Tag extends AbstractModel {
6249
6786
  }
6250
6787
  }
6251
6788
 
6789
+ /**
6790
+ * Rule template content.
6791
+ * @class
6792
+ */
6793
+ class RuleTemplateInfo extends AbstractModel {
6794
+ constructor(){
6795
+ super();
6796
+
6797
+ /**
6798
+ * Rule template ID.
6799
+ * @type {string || null}
6800
+ */
6801
+ this.RuleTemplateId = null;
6802
+
6803
+ /**
6804
+ * Rule template name.
6805
+ * @type {string || null}
6806
+ */
6807
+ this.RuleTemplateName = null;
6808
+
6809
+ /**
6810
+ * Rule content.
6811
+ * @type {Array.<RuleFilters> || null}
6812
+ */
6813
+ this.RuleFilters = null;
6814
+
6815
+ /**
6816
+ * Alarm level. Valid values: 1 - Low risk, 2 - Medium risk, 3 - High risk.
6817
+ * @type {number || null}
6818
+ */
6819
+ this.AlarmLevel = null;
6820
+
6821
+ /**
6822
+ * Alarm policy. Valid values: 0 - Alarm disabled, 1 - Alarm enabled.
6823
+ * @type {number || null}
6824
+ */
6825
+ this.AlarmPolicy = null;
6826
+
6827
+ /**
6828
+ * Rule description.
6829
+ * @type {string || null}
6830
+ */
6831
+ this.Description = null;
6832
+
6833
+ }
6834
+
6835
+ /**
6836
+ * @private
6837
+ */
6838
+ deserialize(params) {
6839
+ if (!params) {
6840
+ return;
6841
+ }
6842
+ this.RuleTemplateId = 'RuleTemplateId' in params ? params.RuleTemplateId : null;
6843
+ this.RuleTemplateName = 'RuleTemplateName' in params ? params.RuleTemplateName : null;
6844
+
6845
+ if (params.RuleFilters) {
6846
+ this.RuleFilters = new Array();
6847
+ for (let z in params.RuleFilters) {
6848
+ let obj = new RuleFilters();
6849
+ obj.deserialize(params.RuleFilters[z]);
6850
+ this.RuleFilters.push(obj);
6851
+ }
6852
+ }
6853
+ this.AlarmLevel = 'AlarmLevel' in params ? params.AlarmLevel : null;
6854
+ this.AlarmPolicy = 'AlarmPolicy' in params ? params.AlarmPolicy : null;
6855
+ this.Description = 'Description' in params ? params.Description : null;
6856
+
6857
+ }
6858
+ }
6859
+
6860
+ /**
6861
+ * CreateAuditLogFile response structure.
6862
+ * @class
6863
+ */
6864
+ class CreateAuditLogFileResponse extends AbstractModel {
6865
+ constructor(){
6866
+ super();
6867
+
6868
+ /**
6869
+ * Audit log file name.
6870
+ * @type {string || null}
6871
+ */
6872
+ this.FileName = null;
6873
+
6874
+ /**
6875
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6876
+ * @type {string || null}
6877
+ */
6878
+ this.RequestId = null;
6879
+
6880
+ }
6881
+
6882
+ /**
6883
+ * @private
6884
+ */
6885
+ deserialize(params) {
6886
+ if (!params) {
6887
+ return;
6888
+ }
6889
+ this.FileName = 'FileName' in params ? params.FileName : null;
6890
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6891
+
6892
+ }
6893
+ }
6894
+
6252
6895
  /**
6253
6896
  * ModifyCdbProxyParam response structure.
6254
6897
  * @class
@@ -7706,25 +8349,19 @@ class DescribeDeviceMonitorInfoRequest extends AbstractModel {
7706
8349
  }
7707
8350
 
7708
8351
  /**
7709
- * SwitchDrInstanceToMaster response structure.
8352
+ * StopDBImportJob request structure.
7710
8353
  * @class
7711
8354
  */
7712
- class SwitchDrInstanceToMasterResponse extends AbstractModel {
8355
+ class StopDBImportJobRequest extends AbstractModel {
7713
8356
  constructor(){
7714
8357
  super();
7715
8358
 
7716
8359
  /**
7717
- * Async task request ID, which can be used to query the execution result of an async task
8360
+ * Async task request ID.
7718
8361
  * @type {string || null}
7719
8362
  */
7720
8363
  this.AsyncRequestId = null;
7721
8364
 
7722
- /**
7723
- * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
7724
- * @type {string || null}
7725
- */
7726
- this.RequestId = null;
7727
-
7728
8365
  }
7729
8366
 
7730
8367
  /**
@@ -7735,7 +8372,6 @@ class SwitchDrInstanceToMasterResponse extends AbstractModel {
7735
8372
  return;
7736
8373
  }
7737
8374
  this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
7738
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
7739
8375
 
7740
8376
  }
7741
8377
  }
@@ -8021,6 +8657,77 @@ class DescribeDBInstanceConfigRequest extends AbstractModel {
8021
8657
  }
8022
8658
  }
8023
8659
 
8660
+ /**
8661
+ * ModifyAuditService request structure.
8662
+ * @class
8663
+ */
8664
+ class ModifyAuditServiceRequest extends AbstractModel {
8665
+ constructor(){
8666
+ super();
8667
+
8668
+ /**
8669
+ * Instance ID, which can be obtained through the [DescribeDBInstances](https://www.tencentcloud.comom/document/product/236/15872?from_cn_redirect=1) API.
8670
+ * @type {string || null}
8671
+ */
8672
+ this.InstanceId = null;
8673
+
8674
+ /**
8675
+ * Log retention period. Valid values:7 - One week;30 - One month;90 - Three months;180 - Six months;365 - One year;1095 - Three years;1825 - Five years.
8676
+ * @type {number || null}
8677
+ */
8678
+ this.LogExpireDay = null;
8679
+
8680
+ /**
8681
+ * High-frequency log retention period. Default value: 7. This value must be less than or equal to LogExpireDay. Valid values include:3 - 3 days;7 - One week;30 - One month;90 - Three months;180 - Six months;365 - One year;1095 - Three years;1825 - Five years.
8682
+ * @type {number || null}
8683
+ */
8684
+ this.HighLogExpireDay = null;
8685
+
8686
+ /**
8687
+ * Modifies the instance audit rule to Full audit.
8688
+ * @type {boolean || null}
8689
+ */
8690
+ this.AuditAll = null;
8691
+
8692
+ /**
8693
+ * Deprecated.
8694
+ * @type {Array.<AuditRuleFilters> || null}
8695
+ */
8696
+ this.AuditRuleFilters = null;
8697
+
8698
+ /**
8699
+ * Rule template ID, which can be obtained through the [DescribeAuditRuleTemplates](https://www.tencentcloud.comom/document/api/236/101811?from_cn_redirect=1) API.
8700
+ * @type {Array.<string> || null}
8701
+ */
8702
+ this.RuleTemplateIds = null;
8703
+
8704
+ }
8705
+
8706
+ /**
8707
+ * @private
8708
+ */
8709
+ deserialize(params) {
8710
+ if (!params) {
8711
+ return;
8712
+ }
8713
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8714
+ this.LogExpireDay = 'LogExpireDay' in params ? params.LogExpireDay : null;
8715
+ this.HighLogExpireDay = 'HighLogExpireDay' in params ? params.HighLogExpireDay : null;
8716
+ this.AuditAll = 'AuditAll' in params ? params.AuditAll : null;
8717
+
8718
+ if (params.AuditRuleFilters) {
8719
+ this.AuditRuleFilters = new Array();
8720
+ for (let z in params.AuditRuleFilters) {
8721
+ let obj = new AuditRuleFilters();
8722
+ obj.deserialize(params.AuditRuleFilters[z]);
8723
+ this.AuditRuleFilters.push(obj);
8724
+ }
8725
+ }
8726
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
8727
+
8728
+ }
8729
+ }
8730
+
8024
8731
  /**
8025
8732
  * DescribeProxyCustomConf response structure.
8026
8733
  * @class
@@ -8083,6 +8790,69 @@ Note: this field may return `null`, indicating that no valid value can be found.
8083
8790
  }
8084
8791
  }
8085
8792
 
8793
+ /**
8794
+ * ModifyAuditConfig response structure.
8795
+ * @class
8796
+ */
8797
+ class ModifyAuditConfigResponse extends AbstractModel {
8798
+ constructor(){
8799
+ super();
8800
+
8801
+ /**
8802
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
8803
+ * @type {string || null}
8804
+ */
8805
+ this.RequestId = null;
8806
+
8807
+ }
8808
+
8809
+ /**
8810
+ * @private
8811
+ */
8812
+ deserialize(params) {
8813
+ if (!params) {
8814
+ return;
8815
+ }
8816
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
8817
+
8818
+ }
8819
+ }
8820
+
8821
+ /**
8822
+ * SwitchDrInstanceToMaster response structure.
8823
+ * @class
8824
+ */
8825
+ class SwitchDrInstanceToMasterResponse extends AbstractModel {
8826
+ constructor(){
8827
+ super();
8828
+
8829
+ /**
8830
+ * Async task request ID, which can be used to query the execution result of an async task
8831
+ * @type {string || null}
8832
+ */
8833
+ this.AsyncRequestId = null;
8834
+
8835
+ /**
8836
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
8837
+ * @type {string || null}
8838
+ */
8839
+ this.RequestId = null;
8840
+
8841
+ }
8842
+
8843
+ /**
8844
+ * @private
8845
+ */
8846
+ deserialize(params) {
8847
+ if (!params) {
8848
+ return;
8849
+ }
8850
+ this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
8851
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
8852
+
8853
+ }
8854
+ }
8855
+
8086
8856
  /**
8087
8857
  * ModifyDBInstanceName response structure.
8088
8858
  * @class
@@ -8111,6 +8881,79 @@ class ModifyDBInstanceNameResponse extends AbstractModel {
8111
8881
  }
8112
8882
  }
8113
8883
 
8884
+ /**
8885
+ * Rule template change history.
8886
+ * @class
8887
+ */
8888
+ class RuleTemplateRecordInfo extends AbstractModel {
8889
+ constructor(){
8890
+ super();
8891
+
8892
+ /**
8893
+ * Task ID.
8894
+ * @type {number || null}
8895
+ */
8896
+ this.TaskId = null;
8897
+
8898
+ /**
8899
+ * Details of the original rule template.
8900
+ * @type {RuleTemplateInfo || null}
8901
+ */
8902
+ this.ModifyBeforeInfo = null;
8903
+
8904
+ /**
8905
+ * Details of the modified rule template.
8906
+ * @type {RuleTemplateInfo || null}
8907
+ */
8908
+ this.ModifyAfterInfo = null;
8909
+
8910
+ /**
8911
+ * Affected instances.
8912
+ * @type {Array.<string> || null}
8913
+ */
8914
+ this.AffectedInstances = null;
8915
+
8916
+ /**
8917
+ * Operator (account UIN).
8918
+ * @type {string || null}
8919
+ */
8920
+ this.Operator = null;
8921
+
8922
+ /**
8923
+ * Time of the change.
8924
+ * @type {string || null}
8925
+ */
8926
+ this.UpdateTime = null;
8927
+
8928
+ }
8929
+
8930
+ /**
8931
+ * @private
8932
+ */
8933
+ deserialize(params) {
8934
+ if (!params) {
8935
+ return;
8936
+ }
8937
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
8938
+
8939
+ if (params.ModifyBeforeInfo) {
8940
+ let obj = new RuleTemplateInfo();
8941
+ obj.deserialize(params.ModifyBeforeInfo)
8942
+ this.ModifyBeforeInfo = obj;
8943
+ }
8944
+
8945
+ if (params.ModifyAfterInfo) {
8946
+ let obj = new RuleTemplateInfo();
8947
+ obj.deserialize(params.ModifyAfterInfo)
8948
+ this.ModifyAfterInfo = obj;
8949
+ }
8950
+ this.AffectedInstances = 'AffectedInstances' in params ? params.AffectedInstances : null;
8951
+ this.Operator = 'Operator' in params ? params.Operator : null;
8952
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
8953
+
8954
+ }
8955
+ }
8956
+
8114
8957
  /**
8115
8958
  * DescribeCloneList response structure.
8116
8959
  * @class
@@ -8488,89 +9331,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
8488
9331
  }
8489
9332
 
8490
9333
  /**
8491
- * Structured slow log details
9334
+ * Database name and character set
8492
9335
  * @class
8493
9336
  */
8494
- class SlowLogItem extends AbstractModel {
9337
+ class DatabasesWithCharacterLists extends AbstractModel {
8495
9338
  constructor(){
8496
9339
  super();
8497
9340
 
8498
9341
  /**
8499
- * SQL execution time.
8500
- Note: this field may return null, indicating that no valid values can be obtained.
8501
- * @type {number || null}
8502
- */
8503
- this.Timestamp = null;
8504
-
8505
- /**
8506
- * SQL execution duration in seconds.
8507
- Note: this field may return `null`, indicating that no valid values can be obtained.
8508
- * @type {number || null}
8509
- */
8510
- this.QueryTime = null;
8511
-
8512
- /**
8513
- * SQL statement.
8514
- Note: this field may return null, indicating that no valid values can be obtained.
8515
- * @type {string || null}
8516
- */
8517
- this.SqlText = null;
8518
-
8519
- /**
8520
- * Client address.
8521
- Note: this field may return null, indicating that no valid values can be obtained.
8522
- * @type {string || null}
8523
- */
8524
- this.UserHost = null;
8525
-
8526
- /**
8527
- * Username.
8528
- Note: this field may return null, indicating that no valid values can be obtained.
8529
- * @type {string || null}
8530
- */
8531
- this.UserName = null;
8532
-
8533
- /**
8534
- * Database name.
8535
- Note: this field may return null, indicating that no valid values can be obtained.
8536
- * @type {string || null}
8537
- */
8538
- this.Database = null;
8539
-
8540
- /**
8541
- * Lock duration in seconds.
8542
- Note: this field may return `null`, indicating that no valid values can be obtained.
8543
- * @type {number || null}
8544
- */
8545
- this.LockTime = null;
8546
-
8547
- /**
8548
- * Number of scanned rows.
8549
- Note: this field may return null, indicating that no valid values can be obtained.
8550
- * @type {number || null}
8551
- */
8552
- this.RowsExamined = null;
8553
-
8554
- /**
8555
- * Number of rows in result set.
8556
- Note: this field may return null, indicating that no valid values can be obtained.
8557
- * @type {number || null}
8558
- */
8559
- this.RowsSent = null;
8560
-
8561
- /**
8562
- * SQL template.
8563
- Note: this field may return null, indicating that no valid values can be obtained.
9342
+ * Database name
8564
9343
  * @type {string || null}
8565
9344
  */
8566
- this.SqlTemplate = null;
9345
+ this.DatabaseName = null;
8567
9346
 
8568
9347
  /**
8569
- * SQL statement MD5.
8570
- Note: this field may return null, indicating that no valid values can be obtained.
9348
+ * Character set
8571
9349
  * @type {string || null}
8572
9350
  */
8573
- this.Md5 = null;
9351
+ this.CharacterSet = null;
8574
9352
 
8575
9353
  }
8576
9354
 
@@ -8581,17 +9359,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
8581
9359
  if (!params) {
8582
9360
  return;
8583
9361
  }
8584
- this.Timestamp = 'Timestamp' in params ? params.Timestamp : null;
8585
- this.QueryTime = 'QueryTime' in params ? params.QueryTime : null;
8586
- this.SqlText = 'SqlText' in params ? params.SqlText : null;
8587
- this.UserHost = 'UserHost' in params ? params.UserHost : null;
8588
- this.UserName = 'UserName' in params ? params.UserName : null;
8589
- this.Database = 'Database' in params ? params.Database : null;
8590
- this.LockTime = 'LockTime' in params ? params.LockTime : null;
8591
- this.RowsExamined = 'RowsExamined' in params ? params.RowsExamined : null;
8592
- this.RowsSent = 'RowsSent' in params ? params.RowsSent : null;
8593
- this.SqlTemplate = 'SqlTemplate' in params ? params.SqlTemplate : null;
8594
- this.Md5 = 'Md5' in params ? params.Md5 : null;
9362
+ this.DatabaseName = 'DatabaseName' in params ? params.DatabaseName : null;
9363
+ this.CharacterSet = 'CharacterSet' in params ? params.CharacterSet : null;
8595
9364
 
8596
9365
  }
8597
9366
  }
@@ -9069,6 +9838,105 @@ Note: The return value may be null, indicating that no valid data can be obtaine
9069
9838
  }
9070
9839
  }
9071
9840
 
9841
+ /**
9842
+ * DescribeAuditRuleTemplateModifyHistory response structure.
9843
+ * @class
9844
+ */
9845
+ class DescribeAuditRuleTemplateModifyHistoryResponse extends AbstractModel {
9846
+ constructor(){
9847
+ super();
9848
+
9849
+ /**
9850
+ * Total number of entries.
9851
+ * @type {number || null}
9852
+ */
9853
+ this.TotalCount = null;
9854
+
9855
+ /**
9856
+ * Change details.
9857
+ * @type {Array.<RuleTemplateRecordInfo> || null}
9858
+ */
9859
+ this.Items = null;
9860
+
9861
+ /**
9862
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
9863
+ * @type {string || null}
9864
+ */
9865
+ this.RequestId = null;
9866
+
9867
+ }
9868
+
9869
+ /**
9870
+ * @private
9871
+ */
9872
+ deserialize(params) {
9873
+ if (!params) {
9874
+ return;
9875
+ }
9876
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
9877
+
9878
+ if (params.Items) {
9879
+ this.Items = new Array();
9880
+ for (let z in params.Items) {
9881
+ let obj = new RuleTemplateRecordInfo();
9882
+ obj.deserialize(params.Items[z]);
9883
+ this.Items.push(obj);
9884
+ }
9885
+ }
9886
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
9887
+
9888
+ }
9889
+ }
9890
+
9891
+ /**
9892
+ * DescribeAuditLogFiles request structure.
9893
+ * @class
9894
+ */
9895
+ class DescribeAuditLogFilesRequest extends AbstractModel {
9896
+ constructor(){
9897
+ super();
9898
+
9899
+ /**
9900
+ * Instance ID, in the format such as cdb-c1nl9rpv or cdbro-c1nl9rpv. This matches the instance ID displayed on the TencentDB console.
9901
+ * @type {string || null}
9902
+ */
9903
+ this.InstanceId = null;
9904
+
9905
+ /**
9906
+ * Page size. Default value: 20; minimum value: 1; maximum value: 300.
9907
+ * @type {number || null}
9908
+ */
9909
+ this.Limit = null;
9910
+
9911
+ /**
9912
+ * Pagination offset.
9913
+ * @type {number || null}
9914
+ */
9915
+ this.Offset = null;
9916
+
9917
+ /**
9918
+ * Audit log file name.
9919
+ * @type {string || null}
9920
+ */
9921
+ this.FileName = null;
9922
+
9923
+ }
9924
+
9925
+ /**
9926
+ * @private
9927
+ */
9928
+ deserialize(params) {
9929
+ if (!params) {
9930
+ return;
9931
+ }
9932
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
9933
+ this.Limit = 'Limit' in params ? params.Limit : null;
9934
+ this.Offset = 'Offset' in params ? params.Offset : null;
9935
+ this.FileName = 'FileName' in params ? params.FileName : null;
9936
+
9937
+ }
9938
+ }
9939
+
9072
9940
  /**
9073
9941
  * ModifyBackupConfig request structure.
9074
9942
  * @class
@@ -10057,13 +10925,63 @@ class DescribeErrorLogDataRequest extends AbstractModel {
10057
10925
  if (!params) {
10058
10926
  return;
10059
10927
  }
10060
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
10061
- this.StartTime = 'StartTime' in params ? params.StartTime : null;
10062
- this.EndTime = 'EndTime' in params ? params.EndTime : null;
10063
- this.KeyWords = 'KeyWords' in params ? params.KeyWords : null;
10064
- this.Limit = 'Limit' in params ? params.Limit : null;
10065
- this.Offset = 'Offset' in params ? params.Offset : null;
10066
- this.InstType = 'InstType' in params ? params.InstType : null;
10928
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
10929
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
10930
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
10931
+ this.KeyWords = 'KeyWords' in params ? params.KeyWords : null;
10932
+ this.Limit = 'Limit' in params ? params.Limit : null;
10933
+ this.Offset = 'Offset' in params ? params.Offset : null;
10934
+ this.InstType = 'InstType' in params ? params.InstType : null;
10935
+
10936
+ }
10937
+ }
10938
+
10939
+ /**
10940
+ * DescribeAuditLogFiles response structure.
10941
+ * @class
10942
+ */
10943
+ class DescribeAuditLogFilesResponse extends AbstractModel {
10944
+ constructor(){
10945
+ super();
10946
+
10947
+ /**
10948
+ * Number of eligible audit log files.
10949
+ * @type {number || null}
10950
+ */
10951
+ this.TotalCount = null;
10952
+
10953
+ /**
10954
+ * Audit log file details.
10955
+ * @type {Array.<AuditLogFile> || null}
10956
+ */
10957
+ this.Items = null;
10958
+
10959
+ /**
10960
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
10961
+ * @type {string || null}
10962
+ */
10963
+ this.RequestId = null;
10964
+
10965
+ }
10966
+
10967
+ /**
10968
+ * @private
10969
+ */
10970
+ deserialize(params) {
10971
+ if (!params) {
10972
+ return;
10973
+ }
10974
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
10975
+
10976
+ if (params.Items) {
10977
+ this.Items = new Array();
10978
+ for (let z in params.Items) {
10979
+ let obj = new AuditLogFile();
10980
+ obj.deserialize(params.Items[z]);
10981
+ this.Items.push(obj);
10982
+ }
10983
+ }
10984
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
10067
10985
 
10068
10986
  }
10069
10987
  }
@@ -11234,41 +12152,6 @@ class DescribeBackupDownloadRestrictionResponse extends AbstractModel {
11234
12152
  }
11235
12153
  }
11236
12154
 
11237
- /**
11238
- * Database name and character set
11239
- * @class
11240
- */
11241
- class DatabasesWithCharacterLists extends AbstractModel {
11242
- constructor(){
11243
- super();
11244
-
11245
- /**
11246
- * Database name
11247
- * @type {string || null}
11248
- */
11249
- this.DatabaseName = null;
11250
-
11251
- /**
11252
- * Character set
11253
- * @type {string || null}
11254
- */
11255
- this.CharacterSet = null;
11256
-
11257
- }
11258
-
11259
- /**
11260
- * @private
11261
- */
11262
- deserialize(params) {
11263
- if (!params) {
11264
- return;
11265
- }
11266
- this.DatabaseName = 'DatabaseName' in params ? params.DatabaseName : null;
11267
- this.CharacterSet = 'CharacterSet' in params ? params.CharacterSet : null;
11268
-
11269
- }
11270
- }
11271
-
11272
12155
  /**
11273
12156
  * Clone task information.
11274
12157
  * @class
@@ -11452,6 +12335,69 @@ class CreateAccountsRequest extends AbstractModel {
11452
12335
  }
11453
12336
  }
11454
12337
 
12338
+ /**
12339
+ * DeleteAuditRuleTemplates request structure.
12340
+ * @class
12341
+ */
12342
+ class DeleteAuditRuleTemplatesRequest extends AbstractModel {
12343
+ constructor(){
12344
+ super();
12345
+
12346
+ /**
12347
+ * Audit rule template ID, which can be obtained through the [DescribeAuditRuleTemplates](https://www.tencentcloud.comom/document/api/236/101811?from_cn_redirect=1) API. A maximum of 5 rule templates can be deleted per request.
12348
+ * @type {Array.<string> || null}
12349
+ */
12350
+ this.RuleTemplateIds = null;
12351
+
12352
+ }
12353
+
12354
+ /**
12355
+ * @private
12356
+ */
12357
+ deserialize(params) {
12358
+ if (!params) {
12359
+ return;
12360
+ }
12361
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
12362
+
12363
+ }
12364
+ }
12365
+
12366
+ /**
12367
+ * CreateAuditRuleTemplate response structure.
12368
+ * @class
12369
+ */
12370
+ class CreateAuditRuleTemplateResponse extends AbstractModel {
12371
+ constructor(){
12372
+ super();
12373
+
12374
+ /**
12375
+ * Generated rule template ID.
12376
+ * @type {string || null}
12377
+ */
12378
+ this.RuleTemplateId = null;
12379
+
12380
+ /**
12381
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
12382
+ * @type {string || null}
12383
+ */
12384
+ this.RequestId = null;
12385
+
12386
+ }
12387
+
12388
+ /**
12389
+ * @private
12390
+ */
12391
+ deserialize(params) {
12392
+ if (!params) {
12393
+ return;
12394
+ }
12395
+ this.RuleTemplateId = 'RuleTemplateId' in params ? params.RuleTemplateId : null;
12396
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
12397
+
12398
+ }
12399
+ }
12400
+
11455
12401
  /**
11456
12402
  * Backup details
11457
12403
  * @class
@@ -11790,6 +12736,49 @@ class ModifyLocalBinlogConfigResponse extends AbstractModel {
11790
12736
  }
11791
12737
  }
11792
12738
 
12739
+ /**
12740
+ * CreateRotationPassword request structure.
12741
+ * @class
12742
+ */
12743
+ class CreateRotationPasswordRequest extends AbstractModel {
12744
+ constructor(){
12745
+ super();
12746
+
12747
+ /**
12748
+ * Instance ID, in the format of cdb-c1nl9rpv, which is the same as the instance ID displayed on the TencentDB for MySQL console page.
12749
+ * @type {string || null}
12750
+ */
12751
+ this.InstanceId = null;
12752
+
12753
+ /**
12754
+ * Information about the account for which password rotation needs to be enabled. The account and host names are included.
12755
+ * @type {Array.<Account> || null}
12756
+ */
12757
+ this.Accounts = null;
12758
+
12759
+ }
12760
+
12761
+ /**
12762
+ * @private
12763
+ */
12764
+ deserialize(params) {
12765
+ if (!params) {
12766
+ return;
12767
+ }
12768
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
12769
+
12770
+ if (params.Accounts) {
12771
+ this.Accounts = new Array();
12772
+ for (let z in params.Accounts) {
12773
+ let obj = new Account();
12774
+ obj.deserialize(params.Accounts[z]);
12775
+ this.Accounts.push(obj);
12776
+ }
12777
+ }
12778
+
12779
+ }
12780
+ }
12781
+
11793
12782
  /**
11794
12783
  * DescribeCloneList request structure.
11795
12784
  * @class
@@ -12018,6 +13007,34 @@ Note: this field may return null, indicating that no valid values can be obtaine
12018
13007
  }
12019
13008
  }
12020
13009
 
13010
+ /**
13011
+ * StartReplication request structure.
13012
+ * @class
13013
+ */
13014
+ class StartReplicationRequest extends AbstractModel {
13015
+ constructor(){
13016
+ super();
13017
+
13018
+ /**
13019
+ * Read-Only instance ID.
13020
+ * @type {string || null}
13021
+ */
13022
+ this.InstanceId = null;
13023
+
13024
+ }
13025
+
13026
+ /**
13027
+ * @private
13028
+ */
13029
+ deserialize(params) {
13030
+ if (!params) {
13031
+ return;
13032
+ }
13033
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
13034
+
13035
+ }
13036
+ }
13037
+
12021
13038
  /**
12022
13039
  * Proxy instance
12023
13040
  * @class
@@ -12362,6 +13379,34 @@ class DescribeProxySupportParamResponse extends AbstractModel {
12362
13379
  }
12363
13380
  }
12364
13381
 
13382
+ /**
13383
+ * CloseAuditService response structure.
13384
+ * @class
13385
+ */
13386
+ class CloseAuditServiceResponse extends AbstractModel {
13387
+ constructor(){
13388
+ super();
13389
+
13390
+ /**
13391
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
13392
+ * @type {string || null}
13393
+ */
13394
+ this.RequestId = null;
13395
+
13396
+ }
13397
+
13398
+ /**
13399
+ * @private
13400
+ */
13401
+ deserialize(params) {
13402
+ if (!params) {
13403
+ return;
13404
+ }
13405
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
13406
+
13407
+ }
13408
+ }
13409
+
12365
13410
  /**
12366
13411
  * DescribeRollbackTaskDetail request structure.
12367
13412
  * @class
@@ -12411,6 +13456,41 @@ class DescribeRollbackTaskDetailRequest extends AbstractModel {
12411
13456
  }
12412
13457
  }
12413
13458
 
13459
+ /**
13460
+ * AdjustCdbProxy response structure.
13461
+ * @class
13462
+ */
13463
+ class AdjustCdbProxyResponse extends AbstractModel {
13464
+ constructor(){
13465
+ super();
13466
+
13467
+ /**
13468
+ * Async task ID Note: This field may return null, indicating that no valid values can be obtained.
13469
+ * @type {string || null}
13470
+ */
13471
+ this.AsyncRequestId = null;
13472
+
13473
+ /**
13474
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
13475
+ * @type {string || null}
13476
+ */
13477
+ this.RequestId = null;
13478
+
13479
+ }
13480
+
13481
+ /**
13482
+ * @private
13483
+ */
13484
+ deserialize(params) {
13485
+ if (!params) {
13486
+ return;
13487
+ }
13488
+ this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
13489
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
13490
+
13491
+ }
13492
+ }
13493
+
12414
13494
  /**
12415
13495
  * ModifyParamTemplate response structure.
12416
13496
  * @class
@@ -13284,15 +14364,67 @@ class DescribeTagsOfInstanceIdsResponse extends AbstractModel {
13284
14364
  * OfflineIsolatedInstances response structure.
13285
14365
  * @class
13286
14366
  */
13287
- class OfflineIsolatedInstancesResponse extends AbstractModel {
14367
+ class OfflineIsolatedInstancesResponse extends AbstractModel {
14368
+ constructor(){
14369
+ super();
14370
+
14371
+ /**
14372
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
14373
+ * @type {string || null}
14374
+ */
14375
+ this.RequestId = null;
14376
+
14377
+ }
14378
+
14379
+ /**
14380
+ * @private
14381
+ */
14382
+ deserialize(params) {
14383
+ if (!params) {
14384
+ return;
14385
+ }
14386
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
14387
+
14388
+ }
14389
+ }
14390
+
14391
+ /**
14392
+ * CreateAuditRuleTemplate request structure.
14393
+ * @class
14394
+ */
14395
+ class CreateAuditRuleTemplateRequest extends AbstractModel {
13288
14396
  constructor(){
13289
14397
  super();
13290
14398
 
13291
14399
  /**
13292
- * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
14400
+ * Audit rule.
14401
+ * @type {Array.<RuleFilters> || null}
14402
+ */
14403
+ this.RuleFilters = null;
14404
+
14405
+ /**
14406
+ * Rule template name. Up to 30 characters are allowed.
13293
14407
  * @type {string || null}
13294
14408
  */
13295
- this.RequestId = null;
14409
+ this.RuleTemplateName = null;
14410
+
14411
+ /**
14412
+ * Rule template description. Up to 200 characters are allowed.
14413
+ * @type {string || null}
14414
+ */
14415
+ this.Description = null;
14416
+
14417
+ /**
14418
+ * Alarm level. Valid values: 1 - Low risk, 2 - Medium risk, 3 - High risk. Default value: 1.
14419
+ * @type {number || null}
14420
+ */
14421
+ this.AlarmLevel = null;
14422
+
14423
+ /**
14424
+ * Alarm policy. Valid values: 0 - Alarm disabled, 1 - Alarm enabled. Default value: 0.
14425
+ * @type {number || null}
14426
+ */
14427
+ this.AlarmPolicy = null;
13296
14428
 
13297
14429
  }
13298
14430
 
@@ -13303,7 +14435,19 @@ class OfflineIsolatedInstancesResponse extends AbstractModel {
13303
14435
  if (!params) {
13304
14436
  return;
13305
14437
  }
13306
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
14438
+
14439
+ if (params.RuleFilters) {
14440
+ this.RuleFilters = new Array();
14441
+ for (let z in params.RuleFilters) {
14442
+ let obj = new RuleFilters();
14443
+ obj.deserialize(params.RuleFilters[z]);
14444
+ this.RuleFilters.push(obj);
14445
+ }
14446
+ }
14447
+ this.RuleTemplateName = 'RuleTemplateName' in params ? params.RuleTemplateName : null;
14448
+ this.Description = 'Description' in params ? params.Description : null;
14449
+ this.AlarmLevel = 'AlarmLevel' in params ? params.AlarmLevel : null;
14450
+ this.AlarmPolicy = 'AlarmPolicy' in params ? params.AlarmPolicy : null;
13307
14451
 
13308
14452
  }
13309
14453
  }
@@ -13641,6 +14785,34 @@ class DescribeRoGroupsResponse extends AbstractModel {
13641
14785
  }
13642
14786
  }
13643
14787
 
14788
+ /**
14789
+ * CloseCdbProxyAddress response structure.
14790
+ * @class
14791
+ */
14792
+ class CloseCdbProxyAddressResponse extends AbstractModel {
14793
+ constructor(){
14794
+ super();
14795
+
14796
+ /**
14797
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
14798
+ * @type {string || null}
14799
+ */
14800
+ this.RequestId = null;
14801
+
14802
+ }
14803
+
14804
+ /**
14805
+ * @private
14806
+ */
14807
+ deserialize(params) {
14808
+ if (!params) {
14809
+ return;
14810
+ }
14811
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
14812
+
14813
+ }
14814
+ }
14815
+
13644
14816
  /**
13645
14817
  * DescribeAuditRules response structure.
13646
14818
  * @class
@@ -14249,48 +15421,60 @@ class AdjustCdbProxyAddressResponse extends AbstractModel {
14249
15421
  }
14250
15422
 
14251
15423
  /**
14252
- * ModifyDBInstanceVipVport request structure.
15424
+ * CreateAuditLogFile request structure.
14253
15425
  * @class
14254
15426
  */
14255
- class ModifyDBInstanceVipVportRequest extends AbstractModel {
15427
+ class CreateAuditLogFileRequest extends AbstractModel {
14256
15428
  constructor(){
14257
15429
  super();
14258
15430
 
14259
15431
  /**
14260
- * Instance ID in the format of cdb-c1nl9rpv, cdbro-c2nl9rpv, or cdbrg-c3nl9rpv. It is the same as the instance ID displayed on the TencentDB Console page. You can use the [DescribeDBInstances](https://www.tencentcloud.com/document/product/236/15872) API to query the ID, which is the value of the `InstanceId` output parameter.
15432
+ * Instance ID, which can be obtained through the [DescribeDBInstances](https://www.tencentcloud.comom/document/product/236/15872?from_cn_redirect=1) API.
14261
15433
  * @type {string || null}
14262
15434
  */
14263
15435
  this.InstanceId = null;
14264
15436
 
14265
15437
  /**
14266
- * Target IP. Either this parameter or `DstPort` must be passed in.
15438
+ * Start time. We recommend that the interval between start and end time does not exceed 7 days.
14267
15439
  * @type {string || null}
14268
15440
  */
14269
- this.DstIp = null;
15441
+ this.StartTime = null;
14270
15442
 
14271
15443
  /**
14272
- * Target port number. Value range: 1024-65535. Either this parameter or `DstIp` must be passed in.
14273
- * @type {number || null}
15444
+ * End time. We recommend that the interval between start and end time does not exceed 7 days.
15445
+ * @type {string || null}
14274
15446
  */
14275
- this.DstPort = null;
15447
+ this.EndTime = null;
14276
15448
 
14277
15449
  /**
14278
- * Unified VPC ID
15450
+ * Sort order. Valid values: "ASC" - Ascending order, "DESC" - Descending order. Default value: "DESC".
14279
15451
  * @type {string || null}
14280
15452
  */
14281
- this.UniqVpcId = null;
15453
+ this.Order = null;
14282
15454
 
14283
15455
  /**
14284
- * Unified subnet ID
15456
+ * Field to sort by. Valid values: "timestamp" - Timestamp; "affectRows" - Number of affected rows; "execTime" - Execution time. Default value: "timestamp".
14285
15457
  * @type {string || null}
14286
15458
  */
14287
- this.UniqSubnetId = null;
15459
+ this.OrderBy = null;
14288
15460
 
14289
15461
  /**
14290
- * Repossession duration in hours for old IP in the original network when changing from classic network to VPC or changing the VPC subnet. Value range: 0–168. Default value: `24`.
14291
- * @type {number || null}
15462
+ * Deprecated.
15463
+ * @type {AuditLogFilter || null}
14292
15464
  */
14293
- this.ReleaseDuration = null;
15465
+ this.Filter = null;
15466
+
15467
+ /**
15468
+ * Filter conditions. You can filter logs based on these conditions.
15469
+ * @type {Array.<InstanceAuditLogFilters> || null}
15470
+ */
15471
+ this.LogFilter = null;
15472
+
15473
+ /**
15474
+ * Columns to include in the download.
15475
+ * @type {Array.<string> || null}
15476
+ */
15477
+ this.ColumnFilter = null;
14294
15478
 
14295
15479
  }
14296
15480
 
@@ -14302,11 +15486,26 @@ class ModifyDBInstanceVipVportRequest extends AbstractModel {
14302
15486
  return;
14303
15487
  }
14304
15488
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
14305
- this.DstIp = 'DstIp' in params ? params.DstIp : null;
14306
- this.DstPort = 'DstPort' in params ? params.DstPort : null;
14307
- this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
14308
- this.UniqSubnetId = 'UniqSubnetId' in params ? params.UniqSubnetId : null;
14309
- this.ReleaseDuration = 'ReleaseDuration' in params ? params.ReleaseDuration : null;
15489
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
15490
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
15491
+ this.Order = 'Order' in params ? params.Order : null;
15492
+ this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
15493
+
15494
+ if (params.Filter) {
15495
+ let obj = new AuditLogFilter();
15496
+ obj.deserialize(params.Filter)
15497
+ this.Filter = obj;
15498
+ }
15499
+
15500
+ if (params.LogFilter) {
15501
+ this.LogFilter = new Array();
15502
+ for (let z in params.LogFilter) {
15503
+ let obj = new InstanceAuditLogFilters();
15504
+ obj.deserialize(params.LogFilter[z]);
15505
+ this.LogFilter.push(obj);
15506
+ }
15507
+ }
15508
+ this.ColumnFilter = 'ColumnFilter' in params ? params.ColumnFilter : null;
14310
15509
 
14311
15510
  }
14312
15511
  }
@@ -14556,13 +15755,20 @@ class CloseCDBProxyResponse extends AbstractModel {
14556
15755
  }
14557
15756
 
14558
15757
  /**
14559
- * ModifyBackupEncryptionStatus response structure.
15758
+ * StopReplication response structure.
14560
15759
  * @class
14561
15760
  */
14562
- class ModifyBackupEncryptionStatusResponse extends AbstractModel {
15761
+ class StopReplicationResponse extends AbstractModel {
14563
15762
  constructor(){
14564
15763
  super();
14565
15764
 
15765
+ /**
15766
+ * Async task ID.
15767
+ Note: this field may return `null`, indicating that no valid values can be obtained.
15768
+ * @type {string || null}
15769
+ */
15770
+ this.AsyncRequestId = null;
15771
+
14566
15772
  /**
14567
15773
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
14568
15774
  * @type {string || null}
@@ -14578,6 +15784,7 @@ class ModifyBackupEncryptionStatusResponse extends AbstractModel {
14578
15784
  if (!params) {
14579
15785
  return;
14580
15786
  }
15787
+ this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
14581
15788
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
14582
15789
 
14583
15790
  }
@@ -15027,18 +16234,89 @@ class DescribeSupportedPrivilegesResponse extends AbstractModel {
15027
16234
  }
15028
16235
 
15029
16236
  /**
15030
- * StopDBImportJob request structure.
16237
+ * Structured slow log details
15031
16238
  * @class
15032
16239
  */
15033
- class StopDBImportJobRequest extends AbstractModel {
16240
+ class SlowLogItem extends AbstractModel {
15034
16241
  constructor(){
15035
16242
  super();
15036
16243
 
15037
16244
  /**
15038
- * Async task request ID.
16245
+ * SQL execution time.
16246
+ Note: this field may return null, indicating that no valid values can be obtained.
16247
+ * @type {number || null}
16248
+ */
16249
+ this.Timestamp = null;
16250
+
16251
+ /**
16252
+ * SQL execution duration in seconds.
16253
+ Note: this field may return `null`, indicating that no valid values can be obtained.
16254
+ * @type {number || null}
16255
+ */
16256
+ this.QueryTime = null;
16257
+
16258
+ /**
16259
+ * SQL statement.
16260
+ Note: this field may return null, indicating that no valid values can be obtained.
15039
16261
  * @type {string || null}
15040
16262
  */
15041
- this.AsyncRequestId = null;
16263
+ this.SqlText = null;
16264
+
16265
+ /**
16266
+ * Client address.
16267
+ Note: this field may return null, indicating that no valid values can be obtained.
16268
+ * @type {string || null}
16269
+ */
16270
+ this.UserHost = null;
16271
+
16272
+ /**
16273
+ * Username.
16274
+ Note: this field may return null, indicating that no valid values can be obtained.
16275
+ * @type {string || null}
16276
+ */
16277
+ this.UserName = null;
16278
+
16279
+ /**
16280
+ * Database name.
16281
+ Note: this field may return null, indicating that no valid values can be obtained.
16282
+ * @type {string || null}
16283
+ */
16284
+ this.Database = null;
16285
+
16286
+ /**
16287
+ * Lock duration in seconds.
16288
+ Note: this field may return `null`, indicating that no valid values can be obtained.
16289
+ * @type {number || null}
16290
+ */
16291
+ this.LockTime = null;
16292
+
16293
+ /**
16294
+ * Number of scanned rows.
16295
+ Note: this field may return null, indicating that no valid values can be obtained.
16296
+ * @type {number || null}
16297
+ */
16298
+ this.RowsExamined = null;
16299
+
16300
+ /**
16301
+ * Number of rows in result set.
16302
+ Note: this field may return null, indicating that no valid values can be obtained.
16303
+ * @type {number || null}
16304
+ */
16305
+ this.RowsSent = null;
16306
+
16307
+ /**
16308
+ * SQL template.
16309
+ Note: this field may return null, indicating that no valid values can be obtained.
16310
+ * @type {string || null}
16311
+ */
16312
+ this.SqlTemplate = null;
16313
+
16314
+ /**
16315
+ * SQL statement MD5.
16316
+ Note: this field may return null, indicating that no valid values can be obtained.
16317
+ * @type {string || null}
16318
+ */
16319
+ this.Md5 = null;
15042
16320
 
15043
16321
  }
15044
16322
 
@@ -15049,7 +16327,17 @@ class StopDBImportJobRequest extends AbstractModel {
15049
16327
  if (!params) {
15050
16328
  return;
15051
16329
  }
15052
- this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
16330
+ this.Timestamp = 'Timestamp' in params ? params.Timestamp : null;
16331
+ this.QueryTime = 'QueryTime' in params ? params.QueryTime : null;
16332
+ this.SqlText = 'SqlText' in params ? params.SqlText : null;
16333
+ this.UserHost = 'UserHost' in params ? params.UserHost : null;
16334
+ this.UserName = 'UserName' in params ? params.UserName : null;
16335
+ this.Database = 'Database' in params ? params.Database : null;
16336
+ this.LockTime = 'LockTime' in params ? params.LockTime : null;
16337
+ this.RowsExamined = 'RowsExamined' in params ? params.RowsExamined : null;
16338
+ this.RowsSent = 'RowsSent' in params ? params.RowsSent : null;
16339
+ this.SqlTemplate = 'SqlTemplate' in params ? params.SqlTemplate : null;
16340
+ this.Md5 = 'Md5' in params ? params.Md5 : null;
15053
16341
 
15054
16342
  }
15055
16343
  }
@@ -15089,18 +16377,46 @@ class DescribeLocalBinlogConfigResponse extends AbstractModel {
15089
16377
  if (!params) {
15090
16378
  return;
15091
16379
  }
15092
-
15093
- if (params.LocalBinlogConfig) {
15094
- let obj = new LocalBinlogConfig();
15095
- obj.deserialize(params.LocalBinlogConfig)
15096
- this.LocalBinlogConfig = obj;
15097
- }
15098
-
15099
- if (params.LocalBinlogConfigDefault) {
15100
- let obj = new LocalBinlogConfigDefault();
15101
- obj.deserialize(params.LocalBinlogConfigDefault)
15102
- this.LocalBinlogConfigDefault = obj;
15103
- }
16380
+
16381
+ if (params.LocalBinlogConfig) {
16382
+ let obj = new LocalBinlogConfig();
16383
+ obj.deserialize(params.LocalBinlogConfig)
16384
+ this.LocalBinlogConfig = obj;
16385
+ }
16386
+
16387
+ if (params.LocalBinlogConfigDefault) {
16388
+ let obj = new LocalBinlogConfigDefault();
16389
+ obj.deserialize(params.LocalBinlogConfigDefault)
16390
+ this.LocalBinlogConfigDefault = obj;
16391
+ }
16392
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
16393
+
16394
+ }
16395
+ }
16396
+
16397
+ /**
16398
+ * ModifyAuditService response structure.
16399
+ * @class
16400
+ */
16401
+ class ModifyAuditServiceResponse extends AbstractModel {
16402
+ constructor(){
16403
+ super();
16404
+
16405
+ /**
16406
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
16407
+ * @type {string || null}
16408
+ */
16409
+ this.RequestId = null;
16410
+
16411
+ }
16412
+
16413
+ /**
16414
+ * @private
16415
+ */
16416
+ deserialize(params) {
16417
+ if (!params) {
16418
+ return;
16419
+ }
15104
16420
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
15105
16421
 
15106
16422
  }
@@ -15297,6 +16613,55 @@ class DescribeCdbProxyInfoResponse extends AbstractModel {
15297
16613
  }
15298
16614
  }
15299
16615
 
16616
+ /**
16617
+ * ModifyAuditConfig request structure.
16618
+ * @class
16619
+ */
16620
+ class ModifyAuditConfigRequest extends AbstractModel {
16621
+ constructor(){
16622
+ super();
16623
+
16624
+ /**
16625
+ * Instance ID, which can be obtained through the [DescribeDBInstances](https://www.tencentcloud.comom/document/product/236/15872?from_cn_redirect=1) API.
16626
+ * @type {string || null}
16627
+ */
16628
+ this.InstanceId = null;
16629
+
16630
+ /**
16631
+ * Audit log retention period. Valid values:7 - One week;30 - One month;180 - Six months;365 - One year;1095 - Three years;1825 - Five years.
16632
+ * @type {number || null}
16633
+ */
16634
+ this.LogExpireDay = null;
16635
+
16636
+ /**
16637
+ * Whether to disable the audit service. Valid values: true - Disable; false - Do not disable. Default value: false.Notes:1. When the audit service is disabled, your audit logs and files will be deleted, and all audit policies for this instance will be removed.2. At least one of CloseAudit and LogExpireDay must be provided. If both are provided, CloseAudit takes priority.3. You can use this parameter to disable the audit service. Once disabled, the audit service cannot be re-enabled via this API.
16638
+ * @type {boolean || null}
16639
+ */
16640
+ this.CloseAudit = null;
16641
+
16642
+ /**
16643
+ * High-frequency audit log retention period. Valid values:7 - One week;30 - One month;180 - Six months;365 - One year;1095 - Three years;1825 - Five years.
16644
+ * @type {number || null}
16645
+ */
16646
+ this.HighLogExpireDay = null;
16647
+
16648
+ }
16649
+
16650
+ /**
16651
+ * @private
16652
+ */
16653
+ deserialize(params) {
16654
+ if (!params) {
16655
+ return;
16656
+ }
16657
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
16658
+ this.LogExpireDay = 'LogExpireDay' in params ? params.LogExpireDay : null;
16659
+ this.CloseAudit = 'CloseAudit' in params ? params.CloseAudit : null;
16660
+ this.HighLogExpireDay = 'HighLogExpireDay' in params ? params.HighLogExpireDay : null;
16661
+
16662
+ }
16663
+ }
16664
+
15300
16665
  /**
15301
16666
  * Disk monitoring data of the instance
15302
16667
  * @class
@@ -15826,6 +17191,69 @@ class DBSwitchInfo extends AbstractModel {
15826
17191
  }
15827
17192
  }
15828
17193
 
17194
+ /**
17195
+ * DescribeAuditRuleTemplateModifyHistory request structure.
17196
+ * @class
17197
+ */
17198
+ class DescribeAuditRuleTemplateModifyHistoryRequest extends AbstractModel {
17199
+ constructor(){
17200
+ super();
17201
+
17202
+ /**
17203
+ * Audit rule template ID, which can be obtained through the [DescribeAuditRuleTemplates](https://www.tencentcloud.comom/document/api/236/101811?from_cn_redirect=1) API.
17204
+ * @type {Array.<string> || null}
17205
+ */
17206
+ this.RuleTemplateIds = null;
17207
+
17208
+ /**
17209
+ * Start time of the query range.
17210
+ * @type {string || null}
17211
+ */
17212
+ this.StartTime = null;
17213
+
17214
+ /**
17215
+ * End time of the query range.
17216
+ * @type {string || null}
17217
+ */
17218
+ this.EndTime = null;
17219
+
17220
+ /**
17221
+ * Number of entries to return. Default value: 20. Maximum value: 1000.
17222
+ * @type {number || null}
17223
+ */
17224
+ this.Limit = null;
17225
+
17226
+ /**
17227
+ * Offset.
17228
+ * @type {number || null}
17229
+ */
17230
+ this.Offset = null;
17231
+
17232
+ /**
17233
+ * Sort order. DESC - Sorted by modification time in descending order, ASC - Ascending order. Default value: DESC.
17234
+ * @type {string || null}
17235
+ */
17236
+ this.Order = null;
17237
+
17238
+ }
17239
+
17240
+ /**
17241
+ * @private
17242
+ */
17243
+ deserialize(params) {
17244
+ if (!params) {
17245
+ return;
17246
+ }
17247
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
17248
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
17249
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
17250
+ this.Limit = 'Limit' in params ? params.Limit : null;
17251
+ this.Offset = 'Offset' in params ? params.Offset : null;
17252
+ this.Order = 'Order' in params ? params.Order : null;
17253
+
17254
+ }
17255
+ }
17256
+
15829
17257
  /**
15830
17258
  * DescribeTasks response structure.
15831
17259
  * @class
@@ -16255,42 +17683,72 @@ class ProxyAddress extends AbstractModel {
16255
17683
  }
16256
17684
 
16257
17685
  /**
16258
- * DescribeBackupSummaries request structure.
17686
+ * Common time window
16259
17687
  * @class
16260
17688
  */
16261
- class DescribeBackupSummariesRequest extends AbstractModel {
17689
+ class CommonTimeWindow extends AbstractModel {
16262
17690
  constructor(){
16263
17691
  super();
16264
17692
 
16265
17693
  /**
16266
- * TencentDB product type to be queried. Currently, only `mysql` is supported.
17694
+ * Time window on Monday in the format of 02:00-06:00
16267
17695
  * @type {string || null}
16268
17696
  */
16269
- this.Product = null;
17697
+ this.Monday = null;
16270
17698
 
16271
17699
  /**
16272
- * Paginated query offset. Default value: `0`.
16273
- * @type {number || null}
17700
+ * Time window on Tuesday in the format of 02:00-06:00
17701
+ * @type {string || null}
16274
17702
  */
16275
- this.Offset = null;
17703
+ this.Tuesday = null;
16276
17704
 
16277
17705
  /**
16278
- * Maximum entries returned per page, which ranges from 1 to 100. Default value: `20`.
16279
- * @type {number || null}
17706
+ * Time window on Wednesday in the format of 02:00-06:00
17707
+ * @type {string || null}
16280
17708
  */
16281
- this.Limit = null;
17709
+ this.Wednesday = null;
16282
17710
 
16283
17711
  /**
16284
- * Sorting criterion. Valid values: `BackupVolume` (backup capacity), `DataBackupVolume` (data backup capacity), `BinlogBackupVolume` (log backup capacity), `AutoBackupVolume` (automatic backup capacity), `ManualBackupVolume` (manual backup capacity). Default value: `BackupVolume`.
17712
+ * Time window on Thursday in the format of 02:00-06:00
16285
17713
  * @type {string || null}
16286
17714
  */
16287
- this.OrderBy = null;
17715
+ this.Thursday = null;
16288
17716
 
16289
17717
  /**
16290
- * Sorting order. Valid values: `ASC` (ascending), `DESC` (descending). Default value: `ASC`.
17718
+ * Time window on Friday in the format of 02:00-06:00
16291
17719
  * @type {string || null}
16292
17720
  */
16293
- this.OrderDirection = null;
17721
+ this.Friday = null;
17722
+
17723
+ /**
17724
+ * Time window on Saturday in the format of 02:00-06:00
17725
+ * @type {string || null}
17726
+ */
17727
+ this.Saturday = null;
17728
+
17729
+ /**
17730
+ * Time window on Sunday in the format of 02:00-06:00
17731
+ * @type {string || null}
17732
+ */
17733
+ this.Sunday = null;
17734
+
17735
+ /**
17736
+ * Non-archive backup retention policy. Valid values: `weekly` (back up by week), monthly (back up by month), default value: `weekly`.
17737
+ * @type {string || null}
17738
+ */
17739
+ this.BackupPeriodStrategy = null;
17740
+
17741
+ /**
17742
+ * If `BackupPeriodStrategy` is `monthly`, you need to pass in the specific backup dates. The time interval between any two adjacent dates cannot exceed 2 days, for example, [1,4,7,9,11,14,17,19,22,25,28,30,31].
17743
+ * @type {Array.<number> || null}
17744
+ */
17745
+ this.Days = null;
17746
+
17747
+ /**
17748
+ * Backup time by month in the format of 02:00–06:00, which is required when `BackupPeriodStrategy` is `monthly`.
17749
+ * @type {string || null}
17750
+ */
17751
+ this.BackupPeriodTime = null;
16294
17752
 
16295
17753
  }
16296
17754
 
@@ -16301,11 +17759,16 @@ class DescribeBackupSummariesRequest extends AbstractModel {
16301
17759
  if (!params) {
16302
17760
  return;
16303
17761
  }
16304
- this.Product = 'Product' in params ? params.Product : null;
16305
- this.Offset = 'Offset' in params ? params.Offset : null;
16306
- this.Limit = 'Limit' in params ? params.Limit : null;
16307
- this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
16308
- this.OrderDirection = 'OrderDirection' in params ? params.OrderDirection : null;
17762
+ this.Monday = 'Monday' in params ? params.Monday : null;
17763
+ this.Tuesday = 'Tuesday' in params ? params.Tuesday : null;
17764
+ this.Wednesday = 'Wednesday' in params ? params.Wednesday : null;
17765
+ this.Thursday = 'Thursday' in params ? params.Thursday : null;
17766
+ this.Friday = 'Friday' in params ? params.Friday : null;
17767
+ this.Saturday = 'Saturday' in params ? params.Saturday : null;
17768
+ this.Sunday = 'Sunday' in params ? params.Sunday : null;
17769
+ this.BackupPeriodStrategy = 'BackupPeriodStrategy' in params ? params.BackupPeriodStrategy : null;
17770
+ this.Days = 'Days' in params ? params.Days : null;
17771
+ this.BackupPeriodTime = 'BackupPeriodTime' in params ? params.BackupPeriodTime : null;
16309
17772
 
16310
17773
  }
16311
17774
  }
@@ -16844,6 +18307,56 @@ class CreateDBInstanceHourRequest extends AbstractModel {
16844
18307
  }
16845
18308
  }
16846
18309
 
18310
+ /**
18311
+ * DescribeAuditRuleTemplates response structure.
18312
+ * @class
18313
+ */
18314
+ class DescribeAuditRuleTemplatesResponse extends AbstractModel {
18315
+ constructor(){
18316
+ super();
18317
+
18318
+ /**
18319
+ * Total number of eligible instances.
18320
+ * @type {number || null}
18321
+ */
18322
+ this.TotalCount = null;
18323
+
18324
+ /**
18325
+ * List of rule template details.
18326
+ * @type {Array.<AuditRuleTemplateInfo> || null}
18327
+ */
18328
+ this.Items = null;
18329
+
18330
+ /**
18331
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
18332
+ * @type {string || null}
18333
+ */
18334
+ this.RequestId = null;
18335
+
18336
+ }
18337
+
18338
+ /**
18339
+ * @private
18340
+ */
18341
+ deserialize(params) {
18342
+ if (!params) {
18343
+ return;
18344
+ }
18345
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
18346
+
18347
+ if (params.Items) {
18348
+ this.Items = new Array();
18349
+ for (let z in params.Items) {
18350
+ let obj = new AuditRuleTemplateInfo();
18351
+ obj.deserialize(params.Items[z]);
18352
+ this.Items.push(obj);
18353
+ }
18354
+ }
18355
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
18356
+
18357
+ }
18358
+ }
18359
+
16847
18360
  /**
16848
18361
  * Details of the instance for rollback
16849
18362
  * @class
@@ -17258,73 +18771,43 @@ class DescribeProjectSecurityGroupsResponse extends AbstractModel {
17258
18771
  }
17259
18772
  }
17260
18773
 
17261
- /**
17262
- * Common time window
17263
- * @class
17264
- */
17265
- class CommonTimeWindow extends AbstractModel {
17266
- constructor(){
17267
- super();
17268
-
17269
- /**
17270
- * Time window on Monday in the format of 02:00-06:00
17271
- * @type {string || null}
17272
- */
17273
- this.Monday = null;
17274
-
17275
- /**
17276
- * Time window on Tuesday in the format of 02:00-06:00
17277
- * @type {string || null}
17278
- */
17279
- this.Tuesday = null;
17280
-
17281
- /**
17282
- * Time window on Wednesday in the format of 02:00-06:00
17283
- * @type {string || null}
17284
- */
17285
- this.Wednesday = null;
17286
-
17287
- /**
17288
- * Time window on Thursday in the format of 02:00-06:00
17289
- * @type {string || null}
17290
- */
17291
- this.Thursday = null;
18774
+ /**
18775
+ * DescribeBackupSummaries request structure.
18776
+ * @class
18777
+ */
18778
+ class DescribeBackupSummariesRequest extends AbstractModel {
18779
+ constructor(){
18780
+ super();
17292
18781
 
17293
18782
  /**
17294
- * Time window on Friday in the format of 02:00-06:00
18783
+ * TencentDB product type to be queried. Currently, only `mysql` is supported.
17295
18784
  * @type {string || null}
17296
18785
  */
17297
- this.Friday = null;
18786
+ this.Product = null;
17298
18787
 
17299
18788
  /**
17300
- * Time window on Saturday in the format of 02:00-06:00
17301
- * @type {string || null}
18789
+ * Paginated query offset. Default value: `0`.
18790
+ * @type {number || null}
17302
18791
  */
17303
- this.Saturday = null;
18792
+ this.Offset = null;
17304
18793
 
17305
18794
  /**
17306
- * Time window on Sunday in the format of 02:00-06:00
17307
- * @type {string || null}
18795
+ * Maximum entries returned per page, which ranges from 1 to 100. Default value: `20`.
18796
+ * @type {number || null}
17308
18797
  */
17309
- this.Sunday = null;
18798
+ this.Limit = null;
17310
18799
 
17311
18800
  /**
17312
- * Non-archive backup retention policy. Valid values: `weekly` (back up by week), monthly (back up by month), default value: `weekly`.
18801
+ * Sorting criterion. Valid values: `BackupVolume` (backup capacity), `DataBackupVolume` (data backup capacity), `BinlogBackupVolume` (log backup capacity), `AutoBackupVolume` (automatic backup capacity), `ManualBackupVolume` (manual backup capacity). Default value: `BackupVolume`.
17313
18802
  * @type {string || null}
17314
18803
  */
17315
- this.BackupPeriodStrategy = null;
17316
-
17317
- /**
17318
- * If `BackupPeriodStrategy` is `monthly`, you need to pass in the specific backup dates. The time interval between any two adjacent dates cannot exceed 2 days, for example, [1,4,7,9,11,14,17,19,22,25,28,30,31].
17319
- * @type {Array.<number> || null}
17320
- */
17321
- this.Days = null;
18804
+ this.OrderBy = null;
17322
18805
 
17323
18806
  /**
17324
- * Backup time by month in the format of 02:00–06:00, which is required when `BackupPeriodStrategy` is `monthly`.
18807
+ * Sorting order. Valid values: `ASC` (ascending), `DESC` (descending). Default value: `ASC`.
17325
18808
  * @type {string || null}
17326
18809
  */
17327
- this.BackupPeriodTime = null;
18810
+ this.OrderDirection = null;
17328
18811
 
17329
18812
  }
17330
18813
 
@@ -17335,16 +18818,11 @@ class CommonTimeWindow extends AbstractModel {
17335
18818
  if (!params) {
17336
18819
  return;
17337
18820
  }
17338
- this.Monday = 'Monday' in params ? params.Monday : null;
17339
- this.Tuesday = 'Tuesday' in params ? params.Tuesday : null;
17340
- this.Wednesday = 'Wednesday' in params ? params.Wednesday : null;
17341
- this.Thursday = 'Thursday' in params ? params.Thursday : null;
17342
- this.Friday = 'Friday' in params ? params.Friday : null;
17343
- this.Saturday = 'Saturday' in params ? params.Saturday : null;
17344
- this.Sunday = 'Sunday' in params ? params.Sunday : null;
17345
- this.BackupPeriodStrategy = 'BackupPeriodStrategy' in params ? params.BackupPeriodStrategy : null;
17346
- this.Days = 'Days' in params ? params.Days : null;
17347
- this.BackupPeriodTime = 'BackupPeriodTime' in params ? params.BackupPeriodTime : null;
18821
+ this.Product = 'Product' in params ? params.Product : null;
18822
+ this.Offset = 'Offset' in params ? params.Offset : null;
18823
+ this.Limit = 'Limit' in params ? params.Limit : null;
18824
+ this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
18825
+ this.OrderDirection = 'OrderDirection' in params ? params.OrderDirection : null;
17348
18826
 
17349
18827
  }
17350
18828
  }
@@ -17444,19 +18922,49 @@ class CreateDBInstanceResponse extends AbstractModel {
17444
18922
  }
17445
18923
 
17446
18924
  /**
17447
- * StartReplication request structure.
18925
+ * OpenAuditService request structure.
17448
18926
  * @class
17449
18927
  */
17450
- class StartReplicationRequest extends AbstractModel {
18928
+ class OpenAuditServiceRequest extends AbstractModel {
17451
18929
  constructor(){
17452
18930
  super();
17453
18931
 
17454
18932
  /**
17455
- * Read-Only instance ID.
18933
+ * TencentDB for MySQL instance ID
17456
18934
  * @type {string || null}
17457
18935
  */
17458
18936
  this.InstanceId = null;
17459
18937
 
18938
+ /**
18939
+ * Retention period of the audit log. Valid values: `7` (one week), `30` (one month), `90` (three months), `180` (six months), `365` (one year), `1095` (three years), `1825` (five years).
18940
+ * @type {number || null}
18941
+ */
18942
+ this.LogExpireDay = null;
18943
+
18944
+ /**
18945
+ * Retention period of high-frequency audit logs. Valid values: `7` (one week), `30` (one month).
18946
+ * @type {number || null}
18947
+ */
18948
+ this.HighLogExpireDay = null;
18949
+
18950
+ /**
18951
+ * Audit rule If both this parameter and `RuleTemplateIds` are left empty, full audit will be applied.
18952
+ * @type {Array.<AuditRuleFilters> || null}
18953
+ */
18954
+ this.AuditRuleFilters = null;
18955
+
18956
+ /**
18957
+ * Rule template ID. If both this parameter and AuditRuleFilters are not specified, all SQL statements will be recorded.
18958
+ * @type {Array.<string> || null}
18959
+ */
18960
+ this.RuleTemplateIds = null;
18961
+
18962
+ /**
18963
+ * Audit type. Valid values: true: Record all; false: Record by rules (default value).
18964
+ * @type {boolean || null}
18965
+ */
18966
+ this.AuditAll = null;
18967
+
17460
18968
  }
17461
18969
 
17462
18970
  /**
@@ -17467,6 +18975,19 @@ class StartReplicationRequest extends AbstractModel {
17467
18975
  return;
17468
18976
  }
17469
18977
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
18978
+ this.LogExpireDay = 'LogExpireDay' in params ? params.LogExpireDay : null;
18979
+ this.HighLogExpireDay = 'HighLogExpireDay' in params ? params.HighLogExpireDay : null;
18980
+
18981
+ if (params.AuditRuleFilters) {
18982
+ this.AuditRuleFilters = new Array();
18983
+ for (let z in params.AuditRuleFilters) {
18984
+ let obj = new AuditRuleFilters();
18985
+ obj.deserialize(params.AuditRuleFilters[z]);
18986
+ this.AuditRuleFilters.push(obj);
18987
+ }
18988
+ }
18989
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
18990
+ this.AuditAll = 'AuditAll' in params ? params.AuditAll : null;
17470
18991
 
17471
18992
  }
17472
18993
  }
@@ -17654,6 +19175,34 @@ class ModifyDBInstanceSecurityGroupsRequest extends AbstractModel {
17654
19175
  }
17655
19176
  }
17656
19177
 
19178
+ /**
19179
+ * CloseAuditService request structure.
19180
+ * @class
19181
+ */
19182
+ class CloseAuditServiceRequest extends AbstractModel {
19183
+ constructor(){
19184
+ super();
19185
+
19186
+ /**
19187
+ * Instance ID, which can be obtained through the [DescribeDBInstances](https://www.tencentcloud.comom/document/product/236/15872?from_cn_redirect=1) API.
19188
+ * @type {string || null}
19189
+ */
19190
+ this.InstanceId = null;
19191
+
19192
+ }
19193
+
19194
+ /**
19195
+ * @private
19196
+ */
19197
+ deserialize(params) {
19198
+ if (!params) {
19199
+ return;
19200
+ }
19201
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
19202
+
19203
+ }
19204
+ }
19205
+
17657
19206
  /**
17658
19207
  * Automatic scale-out policy for elastic CPU scale-out.
17659
19208
  * @class
@@ -17808,6 +19357,48 @@ class Outbound extends AbstractModel {
17808
19357
  }
17809
19358
  }
17810
19359
 
19360
+ /**
19361
+ * Filter conditions for querying audit instances.
19362
+ * @class
19363
+ */
19364
+ class AuditInstanceFilters extends AbstractModel {
19365
+ constructor(){
19366
+ super();
19367
+
19368
+ /**
19369
+ * Filter condition name. Valid values: InstanceId - Instance ID, InstanceName - Instance name, ProjectId - Project ID, TagKey - Tag key, Tag - Tag (using a vertical bar as separator, for example: TagKey|Tagvalue).
19370
+ * @type {string || null}
19371
+ */
19372
+ this.Name = null;
19373
+
19374
+ /**
19375
+ * true indicates exact matching; false indicates fuzzy matching.
19376
+ * @type {boolean || null}
19377
+ */
19378
+ this.ExactMatch = null;
19379
+
19380
+ /**
19381
+ * Filter value.
19382
+ * @type {Array.<string> || null}
19383
+ */
19384
+ this.Values = null;
19385
+
19386
+ }
19387
+
19388
+ /**
19389
+ * @private
19390
+ */
19391
+ deserialize(params) {
19392
+ if (!params) {
19393
+ return;
19394
+ }
19395
+ this.Name = 'Name' in params ? params.Name : null;
19396
+ this.ExactMatch = 'ExactMatch' in params ? params.ExactMatch : null;
19397
+ this.Values = 'Values' in params ? params.Values : null;
19398
+
19399
+ }
19400
+ }
19401
+
17811
19402
  /**
17812
19403
  * Instance parameter information
17813
19404
  * @class
@@ -18847,18 +20438,104 @@ class AddTimeWindowResponse extends AbstractModel {
18847
20438
  }
18848
20439
 
18849
20440
  /**
18850
- * AdjustCdbProxy response structure.
20441
+ * DescribeAuditInstanceList request structure.
18851
20442
  * @class
18852
20443
  */
18853
- class AdjustCdbProxyResponse extends AbstractModel {
20444
+ class DescribeAuditInstanceListRequest extends AbstractModel {
18854
20445
  constructor(){
18855
20446
  super();
18856
20447
 
18857
20448
  /**
18858
- * Async task ID Note: This field may return null, indicating that no valid values can be obtained.
20449
+ * Whether audit is enabled for the instance. Valid values: 1 - Enabled; 0 - Disabled.
20450
+ * @type {number || null}
20451
+ */
20452
+ this.AuditSwitch = null;
20453
+
20454
+ /**
20455
+ * Filter conditions for querying the instance list.
20456
+ * @type {Array.<AuditInstanceFilters> || null}
20457
+ */
20458
+ this.Filters = null;
20459
+
20460
+ /**
20461
+ * Audit rule mode for the instance. Valid values: 1 - Rule-based audit; 0 - Full audit.
20462
+ * @type {number || null}
20463
+ */
20464
+ this.AuditMode = null;
20465
+
20466
+ /**
20467
+ * Number of entries to return per request. Default value: 30. Maximum value: 20000.
20468
+ * @type {number || null}
20469
+ */
20470
+ this.Limit = null;
20471
+
20472
+ /**
20473
+ * Offset. Default value: 0.
20474
+ * @type {number || null}
20475
+ */
20476
+ this.Offset = null;
20477
+
20478
+ }
20479
+
20480
+ /**
20481
+ * @private
20482
+ */
20483
+ deserialize(params) {
20484
+ if (!params) {
20485
+ return;
20486
+ }
20487
+ this.AuditSwitch = 'AuditSwitch' in params ? params.AuditSwitch : null;
20488
+
20489
+ if (params.Filters) {
20490
+ this.Filters = new Array();
20491
+ for (let z in params.Filters) {
20492
+ let obj = new AuditInstanceFilters();
20493
+ obj.deserialize(params.Filters[z]);
20494
+ this.Filters.push(obj);
20495
+ }
20496
+ }
20497
+ this.AuditMode = 'AuditMode' in params ? params.AuditMode : null;
20498
+ this.Limit = 'Limit' in params ? params.Limit : null;
20499
+ this.Offset = 'Offset' in params ? params.Offset : null;
20500
+
20501
+ }
20502
+ }
20503
+
20504
+ /**
20505
+ * DescribeBackupEncryptionStatus request structure.
20506
+ * @class
20507
+ */
20508
+ class DescribeBackupEncryptionStatusRequest extends AbstractModel {
20509
+ constructor(){
20510
+ super();
20511
+
20512
+ /**
20513
+ * Instance ID in the format of cdb-XXXX, which is the same as that displayed in the TencentDB console.
18859
20514
  * @type {string || null}
18860
20515
  */
18861
- this.AsyncRequestId = null;
20516
+ this.InstanceId = null;
20517
+
20518
+ }
20519
+
20520
+ /**
20521
+ * @private
20522
+ */
20523
+ deserialize(params) {
20524
+ if (!params) {
20525
+ return;
20526
+ }
20527
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
20528
+
20529
+ }
20530
+ }
20531
+
20532
+ /**
20533
+ * ModifyDBInstanceLogToCLS response structure.
20534
+ * @class
20535
+ */
20536
+ class ModifyDBInstanceLogToCLSResponse extends AbstractModel {
20537
+ constructor(){
20538
+ super();
18862
20539
 
18863
20540
  /**
18864
20541
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
@@ -18875,25 +20552,54 @@ class AdjustCdbProxyResponse extends AbstractModel {
18875
20552
  if (!params) {
18876
20553
  return;
18877
20554
  }
18878
- this.AsyncRequestId = 'AsyncRequestId' in params ? params.AsyncRequestId : null;
18879
20555
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
18880
20556
 
18881
20557
  }
18882
20558
  }
18883
20559
 
18884
20560
  /**
18885
- * DescribeBackupEncryptionStatus request structure.
20561
+ * Audit log file.
18886
20562
  * @class
18887
20563
  */
18888
- class DescribeBackupEncryptionStatusRequest extends AbstractModel {
20564
+ class AuditLogFile extends AbstractModel {
18889
20565
  constructor(){
18890
20566
  super();
18891
20567
 
18892
20568
  /**
18893
- * Instance ID in the format of cdb-XXXX, which is the same as that displayed in the TencentDB console.
20569
+ * Audit log file name.
20570
+ * @type {string || null}
20571
+ */
20572
+ this.FileName = null;
20573
+
20574
+ /**
20575
+ * Creation time of the audit log file, in the format: "2019-03-20 17:09:13".
20576
+ * @type {string || null}
20577
+ */
20578
+ this.CreateTime = null;
20579
+
20580
+ /**
20581
+ * File status. Possible return values:"creating" - Generating;"failed" - Creation failed;"success" - Generated.
20582
+ * @type {string || null}
20583
+ */
20584
+ this.Status = null;
20585
+
20586
+ /**
20587
+ * File size in KB.
20588
+ * @type {number || null}
20589
+ */
20590
+ this.FileSize = null;
20591
+
20592
+ /**
20593
+ * Download URL for the audit log.
18894
20594
  * @type {string || null}
18895
20595
  */
18896
- this.InstanceId = null;
20596
+ this.DownloadUrl = null;
20597
+
20598
+ /**
20599
+ * Error message.
20600
+ * @type {string || null}
20601
+ */
20602
+ this.ErrMsg = null;
18897
20603
 
18898
20604
  }
18899
20605
 
@@ -18904,52 +20610,59 @@ class DescribeBackupEncryptionStatusRequest extends AbstractModel {
18904
20610
  if (!params) {
18905
20611
  return;
18906
20612
  }
18907
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
20613
+ this.FileName = 'FileName' in params ? params.FileName : null;
20614
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
20615
+ this.Status = 'Status' in params ? params.Status : null;
20616
+ this.FileSize = 'FileSize' in params ? params.FileSize : null;
20617
+ this.DownloadUrl = 'DownloadUrl' in params ? params.DownloadUrl : null;
20618
+ this.ErrMsg = 'ErrMsg' in params ? params.ErrMsg : null;
18908
20619
 
18909
20620
  }
18910
20621
  }
18911
20622
 
18912
20623
  /**
18913
- * ModifyDBInstanceLogToCLS response structure.
20624
+ * DescribeAuditRuleTemplates request structure.
18914
20625
  * @class
18915
20626
  */
18916
- class ModifyDBInstanceLogToCLSResponse extends AbstractModel {
20627
+ class DescribeAuditRuleTemplatesRequest extends AbstractModel {
18917
20628
  constructor(){
18918
20629
  super();
18919
20630
 
18920
20631
  /**
18921
- * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
18922
- * @type {string || null}
20632
+ * Rule template ID.
20633
+ * @type {Array.<string> || null}
18923
20634
  */
18924
- this.RequestId = null;
20635
+ this.RuleTemplateIds = null;
18925
20636
 
18926
- }
20637
+ /**
20638
+ * Rule template name.
20639
+ * @type {Array.<string> || null}
20640
+ */
20641
+ this.RuleTemplateNames = null;
18927
20642
 
18928
- /**
18929
- * @private
18930
- */
18931
- deserialize(params) {
18932
- if (!params) {
18933
- return;
18934
- }
18935
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
20643
+ /**
20644
+ * Number of entries to return per request. Default value: 20. Maximum value: 1000.
20645
+ * @type {number || null}
20646
+ */
20647
+ this.Limit = null;
18936
20648
 
18937
- }
18938
- }
20649
+ /**
20650
+ * Offset. Default value: 0.
20651
+ * @type {number || null}
20652
+ */
20653
+ this.Offset = null;
18939
20654
 
18940
- /**
18941
- * CloseCdbProxyAddress response structure.
18942
- * @class
18943
- */
18944
- class CloseCdbProxyAddressResponse extends AbstractModel {
18945
- constructor(){
18946
- super();
20655
+ /**
20656
+ * Alarm level. Valid values: 1 - Low risk, 2 - Medium risk, 3 - High risk.
20657
+ * @type {number || null}
20658
+ */
20659
+ this.AlarmLevel = null;
18947
20660
 
18948
20661
  /**
18949
- * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
18950
- * @type {string || null}
20662
+ * Alarm policy. Valid values: 0 - Alarm disabled, 1 - Alarm enabled.
20663
+ * @type {number || null}
18951
20664
  */
18952
- this.RequestId = null;
20665
+ this.AlarmPolicy = null;
18953
20666
 
18954
20667
  }
18955
20668
 
@@ -18960,7 +20673,12 @@ class CloseCdbProxyAddressResponse extends AbstractModel {
18960
20673
  if (!params) {
18961
20674
  return;
18962
20675
  }
18963
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
20676
+ this.RuleTemplateIds = 'RuleTemplateIds' in params ? params.RuleTemplateIds : null;
20677
+ this.RuleTemplateNames = 'RuleTemplateNames' in params ? params.RuleTemplateNames : null;
20678
+ this.Limit = 'Limit' in params ? params.Limit : null;
20679
+ this.Offset = 'Offset' in params ? params.Offset : null;
20680
+ this.AlarmLevel = 'AlarmLevel' in params ? params.AlarmLevel : null;
20681
+ this.AlarmPolicy = 'AlarmPolicy' in params ? params.AlarmPolicy : null;
18964
20682
 
18965
20683
  }
18966
20684
  }
@@ -19010,6 +20728,105 @@ Note: this field may return null, indicating that no valid values can be obtaine
19010
20728
  }
19011
20729
  }
19012
20730
 
20731
+ /**
20732
+ * Details of an audit rule template.
20733
+ * @class
20734
+ */
20735
+ class AuditRuleTemplateInfo extends AbstractModel {
20736
+ constructor(){
20737
+ super();
20738
+
20739
+ /**
20740
+ * Rule template ID.
20741
+ * @type {string || null}
20742
+ */
20743
+ this.RuleTemplateId = null;
20744
+
20745
+ /**
20746
+ * Rule template name.
20747
+ * @type {string || null}
20748
+ */
20749
+ this.RuleTemplateName = null;
20750
+
20751
+ /**
20752
+ * Filter conditions of the rule template.
20753
+ * @type {Array.<RuleFilters> || null}
20754
+ */
20755
+ this.RuleFilters = null;
20756
+
20757
+ /**
20758
+ * Rule template description.
20759
+ * @type {string || null}
20760
+ */
20761
+ this.Description = null;
20762
+
20763
+ /**
20764
+ * Rule template creation time.
20765
+ * @type {string || null}
20766
+ */
20767
+ this.CreateAt = null;
20768
+
20769
+ /**
20770
+ * Alarm level. Valid values: 1 - Low risk, 2 - Medium risk, 3 - High risk.
20771
+ * @type {number || null}
20772
+ */
20773
+ this.AlarmLevel = null;
20774
+
20775
+ /**
20776
+ * Alarm policy. Valid values: 0 - Alarm disabled, 1 - Alarm enabled.
20777
+ * @type {number || null}
20778
+ */
20779
+ this.AlarmPolicy = null;
20780
+
20781
+ /**
20782
+ * Instances to which this rule template is applied.
20783
+ * @type {Array.<string> || null}
20784
+ */
20785
+ this.AffectedInstances = null;
20786
+
20787
+ /**
20788
+ * Template status. Valid values: 0 - No task, 1 - modifying.
20789
+ * @type {number || null}
20790
+ */
20791
+ this.Status = null;
20792
+
20793
+ /**
20794
+ * Template update time.
20795
+ * @type {string || null}
20796
+ */
20797
+ this.UpdateAt = null;
20798
+
20799
+ }
20800
+
20801
+ /**
20802
+ * @private
20803
+ */
20804
+ deserialize(params) {
20805
+ if (!params) {
20806
+ return;
20807
+ }
20808
+ this.RuleTemplateId = 'RuleTemplateId' in params ? params.RuleTemplateId : null;
20809
+ this.RuleTemplateName = 'RuleTemplateName' in params ? params.RuleTemplateName : null;
20810
+
20811
+ if (params.RuleFilters) {
20812
+ this.RuleFilters = new Array();
20813
+ for (let z in params.RuleFilters) {
20814
+ let obj = new RuleFilters();
20815
+ obj.deserialize(params.RuleFilters[z]);
20816
+ this.RuleFilters.push(obj);
20817
+ }
20818
+ }
20819
+ this.Description = 'Description' in params ? params.Description : null;
20820
+ this.CreateAt = 'CreateAt' in params ? params.CreateAt : null;
20821
+ this.AlarmLevel = 'AlarmLevel' in params ? params.AlarmLevel : null;
20822
+ this.AlarmPolicy = 'AlarmPolicy' in params ? params.AlarmPolicy : null;
20823
+ this.AffectedInstances = 'AffectedInstances' in params ? params.AffectedInstances : null;
20824
+ this.Status = 'Status' in params ? params.Status : null;
20825
+ this.UpdateAt = 'UpdateAt' in params ? params.UpdateAt : null;
20826
+
20827
+ }
20828
+ }
20829
+
19013
20830
  /**
19014
20831
  * Default retention policy of local binlog.
19015
20832
  * @class
@@ -19186,6 +21003,41 @@ class ReleaseIsolatedDBInstancesResponse extends AbstractModel {
19186
21003
  }
19187
21004
  }
19188
21005
 
21006
+ /**
21007
+ * DeleteAuditLogFile request structure.
21008
+ * @class
21009
+ */
21010
+ class DeleteAuditLogFileRequest extends AbstractModel {
21011
+ constructor(){
21012
+ super();
21013
+
21014
+ /**
21015
+ * Audit log file name, which can be obtained through the [DescribeAuditLogFiles](https://www.tencentcloud.comom/document/api/236/45454?from_cn_redirect=1) API.
21016
+ * @type {string || null}
21017
+ */
21018
+ this.FileName = null;
21019
+
21020
+ /**
21021
+ * Instance ID, which can be obtained through the [DescribeDBInstances](https://www.tencentcloud.comom/document/product/236/15872?from_cn_redirect=1) API.
21022
+ * @type {string || null}
21023
+ */
21024
+ this.InstanceId = null;
21025
+
21026
+ }
21027
+
21028
+ /**
21029
+ * @private
21030
+ */
21031
+ deserialize(params) {
21032
+ if (!params) {
21033
+ return;
21034
+ }
21035
+ this.FileName = 'FileName' in params ? params.FileName : null;
21036
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
21037
+
21038
+ }
21039
+ }
21040
+
19189
21041
  /**
19190
21042
  * DescribeSlowLogs response structure.
19191
21043
  * @class
@@ -19551,6 +21403,62 @@ class UpgradeCDBProxyVersionRequest extends AbstractModel {
19551
21403
  }
19552
21404
  }
19553
21405
 
21406
+ /**
21407
+ * DeleteAuditRuleTemplates response structure.
21408
+ * @class
21409
+ */
21410
+ class DeleteAuditRuleTemplatesResponse extends AbstractModel {
21411
+ constructor(){
21412
+ super();
21413
+
21414
+ /**
21415
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
21416
+ * @type {string || null}
21417
+ */
21418
+ this.RequestId = null;
21419
+
21420
+ }
21421
+
21422
+ /**
21423
+ * @private
21424
+ */
21425
+ deserialize(params) {
21426
+ if (!params) {
21427
+ return;
21428
+ }
21429
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
21430
+
21431
+ }
21432
+ }
21433
+
21434
+ /**
21435
+ * ModifyAuditRuleTemplates response structure.
21436
+ * @class
21437
+ */
21438
+ class ModifyAuditRuleTemplatesResponse extends AbstractModel {
21439
+ constructor(){
21440
+ super();
21441
+
21442
+ /**
21443
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
21444
+ * @type {string || null}
21445
+ */
21446
+ this.RequestId = null;
21447
+
21448
+ }
21449
+
21450
+ /**
21451
+ * @private
21452
+ */
21453
+ deserialize(params) {
21454
+ if (!params) {
21455
+ return;
21456
+ }
21457
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
21458
+
21459
+ }
21460
+ }
21461
+
19554
21462
  module.exports = {
19555
21463
  TaskDetail: TaskDetail,
19556
21464
  CdbZoneSellConf: CdbZoneSellConf,
@@ -19561,13 +21469,16 @@ module.exports = {
19561
21469
  InstanceRollbackRangeTime: InstanceRollbackRangeTime,
19562
21470
  DescribeTablesResponse: DescribeTablesResponse,
19563
21471
  ModifyBackupDownloadRestrictionResponse: ModifyBackupDownloadRestrictionResponse,
21472
+ InstanceDbAuditStatus: InstanceDbAuditStatus,
19564
21473
  ModifyTimeWindowResponse: ModifyTimeWindowResponse,
19565
21474
  ParamRecord: ParamRecord,
19566
21475
  ModifyTimeWindowRequest: ModifyTimeWindowRequest,
19567
21476
  DescribeRollbackRangeTimeRequest: DescribeRollbackRangeTimeRequest,
19568
21477
  DescribeBackupOverviewRequest: DescribeBackupOverviewRequest,
21478
+ DescribeAuditInstanceListResponse: DescribeAuditInstanceListResponse,
19569
21479
  ModifyDBInstanceProjectResponse: ModifyDBInstanceProjectResponse,
19570
21480
  DescribeDataBackupOverviewResponse: DescribeDataBackupOverviewResponse,
21481
+ DeleteAuditPolicyRequest: DeleteAuditPolicyRequest,
19571
21482
  BackupSummaryItem: BackupSummaryItem,
19572
21483
  CreateDatabaseRequest: CreateDatabaseRequest,
19573
21484
  ModifyInstanceParamRequest: ModifyInstanceParamRequest,
@@ -19576,6 +21487,7 @@ module.exports = {
19576
21487
  DescribeParamTemplateInfoRequest: DescribeParamTemplateInfoRequest,
19577
21488
  ModifyCdbProxyAddressVipAndVPortResponse: ModifyCdbProxyAddressVipAndVPortResponse,
19578
21489
  DescribeDBInstancesRequest: DescribeDBInstancesRequest,
21490
+ CreateRotationPasswordResponse: CreateRotationPasswordResponse,
19579
21491
  ModifyCdbProxyAddressDescRequest: ModifyCdbProxyAddressDescRequest,
19580
21492
  CdbRegionSellConf: CdbRegionSellConf,
19581
21493
  DescribeRoGroupsRequest: DescribeRoGroupsRequest,
@@ -19583,7 +21495,7 @@ module.exports = {
19583
21495
  CreateCdbProxyAddressResponse: CreateCdbProxyAddressResponse,
19584
21496
  RollbackTableName: RollbackTableName,
19585
21497
  CloseWanServiceRequest: CloseWanServiceRequest,
19586
- OpenAuditServiceResponse: OpenAuditServiceResponse,
21498
+ DescribeAuditConfigRequest: DescribeAuditConfigRequest,
19587
21499
  CreateRoInstanceIpResponse: CreateRoInstanceIpResponse,
19588
21500
  CreateAuditPolicyResponse: CreateAuditPolicyResponse,
19589
21501
  LogRuleTemplateInfo: LogRuleTemplateInfo,
@@ -19591,7 +21503,7 @@ module.exports = {
19591
21503
  StopRollbackResponse: StopRollbackResponse,
19592
21504
  CreateCdbProxyAddressRequest: CreateCdbProxyAddressRequest,
19593
21505
  AnalyzeAuditLogsRequest: AnalyzeAuditLogsRequest,
19594
- StopReplicationResponse: StopReplicationResponse,
21506
+ ModifyBackupEncryptionStatusResponse: ModifyBackupEncryptionStatusResponse,
19595
21507
  DescribeInstanceParamsRequest: DescribeInstanceParamsRequest,
19596
21508
  DescribeRoMinScaleResponse: DescribeRoMinScaleResponse,
19597
21509
  StopDBImportJobResponse: StopDBImportJobResponse,
@@ -19599,7 +21511,6 @@ module.exports = {
19599
21511
  StopCpuExpandRequest: StopCpuExpandRequest,
19600
21512
  ModifyDBInstanceNameRequest: ModifyDBInstanceNameRequest,
19601
21513
  TagInfoUnit: TagInfoUnit,
19602
- OpenAuditServiceRequest: OpenAuditServiceRequest,
19603
21514
  DescribeAuditRulesRequest: DescribeAuditRulesRequest,
19604
21515
  UpgradeDBInstanceEngineVersionResponse: UpgradeDBInstanceEngineVersionResponse,
19605
21516
  ErrlogItem: ErrlogItem,
@@ -19613,14 +21524,16 @@ module.exports = {
19613
21524
  DescribeTablesRequest: DescribeTablesRequest,
19614
21525
  UpgradeDBInstanceRequest: UpgradeDBInstanceRequest,
19615
21526
  ModifyParamTemplateRequest: ModifyParamTemplateRequest,
19616
- StartReplicationResponse: StartReplicationResponse,
21527
+ OpenAuditServiceResponse: OpenAuditServiceResponse,
19617
21528
  DescribeBinlogBackupOverviewResponse: DescribeBinlogBackupOverviewResponse,
19618
21529
  DescribeDBInstanceLogToCLSResponse: DescribeDBInstanceLogToCLSResponse,
19619
21530
  SwitchDBInstanceMasterSlaveRequest: SwitchDBInstanceMasterSlaveRequest,
19620
21531
  ModifyCdbProxyAddressVipAndVPortRequest: ModifyCdbProxyAddressVipAndVPortRequest,
19621
21532
  ModifyAutoRenewFlagRequest: ModifyAutoRenewFlagRequest,
21533
+ DescribeAuditConfigResponse: DescribeAuditConfigResponse,
19622
21534
  ModifyBackupConfigResponse: ModifyBackupConfigResponse,
19623
21535
  OpenWanServiceRequest: OpenWanServiceRequest,
21536
+ DeleteAuditPolicyResponse: DeleteAuditPolicyResponse,
19624
21537
  DescribeParamTemplateInfoResponse: DescribeParamTemplateInfoResponse,
19625
21538
  DescribeInstanceParamsResponse: DescribeInstanceParamsResponse,
19626
21539
  UploadInfo: UploadInfo,
@@ -19632,18 +21545,22 @@ module.exports = {
19632
21545
  DescribeRollbackRangeTimeResponse: DescribeRollbackRangeTimeResponse,
19633
21546
  ModifyRoGroupInfoRequest: ModifyRoGroupInfoRequest,
19634
21547
  ReleaseResult: ReleaseResult,
21548
+ ModifyDBInstanceVipVportRequest: ModifyDBInstanceVipVportRequest,
19635
21549
  AuditRule: AuditRule,
19636
21550
  DescribeBinlogsRequest: DescribeBinlogsRequest,
19637
21551
  DescribeCdbProxyInfoRequest: DescribeCdbProxyInfoRequest,
19638
21552
  RollbackDBName: RollbackDBName,
19639
21553
  RuleFilters: RuleFilters,
21554
+ ModifyAuditRuleTemplatesRequest: ModifyAuditRuleTemplatesRequest,
19640
21555
  ModifyRemoteBackupConfigResponse: ModifyRemoteBackupConfigResponse,
19641
21556
  DescribeDBInstanceInfoResponse: DescribeDBInstanceInfoResponse,
19642
21557
  AssociateSecurityGroupsRequest: AssociateSecurityGroupsRequest,
21558
+ StartReplicationResponse: StartReplicationResponse,
19643
21559
  DescribeDBFeaturesResponse: DescribeDBFeaturesResponse,
19644
21560
  DescribeBinlogsResponse: DescribeBinlogsResponse,
19645
21561
  DescribeRoMinScaleRequest: DescribeRoMinScaleRequest,
19646
21562
  DescribeDefaultParamsRequest: DescribeDefaultParamsRequest,
21563
+ AuditInstanceInfo: AuditInstanceInfo,
19647
21564
  CustomConfig: CustomConfig,
19648
21565
  SwitchDBInstanceMasterSlaveResponse: SwitchDBInstanceMasterSlaveResponse,
19649
21566
  DescribeBackupsRequest: DescribeBackupsRequest,
@@ -19660,11 +21577,14 @@ module.exports = {
19660
21577
  DescribeErrorLogDataResponse: DescribeErrorLogDataResponse,
19661
21578
  AddTimeWindowRequest: AddTimeWindowRequest,
19662
21579
  ImportRecord: ImportRecord,
21580
+ DeleteAuditLogFileResponse: DeleteAuditLogFileResponse,
19663
21581
  Parameter: Parameter,
19664
21582
  SlaveInfo: SlaveInfo,
19665
21583
  DescribeDBSecurityGroupsRequest: DescribeDBSecurityGroupsRequest,
19666
21584
  DescribeDBSwitchRecordsResponse: DescribeDBSwitchRecordsResponse,
19667
21585
  Tag: Tag,
21586
+ RuleTemplateInfo: RuleTemplateInfo,
21587
+ CreateAuditLogFileResponse: CreateAuditLogFileResponse,
19668
21588
  ModifyCdbProxyParamResponse: ModifyCdbProxyParamResponse,
19669
21589
  ModifyInstanceTagResponse: ModifyInstanceTagResponse,
19670
21590
  DescribeDBSwitchRecordsRequest: DescribeDBSwitchRecordsRequest,
@@ -19696,7 +21616,7 @@ module.exports = {
19696
21616
  DescribeLocalBinlogConfigRequest: DescribeLocalBinlogConfigRequest,
19697
21617
  TagsInfoOfInstance: TagsInfoOfInstance,
19698
21618
  DescribeDeviceMonitorInfoRequest: DescribeDeviceMonitorInfoRequest,
19699
- SwitchDrInstanceToMasterResponse: SwitchDrInstanceToMasterResponse,
21619
+ StopDBImportJobRequest: StopDBImportJobRequest,
19700
21620
  DescribeDBInstanceConfigResponse: DescribeDBInstanceConfigResponse,
19701
21621
  SlaveConfig: SlaveConfig,
19702
21622
  ModifyAccountPrivilegesResponse: ModifyAccountPrivilegesResponse,
@@ -19704,8 +21624,12 @@ module.exports = {
19704
21624
  LogToCLSConfig: LogToCLSConfig,
19705
21625
  ResetRootAccountRequest: ResetRootAccountRequest,
19706
21626
  DescribeDBInstanceConfigRequest: DescribeDBInstanceConfigRequest,
21627
+ ModifyAuditServiceRequest: ModifyAuditServiceRequest,
19707
21628
  DescribeProxyCustomConfResponse: DescribeProxyCustomConfResponse,
21629
+ ModifyAuditConfigResponse: ModifyAuditConfigResponse,
21630
+ SwitchDrInstanceToMasterResponse: SwitchDrInstanceToMasterResponse,
19708
21631
  ModifyDBInstanceNameResponse: ModifyDBInstanceNameResponse,
21632
+ RuleTemplateRecordInfo: RuleTemplateRecordInfo,
19709
21633
  DescribeCloneListResponse: DescribeCloneListResponse,
19710
21634
  DescribeDBInstanceLogToCLSRequest: DescribeDBInstanceLogToCLSRequest,
19711
21635
  AnalysisNodeInfo: AnalysisNodeInfo,
@@ -19715,7 +21639,7 @@ module.exports = {
19715
21639
  ModifyInstancePasswordComplexityResponse: ModifyInstancePasswordComplexityResponse,
19716
21640
  DeviceMemInfo: DeviceMemInfo,
19717
21641
  AuditLogAggregationResult: AuditLogAggregationResult,
19718
- SlowLogItem: SlowLogItem,
21642
+ DatabasesWithCharacterLists: DatabasesWithCharacterLists,
19719
21643
  DescribeRemoteBackupConfigRequest: DescribeRemoteBackupConfigRequest,
19720
21644
  TagInfo: TagInfo,
19721
21645
  DescribeDBInstancesResponse: DescribeDBInstancesResponse,
@@ -19725,6 +21649,8 @@ module.exports = {
19725
21649
  DescribeAccountsResponse: DescribeAccountsResponse,
19726
21650
  RollbackTimeRange: RollbackTimeRange,
19727
21651
  AuditLog: AuditLog,
21652
+ DescribeAuditRuleTemplateModifyHistoryResponse: DescribeAuditRuleTemplateModifyHistoryResponse,
21653
+ DescribeAuditLogFilesRequest: DescribeAuditLogFilesRequest,
19728
21654
  ModifyBackupConfigRequest: ModifyBackupConfigRequest,
19729
21655
  DisassociateSecurityGroupsResponse: DisassociateSecurityGroupsResponse,
19730
21656
  AggregationCondition: AggregationCondition,
@@ -19737,6 +21663,7 @@ module.exports = {
19737
21663
  RoVipInfo: RoVipInfo,
19738
21664
  DescribeAccountsRequest: DescribeAccountsRequest,
19739
21665
  DescribeErrorLogDataRequest: DescribeErrorLogDataRequest,
21666
+ DescribeAuditLogFilesResponse: DescribeAuditLogFilesResponse,
19740
21667
  DescribeDBInstanceRebootTimeRequest: DescribeDBInstanceRebootTimeRequest,
19741
21668
  Inbound: Inbound,
19742
21669
  CreateAccountsResponse: CreateAccountsResponse,
@@ -19756,20 +21683,23 @@ module.exports = {
19756
21683
  SwitchForUpgradeRequest: SwitchForUpgradeRequest,
19757
21684
  CreateDBInstanceHourResponse: CreateDBInstanceHourResponse,
19758
21685
  DescribeBackupDownloadRestrictionResponse: DescribeBackupDownloadRestrictionResponse,
19759
- DatabasesWithCharacterLists: DatabasesWithCharacterLists,
19760
21686
  CloneItem: CloneItem,
19761
21687
  ModifyDBInstanceSecurityGroupsResponse: ModifyDBInstanceSecurityGroupsResponse,
19762
21688
  CreateAccountsRequest: CreateAccountsRequest,
21689
+ DeleteAuditRuleTemplatesRequest: DeleteAuditRuleTemplatesRequest,
21690
+ CreateAuditRuleTemplateResponse: CreateAuditRuleTemplateResponse,
19763
21691
  BackupInfo: BackupInfo,
19764
21692
  CloseWanServiceResponse: CloseWanServiceResponse,
19765
21693
  RenewDBInstanceRequest: RenewDBInstanceRequest,
19766
21694
  SlowLogInfo: SlowLogInfo,
19767
21695
  ModifyLocalBinlogConfigResponse: ModifyLocalBinlogConfigResponse,
21696
+ CreateRotationPasswordRequest: CreateRotationPasswordRequest,
19768
21697
  DescribeCloneListRequest: DescribeCloneListRequest,
19769
21698
  ModifyInstanceTagRequest: ModifyInstanceTagRequest,
19770
21699
  DescribeProxySupportParamRequest: DescribeProxySupportParamRequest,
19771
21700
  ModifyAutoRenewFlagResponse: ModifyAutoRenewFlagResponse,
19772
21701
  RollbackTask: RollbackTask,
21702
+ StartReplicationRequest: StartReplicationRequest,
19773
21703
  ProxyInst: ProxyInst,
19774
21704
  ReloadBalanceProxyNodeResponse: ReloadBalanceProxyNodeResponse,
19775
21705
  DescribeTimeWindowRequest: DescribeTimeWindowRequest,
@@ -19777,7 +21707,9 @@ module.exports = {
19777
21707
  BackupItem: BackupItem,
19778
21708
  AuditFilter: AuditFilter,
19779
21709
  DescribeProxySupportParamResponse: DescribeProxySupportParamResponse,
21710
+ CloseAuditServiceResponse: CloseAuditServiceResponse,
19780
21711
  DescribeRollbackTaskDetailRequest: DescribeRollbackTaskDetailRequest,
21712
+ AdjustCdbProxyResponse: AdjustCdbProxyResponse,
19781
21713
  ModifyParamTemplateResponse: ModifyParamTemplateResponse,
19782
21714
  BalanceRoGroupLoadResponse: BalanceRoGroupLoadResponse,
19783
21715
  DeviceNetInfo: DeviceNetInfo,
@@ -19790,11 +21722,13 @@ module.exports = {
19790
21722
  SwitchCDBProxyRequest: SwitchCDBProxyRequest,
19791
21723
  DescribeTagsOfInstanceIdsResponse: DescribeTagsOfInstanceIdsResponse,
19792
21724
  OfflineIsolatedInstancesResponse: OfflineIsolatedInstancesResponse,
21725
+ CreateAuditRuleTemplateRequest: CreateAuditRuleTemplateRequest,
19793
21726
  DatabasePrivilege: DatabasePrivilege,
19794
21727
  DescribeAuditPoliciesRequest: DescribeAuditPoliciesRequest,
19795
21728
  AdjustCdbProxyAddressRequest: AdjustCdbProxyAddressRequest,
19796
21729
  DescribeDatabasesResponse: DescribeDatabasesResponse,
19797
21730
  DescribeRoGroupsResponse: DescribeRoGroupsResponse,
21731
+ CloseCdbProxyAddressResponse: CloseCdbProxyAddressResponse,
19798
21732
  DescribeAuditRulesResponse: DescribeAuditRulesResponse,
19799
21733
  RoInstanceInfo: RoInstanceInfo,
19800
21734
  DeviceCpuRateInfo: DeviceCpuRateInfo,
@@ -19803,14 +21737,14 @@ module.exports = {
19803
21737
  AccountInfo: AccountInfo,
19804
21738
  DescribeRemoteBackupConfigResponse: DescribeRemoteBackupConfigResponse,
19805
21739
  AdjustCdbProxyAddressResponse: AdjustCdbProxyAddressResponse,
19806
- ModifyDBInstanceVipVportRequest: ModifyDBInstanceVipVportRequest,
21740
+ CreateAuditLogFileRequest: CreateAuditLogFileRequest,
19807
21741
  DescribeDBImportRecordsRequest: DescribeDBImportRecordsRequest,
19808
21742
  CreateDBImportJobResponse: CreateDBImportJobResponse,
19809
21743
  DescribeTagsOfInstanceIdsRequest: DescribeTagsOfInstanceIdsRequest,
19810
21744
  StartCpuExpandRequest: StartCpuExpandRequest,
19811
21745
  DescribeCpuExpandStrategyRequest: DescribeCpuExpandStrategyRequest,
19812
21746
  CloseCDBProxyResponse: CloseCDBProxyResponse,
19813
- ModifyBackupEncryptionStatusResponse: ModifyBackupEncryptionStatusResponse,
21747
+ StopReplicationResponse: StopReplicationResponse,
19814
21748
  UpgradeDBInstanceEngineVersionRequest: UpgradeDBInstanceEngineVersionRequest,
19815
21749
  DescribeDataBackupOverviewRequest: DescribeDataBackupOverviewRequest,
19816
21750
  DescribeDBInstanceInfoRequest: DescribeDBInstanceInfoRequest,
@@ -19821,13 +21755,15 @@ module.exports = {
19821
21755
  DescribeAccountPrivilegesRequest: DescribeAccountPrivilegesRequest,
19822
21756
  CdbSellConfig: CdbSellConfig,
19823
21757
  DescribeSupportedPrivilegesResponse: DescribeSupportedPrivilegesResponse,
19824
- StopDBImportJobRequest: StopDBImportJobRequest,
21758
+ SlowLogItem: SlowLogItem,
19825
21759
  DescribeLocalBinlogConfigResponse: DescribeLocalBinlogConfigResponse,
21760
+ ModifyAuditServiceResponse: ModifyAuditServiceResponse,
19826
21761
  ModifyInstancePasswordComplexityRequest: ModifyInstancePasswordComplexityRequest,
19827
21762
  OpenWanServiceResponse: OpenWanServiceResponse,
19828
21763
  DescribeDBInstanceGTIDRequest: DescribeDBInstanceGTIDRequest,
19829
21764
  DescribeBackupEncryptionStatusResponse: DescribeBackupEncryptionStatusResponse,
19830
21765
  DescribeCdbProxyInfoResponse: DescribeCdbProxyInfoResponse,
21766
+ ModifyAuditConfigRequest: ModifyAuditConfigRequest,
19831
21767
  DeviceDiskInfo: DeviceDiskInfo,
19832
21768
  RoWeightValue: RoWeightValue,
19833
21769
  DescribeSlowLogDataResponse: DescribeSlowLogDataResponse,
@@ -19841,6 +21777,7 @@ module.exports = {
19841
21777
  ModifyRoGroupInfoResponse: ModifyRoGroupInfoResponse,
19842
21778
  DeleteParamTemplateResponse: DeleteParamTemplateResponse,
19843
21779
  DBSwitchInfo: DBSwitchInfo,
21780
+ DescribeAuditRuleTemplateModifyHistoryRequest: DescribeAuditRuleTemplateModifyHistoryRequest,
19844
21781
  DescribeTasksResponse: DescribeTasksResponse,
19845
21782
  DescribeAuditLogsResponse: DescribeAuditLogsResponse,
19846
21783
  DescribeAuditPoliciesResponse: DescribeAuditPoliciesResponse,
@@ -19848,30 +21785,33 @@ module.exports = {
19848
21785
  AdjustCdbProxyRequest: AdjustCdbProxyRequest,
19849
21786
  ModifyAccountDescriptionResponse: ModifyAccountDescriptionResponse,
19850
21787
  ProxyAddress: ProxyAddress,
19851
- DescribeBackupSummariesRequest: DescribeBackupSummariesRequest,
21788
+ CommonTimeWindow: CommonTimeWindow,
19852
21789
  ModifyAccountMaxUserConnectionsRequest: ModifyAccountMaxUserConnectionsRequest,
19853
21790
  DescribeTasksRequest: DescribeTasksRequest,
19854
21791
  ModifyBackupEncryptionStatusRequest: ModifyBackupEncryptionStatusRequest,
19855
21792
  DescribeRollbackTaskDetailResponse: DescribeRollbackTaskDetailResponse,
19856
21793
  CreateDBInstanceHourRequest: CreateDBInstanceHourRequest,
21794
+ DescribeAuditRuleTemplatesResponse: DescribeAuditRuleTemplatesResponse,
19857
21795
  RollbackInstancesInfo: RollbackInstancesInfo,
19858
21796
  CreateCloneInstanceRequest: CreateCloneInstanceRequest,
19859
21797
  ClusterInfo: ClusterInfo,
19860
21798
  CloseCDBProxyRequest: CloseCDBProxyRequest,
19861
21799
  DeleteBackupResponse: DeleteBackupResponse,
19862
21800
  DescribeProjectSecurityGroupsResponse: DescribeProjectSecurityGroupsResponse,
19863
- CommonTimeWindow: CommonTimeWindow,
21801
+ DescribeBackupSummariesRequest: DescribeBackupSummariesRequest,
19864
21802
  AnalyzeAuditLogsResponse: AnalyzeAuditLogsResponse,
19865
21803
  CreateDBInstanceResponse: CreateDBInstanceResponse,
19866
- StartReplicationRequest: StartReplicationRequest,
21804
+ OpenAuditServiceRequest: OpenAuditServiceRequest,
19867
21805
  DescribeDBInstanceCharsetResponse: DescribeDBInstanceCharsetResponse,
19868
21806
  DescribeDBFeaturesRequest: DescribeDBFeaturesRequest,
19869
21807
  DescribeBackupSummariesResponse: DescribeBackupSummariesResponse,
19870
21808
  DescribeBinlogBackupOverviewRequest: DescribeBinlogBackupOverviewRequest,
19871
21809
  ModifyDBInstanceSecurityGroupsRequest: ModifyDBInstanceSecurityGroupsRequest,
21810
+ CloseAuditServiceRequest: CloseAuditServiceRequest,
19872
21811
  AutoStrategy: AutoStrategy,
19873
21812
  ModifyAccountMaxUserConnectionsResponse: ModifyAccountMaxUserConnectionsResponse,
19874
21813
  Outbound: Outbound,
21814
+ AuditInstanceFilters: AuditInstanceFilters,
19875
21815
  ParamInfo: ParamInfo,
19876
21816
  DescribeBackupDecryptionKeyResponse: DescribeBackupDecryptionKeyResponse,
19877
21817
  SecurityGroup: SecurityGroup,
@@ -19894,14 +21834,17 @@ module.exports = {
19894
21834
  RenewDBInstanceResponse: RenewDBInstanceResponse,
19895
21835
  TablePrivilege: TablePrivilege,
19896
21836
  AddTimeWindowResponse: AddTimeWindowResponse,
19897
- AdjustCdbProxyResponse: AdjustCdbProxyResponse,
21837
+ DescribeAuditInstanceListRequest: DescribeAuditInstanceListRequest,
19898
21838
  DescribeBackupEncryptionStatusRequest: DescribeBackupEncryptionStatusRequest,
19899
21839
  ModifyDBInstanceLogToCLSResponse: ModifyDBInstanceLogToCLSResponse,
19900
- CloseCdbProxyAddressResponse: CloseCdbProxyAddressResponse,
21840
+ AuditLogFile: AuditLogFile,
21841
+ DescribeAuditRuleTemplatesRequest: DescribeAuditRuleTemplatesRequest,
19901
21842
  RollbackTables: RollbackTables,
21843
+ AuditRuleTemplateInfo: AuditRuleTemplateInfo,
19902
21844
  LocalBinlogConfigDefault: LocalBinlogConfigDefault,
19903
21845
  DescribeSlowLogDataRequest: DescribeSlowLogDataRequest,
19904
21846
  ReleaseIsolatedDBInstancesResponse: ReleaseIsolatedDBInstancesResponse,
21847
+ DeleteAuditLogFileRequest: DeleteAuditLogFileRequest,
19905
21848
  DescribeSlowLogsResponse: DescribeSlowLogsResponse,
19906
21849
  DeleteTimeWindowRequest: DeleteTimeWindowRequest,
19907
21850
  SwitchCDBProxyResponse: SwitchCDBProxyResponse,
@@ -19911,5 +21854,7 @@ module.exports = {
19911
21854
  ModifyNameOrDescByDpIdRequest: ModifyNameOrDescByDpIdRequest,
19912
21855
  UpgradeDBInstanceResponse: UpgradeDBInstanceResponse,
19913
21856
  UpgradeCDBProxyVersionRequest: UpgradeCDBProxyVersionRequest,
21857
+ DeleteAuditRuleTemplatesResponse: DeleteAuditRuleTemplatesResponse,
21858
+ ModifyAuditRuleTemplatesResponse: ModifyAuditRuleTemplatesResponse,
19914
21859
 
19915
21860
  }