tencentcloud-sdk-nodejs 4.1.236 → 4.1.238

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.
Files changed (40) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cynosdb/v20190107/cynosdb_client.js +6 -0
  3. package/es/services/ga2/v20250115/ga2_client.js +16 -4
  4. package/es/services/iotexplorer/v20190423/iotexplorer_client.js +74 -14
  5. package/es/services/mqtt/v20240516/mqtt_client.js +11 -5
  6. package/es/services/tdai/v20250717/tdai_client.js +50 -23
  7. package/package.json +1 -1
  8. package/tencentcloud/common/sdk_version.d.ts +1 -1
  9. package/tencentcloud/common/sdk_version.js +1 -1
  10. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +8 -0
  11. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
  12. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +4 -0
  13. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +144 -88
  14. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +5 -7
  15. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +9 -1
  16. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +12 -0
  17. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +302 -58
  18. package/tencentcloud/services/es/v20180416/es_models.d.ts +70 -67
  19. package/tencentcloud/services/ga2/v20250115/ga2_client.d.ts +21 -5
  20. package/tencentcloud/services/ga2/v20250115/ga2_client.js +30 -6
  21. package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +183 -22
  22. package/tencentcloud/services/hai/v20230812/hai_models.d.ts +16 -0
  23. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +98 -16
  24. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +144 -22
  25. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +1330 -172
  26. package/tencentcloud/services/mqtt/v20240516/mqtt_client.d.ts +17 -9
  27. package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +23 -11
  28. package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +114 -37
  29. package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +50 -146
  30. package/tencentcloud/services/tcaplusdb/v20190823/tcaplusdb_models.d.ts +12 -12
  31. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +82 -19
  32. package/tencentcloud/services/tdai/v20250717/tdai_client.d.ts +63 -27
  33. package/tencentcloud/services/tdai/v20250717/tdai_client.js +93 -39
  34. package/tencentcloud/services/tdai/v20250717/tdai_models.d.ts +454 -16
  35. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +5 -1
  36. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +37 -9
  37. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +1 -1
  38. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +1 -1
  39. package/tencentcloud/services/waf/v20180125/waf_client.js +1 -1
  40. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +531 -545
@@ -12,17 +12,46 @@ export interface RemoveChatRequest {
12
12
  ChatId?: string;
13
13
  }
14
14
  /**
15
- * 风险SQL智能体参数
15
+ * DestroyMemoryPlusSpace返回参数结构体
16
16
  */
17
- export interface SqlAgentParameter {
17
+ export interface DestroyMemoryPlusSpaceResponse {
18
18
  /**
19
- * 数据库实例信息列表
19
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20
20
  */
21
- InstanceInfos?: Array<InstanceInfos>;
21
+ RequestId?: string;
22
+ }
23
+ /**
24
+ * DescribeMemoryPlusSpaces请求参数结构体
25
+ */
26
+ export interface DescribeMemoryPlusSpacesRequest {
22
27
  /**
23
- * 代码仓库信息
28
+ * <p>查询列表的起始位置(偏移量)。用于分页查询,指明从符合条件的第几条数据开始返回。</p>
24
29
  */
25
- CodeRepo?: CodeRepo;
30
+ Offset?: number;
31
+ /**
32
+ * <p>单次查询返回的记录数量上限(分页大小)。</p>
33
+ */
34
+ Limit?: number;
35
+ /**
36
+ * <p>查询实例名称或者实例id</p>
37
+ */
38
+ SearchKeys?: Array<string>;
39
+ /**
40
+ * <p>实例状态</p><p>枚举值:</p><ul><li>1: 运行中</li><li>2: 创建中</li><li>3: 删除中</li><li>4: 已删除</li><li>5: 隔离中</li><li>6: 已隔离(进入回收站)</li><li>7: 恢复中(从回收站恢复)</li></ul>
41
+ */
42
+ Status?: Array<number | bigint>;
43
+ /**
44
+ * <p>资源标签</p>
45
+ */
46
+ ResourceTags?: Array<ResourceTag>;
47
+ /**
48
+ * <p>排序字段</p>
49
+ */
50
+ Orderby?: string;
51
+ /**
52
+ * <p>排序方向</p><p>枚举值:</p><ul><li>ASC: 升序</li><li>DESC: 降序</li></ul>
53
+ */
54
+ OrderDirection?: string;
26
55
  }
27
56
  /**
28
57
  * 发货步骤描述
@@ -74,6 +103,91 @@ export interface AgentDutyTask {
74
103
  */
75
104
  Extra?: Array<ExtraInfo>;
76
105
  }
106
+ /**
107
+ * DescribeMemoryPlusSpace返回参数结构体
108
+ */
109
+ export interface DescribeMemoryPlusSpaceResponse {
110
+ /**
111
+ * <p>Memory 实例 ID。</p>
112
+ */
113
+ SpaceId?: string;
114
+ /**
115
+ * <p>Memory 实例的自定义名称。</p>
116
+ */
117
+ Name?: string;
118
+ /**
119
+ * <p>Memory 实例的简要描述,包括使用场景、用途或背景信息,便于日常运维识别。</p>
120
+ */
121
+ Description?: string;
122
+ /**
123
+ * <p>腾讯云账号的 APPID。</p>
124
+ */
125
+ AppId?: number;
126
+ /**
127
+ * <p>Memroy 实例所属地域。</p>
128
+ */
129
+ Region?: string;
130
+ /**
131
+ * <p>Memory 实例的标签信息。</p>
132
+ */
133
+ ResourceTags?: Array<ResourceTag>;
134
+ /**
135
+ * <p>Memory 实例当前运行状态。</p><ul><li>1:运行中。</li><li>2:创建中。</li><li>3:销毁中。</li><li>4:已销毁。</li><li>5:隔离中。</li><li>6:已隔离。</li><li>7:恢复中。</li></ul>
136
+ */
137
+ Status?: number;
138
+ /**
139
+ * <p>Memory 实例计费模式。</p><ul><li>-1:免费体验。</li><li>0:包年包月。</li><li>1:按量计费。</li></ul>
140
+ */
141
+ PayMode?: number;
142
+ /**
143
+ * <p>Memory 版本信息:v1。</p>
144
+ */
145
+ Version?: string;
146
+ /**
147
+ * <p>Memory 当前已写入的记忆条数。</p>
148
+ */
149
+ MemoryUsage?: number;
150
+ /**
151
+ * <p>Memory 实例记忆条数配额上限。</p>
152
+ */
153
+ MemoryLimit?: number;
154
+ /**
155
+ * <p>Memory 实例当前 Credit 的使用数量。</p>
156
+ */
157
+ CreditUsage?: number;
158
+ /**
159
+ * <p>Memory 实例 Credit 的最大使用数量。</p>
160
+ */
161
+ CreditLimit?: number;
162
+ /**
163
+ * <p>Memory 实例的内网访问地址。</p>
164
+ */
165
+ AccessUrl?: string;
166
+ /**
167
+ * <p>Memory 实例的外网访问地址。</p>
168
+ */
169
+ WanAccessUrl?: string;
170
+ /**
171
+ * <p>Memory 实例的创建时间。</p>
172
+ */
173
+ CreatedAt?: string;
174
+ /**
175
+ * <p>Memory 实例的到期时间。</p>
176
+ */
177
+ ExpiredAt?: string;
178
+ /**
179
+ * <p>Memory 实例的隔离时间。</p>
180
+ */
181
+ IsolatedAt?: string;
182
+ /**
183
+ * <p>到期销毁时间</p>
184
+ */
185
+ DestroyAt?: string;
186
+ /**
187
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
188
+ */
189
+ RequestId?: string;
190
+ }
77
191
  /**
78
192
  * DescribeAgentDutyTaskDetail请求参数结构体
79
193
  */
@@ -225,6 +339,19 @@ export interface CreateAgentInstanceRequest {
225
339
  */
226
340
  Description?: string;
227
341
  }
342
+ /**
343
+ * 风险SQL智能体参数
344
+ */
345
+ export interface SqlAgentParameter {
346
+ /**
347
+ * 数据库实例信息列表
348
+ */
349
+ InstanceInfos?: Array<InstanceInfos>;
350
+ /**
351
+ * 代码仓库信息
352
+ */
353
+ CodeRepo?: CodeRepo;
354
+ }
228
355
  /**
229
356
  * databaseClaw实例配置信息
230
357
  */
@@ -308,6 +435,27 @@ export interface Parameter {
308
435
  */
309
436
  ValueType: string;
310
437
  }
438
+ /**
439
+ * vdb数据库文档中键值结构
440
+ */
441
+ export interface VDBFieldMap {
442
+ /**
443
+ * <p>vdb document字段名</p>
444
+ */
445
+ Name?: string;
446
+ /**
447
+ * <p>vdb document字段值</p>
448
+ */
449
+ Value?: string;
450
+ /**
451
+ * <p>vdb document字段类型</p>
452
+ */
453
+ Type?: string;
454
+ /**
455
+ * <p>字段描述</p>
456
+ */
457
+ Description?: string;
458
+ }
311
459
  /**
312
460
  * databaseClaw实例部署详情
313
461
  */
@@ -334,6 +482,23 @@ export interface RecoverAgentInstanceResponse {
334
482
  */
335
483
  RequestId?: string;
336
484
  }
485
+ /**
486
+ * DescribeMemoryPlusRecord返回参数结构体
487
+ */
488
+ export interface DescribeMemoryPlusRecordResponse {
489
+ /**
490
+ * <p>查询结果总数量。</p>
491
+ */
492
+ TotalCount?: number;
493
+ /**
494
+ * <p>查询的记忆数据。</p>
495
+ */
496
+ Documents?: Array<VDBDocument>;
497
+ /**
498
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
499
+ */
500
+ RequestId?: string;
501
+ }
337
502
  /**
338
503
  * DescribeAgentInstances请求参数结构体
339
504
  */
@@ -379,6 +544,15 @@ export interface DescribeAgentInstancesRequest {
379
544
  */
380
545
  InstanceType?: string;
381
546
  }
547
+ /**
548
+ * DestroyMemoryPlusSpace请求参数结构体
549
+ */
550
+ export interface DestroyMemoryPlusSpaceRequest {
551
+ /**
552
+ * <p>指定需要销毁的 Memory 实例 ID 列表。</p>
553
+ */
554
+ SpaceIds: Array<string>;
555
+ }
382
556
  /**
383
557
  * DescribeAgents返回参数结构体
384
558
  */
@@ -446,6 +620,24 @@ export interface CreateChatCompletionRequest {
446
620
  */
447
621
  IsChatHidden?: boolean;
448
622
  }
623
+ /**
624
+ * ModifyMemoryPlusSpace返回参数结构体
625
+ */
626
+ export interface ModifyMemoryPlusSpaceResponse {
627
+ /**
628
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
629
+ */
630
+ RequestId?: string;
631
+ }
632
+ /**
633
+ * DescribeServiceAccessKey请求参数结构体
634
+ */
635
+ export interface DescribeServiceAccessKeyRequest {
636
+ /**
637
+ * <p>指定 Memroy 实例 ID。</p>
638
+ */
639
+ ServiceId: string;
640
+ }
449
641
  /**
450
642
  * DescribeReportUrl返回参数结构体
451
643
  */
@@ -477,6 +669,28 @@ export interface ChatDetail {
477
669
  */
478
670
  AssistantMessage?: Array<CreateChatCompletionRes>;
479
671
  }
672
+ /**
673
+ * CreateMemoryPlusSpace返回参数结构体
674
+ */
675
+ export interface CreateMemoryPlusSpaceResponse {
676
+ /**
677
+ * <p>实例 ID 列表。</p>
678
+ */
679
+ SpaceIds?: Array<string>;
680
+ /**
681
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
682
+ */
683
+ RequestId?: string;
684
+ }
685
+ /**
686
+ * DescribeMemoryPlusSpace请求参数结构体
687
+ */
688
+ export interface DescribeMemoryPlusSpaceRequest {
689
+ /**
690
+ * <p>指定查询的 Memory 实例 ID。</p>
691
+ */
692
+ SpaceId: string;
693
+ }
480
694
  /**
481
695
  * IsolateAgentInstance返回参数结构体
482
696
  */
@@ -486,6 +700,40 @@ export interface IsolateAgentInstanceResponse {
486
700
  */
487
701
  RequestId?: string;
488
702
  }
703
+ /**
704
+ * vdb数据库文档结构
705
+ */
706
+ export interface VDBDocument {
707
+ /**
708
+ * <p>vdb document数据id</p>
709
+ */
710
+ Id?: string;
711
+ /**
712
+ * <p>vdb document数据标量字段</p>
713
+ */
714
+ Fields?: Array<VDBFieldMap>;
715
+ }
716
+ /**
717
+ * CreateMemoryPlusSpace请求参数结构体
718
+ */
719
+ export interface CreateMemoryPlusSpaceRequest {
720
+ /**
721
+ * <p>Memory 实例的自定义名称,用于唯一标识和管理实例。支持 60 个字符内的中英文、数字、中划线(-)及下划线(_)。</p>
722
+ */
723
+ Name?: string;
724
+ /**
725
+ * <p>emory 实例的简要描述,包括使用场景、用途或背景信息,便于日常运维识别。长度限制为 0-200 个字符。</p>
726
+ */
727
+ Description?: string;
728
+ /**
729
+ * <p>以键值对(Key-Value)形式为 Memory 实例绑定的标签,用于项目管理、成本分摊、环境隔离等场景。</p>
730
+ */
731
+ ResourceTags?: Array<ResourceTag>;
732
+ /**
733
+ * <p>单次批量创建 Memory 实例的数量。取值范围为 1-50。</p>
734
+ */
735
+ GoodsNum?: number;
736
+ }
489
737
  /**
490
738
  * TerminateAgentInstance返回参数结构体
491
739
  */
@@ -521,6 +769,15 @@ export interface TagItem {
521
769
  */
522
770
  TagValue?: string;
523
771
  }
772
+ /**
773
+ * RecoverMemoryPlusSpace返回参数结构体
774
+ */
775
+ export interface RecoverMemoryPlusSpaceResponse {
776
+ /**
777
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
778
+ */
779
+ RequestId?: string;
780
+ }
524
781
  /**
525
782
  * 智能体值守任务额外信息
526
783
  */
@@ -559,6 +816,15 @@ export interface CreateAgentInstanceResponse {
559
816
  */
560
817
  RequestId?: string;
561
818
  }
819
+ /**
820
+ * RecoverMemoryPlusSpace请求参数结构体
821
+ */
822
+ export interface RecoverMemoryPlusSpaceRequest {
823
+ /**
824
+ * <p>指定需要恢复的 Memory 实例 ID 列表。</p>
825
+ */
826
+ SpaceIds: Array<string>;
827
+ }
562
828
  /**
563
829
  * DescribeAgentDutyTasks请求参数结构体
564
830
  */
@@ -676,13 +942,45 @@ export interface ModifyChatTitleRequest {
676
942
  Title?: string;
677
943
  }
678
944
  /**
679
- * PauseAgentWork返回参数结构体
945
+ * DescribeMemoryPlusRecord请求参数结构体
680
946
  */
681
- export interface PauseAgentWorkResponse {
947
+ export interface DescribeMemoryPlusRecordRequest {
682
948
  /**
683
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
949
+ * <p>查询的 Memory 实例 ID。</p>
684
950
  */
685
- RequestId?: string;
951
+ SpaceId: string;
952
+ /**
953
+ * <p>查询列表的起始位置(偏移量)。用于分页查询,指明从符合条件的第几条数据开始返回。</p>
954
+ */
955
+ Offset?: number;
956
+ /**
957
+ * <p>单次查询返回的记录数量上限(分页大小)。</p>
958
+ */
959
+ Limit?: number;
960
+ /**
961
+ * <p>查询的记忆类型。</p><ul><li>conversation:L0 原始对话。</li><li>memory:L1 原子记忆。</li><li>scene:L2 场景记忆。</li><li>persona:L3 个性化画像。</li><li>memory/persona:L1 原子记忆-画像型。</li><li>memory/episodic:L1 原子记忆-事件型。</li><li>memory/instruction:L1 原子记忆-指令型。</li></ul>
962
+ */
963
+ RecordType?: string;
964
+ /**
965
+ * <p>指定返回记录中的特定字段。</p>
966
+ */
967
+ Output?: Array<string>;
968
+ /**
969
+ * <p>过滤条件,当前仅支持 <strong>RecordType</strong> 为 <strong>conversation</strong> 的 <strong>session_id</strong> 过滤。</p>
970
+ */
971
+ Filters?: Array<VDBFieldMap>;
972
+ /**
973
+ * <p>查询结果列表的排序规则。</p><ul><li>ASC:升序。</li><li>DESC:降序。</li></ul>
974
+ */
975
+ OrderDirection?: string;
976
+ /**
977
+ * <p>查询时间范围的起始时间点。</p>
978
+ */
979
+ StartTime?: string;
980
+ /**
981
+ * <p>查询时间范围的结束时间点。</p>
982
+ */
983
+ EndTime?: string;
686
984
  }
687
985
  /**
688
986
  * ModifyAgentInstanceParameters返回参数结构体
@@ -702,6 +1000,59 @@ export interface IsolateAgentInstanceRequest {
702
1000
  */
703
1001
  InstanceId: string;
704
1002
  }
1003
+ /**
1004
+ * Memory正式版实例列表元素信息
1005
+ */
1006
+ export interface MemoryPlusInfo {
1007
+ /**
1008
+ * <p>实例id</p>
1009
+ */
1010
+ SpaceId?: string;
1011
+ /**
1012
+ * <p>实例名称</p>
1013
+ */
1014
+ Name?: string;
1015
+ /**
1016
+ * <p>描述</p>
1017
+ */
1018
+ Description?: string;
1019
+ /**
1020
+ * <p>实例状态</p>
1021
+ */
1022
+ Status?: number;
1023
+ /**
1024
+ * <p>地域</p>
1025
+ */
1026
+ Region?: string;
1027
+ /**
1028
+ * <p>记忆条数</p>
1029
+ */
1030
+ MemoryUsage?: number;
1031
+ /**
1032
+ * <p>当月积分数</p>
1033
+ */
1034
+ CreditUsage?: number;
1035
+ /**
1036
+ * <p>资源标签</p>
1037
+ */
1038
+ ResourceTags?: Array<ResourceTag>;
1039
+ /**
1040
+ * <p>创建时间</p>
1041
+ */
1042
+ CreatedAt?: string;
1043
+ /**
1044
+ * <p>隔离时间</p>
1045
+ */
1046
+ IsolatedAt?: string;
1047
+ /**
1048
+ * <p>到期时间</p>
1049
+ */
1050
+ ExpiredAt?: string;
1051
+ /**
1052
+ * <p>到期销毁时间</p>
1053
+ */
1054
+ DestroyAt?: string;
1055
+ }
705
1056
  /**
706
1057
  * 通过标签对资源进行过滤
707
1058
  */
@@ -724,6 +1075,41 @@ export interface DescribeAgentInstanceRequest {
724
1075
  */
725
1076
  InstanceId?: string;
726
1077
  }
1078
+ /**
1079
+ * IsolateMemoryPlusSpace返回参数结构体
1080
+ */
1081
+ export interface IsolateMemoryPlusSpaceResponse {
1082
+ /**
1083
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1084
+ */
1085
+ RequestId?: string;
1086
+ }
1087
+ /**
1088
+ * DescribeMemoryPlusSpaces返回参数结构体
1089
+ */
1090
+ export interface DescribeMemoryPlusSpacesResponse {
1091
+ /**
1092
+ * <p>查询结果总数量。</p>
1093
+ */
1094
+ TotalCount?: number;
1095
+ /**
1096
+ * <p>实例列表信息</p>
1097
+ */
1098
+ Items?: Array<MemoryPlusInfo>;
1099
+ /**
1100
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1101
+ */
1102
+ RequestId?: string;
1103
+ }
1104
+ /**
1105
+ * IsolateMemoryPlusSpace请求参数结构体
1106
+ */
1107
+ export interface IsolateMemoryPlusSpaceRequest {
1108
+ /**
1109
+ * <p>指定需要放入回收站的 Memory 实例 ID 列表。</p>
1110
+ */
1111
+ SpaceIds: Array<string>;
1112
+ }
727
1113
  /**
728
1114
  * ModifyAgentInstanceParameters请求参数结构体
729
1115
  */
@@ -754,6 +1140,32 @@ export interface ContinueAgentWorkResponse {
754
1140
  */
755
1141
  RequestId?: string;
756
1142
  }
1143
+ /**
1144
+ * DescribeServiceAccessKey返回参数结构体
1145
+ */
1146
+ export interface DescribeServiceAccessKeyResponse {
1147
+ /**
1148
+ * <p>访问密钥。</p>
1149
+ */
1150
+ AuthKey?: string;
1151
+ /**
1152
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1153
+ */
1154
+ RequestId?: string;
1155
+ }
1156
+ /**
1157
+ * StartAgentTask返回参数结构体
1158
+ */
1159
+ export interface StartAgentTaskResponse {
1160
+ /**
1161
+ * 任务ID
1162
+ */
1163
+ TaskId?: string;
1164
+ /**
1165
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1166
+ */
1167
+ RequestId?: string;
1168
+ }
757
1169
  /**
758
1170
  * DescribeAgentInstances返回参数结构体
759
1171
  */
@@ -1052,6 +1464,23 @@ export interface DescribeAgentDutyTaskDetailResponse {
1052
1464
  */
1053
1465
  RequestId?: string;
1054
1466
  }
1467
+ /**
1468
+ * ModifyMemoryPlusSpace请求参数结构体
1469
+ */
1470
+ export interface ModifyMemoryPlusSpaceRequest {
1471
+ /**
1472
+ * <p>指定需要修改的 Memory 实例 ID。</p>
1473
+ */
1474
+ SpaceId: string;
1475
+ /**
1476
+ * <p>指定修改后的实例名称。支持 60 个字符内 的中英文、数字、中划线(-)及下划线(_)。</p>
1477
+ */
1478
+ Name?: string;
1479
+ /**
1480
+ * <p>指定修改后的实例描述。最多支持 200 个字符。</p>
1481
+ */
1482
+ Description?: string;
1483
+ }
1055
1484
  /**
1056
1485
  * 智能体实例
1057
1486
  */
@@ -1146,6 +1575,15 @@ export interface RemoveChatResponse {
1146
1575
  */
1147
1576
  RequestId?: string;
1148
1577
  }
1578
+ /**
1579
+ * PauseAgentWork返回参数结构体
1580
+ */
1581
+ export interface PauseAgentWorkResponse {
1582
+ /**
1583
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1584
+ */
1585
+ RequestId?: string;
1586
+ }
1149
1587
  /**
1150
1588
  * TerminateAgentInstance请求参数结构体
1151
1589
  */
@@ -1156,15 +1594,15 @@ export interface TerminateAgentInstanceRequest {
1156
1594
  InstanceId: string;
1157
1595
  }
1158
1596
  /**
1159
- * StartAgentTask返回参数结构体
1597
+ * 资源tag
1160
1598
  */
1161
- export interface StartAgentTaskResponse {
1599
+ export interface ResourceTag {
1162
1600
  /**
1163
- * 任务ID
1601
+ * 标签键
1164
1602
  */
1165
- TaskId?: string;
1603
+ TagKey?: string;
1166
1604
  /**
1167
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1605
+ * 标签值
1168
1606
  */
1169
- RequestId?: string;
1607
+ TagValue?: string;
1170
1608
  }
@@ -11086,6 +11086,10 @@ export interface RateLimitingRule {
11086
11086
  * 精准速率限制的具体内容,需符合表达式语法,详细规范参见[产品文档](https://cloud.tencent.com/document/product/1552/125343)。
11087
11087
  */
11088
11088
  Condition?: string;
11089
+ /**
11090
+ * 限速方式。在统计时间窗口 CountingPeriod 内,对满足特征 CountBy 的请求,支持配置以下限速方式:<li>Block: 阻断访问源。当统计次数超过阈值 MaxRequestThreshold 时,在 ActionDuration 时长内,对满足特征的所有后续请求执行 Action 处置;</li><li>Throttle: 仅处置超额请求。当统计次数超过阈值 MaxRequestThreshold 时,仅对超过阈值的请求执行 Action 处置,窗口结束后停止处置。此时,ActionDuration 参数将被忽略。</li><br />默认值为 Block。
11091
+ */
11092
+ Mode?: string;
11089
11093
  /**
11090
11094
  * 速率阈值请求特征的匹配方式, 当 Enabled 为 on 时,此字段必填。<br /><br />当条件有多个时,将组合多个条件共同进行统计计算,条件最多不可超过5条。取值有:<br/><li><b>http.request.ip</b>:客户端 IP;</li><li><b>http.request.xff_header_ip</b>:客户端 IP(优先匹配 XFF 头部);</li><li><b>http.request.uri.path</b>:请求的访问路径;</li><li><b>http.request.cookies['session']</b>:名称为 session 的 Cookie,其中 session 可替换为自己指定的参数;</li><li><b>http.request.headers['user-agent']</b>:名称为 user-agent 的 HTTP 头部,其中 user-agent 可替换为自己指定的参数;</li><li><b>http.request.ja3</b>:请求的 JA3 指纹;</li><li><b>http.request.ja4</b>:请求的 JA4 指纹;</li><li><b>http.request.uri.query['test']</b>:名称为 test 的 URL 查询参数,其中 test 可替换为自己指定的参数。</li>
11091
11095
  */
@@ -11099,7 +11103,7 @@ export interface RateLimitingRule {
11099
11103
  */
11100
11104
  CountingPeriod?: string;
11101
11105
  /**
11102
- * Action 动作的持续时长,单位仅支持:<li>s:秒,取值 1 ~ 120;</li><li>m:分钟,取值 1 ~ 120;</li><li>h:小时,取值 1 ~ 48;</li><li>d:天,取值 1 ~ 30。</li>
11106
+ * Action 动作的持续时长,单位仅支持:<li>s:秒,取值 1 ~ 120;</li><li>m:分钟,取值 1 ~ 120;</li><li>h:小时,取值 1 ~ 48;</li><li>d:天,取值 1 ~ 30。</li><br />当 Mode 为 Throttle 时,此参数将被忽略,不会生效。
11103
11107
  */
11104
11108
  ActionDuration?: string;
11105
11109
  /**