tencentcloud-sdk-nodejs 4.1.240 → 4.1.241
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/es/common/sdk_version.js +1 -1
- package/es/services/cfs/v20190719/cfs_client.js +33 -15
- package/es/services/lighthouse/v20200324/lighthouse_client.js +3 -0
- package/es/services/teo/v20220901/teo_client.js +24 -12
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apis/v20240801/apis_models.d.ts +62 -40
- package/tencentcloud/services/bi/v20220105/bi_client.d.ts +1 -1
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +254 -22
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +47 -17
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +66 -24
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +347 -46
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +11 -1
- package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +246 -159
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +5 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +6 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +79 -20
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +2 -1
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +2 -1
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +35 -26
- package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +70 -80
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +29 -13
- package/tencentcloud/services/teo/v20220901/teo_client.js +42 -18
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +199 -26
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +18 -19
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.241";
|
|
@@ -3,6 +3,9 @@ export class Client extends AbstractClient {
|
|
|
3
3
|
constructor(clientConfig) {
|
|
4
4
|
super("cfs.tencentcloudapi.com", "2019-07-19", clientConfig);
|
|
5
5
|
}
|
|
6
|
+
async DoDirectoryOperation(req, cb) {
|
|
7
|
+
return this.request("DoDirectoryOperation", req, cb);
|
|
8
|
+
}
|
|
6
9
|
async DescribeCfsRules(req, cb) {
|
|
7
10
|
return this.request("DescribeCfsRules", req, cb);
|
|
8
11
|
}
|
|
@@ -30,8 +33,8 @@ export class Client extends AbstractClient {
|
|
|
30
33
|
async SetUserQuota(req, cb) {
|
|
31
34
|
return this.request("SetUserQuota", req, cb);
|
|
32
35
|
}
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
36
|
+
async DeleteDataRetrieval(req, cb) {
|
|
37
|
+
return this.request("DeleteDataRetrieval", req, cb);
|
|
35
38
|
}
|
|
36
39
|
async DescribeMountTargets(req, cb) {
|
|
37
40
|
return this.request("DescribeMountTargets", req, cb);
|
|
@@ -45,6 +48,9 @@ export class Client extends AbstractClient {
|
|
|
45
48
|
async DeleteLifecyclePolicy(req, cb) {
|
|
46
49
|
return this.request("DeleteLifecyclePolicy", req, cb);
|
|
47
50
|
}
|
|
51
|
+
async DescribeAutoSnapshotPolicies(req, cb) {
|
|
52
|
+
return this.request("DescribeAutoSnapshotPolicies", req, cb);
|
|
53
|
+
}
|
|
48
54
|
async UnbindAutoSnapshotPolicy(req, cb) {
|
|
49
55
|
return this.request("UnbindAutoSnapshotPolicy", req, cb);
|
|
50
56
|
}
|
|
@@ -57,11 +63,14 @@ export class Client extends AbstractClient {
|
|
|
57
63
|
async DescribeCfsServiceStatus(req, cb) {
|
|
58
64
|
return this.request("DescribeCfsServiceStatus", req, cb);
|
|
59
65
|
}
|
|
66
|
+
async DescribeDataRetrieval(req, cb) {
|
|
67
|
+
return this.request("DescribeDataRetrieval", req, cb);
|
|
68
|
+
}
|
|
60
69
|
async StopMigrationTask(req, cb) {
|
|
61
70
|
return this.request("StopMigrationTask", req, cb);
|
|
62
71
|
}
|
|
63
|
-
async
|
|
64
|
-
return this.request("
|
|
72
|
+
async CreateDataRetrieval(req, cb) {
|
|
73
|
+
return this.request("CreateDataRetrieval", req, cb);
|
|
65
74
|
}
|
|
66
75
|
async DescribeAvailableZoneInfo(req, cb) {
|
|
67
76
|
return this.request("DescribeAvailableZoneInfo", req, cb);
|
|
@@ -75,9 +84,6 @@ export class Client extends AbstractClient {
|
|
|
75
84
|
async SignUpCfsService(req, cb) {
|
|
76
85
|
return this.request("SignUpCfsService", req, cb);
|
|
77
86
|
}
|
|
78
|
-
async CreateAutoSnapshotPolicy(req, cb) {
|
|
79
|
-
return this.request("CreateAutoSnapshotPolicy", req, cb);
|
|
80
|
-
}
|
|
81
87
|
async DeleteMigrationTask(req, cb) {
|
|
82
88
|
return this.request("DeleteMigrationTask", req, cb);
|
|
83
89
|
}
|
|
@@ -93,9 +99,15 @@ export class Client extends AbstractClient {
|
|
|
93
99
|
async CreateCfsFileSystem(req, cb) {
|
|
94
100
|
return this.request("CreateCfsFileSystem", req, cb);
|
|
95
101
|
}
|
|
102
|
+
async DescribeBucketList(req, cb) {
|
|
103
|
+
return this.request("DescribeBucketList", req, cb);
|
|
104
|
+
}
|
|
96
105
|
async DescribeCfsPGroups(req, cb) {
|
|
97
106
|
return this.request("DescribeCfsPGroups", req, cb);
|
|
98
107
|
}
|
|
108
|
+
async ModifyDataRetrieval(req, cb) {
|
|
109
|
+
return this.request("ModifyDataRetrieval", req, cb);
|
|
110
|
+
}
|
|
99
111
|
async DescribeCfsSnapshotOverview(req, cb) {
|
|
100
112
|
return this.request("DescribeCfsSnapshotOverview", req, cb);
|
|
101
113
|
}
|
|
@@ -108,8 +120,8 @@ export class Client extends AbstractClient {
|
|
|
108
120
|
async ApplyPathLifecyclePolicy(req, cb) {
|
|
109
121
|
return this.request("ApplyPathLifecyclePolicy", req, cb);
|
|
110
122
|
}
|
|
111
|
-
async
|
|
112
|
-
return this.request("
|
|
123
|
+
async DeleteUserQuota(req, cb) {
|
|
124
|
+
return this.request("DeleteUserQuota", req, cb);
|
|
113
125
|
}
|
|
114
126
|
async ModifyDataFlow(req, cb) {
|
|
115
127
|
return this.request("ModifyDataFlow", req, cb);
|
|
@@ -120,6 +132,9 @@ export class Client extends AbstractClient {
|
|
|
120
132
|
async DescribeCfsFileSystems(req, cb) {
|
|
121
133
|
return this.request("DescribeCfsFileSystems", req, cb);
|
|
122
134
|
}
|
|
135
|
+
async ModifyFileSystemAutoScaleUpRule(req, cb) {
|
|
136
|
+
return this.request("ModifyFileSystemAutoScaleUpRule", req, cb);
|
|
137
|
+
}
|
|
123
138
|
async DescribeCfsSnapshots(req, cb) {
|
|
124
139
|
return this.request("DescribeCfsSnapshots", req, cb);
|
|
125
140
|
}
|
|
@@ -138,11 +153,11 @@ export class Client extends AbstractClient {
|
|
|
138
153
|
async CreateMigrationTask(req, cb) {
|
|
139
154
|
return this.request("CreateMigrationTask", req, cb);
|
|
140
155
|
}
|
|
141
|
-
async
|
|
142
|
-
return this.request("
|
|
156
|
+
async CreateAutoSnapshotPolicy(req, cb) {
|
|
157
|
+
return this.request("CreateAutoSnapshotPolicy", req, cb);
|
|
143
158
|
}
|
|
144
|
-
async
|
|
145
|
-
return this.request("
|
|
159
|
+
async CreateCfsPGroup(req, cb) {
|
|
160
|
+
return this.request("CreateCfsPGroup", req, cb);
|
|
146
161
|
}
|
|
147
162
|
async DeleteAutoSnapshotPolicy(req, cb) {
|
|
148
163
|
return this.request("DeleteAutoSnapshotPolicy", req, cb);
|
|
@@ -156,8 +171,11 @@ export class Client extends AbstractClient {
|
|
|
156
171
|
async UpdateAutoSnapshotPolicy(req, cb) {
|
|
157
172
|
return this.request("UpdateAutoSnapshotPolicy", req, cb);
|
|
158
173
|
}
|
|
159
|
-
async
|
|
160
|
-
return this.request("
|
|
174
|
+
async RunDataRetrievalTask(req, cb) {
|
|
175
|
+
return this.request("RunDataRetrievalTask", req, cb);
|
|
176
|
+
}
|
|
177
|
+
async DescribeDataRetrievalTask(req, cb) {
|
|
178
|
+
return this.request("DescribeDataRetrievalTask", req, cb);
|
|
161
179
|
}
|
|
162
180
|
async DescribeSnapshotOperationLogs(req, cb) {
|
|
163
181
|
return this.request("DescribeSnapshotOperationLogs", req, cb);
|
|
@@ -39,6 +39,9 @@ export class Client extends AbstractClient {
|
|
|
39
39
|
async InquirePriceCreateDisks(req, cb) {
|
|
40
40
|
return this.request("InquirePriceCreateDisks", req, cb);
|
|
41
41
|
}
|
|
42
|
+
async DescribeBlueprintsShareAcrossAccountInfos(req, cb) {
|
|
43
|
+
return this.request("DescribeBlueprintsShareAcrossAccountInfos", req, cb);
|
|
44
|
+
}
|
|
42
45
|
async TerminateInstances(req, cb) {
|
|
43
46
|
return this.request("TerminateInstances", req, cb);
|
|
44
47
|
}
|
|
@@ -66,8 +66,8 @@ export class Client extends AbstractClient {
|
|
|
66
66
|
async ModifyL7AccRule(req, cb) {
|
|
67
67
|
return this.request("ModifyL7AccRule", req, cb);
|
|
68
68
|
}
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
69
|
+
async DescribeAccelerationDomains(req, cb) {
|
|
70
|
+
return this.request("DescribeAccelerationDomains", req, cb);
|
|
71
71
|
}
|
|
72
72
|
async DescribeFunctionRuntimeEnvironment(req, cb) {
|
|
73
73
|
return this.request("DescribeFunctionRuntimeEnvironment", req, cb);
|
|
@@ -198,6 +198,9 @@ export class Client extends AbstractClient {
|
|
|
198
198
|
async ModifyL4ProxyRules(req, cb) {
|
|
199
199
|
return this.request("ModifyL4ProxyRules", req, cb);
|
|
200
200
|
}
|
|
201
|
+
async ModifyL7AccRulePriority(req, cb) {
|
|
202
|
+
return this.request("ModifyL7AccRulePriority", req, cb);
|
|
203
|
+
}
|
|
201
204
|
async DescribeIdentifications(req, cb) {
|
|
202
205
|
return this.request("DescribeIdentifications", req, cb);
|
|
203
206
|
}
|
|
@@ -213,8 +216,8 @@ export class Client extends AbstractClient {
|
|
|
213
216
|
async VerifyOwnership(req, cb) {
|
|
214
217
|
return this.request("VerifyOwnership", req, cb);
|
|
215
218
|
}
|
|
216
|
-
async
|
|
217
|
-
return this.request("
|
|
219
|
+
async CreateFunctionReplica(req, cb) {
|
|
220
|
+
return this.request("CreateFunctionReplica", req, cb);
|
|
218
221
|
}
|
|
219
222
|
async DescribeConfigGroupVersions(req, cb) {
|
|
220
223
|
return this.request("DescribeConfigGroupVersions", req, cb);
|
|
@@ -228,12 +231,15 @@ export class Client extends AbstractClient {
|
|
|
228
231
|
async DescribeSecurityIPGroupContent(req, cb) {
|
|
229
232
|
return this.request("DescribeSecurityIPGroupContent", req, cb);
|
|
230
233
|
}
|
|
231
|
-
async
|
|
232
|
-
return this.request("
|
|
234
|
+
async ModifyFunctionRule(req, cb) {
|
|
235
|
+
return this.request("ModifyFunctionRule", req, cb);
|
|
233
236
|
}
|
|
234
237
|
async ModifyZoneSetting(req, cb) {
|
|
235
238
|
return this.request("ModifyZoneSetting", req, cb);
|
|
236
239
|
}
|
|
240
|
+
async ModifyFunctionReplica(req, cb) {
|
|
241
|
+
return this.request("ModifyFunctionReplica", req, cb);
|
|
242
|
+
}
|
|
237
243
|
async ModifyPrefetchOriginLimit(req, cb) {
|
|
238
244
|
return this.request("ModifyPrefetchOriginLimit", req, cb);
|
|
239
245
|
}
|
|
@@ -378,14 +384,14 @@ export class Client extends AbstractClient {
|
|
|
378
384
|
async DeleteContentIdentifier(req, cb) {
|
|
379
385
|
return this.request("DeleteContentIdentifier", req, cb);
|
|
380
386
|
}
|
|
381
|
-
async
|
|
382
|
-
return this.request("
|
|
387
|
+
async DescribeFunctionReplicas(req, cb) {
|
|
388
|
+
return this.request("DescribeFunctionReplicas", req, cb);
|
|
383
389
|
}
|
|
384
390
|
async ModifyAccelerationDomainStatuses(req, cb) {
|
|
385
391
|
return this.request("ModifyAccelerationDomainStatuses", req, cb);
|
|
386
392
|
}
|
|
387
|
-
async
|
|
388
|
-
return this.request("
|
|
393
|
+
async DescribeRulesSetting(req, cb) {
|
|
394
|
+
return this.request("DescribeRulesSetting", req, cb);
|
|
389
395
|
}
|
|
390
396
|
async DescribeFunctionRules(req, cb) {
|
|
391
397
|
return this.request("DescribeFunctionRules", req, cb);
|
|
@@ -393,8 +399,8 @@ export class Client extends AbstractClient {
|
|
|
393
399
|
async DeleteRealtimeLogDeliveryTask(req, cb) {
|
|
394
400
|
return this.request("DeleteRealtimeLogDeliveryTask", req, cb);
|
|
395
401
|
}
|
|
396
|
-
async
|
|
397
|
-
return this.request("
|
|
402
|
+
async CreateSecurityJSInjectionRule(req, cb) {
|
|
403
|
+
return this.request("CreateSecurityJSInjectionRule", req, cb);
|
|
398
404
|
}
|
|
399
405
|
async ModifyZoneStatus(req, cb) {
|
|
400
406
|
return this.request("ModifyZoneStatus", req, cb);
|
|
@@ -423,6 +429,9 @@ export class Client extends AbstractClient {
|
|
|
423
429
|
async HandleFunctionRuntimeEnvironment(req, cb) {
|
|
424
430
|
return this.request("HandleFunctionRuntimeEnvironment", req, cb);
|
|
425
431
|
}
|
|
432
|
+
async ModifySecurityAPIService(req, cb) {
|
|
433
|
+
return this.request("ModifySecurityAPIService", req, cb);
|
|
434
|
+
}
|
|
426
435
|
async ModifyContentIdentifier(req, cb) {
|
|
427
436
|
return this.request("ModifyContentIdentifier", req, cb);
|
|
428
437
|
}
|
|
@@ -618,6 +627,9 @@ export class Client extends AbstractClient {
|
|
|
618
627
|
async DescribeL4Proxy(req, cb) {
|
|
619
628
|
return this.request("DescribeL4Proxy", req, cb);
|
|
620
629
|
}
|
|
630
|
+
async DeleteFunctionReplica(req, cb) {
|
|
631
|
+
return this.request("DeleteFunctionReplica", req, cb);
|
|
632
|
+
}
|
|
621
633
|
async DeleteMultiPathGatewayLine(req, cb) {
|
|
622
634
|
return this.request("DeleteMultiPathGatewayLine", req, cb);
|
|
623
635
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.241";
|
|
@@ -146,25 +146,29 @@ export interface McpSecurityRule {
|
|
|
146
146
|
*/
|
|
147
147
|
export interface ModifyAgentAppRequest {
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
* <p>实例ID</p>
|
|
150
150
|
*/
|
|
151
151
|
InstanceID: string;
|
|
152
152
|
/**
|
|
153
|
-
*
|
|
153
|
+
* <p>应用ID</p>
|
|
154
154
|
*/
|
|
155
155
|
ID: string;
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* <p>名称</p>
|
|
158
158
|
*/
|
|
159
159
|
Name?: string;
|
|
160
160
|
/**
|
|
161
|
-
* OAuth2资源服务器ID
|
|
161
|
+
* <p>OAuth2资源服务器ID</p>
|
|
162
162
|
*/
|
|
163
163
|
OAuth2ResourceServerID?: string;
|
|
164
164
|
/**
|
|
165
|
-
*
|
|
165
|
+
* <p>描述</p>
|
|
166
166
|
*/
|
|
167
167
|
Description?: string;
|
|
168
|
+
/**
|
|
169
|
+
* <p>凭据ID</p>
|
|
170
|
+
*/
|
|
171
|
+
ConnectorIDs?: Array<string>;
|
|
168
172
|
}
|
|
169
173
|
/**
|
|
170
174
|
* InvokeLimitConfigDTO
|
|
@@ -249,7 +253,7 @@ export interface ToolConfigDTO {
|
|
|
249
253
|
*/
|
|
250
254
|
export interface CreateAgentAppResponse {
|
|
251
255
|
/**
|
|
252
|
-
* app id
|
|
256
|
+
* <p>app id</p>
|
|
253
257
|
*/
|
|
254
258
|
Data?: CreateAgentAppResp;
|
|
255
259
|
/**
|
|
@@ -1287,7 +1291,7 @@ export interface DescribeAgentAppsResponse {
|
|
|
1287
1291
|
*/
|
|
1288
1292
|
export interface ModifyAgentAppResponse {
|
|
1289
1293
|
/**
|
|
1290
|
-
* app id
|
|
1294
|
+
* <p>app id</p>
|
|
1291
1295
|
*/
|
|
1292
1296
|
Data?: ResultIDVO;
|
|
1293
1297
|
/**
|
|
@@ -1399,67 +1403,75 @@ export interface DeleteAgentAppMcpServersRequest {
|
|
|
1399
1403
|
*/
|
|
1400
1404
|
export interface DescribeAgentAppResp {
|
|
1401
1405
|
/**
|
|
1402
|
-
*
|
|
1406
|
+
* <p>租户appID</p>
|
|
1403
1407
|
*/
|
|
1404
1408
|
AppID?: number;
|
|
1405
1409
|
/**
|
|
1406
|
-
*
|
|
1410
|
+
* <p>租户ID</p>
|
|
1407
1411
|
*/
|
|
1408
1412
|
Uin?: string;
|
|
1409
1413
|
/**
|
|
1410
|
-
*
|
|
1414
|
+
* <p>实例ID</p>
|
|
1411
1415
|
*/
|
|
1412
1416
|
InstanceID?: string;
|
|
1413
1417
|
/**
|
|
1414
|
-
*
|
|
1418
|
+
* <p>应用ID</p>
|
|
1415
1419
|
*/
|
|
1416
1420
|
ID?: string;
|
|
1417
1421
|
/**
|
|
1418
|
-
*
|
|
1422
|
+
* <p>名称</p>
|
|
1419
1423
|
*/
|
|
1420
1424
|
Name?: string;
|
|
1421
1425
|
/**
|
|
1422
|
-
*
|
|
1426
|
+
* <p>描述</p>
|
|
1423
1427
|
*/
|
|
1424
1428
|
Description?: string;
|
|
1425
1429
|
/**
|
|
1426
|
-
*
|
|
1430
|
+
* <p>状态</p>
|
|
1427
1431
|
*/
|
|
1428
1432
|
Status?: string;
|
|
1429
1433
|
/**
|
|
1430
|
-
*
|
|
1434
|
+
* <p>创建时间</p>
|
|
1431
1435
|
*/
|
|
1432
1436
|
CreateTime?: string;
|
|
1433
1437
|
/**
|
|
1434
|
-
*
|
|
1438
|
+
* <p>修改时间</p>
|
|
1435
1439
|
*/
|
|
1436
1440
|
UpdateTime?: string;
|
|
1437
1441
|
/**
|
|
1438
|
-
*
|
|
1442
|
+
* <p>认证类型</p>
|
|
1439
1443
|
*/
|
|
1440
1444
|
AuthType?: string;
|
|
1441
1445
|
/**
|
|
1442
|
-
* apiKeys
|
|
1446
|
+
* <p>apiKeys列表,脱敏</p>
|
|
1443
1447
|
*/
|
|
1444
1448
|
ApiKeys?: Array<string>;
|
|
1445
1449
|
/**
|
|
1446
|
-
* secretKey
|
|
1450
|
+
* <p>secretKey列表,脱敏</p>
|
|
1447
1451
|
*/
|
|
1448
1452
|
SecretKeys?: Array<AgentAppSecretKeyVO>;
|
|
1449
1453
|
/**
|
|
1450
|
-
* OAuth2 Resource Server ID
|
|
1454
|
+
* <p>OAuth2 Resource Server ID</p>
|
|
1451
1455
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1452
1456
|
*/
|
|
1453
1457
|
OAuth2ResourceServerID?: string;
|
|
1454
1458
|
/**
|
|
1455
|
-
*
|
|
1459
|
+
* <p>绑定mcpServer数量</p>
|
|
1456
1460
|
*/
|
|
1457
1461
|
McpServersNum?: number;
|
|
1458
1462
|
/**
|
|
1459
|
-
*
|
|
1463
|
+
* <p>绑定的模型服务数量</p>
|
|
1460
1464
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1461
1465
|
*/
|
|
1462
1466
|
ModelServicesNum?: number;
|
|
1467
|
+
/**
|
|
1468
|
+
* <p>API认证列表</p>
|
|
1469
|
+
*/
|
|
1470
|
+
ConnectorIDs?: Array<string>;
|
|
1471
|
+
/**
|
|
1472
|
+
* <p>关联API数量</p>
|
|
1473
|
+
*/
|
|
1474
|
+
ServicesNum?: number;
|
|
1463
1475
|
}
|
|
1464
1476
|
/**
|
|
1465
1477
|
* CreateMcpServer请求参数结构体
|
|
@@ -1655,56 +1667,62 @@ export interface ModifyModelRequest {
|
|
|
1655
1667
|
*/
|
|
1656
1668
|
export interface DescribeAgentCredentialResp {
|
|
1657
1669
|
/**
|
|
1658
|
-
*
|
|
1670
|
+
* <p>租户应用ID</p>
|
|
1659
1671
|
*/
|
|
1660
1672
|
AppID?: number;
|
|
1661
1673
|
/**
|
|
1662
|
-
*
|
|
1674
|
+
* <p>租户ID</p>
|
|
1663
1675
|
*/
|
|
1664
1676
|
Uin?: string;
|
|
1665
1677
|
/**
|
|
1666
|
-
*
|
|
1678
|
+
* <p>实例ID</p>
|
|
1667
1679
|
*/
|
|
1668
1680
|
InstanceID?: string;
|
|
1669
1681
|
/**
|
|
1670
|
-
*
|
|
1682
|
+
* <p>凭据ID</p>
|
|
1671
1683
|
*/
|
|
1672
1684
|
ID?: string;
|
|
1673
1685
|
/**
|
|
1674
|
-
*
|
|
1686
|
+
* <p>凭据名称</p>
|
|
1675
1687
|
*/
|
|
1676
1688
|
Name?: string;
|
|
1677
1689
|
/**
|
|
1678
|
-
*
|
|
1690
|
+
* <p>状态</p>
|
|
1679
1691
|
*/
|
|
1680
1692
|
Status?: string;
|
|
1681
1693
|
/**
|
|
1682
|
-
*
|
|
1694
|
+
* <p>关联应用数</p>
|
|
1695
|
+
* @deprecated
|
|
1683
1696
|
*/
|
|
1684
1697
|
RelateAgentAppNum?: number;
|
|
1685
1698
|
/**
|
|
1686
|
-
*
|
|
1699
|
+
* <p>关联mcp数</p>
|
|
1687
1700
|
*/
|
|
1688
1701
|
RelateMcpServerNum?: number;
|
|
1689
1702
|
/**
|
|
1690
|
-
*
|
|
1703
|
+
* <p>关联模型数</p>
|
|
1691
1704
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1692
1705
|
*/
|
|
1693
1706
|
RelateModelNum?: number;
|
|
1694
1707
|
/**
|
|
1695
|
-
*
|
|
1708
|
+
* <p>关联服务数</p>
|
|
1709
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1710
|
+
*/
|
|
1711
|
+
RelateServiceNum?: number;
|
|
1712
|
+
/**
|
|
1713
|
+
* <p>凭据内容</p>
|
|
1696
1714
|
*/
|
|
1697
1715
|
Content?: AgentCredentialContentDTO;
|
|
1698
1716
|
/**
|
|
1699
|
-
*
|
|
1717
|
+
* <p>创建时间</p>
|
|
1700
1718
|
*/
|
|
1701
1719
|
CreateTime?: string;
|
|
1702
1720
|
/**
|
|
1703
|
-
*
|
|
1721
|
+
* <p>修改时间</p>
|
|
1704
1722
|
*/
|
|
1705
1723
|
LastUpdateTime?: string;
|
|
1706
1724
|
/**
|
|
1707
|
-
*
|
|
1725
|
+
* <p>类型</p>
|
|
1708
1726
|
*/
|
|
1709
1727
|
Type?: string;
|
|
1710
1728
|
}
|
|
@@ -2055,25 +2073,29 @@ export type ModifyAgentCredentialRequest = null;
|
|
|
2055
2073
|
*/
|
|
2056
2074
|
export interface CreateAgentAppRequest {
|
|
2057
2075
|
/**
|
|
2058
|
-
*
|
|
2076
|
+
* <p>实例ID</p>
|
|
2059
2077
|
*/
|
|
2060
2078
|
InstanceID: string;
|
|
2061
2079
|
/**
|
|
2062
|
-
*
|
|
2080
|
+
* <p>名称</p>
|
|
2063
2081
|
*/
|
|
2064
2082
|
Name: string;
|
|
2065
2083
|
/**
|
|
2066
|
-
*
|
|
2084
|
+
* <p>认证类型</p>
|
|
2067
2085
|
*/
|
|
2068
2086
|
AuthType: string;
|
|
2069
2087
|
/**
|
|
2070
|
-
* OAuth2资源服务器ID
|
|
2088
|
+
* <p>OAuth2资源服务器ID</p>
|
|
2071
2089
|
*/
|
|
2072
2090
|
OAuth2ResourceServerID?: string;
|
|
2073
2091
|
/**
|
|
2074
|
-
*
|
|
2092
|
+
* <p>描述</p>
|
|
2075
2093
|
*/
|
|
2076
2094
|
Description?: string;
|
|
2095
|
+
/**
|
|
2096
|
+
* <p>API认证列表</p>
|
|
2097
|
+
*/
|
|
2098
|
+
ConnectorIDs?: Array<string>;
|
|
2077
2099
|
}
|
|
2078
2100
|
/**
|
|
2079
2101
|
* 查询App列表响应
|
|
@@ -126,7 +126,7 @@ export declare class Client extends AbstractClient {
|
|
|
126
126
|
/**
|
|
127
127
|
* CreateUserGroupMember
|
|
128
128
|
*/
|
|
129
|
-
CreateUserGroupMember(req
|
|
129
|
+
CreateUserGroupMember(req: CreateUserGroupMemberRequest, cb?: (error: string, rep: CreateUserGroupMemberResponse) => void): Promise<CreateUserGroupMemberResponse>;
|
|
130
130
|
/**
|
|
131
131
|
* 项目内-用户角色列表
|
|
132
132
|
*/
|