tencentcloud-sdk-nodejs-intl-en 3.0.1018 → 3.0.1020

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.
@@ -36,6 +36,12 @@ class UpdateDatabaseRequest extends AbstractModel {
36
36
  */
37
37
  this.Operation = null;
38
38
 
39
+ /**
40
+ * InstanceId
41
+ * @type {string || null}
42
+ */
43
+ this.InstanceId = null;
44
+
39
45
  /**
40
46
  * Quota value, which is used to set the quota of data volume or replicas.
41
47
  * @type {string || null}
@@ -67,10 +73,10 @@ class UpdateDatabaseRequest extends AbstractModel {
67
73
  this.PassWord = null;
68
74
 
69
75
  /**
70
- * InstanceId
76
+ * The name of the catalog, if left unspecified, defaults to "internal".
71
77
  * @type {string || null}
72
78
  */
73
- this.InstanceId = null;
79
+ this.CatalogName = null;
74
80
 
75
81
  }
76
82
 
@@ -83,6 +89,7 @@ class UpdateDatabaseRequest extends AbstractModel {
83
89
  }
84
90
  this.DbName = 'DbName' in params ? params.DbName : null;
85
91
  this.Operation = 'Operation' in params ? params.Operation : null;
92
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
86
93
  this.Quota = 'Quota' in params ? params.Quota : null;
87
94
  this.NewDbName = 'NewDbName' in params ? params.NewDbName : null;
88
95
 
@@ -96,7 +103,7 @@ class UpdateDatabaseRequest extends AbstractModel {
96
103
  }
97
104
  this.UserName = 'UserName' in params ? params.UserName : null;
98
105
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
99
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
106
+ this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
100
107
 
101
108
  }
102
109
  }
@@ -502,7 +509,7 @@ class UpdateTableSchemaResponse extends AbstractModel {
502
509
 
503
510
  /**
504
511
  * Is it successful
505
- * @type {string || null}
512
+ * @type {boolean || null}
506
513
  */
507
514
  this.Success = null;
508
515
 
@@ -967,18 +974,6 @@ class InsertDatasToTableRequest extends AbstractModel {
967
974
  */
968
975
  this.Table = null;
969
976
 
970
- /**
971
- * Whether to use the strict mode
972
- * @type {boolean || null}
973
- */
974
- this.Strict = null;
975
-
976
- /**
977
- * Maximum filtration ratio, ranging from 0 to 1.0
978
- * @type {number || null}
979
- */
980
- this.MaxFilterRatio = null;
981
-
982
977
  /**
983
978
  * Array of column names
984
979
  * @type {Array.<string> || null}
@@ -992,47 +987,53 @@ class InsertDatasToTableRequest extends AbstractModel {
992
987
  this.Rows = null;
993
988
 
994
989
  /**
995
- * Tags for inserting data
996
- * @type {string || null}
990
+ * Array of column types
991
+
992
+ * @type {Array.<string> || null}
997
993
  */
998
- this.Label = null;
994
+ this.Types = null;
999
995
 
1000
996
  /**
1001
- * Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
997
+ * InstanceId
1002
998
  * @type {string || null}
1003
999
  */
1004
- this.UserName = null;
1000
+ this.InstanceId = null;
1005
1001
 
1006
1002
  /**
1007
- * Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
1008
- * @type {string || null}
1003
+ * Whether to use the strict mode
1004
+ * @type {boolean || null}
1009
1005
  */
1010
- this.PassWord = null;
1006
+ this.Strict = null;
1011
1007
 
1012
1008
  /**
1013
- * Column type, this field has been deprecated, please use Types
1014
- * @type {string || null}
1009
+ * Maximum filtration ratio, ranging from 0 to 1.0
1010
+ * @type {number || null}
1015
1011
  */
1016
- this.ColumnTypes = null;
1012
+ this.MaxFilterRatio = null;
1017
1013
 
1018
1014
  /**
1019
- * Array of column types
1015
+ * Tags for inserting data
1016
+ * @type {string || null}
1017
+ */
1018
+ this.Label = null;
1020
1019
 
1021
- * @type {Array.<string> || null}
1020
+ /**
1021
+ * Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
1022
+ * @type {string || null}
1022
1023
  */
1023
- this.Types = null;
1024
+ this.UserName = null;
1024
1025
 
1025
1026
  /**
1026
- * Catalog name, defaults to 'internal' if not specified.
1027
+ * Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
1027
1028
  * @type {string || null}
1028
1029
  */
1029
- this.CatalogName = null;
1030
+ this.PassWord = null;
1030
1031
 
1031
1032
  /**
1032
- * InstanceId
1033
+ * Catalog name, defaults to 'internal' if not specified.
1033
1034
  * @type {string || null}
1034
1035
  */
1035
- this.InstanceId = null;
1036
+ this.CatalogName = null;
1036
1037
 
1037
1038
  }
1038
1039
 
@@ -1045,8 +1046,6 @@ class InsertDatasToTableRequest extends AbstractModel {
1045
1046
  }
1046
1047
  this.Database = 'Database' in params ? params.Database : null;
1047
1048
  this.Table = 'Table' in params ? params.Table : null;
1048
- this.Strict = 'Strict' in params ? params.Strict : null;
1049
- this.MaxFilterRatio = 'MaxFilterRatio' in params ? params.MaxFilterRatio : null;
1050
1049
  this.Columns = 'Columns' in params ? params.Columns : null;
1051
1050
 
1052
1051
  if (params.Rows) {
@@ -1057,13 +1056,14 @@ class InsertDatasToTableRequest extends AbstractModel {
1057
1056
  this.Rows.push(obj);
1058
1057
  }
1059
1058
  }
1059
+ this.Types = 'Types' in params ? params.Types : null;
1060
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1061
+ this.Strict = 'Strict' in params ? params.Strict : null;
1062
+ this.MaxFilterRatio = 'MaxFilterRatio' in params ? params.MaxFilterRatio : null;
1060
1063
  this.Label = 'Label' in params ? params.Label : null;
1061
1064
  this.UserName = 'UserName' in params ? params.UserName : null;
1062
1065
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
1063
- this.ColumnTypes = 'ColumnTypes' in params ? params.ColumnTypes : null;
1064
- this.Types = 'Types' in params ? params.Types : null;
1065
1066
  this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
1066
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1067
1067
 
1068
1068
  }
1069
1069
  }
@@ -1112,28 +1112,34 @@ class ModifyDatabaseTableAccessRequest extends AbstractModel {
1112
1112
  this.Database = null;
1113
1113
 
1114
1114
  /**
1115
- * Table name. If it is null, it indicates that the entire database is authorized.
1115
+ * Permission list
1116
+ * @type {Array.<string> || null}
1117
+ */
1118
+ this.Privileges = null;
1119
+
1120
+ /**
1121
+ * Operation type: GRANT or REVOKE
1116
1122
  * @type {string || null}
1117
1123
  */
1118
- this.Table = null;
1124
+ this.GrantOrRevoke = null;
1119
1125
 
1120
1126
  /**
1121
- * Permission list
1122
- * @type {Array.<string> || null}
1127
+ * InstanceId
1128
+ * @type {string || null}
1123
1129
  */
1124
- this.Privileges = null;
1130
+ this.InstanceId = null;
1125
1131
 
1126
1132
  /**
1127
- * Role name, if authorized to the role
1133
+ * Table name. If it is null, it indicates that the entire database is authorized.
1128
1134
  * @type {string || null}
1129
1135
  */
1130
- this.Role = null;
1136
+ this.Table = null;
1131
1137
 
1132
1138
  /**
1133
- * Operation type: GRANT or REVOKE
1139
+ * Role name, if authorized to the role
1134
1140
  * @type {string || null}
1135
1141
  */
1136
- this.GrantOrRevoke = null;
1142
+ this.Role = null;
1137
1143
 
1138
1144
  /**
1139
1145
  * Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
@@ -1153,12 +1159,6 @@ class ModifyDatabaseTableAccessRequest extends AbstractModel {
1153
1159
  */
1154
1160
  this.CatalogName = null;
1155
1161
 
1156
- /**
1157
- * InstanceId
1158
- * @type {string || null}
1159
- */
1160
- this.InstanceId = null;
1161
-
1162
1162
  /**
1163
1163
  * Machine Group, defaults to % if not specified.
1164
1164
  * @type {string || null}
@@ -1175,14 +1175,14 @@ class ModifyDatabaseTableAccessRequest extends AbstractModel {
1175
1175
  return;
1176
1176
  }
1177
1177
  this.Database = 'Database' in params ? params.Database : null;
1178
- this.Table = 'Table' in params ? params.Table : null;
1179
1178
  this.Privileges = 'Privileges' in params ? params.Privileges : null;
1180
- this.Role = 'Role' in params ? params.Role : null;
1181
1179
  this.GrantOrRevoke = 'GrantOrRevoke' in params ? params.GrantOrRevoke : null;
1180
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1181
+ this.Table = 'Table' in params ? params.Table : null;
1182
+ this.Role = 'Role' in params ? params.Role : null;
1182
1183
  this.UserName = 'UserName' in params ? params.UserName : null;
1183
1184
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
1184
1185
  this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
1185
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1186
1186
  this.WhiteHost = 'WhiteHost' in params ? params.WhiteHost : null;
1187
1187
 
1188
1188
  }
@@ -1936,6 +1936,18 @@ class DescribeQueryAnalyseRequest extends AbstractModel {
1936
1936
  */
1937
1937
  this.QueryTime = null;
1938
1938
 
1939
+ /**
1940
+ * Page number, defaults to 1.
1941
+ * @type {number || null}
1942
+ */
1943
+ this.PageNum = null;
1944
+
1945
+ /**
1946
+ * Number of records per page, defaults to 10.
1947
+ * @type {number || null}
1948
+ */
1949
+ this.PageSize = null;
1950
+
1939
1951
  }
1940
1952
 
1941
1953
  /**
@@ -1957,6 +1969,8 @@ class DescribeQueryAnalyseRequest extends AbstractModel {
1957
1969
  this.SortField = 'SortField' in params ? params.SortField : null;
1958
1970
  this.SortOrder = 'SortOrder' in params ? params.SortOrder : null;
1959
1971
  this.QueryTime = 'QueryTime' in params ? params.QueryTime : null;
1972
+ this.PageNum = 'PageNum' in params ? params.PageNum : null;
1973
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
1960
1974
 
1961
1975
  }
1962
1976
  }
@@ -2990,18 +3004,6 @@ class UpdateTableSchemaRequest extends AbstractModel {
2990
3004
  */
2991
3005
  this.InstanceId = null;
2992
3006
 
2993
- /**
2994
- * Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
2995
- * @type {string || null}
2996
- */
2997
- this.UserName = null;
2998
-
2999
- /**
3000
- * Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
3001
- * @type {string || null}
3002
- */
3003
- this.PassWord = null;
3004
-
3005
3007
  /**
3006
3008
  * Database name
3007
3009
  * @type {string || null}
@@ -3020,18 +3022,30 @@ class UpdateTableSchemaRequest extends AbstractModel {
3020
3022
  */
3021
3023
  this.Columns = null;
3022
3024
 
3023
- /**
3024
- * Index information. The inverted index and N-Gram index can be configured through this parameter. The Prefix index is related to the sort key and key column, and do not require additional configuration. Configure bloom_filter_columns in the table attribute when BloomFilter index is required.
3025
- * @type {Array.<IndexInfo> || null}
3026
- */
3027
- this.IndexInfos = null;
3028
-
3029
3025
  /**
3030
3026
  * Bucket information
3031
3027
  * @type {Distribution || null}
3032
3028
  */
3033
3029
  this.Distribution = null;
3034
3030
 
3031
+ /**
3032
+ * Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
3033
+ * @type {string || null}
3034
+ */
3035
+ this.UserName = null;
3036
+
3037
+ /**
3038
+ * Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
3039
+ * @type {string || null}
3040
+ */
3041
+ this.PassWord = null;
3042
+
3043
+ /**
3044
+ * Index information. The inverted index and N-Gram index can be configured through this parameter. The Prefix index is related to the sort key and key column, and do not require additional configuration. Configure bloom_filter_columns in the table attribute when BloomFilter index is required.
3045
+ * @type {Array.<IndexInfo> || null}
3046
+ */
3047
+ this.IndexInfos = null;
3048
+
3035
3049
  /**
3036
3050
  * Table description
3037
3051
  * @type {string || null}
@@ -3054,8 +3068,6 @@ class UpdateTableSchemaRequest extends AbstractModel {
3054
3068
  return;
3055
3069
  }
3056
3070
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
3057
- this.UserName = 'UserName' in params ? params.UserName : null;
3058
- this.PassWord = 'PassWord' in params ? params.PassWord : null;
3059
3071
  this.DbName = 'DbName' in params ? params.DbName : null;
3060
3072
  this.TableName = 'TableName' in params ? params.TableName : null;
3061
3073
 
@@ -3068,6 +3080,14 @@ class UpdateTableSchemaRequest extends AbstractModel {
3068
3080
  }
3069
3081
  }
3070
3082
 
3083
+ if (params.Distribution) {
3084
+ let obj = new Distribution();
3085
+ obj.deserialize(params.Distribution)
3086
+ this.Distribution = obj;
3087
+ }
3088
+ this.UserName = 'UserName' in params ? params.UserName : null;
3089
+ this.PassWord = 'PassWord' in params ? params.PassWord : null;
3090
+
3071
3091
  if (params.IndexInfos) {
3072
3092
  this.IndexInfos = new Array();
3073
3093
  for (let z in params.IndexInfos) {
@@ -3076,12 +3096,6 @@ class UpdateTableSchemaRequest extends AbstractModel {
3076
3096
  this.IndexInfos.push(obj);
3077
3097
  }
3078
3098
  }
3079
-
3080
- if (params.Distribution) {
3081
- let obj = new Distribution();
3082
- obj.deserialize(params.Distribution)
3083
- this.Distribution = obj;
3084
- }
3085
3099
  this.TableComment = 'TableComment' in params ? params.TableComment : null;
3086
3100
 
3087
3101
  if (params.Properties) {
@@ -8019,6 +8033,12 @@ class ExecuteSelectQueryRequest extends AbstractModel {
8019
8033
  */
8020
8034
  this.Query = null;
8021
8035
 
8036
+ /**
8037
+ * InstanceId
8038
+ * @type {string || null}
8039
+ */
8040
+ this.InstanceId = null;
8041
+
8022
8042
  /**
8023
8043
  * Page number, which is 1 by default.
8024
8044
  * @type {number || null}
@@ -8050,12 +8070,6 @@ class ExecuteSelectQueryRequest extends AbstractModel {
8050
8070
  */
8051
8071
  this.CatalogName = null;
8052
8072
 
8053
- /**
8054
- * InstanceId
8055
- * @type {string || null}
8056
- */
8057
- this.InstanceId = null;
8058
-
8059
8073
  }
8060
8074
 
8061
8075
  /**
@@ -8067,12 +8081,12 @@ class ExecuteSelectQueryRequest extends AbstractModel {
8067
8081
  }
8068
8082
  this.Database = 'Database' in params ? params.Database : null;
8069
8083
  this.Query = 'Query' in params ? params.Query : null;
8084
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8070
8085
  this.PageNum = 'PageNum' in params ? params.PageNum : null;
8071
8086
  this.PageSize = 'PageSize' in params ? params.PageSize : null;
8072
8087
  this.UserName = 'UserName' in params ? params.UserName : null;
8073
8088
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
8074
8089
  this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
8075
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8076
8090
 
8077
8091
  }
8078
8092
  }
@@ -8842,6 +8856,12 @@ class QueryTableDataRequest extends AbstractModel {
8842
8856
  */
8843
8857
  this.Table = null;
8844
8858
 
8859
+ /**
8860
+ * InstanceId
8861
+ * @type {string || null}
8862
+ */
8863
+ this.InstanceId = null;
8864
+
8845
8865
  /**
8846
8866
  * Array of fields to be queried
8847
8867
  * @type {Array.<string> || null}
@@ -8879,12 +8899,6 @@ class QueryTableDataRequest extends AbstractModel {
8879
8899
  */
8880
8900
  this.CatalogName = null;
8881
8901
 
8882
- /**
8883
- * InstanceId
8884
- * @type {string || null}
8885
- */
8886
- this.InstanceId = null;
8887
-
8888
8902
  }
8889
8903
 
8890
8904
  /**
@@ -8896,13 +8910,13 @@ class QueryTableDataRequest extends AbstractModel {
8896
8910
  }
8897
8911
  this.Database = 'Database' in params ? params.Database : null;
8898
8912
  this.Table = 'Table' in params ? params.Table : null;
8913
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8899
8914
  this.SelectedFields = 'SelectedFields' in params ? params.SelectedFields : null;
8900
8915
  this.PageNum = 'PageNum' in params ? params.PageNum : null;
8901
8916
  this.PageSize = 'PageSize' in params ? params.PageSize : null;
8902
8917
  this.UserName = 'UserName' in params ? params.UserName : null;
8903
8918
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
8904
8919
  this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
8905
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8906
8920
 
8907
8921
  }
8908
8922
  }
@@ -9782,7 +9796,7 @@ class InsertDatasToTableResponse extends AbstractModel {
9782
9796
 
9783
9797
  /**
9784
9798
  * Number of inserted data rows
9785
- * @type {string || null}
9799
+ * @type {number || null}
9786
9800
  */
9787
9801
  this.InsertCount = null;
9788
9802
 
@@ -9936,13 +9950,6 @@ class DescribeInstanceOperationHistoryRequest extends AbstractModel {
9936
9950
  */
9937
9951
  this.PassWord = null;
9938
9952
 
9939
- /**
9940
- * Information, deprecated.
9941
-
9942
- * @type {string || null}
9943
- */
9944
- this.Message = null;
9945
-
9946
9953
  }
9947
9954
 
9948
9955
  /**
@@ -9959,7 +9966,6 @@ class DescribeInstanceOperationHistoryRequest extends AbstractModel {
9959
9966
  this.EndTime = 'EndTime' in params ? params.EndTime : null;
9960
9967
  this.UserName = 'UserName' in params ? params.UserName : null;
9961
9968
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
9962
- this.Message = 'Message' in params ? params.Message : null;
9963
9969
 
9964
9970
  }
9965
9971
  }
@@ -10264,6 +10270,12 @@ class ExecuteParametrizedQueryRequest extends AbstractModel {
10264
10270
  */
10265
10271
  this.Sql = null;
10266
10272
 
10273
+ /**
10274
+ * InstanceId
10275
+ * @type {string || null}
10276
+ */
10277
+ this.InstanceId = null;
10278
+
10267
10279
  /**
10268
10280
  * Query parameter array.
10269
10281
  * @type {Array.<PropertiesMap> || null}
@@ -10300,12 +10312,6 @@ class ExecuteParametrizedQueryRequest extends AbstractModel {
10300
10312
  */
10301
10313
  this.CatalogName = null;
10302
10314
 
10303
- /**
10304
- * InstanceId
10305
- * @type {string || null}
10306
- */
10307
- this.InstanceId = null;
10308
-
10309
10315
  }
10310
10316
 
10311
10317
  /**
@@ -10317,6 +10323,7 @@ class ExecuteParametrizedQueryRequest extends AbstractModel {
10317
10323
  }
10318
10324
  this.Database = 'Database' in params ? params.Database : null;
10319
10325
  this.Sql = 'Sql' in params ? params.Sql : null;
10326
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
10320
10327
 
10321
10328
  if (params.QueryParameter) {
10322
10329
  this.QueryParameter = new Array();
@@ -10331,7 +10338,6 @@ class ExecuteParametrizedQueryRequest extends AbstractModel {
10331
10338
  this.UserName = 'UserName' in params ? params.UserName : null;
10332
10339
  this.PassWord = 'PassWord' in params ? params.PassWord : null;
10333
10340
  this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
10334
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
10335
10341
 
10336
10342
  }
10337
10343
  }
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1018";
1
+ const sdkVersion = "3.0.1020";
2
2
  module.exports = sdkVersion
@@ -1408,7 +1408,7 @@ Note:
1408
1408
  }
1409
1409
 
1410
1410
  /**
1411
- * This API is used to query the data of billable LVB bandwidth and traffic.
1411
+ * This API is used to query the data of billable bandwidth and traffic.
1412
1412
  * @param {DescribeBillBandwidthAndFluxListRequest} req
1413
1413
  * @param {function(string, DescribeBillBandwidthAndFluxListResponse):void} cb
1414
1414
  * @public
@@ -530,7 +530,7 @@ class DescribeBillBandwidthAndFluxListResponse extends AbstractModel {
530
530
  this.DataInfoList = null;
531
531
 
532
532
  /**
533
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
533
+ * 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.
534
534
  * @type {string || null}
535
535
  */
536
536
  this.RequestId = null;
@@ -2712,7 +2712,7 @@ class DescribeLiveTranscodeDetailInfoResponse extends AbstractModel {
2712
2712
  this.TotalPage = null;
2713
2713
 
2714
2714
  /**
2715
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2715
+ * 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.
2716
2716
  * @type {string || null}
2717
2717
  */
2718
2718
  this.RequestId = null;
@@ -9212,7 +9212,7 @@ class DescribeLiveTranscodeDetailInfoRequest extends AbstractModel {
9212
9212
  /**
9213
9213
  * Query date (UTC+8)
9214
9214
  Format: yyyymmdd
9215
- Note: you can query the statistics for a day in the past three months, with yesterday as the latest date allowed.
9215
+ Note: you can query the statistics for a day in the past one month, with yesterday as the latest date allowed.
9216
9216
  * @type {string || null}
9217
9217
  */
9218
9218
  this.DayTime = null;
@@ -9234,7 +9234,7 @@ Value range: [10,1000].
9234
9234
  /**
9235
9235
  * Start date (UTC+8)
9236
9236
  Format: yyyymmdd
9237
- Note: details for the last three months can be queried.
9237
+ Note: details for the last one month can be queried.
9238
9238
  * @type {string || null}
9239
9239
  */
9240
9240
  this.StartDayTime = null;
@@ -9242,7 +9242,7 @@ Note: details for the last three months can be queried.
9242
9242
  /**
9243
9243
  * End date (UTC+8)
9244
9244
  Format: yyyymmdd
9245
- Note: you can query the statistics for a period in the past three months, with yesterday as the latest date allowed. You must specify either `DayTime`, or `StartDayTime` and `EndDayTime`. If you specify all three parameters, only `DayTime` will be applied.
9245
+ Note: you can query the statistics for a period in the past one month, with yesterday as the latest date allowed. You must specify either `DayTime`, or `StartDayTime` and `EndDayTime`. If you specify all three parameters, only `DayTime` will be applied.
9246
9246
  * @type {string || null}
9247
9247
  */
9248
9248
  this.EndDayTime = null;