tencentcloud-sdk-nodejs-adp 4.1.310 → 4.1.311

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-adp",
3
- "version": "4.1.310",
3
+ "version": "4.1.311",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -236,7 +236,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
236
236
  */
237
237
  DescribeReleaseList(req: DescribeReleaseListRequest, cb?: (error: string, rep: DescribeReleaseListResponse) => void): Promise<DescribeReleaseListResponse>;
238
238
  /**
239
- * 创建Agent
239
+ * 创建Agent(目前仅支持claw模式)
240
240
  */
241
241
  CreateAgent(req: CreateAgentRequest, cb?: (error: string, rep: CreateAgentResponse) => void): Promise<CreateAgentResponse>;
242
242
  /**
@@ -372,7 +372,7 @@ class Client extends TencentCloudCommon.AbstractClient {
372
372
  return this.request("DescribeReleaseList", req, cb);
373
373
  }
374
374
  /**
375
- * 创建Agent
375
+ * 创建Agent(目前仅支持claw模式)
376
376
  */
377
377
  async CreateAgent(req, cb) {
378
378
  return this.request("CreateAgent", req, cb);
@@ -377,20 +377,24 @@ export interface AuthConfig {
377
377
  */
378
378
  AuthType: number;
379
379
  /**
380
- * API Key授权配置
380
+ * <p>API Key授权配置</p>
381
381
  注意:此字段可能返回 null,表示取不到有效值。
382
382
  */
383
383
  ApiKeyAuthConfig?: ApiKeyAuthConfig;
384
384
  /**
385
- * CAM授权配置
385
+ * <p>CAM授权配置</p>
386
386
  注意:此字段可能返回 null,表示取不到有效值。
387
387
  */
388
388
  CamAuthConfig?: CamAuthConfig;
389
389
  /**
390
- * OAuth2.0授权配置
390
+ * <p>OAuth2.0授权配置</p>
391
391
  注意:此字段可能返回 null,表示取不到有效值。
392
392
  */
393
393
  OAuthConfig?: OAuthConfig;
394
+ /**
395
+ * <p>AccessKey授权配置</p>
396
+ */
397
+ AccessKeyAuthConfig?: AccessKeyAuthConfig;
394
398
  }
395
399
  /**
396
400
  * AppShareAccessControl
@@ -2070,27 +2074,29 @@ export interface ConversationContent {
2070
2074
  */
2071
2075
  export interface CamAuthConfig {
2072
2076
  /**
2073
- * 角色名称
2077
+ * <p>角色名称</p>
2074
2078
  */
2075
2079
  RoleName: string;
2076
2080
  /**
2077
- * 密钥位置 HEADER/QUERY
2078
-
2079
- 枚举值:
2080
- | uint | 描述 |
2081
- | --- | --- |
2082
- | 0 | 头鉴权 |
2083
- | 1 | 请求信息鉴权 |
2081
+ * <p>密钥位置 HEADER/QUERY</p><p>枚举值:<br>| uint | 描述 |<br>| --- | --- |<br>| 0 | 头鉴权 |<br>| 1 | 请求信息鉴权 |</p>
2084
2082
  */
2085
2083
  KeyLocation?: number;
2086
2084
  /**
2087
- * SecretId字段名称
2085
+ * <p>SecretId字段名称</p>
2088
2086
  */
2089
2087
  SecretIdName?: string;
2090
2088
  /**
2091
- * SecretKey字段名称
2089
+ * <p>SecretKey字段名称</p>
2092
2090
  */
2093
2091
  SecretKeyName?: string;
2092
+ /**
2093
+ * <p>CAM Access Key 字段配置</p>
2094
+ */
2095
+ ParamList?: Array<AccessKeyParamConfig>;
2096
+ /**
2097
+ * <p>是否支持CAM角色授权</p>
2098
+ */
2099
+ SupportRoleAuth?: boolean;
2094
2100
  }
2095
2101
  /**
2096
2102
  * DescribeSkillReferenceList返回参数结构体
@@ -2100,6 +2106,10 @@ export interface DescribeSkillReferenceListResponse {
2100
2106
  * <p>按 SkillRefType 分组的引用汇总:某类型 total_count = 0 时不入组(不返回空占位) 本期同时落 OPENCLAW / AGENT / CORP_ASSISTANT 三路</p>
2101
2107
  */
2102
2108
  ReferenceList?: Array<SkillReferenceGroup>;
2109
+ /**
2110
+ * <p>当前用户是否允许强制删除有引用的Skill</p>
2111
+ */
2112
+ AllowForceModify?: boolean;
2103
2113
  /**
2104
2114
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2105
2115
  */
@@ -3070,6 +3080,14 @@ export interface AgentPluginConfig {
3070
3080
  * 插件概要信息(用于插件列表)
3071
3081
  */
3072
3082
  export interface PluginSummary {
3083
+ /**
3084
+ * <p>插件配置信息</p>
3085
+ */
3086
+ Config?: PluginConfig;
3087
+ /**
3088
+ * <p>是否已配置共享</p>
3089
+ */
3090
+ IsShared?: boolean;
3073
3091
  /**
3074
3092
  * <p>插件运营管理信息</p>
3075
3093
  */
@@ -3082,6 +3100,10 @@ export interface PluginSummary {
3082
3100
  * <p>插件基础信息</p>
3083
3101
  */
3084
3102
  Profile?: PluginProfile;
3103
+ /**
3104
+ * <p>插件所属空间 ID;内置插件为空</p>
3105
+ */
3106
+ SpaceId?: string;
3085
3107
  /**
3086
3108
  * <p>插件统计信息</p>
3087
3109
  */
@@ -3091,17 +3113,17 @@ export interface PluginSummary {
3091
3113
  */
3092
3114
  Status?: number;
3093
3115
  /**
3094
- * <p>用户维度的插件状态信息</p>
3116
+ * <p>工具信息</p>
3095
3117
  */
3096
- UserState?: PluginUserState;
3118
+ ToolList?: Array<ToolSummary>;
3097
3119
  /**
3098
- * <p>插件配置信息</p>
3120
+ * <p>用户维度的插件状态信息</p>
3099
3121
  */
3100
- Config?: PluginConfig;
3122
+ UserState?: PluginUserState;
3101
3123
  /**
3102
- * <p>工具信息</p>
3124
+ * <p>更新时间,Unix时间戳</p><p>单位:秒</p>
3103
3125
  */
3104
- ToolList?: Array<ToolSummary>;
3126
+ UpdateTime?: string;
3105
3127
  }
3106
3128
  /**
3107
3129
  * CreateWorkspaceCredential返回参数结构体
@@ -4569,11 +4591,11 @@ export interface ManualOnlySchedule {
4569
4591
  */
4570
4592
  export interface DescribePluginSummaryListRequest {
4571
4593
  /**
4572
- * 空间ID,查询空间内的插件列表时使用
4594
+ * <p>空间ID,查询空间内的插件列表时使用</p>
4573
4595
  */
4574
4596
  SpaceId: string;
4575
4597
  /**
4576
- * 过滤条件列表 支持:PluginKind、CategoryKey、PluginSource、PluginId、PluginClass、BillingType
4598
+ * <p>过滤条件列表,支持 PluginKind、CategoryKey、PluginSource、PluginId、PluginClass、BillingType、AuthType、IsShared、IsCreatedByMe</p>
4577
4599
  */
4578
4600
  FilterList?: Array<Filter>;
4579
4601
  /**
@@ -4585,21 +4607,25 @@ export interface DescribePluginSummaryListRequest {
4585
4607
  */
4586
4608
  Module?: number;
4587
4609
  /**
4588
- * 页码 从0开始
4610
+ * <p>页码 从0开始</p>
4589
4611
  */
4590
4612
  PageNumber?: number;
4591
4613
  /**
4592
- * 每页大小
4614
+ * <p>每页大小</p>
4593
4615
  */
4594
4616
  PageSize?: number;
4595
4617
  /**
4596
- * 查询内容 模糊匹配:插件名称/插件描述/工具名称/工具描述
4618
+ * <p>查询内容 模糊匹配:插件名称/插件描述/工具名称/工具描述</p>
4597
4619
  */
4598
4620
  Query?: string;
4599
4621
  /**
4600
4622
  * <p>排序方式。</p><p>枚举值:</p><ul><li>0:未指定,默认排序</li><li>1:按相关性排序</li><li>2:按更新时间排序</li><li>3:默认排序</li><li>4:按热度排序</li></ul>
4601
4623
  */
4602
4624
  SortType?: number;
4625
+ /**
4626
+ * <p>筛选当前空间/企业共享插件</p><p>取值范围:[0, 2]</p>
4627
+ */
4628
+ PluginSpaceRelation?: number;
4603
4629
  }
4604
4630
  /**
4605
4631
  * CreateApp返回参数结构体
@@ -4978,11 +5004,11 @@ export interface SkillDetail {
4978
5004
  */
4979
5005
  export interface DescribePluginSummaryListResponse {
4980
5006
  /**
4981
- * plugin_list
5007
+ * <p>plugin_list</p>
4982
5008
  */
4983
5009
  PluginList?: Array<PluginSummary>;
4984
5010
  /**
4985
- * total_count
5011
+ * <p>total_count</p>
4986
5012
  */
4987
5013
  TotalCount?: number;
4988
5014
  /**
@@ -5586,6 +5612,24 @@ export interface Identity {
5586
5612
  */
5587
5613
  StrId?: string;
5588
5614
  }
5615
+ /**
5616
+ * AccessKey鉴权配置
5617
+ */
5618
+ export interface AccessKeyAuthConfig {
5619
+ /**
5620
+ * <p>Access Key字段配置</p>
5621
+ */
5622
+ ParamList?: Array<AccessKeyParamConfig>;
5623
+ /**
5624
+ * <p>Access Key透传配置</p>
5625
+ 注意:此字段可能返回 null,表示取不到有效值。
5626
+ */
5627
+ PassThroughConfig?: AccessKeyPassThroughConfig;
5628
+ /**
5629
+ * <p>Access Key 使用模式</p><p>枚举值:</p><ul><li>1: Access Key透传</li></ul>
5630
+ */
5631
+ UsageMode?: number;
5632
+ }
5589
5633
  /**
5590
5634
  * DescribeAgentDetail返回参数结构体
5591
5635
  */
@@ -5680,6 +5724,10 @@ export interface CreateSkillShareRequest {
5680
5724
  * <p>必填,被共享的版本id(必须高于已共享版本)</p>
5681
5725
  */
5682
5726
  VersionId: string;
5727
+ /**
5728
+ * <p>共享配置</p>
5729
+ */
5730
+ CorpShareConfig?: SkillCorpShareConfig;
5683
5731
  }
5684
5732
  /**
5685
5733
  * 资源消耗明细
@@ -7219,6 +7267,27 @@ export interface ResumeAppTriggerResponse {
7219
7267
  */
7220
7268
  RequestId?: string;
7221
7269
  }
7270
+ /**
7271
+ * Access Key 字段配置
7272
+ */
7273
+ export interface AccessKeyParamConfig {
7274
+ /**
7275
+ * <p>Access Key 字段类型,1:AccessKeyId,2:AccessKeySecret,3:SessionToken</p>
7276
+ */
7277
+ FieldType?: number;
7278
+ /**
7279
+ * <p>是否必填</p>
7280
+ */
7281
+ IsRequired?: boolean;
7282
+ /**
7283
+ * <p>header/query 字段名</p>
7284
+ */
7285
+ ParamName?: string;
7286
+ /**
7287
+ * <p>AccessKey密钥默认值,允许为空</p>
7288
+ */
7289
+ ParamValue?: string;
7290
+ }
7222
7291
  /**
7223
7292
  * CategoryPermission
7224
7293
  */
@@ -7504,7 +7573,7 @@ export interface DeleteAppTriggerResponse {
7504
7573
  RequestId?: string;
7505
7574
  }
7506
7575
  /**
7507
- * 列表通用过滤条件(多个 Filter 之间为 AND 关系,同一 Filter 的多个 value_list 为 OR 关系)
7576
+ * 列表通用过滤条件(多个 Filter 之间为 AND 关系,同一 Filter 的多个 value_list 为 OR 关系;BETWEEN 时 value_list 必须恰好 2 个元素表示闭区间 [start, end])
7508
7577
  */
7509
7578
  export interface Filter {
7510
7579
  /**
@@ -7512,7 +7581,7 @@ export interface Filter {
7512
7581
  */
7513
7582
  Name?: string;
7514
7583
  /**
7515
- * 操作符,默认 IN(向后兼容)<table><tr><td>枚举项</td><td>枚举值</td><td>描述</td></tr><tr><td>FILTER_OPERATOR_IN</td><td>0</td><td>属于 value_list(默认值,向后兼容;value_list 不可为空)</td></tr><tr><td>FILTER_OPERATOR_NOT_IN</td><td>1</td><td>不属于 value_list(value_list 不可为空)</td></tr></table>
7584
+ * 操作符,默认 IN(向后兼容)<table><tr><td>枚举项</td><td>枚举值</td><td>描述</td></tr><tr><td>FILTER_OPERATOR_IN</td><td>0</td><td>属于 value_list(默认值,向后兼容;value_list 不可为空)</td></tr><tr><td>FILTER_OPERATOR_NOT_IN</td><td>1</td><td>不属于 value_list(value_list 不可为空)</td></tr><tr><td>FILTER_OPERATOR_BETWEEN</td><td>2</td><td>之间(闭区间 [start, end];value_list 必须恰好 2 个元素,允许其一为空表示单边开区间)</td></tr></table>
7516
7585
  */
7517
7586
  Operator?: number;
7518
7587
  /**
@@ -7554,6 +7623,15 @@ export interface MsgRecordCategory {
7554
7623
  */
7555
7624
  TotalCount?: string;
7556
7625
  }
7626
+ /**
7627
+ * Access Key 透传配置
7628
+ */
7629
+ export interface AccessKeyPassThroughConfig {
7630
+ /**
7631
+ * <p>Access Key 字段统一注入位置,0:Header,1:Query</p>
7632
+ */
7633
+ KeyLocation?: number;
7634
+ }
7557
7635
  /**
7558
7636
  * DescribeSkillReferenceList请求参数结构体
7559
7637
  */