tencentcloud-sdk-nodejs 4.1.139 → 4.1.140
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/ags/index.js +4 -0
- package/es/services/ags/v20250920/ags_client.js +42 -0
- package/es/services/ags/v20250920/ags_models.js +1 -0
- package/es/services/ags/v20250920/index.js +6 -0
- package/es/services/index.js +1 -0
- 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/ags/index.d.ts +6 -0
- package/tencentcloud/services/ags/index.js +7 -0
- package/tencentcloud/services/ags/v20250920/ags_client.d.ts +59 -0
- package/tencentcloud/services/ags/v20250920/ags_client.js +104 -0
- package/tencentcloud/services/ags/v20250920/ags_models.d.ts +489 -0
- package/tencentcloud/services/ags/v20250920/ags_models.js +18 -0
- package/tencentcloud/services/ags/v20250920/index.d.ts +6 -0
- package/tencentcloud/services/ags/v20250920/index.js +10 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +4 -2
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +7 -5
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -3
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.140";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
|
+
export class Client extends AbstractClient {
|
|
3
|
+
constructor(clientConfig) {
|
|
4
|
+
super("ags.tencentcloudapi.com", "2025-09-20", clientConfig);
|
|
5
|
+
}
|
|
6
|
+
async UpdateSandboxInstance(req, cb) {
|
|
7
|
+
return this.request("UpdateSandboxInstance", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async StartSandboxInstance(req, cb) {
|
|
10
|
+
return this.request("StartSandboxInstance", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async AcquireSandboxInstanceToken(req, cb) {
|
|
13
|
+
return this.request("AcquireSandboxInstanceToken", req, cb);
|
|
14
|
+
}
|
|
15
|
+
async DescribeSandboxToolList(req, cb) {
|
|
16
|
+
return this.request("DescribeSandboxToolList", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async StopSandboxInstance(req, cb) {
|
|
19
|
+
return this.request("StopSandboxInstance", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async DescribeAPIKeyList(req, cb) {
|
|
22
|
+
return this.request("DescribeAPIKeyList", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async DescribeSandboxInstanceList(req, cb) {
|
|
25
|
+
return this.request("DescribeSandboxInstanceList", req, cb);
|
|
26
|
+
}
|
|
27
|
+
async CreateAPIKey(req, cb) {
|
|
28
|
+
return this.request("CreateAPIKey", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async DeleteSandboxTool(req, cb) {
|
|
31
|
+
return this.request("DeleteSandboxTool", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async DeleteAPIKey(req, cb) {
|
|
34
|
+
return this.request("DeleteAPIKey", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async CreateSandboxTool(req, cb) {
|
|
37
|
+
return this.request("CreateSandboxTool", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async UpdateSandboxTool(req, cb) {
|
|
40
|
+
return this.request("UpdateSandboxTool", req, cb);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/es/services/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.140";
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
|
+
import { ClientConfig } from "../../../common/interface";
|
|
3
|
+
import { StartSandboxInstanceRequest, StopSandboxInstanceRequest, DescribeSandboxToolListResponse, CreateAPIKeyResponse, DescribeSandboxToolListRequest, CreateSandboxToolRequest, DeleteAPIKeyResponse, UpdateSandboxInstanceResponse, DeleteSandboxToolRequest, CreateAPIKeyRequest, DeleteSandboxToolResponse, StartSandboxInstanceResponse, AcquireSandboxInstanceTokenRequest, DescribeAPIKeyListResponse, DescribeSandboxInstanceListRequest, DescribeAPIKeyListRequest, UpdateSandboxInstanceRequest, CreateSandboxToolResponse, UpdateSandboxToolResponse, DeleteAPIKeyRequest, AcquireSandboxInstanceTokenResponse, StopSandboxInstanceResponse, UpdateSandboxToolRequest, DescribeSandboxInstanceListResponse } from "./ags_models";
|
|
4
|
+
/**
|
|
5
|
+
* ags client
|
|
6
|
+
* @class
|
|
7
|
+
*/
|
|
8
|
+
export declare class Client extends AbstractClient {
|
|
9
|
+
constructor(clientConfig: ClientConfig);
|
|
10
|
+
/**
|
|
11
|
+
* 更新沙箱实例
|
|
12
|
+
*/
|
|
13
|
+
UpdateSandboxInstance(req: UpdateSandboxInstanceRequest, cb?: (error: string, rep: UpdateSandboxInstanceResponse) => void): Promise<UpdateSandboxInstanceResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* 启动沙箱实例
|
|
16
|
+
*/
|
|
17
|
+
StartSandboxInstance(req: StartSandboxInstanceRequest, cb?: (error: string, rep: StartSandboxInstanceResponse) => void): Promise<StartSandboxInstanceResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* 获取访问沙箱工具时所需要使用的访问Token,创建沙箱实例后需调用此接口获取沙箱实例访问Token。
|
|
20
|
+
此Token可用于调用代码沙箱实例执行代码,或浏览器沙箱实例进行浏览器操作等。
|
|
21
|
+
*/
|
|
22
|
+
AcquireSandboxInstanceToken(req: AcquireSandboxInstanceTokenRequest, cb?: (error: string, rep: AcquireSandboxInstanceTokenResponse) => void): Promise<AcquireSandboxInstanceTokenResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* 查询沙箱工具列表
|
|
25
|
+
*/
|
|
26
|
+
DescribeSandboxToolList(req: DescribeSandboxToolListRequest, cb?: (error: string, rep: DescribeSandboxToolListResponse) => void): Promise<DescribeSandboxToolListResponse>;
|
|
27
|
+
/**
|
|
28
|
+
* 停止沙箱实例
|
|
29
|
+
*/
|
|
30
|
+
StopSandboxInstance(req: StopSandboxInstanceRequest, cb?: (error: string, rep: StopSandboxInstanceResponse) => void): Promise<StopSandboxInstanceResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* 获取API密钥列表,包含API密钥简略信息,包含名称、创建时间等。
|
|
33
|
+
*/
|
|
34
|
+
DescribeAPIKeyList(req?: DescribeAPIKeyListRequest, cb?: (error: string, rep: DescribeAPIKeyListResponse) => void): Promise<DescribeAPIKeyListResponse>;
|
|
35
|
+
/**
|
|
36
|
+
* 查询沙箱实例列表
|
|
37
|
+
*/
|
|
38
|
+
DescribeSandboxInstanceList(req: DescribeSandboxInstanceListRequest, cb?: (error: string, rep: DescribeSandboxInstanceListResponse) => void): Promise<DescribeSandboxInstanceListResponse>;
|
|
39
|
+
/**
|
|
40
|
+
* 创建新的API密钥,用于调用Agent Sandbox接口。相较于腾讯云Secret ID Secret Key支持调用所有接口使用,仅有部分接口支持使用API密钥调用。
|
|
41
|
+
*/
|
|
42
|
+
CreateAPIKey(req: CreateAPIKeyRequest, cb?: (error: string, rep: CreateAPIKeyResponse) => void): Promise<CreateAPIKeyResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* 删除沙箱工具
|
|
45
|
+
*/
|
|
46
|
+
DeleteSandboxTool(req: DeleteSandboxToolRequest, cb?: (error: string, rep: DeleteSandboxToolResponse) => void): Promise<DeleteSandboxToolResponse>;
|
|
47
|
+
/**
|
|
48
|
+
* 删除API密钥。注意区别于腾讯云Secret ID Secret Key,本接口删除的是Agent Sandbox专用API key。
|
|
49
|
+
*/
|
|
50
|
+
DeleteAPIKey(req: DeleteAPIKeyRequest, cb?: (error: string, rep: DeleteAPIKeyResponse) => void): Promise<DeleteAPIKeyResponse>;
|
|
51
|
+
/**
|
|
52
|
+
* 创建沙箱工具
|
|
53
|
+
*/
|
|
54
|
+
CreateSandboxTool(req: CreateSandboxToolRequest, cb?: (error: string, rep: CreateSandboxToolResponse) => void): Promise<CreateSandboxToolResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* 更新沙箱工具
|
|
57
|
+
*/
|
|
58
|
+
UpdateSandboxTool(req: UpdateSandboxToolRequest, cb?: (error: string, rep: UpdateSandboxToolResponse) => void): Promise<UpdateSandboxToolResponse>;
|
|
59
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Client = void 0;
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
|
+
/*
|
|
6
|
+
* Copyright (c) 2018 Tencent. All Rights Reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
+
* you may not use this file except in compliance with the License.
|
|
10
|
+
* You may obtain a copy of the License at
|
|
11
|
+
*
|
|
12
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
*
|
|
14
|
+
* Unless required by applicable law or agreed to in writing,
|
|
15
|
+
* software distributed under the License is distributed on an
|
|
16
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
17
|
+
* KIND, either express or implied. See the License for the
|
|
18
|
+
* specific language governing permissions and limitations
|
|
19
|
+
* under the License.
|
|
20
|
+
*/
|
|
21
|
+
const abstract_client_1 = require("../../../common/abstract_client");
|
|
22
|
+
/**
|
|
23
|
+
* ags client
|
|
24
|
+
* @class
|
|
25
|
+
*/
|
|
26
|
+
class Client extends abstract_client_1.AbstractClient {
|
|
27
|
+
constructor(clientConfig) {
|
|
28
|
+
super("ags.tencentcloudapi.com", "2025-09-20", clientConfig);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* 更新沙箱实例
|
|
32
|
+
*/
|
|
33
|
+
async UpdateSandboxInstance(req, cb) {
|
|
34
|
+
return this.request("UpdateSandboxInstance", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 启动沙箱实例
|
|
38
|
+
*/
|
|
39
|
+
async StartSandboxInstance(req, cb) {
|
|
40
|
+
return this.request("StartSandboxInstance", req, cb);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 获取访问沙箱工具时所需要使用的访问Token,创建沙箱实例后需调用此接口获取沙箱实例访问Token。
|
|
44
|
+
此Token可用于调用代码沙箱实例执行代码,或浏览器沙箱实例进行浏览器操作等。
|
|
45
|
+
*/
|
|
46
|
+
async AcquireSandboxInstanceToken(req, cb) {
|
|
47
|
+
return this.request("AcquireSandboxInstanceToken", req, cb);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* 查询沙箱工具列表
|
|
51
|
+
*/
|
|
52
|
+
async DescribeSandboxToolList(req, cb) {
|
|
53
|
+
return this.request("DescribeSandboxToolList", req, cb);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* 停止沙箱实例
|
|
57
|
+
*/
|
|
58
|
+
async StopSandboxInstance(req, cb) {
|
|
59
|
+
return this.request("StopSandboxInstance", req, cb);
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* 获取API密钥列表,包含API密钥简略信息,包含名称、创建时间等。
|
|
63
|
+
*/
|
|
64
|
+
async DescribeAPIKeyList(req, cb) {
|
|
65
|
+
return this.request("DescribeAPIKeyList", req, cb);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* 查询沙箱实例列表
|
|
69
|
+
*/
|
|
70
|
+
async DescribeSandboxInstanceList(req, cb) {
|
|
71
|
+
return this.request("DescribeSandboxInstanceList", req, cb);
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* 创建新的API密钥,用于调用Agent Sandbox接口。相较于腾讯云Secret ID Secret Key支持调用所有接口使用,仅有部分接口支持使用API密钥调用。
|
|
75
|
+
*/
|
|
76
|
+
async CreateAPIKey(req, cb) {
|
|
77
|
+
return this.request("CreateAPIKey", req, cb);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* 删除沙箱工具
|
|
81
|
+
*/
|
|
82
|
+
async DeleteSandboxTool(req, cb) {
|
|
83
|
+
return this.request("DeleteSandboxTool", req, cb);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* 删除API密钥。注意区别于腾讯云Secret ID Secret Key,本接口删除的是Agent Sandbox专用API key。
|
|
87
|
+
*/
|
|
88
|
+
async DeleteAPIKey(req, cb) {
|
|
89
|
+
return this.request("DeleteAPIKey", req, cb);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* 创建沙箱工具
|
|
93
|
+
*/
|
|
94
|
+
async CreateSandboxTool(req, cb) {
|
|
95
|
+
return this.request("CreateSandboxTool", req, cb);
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* 更新沙箱工具
|
|
99
|
+
*/
|
|
100
|
+
async UpdateSandboxTool(req, cb) {
|
|
101
|
+
return this.request("UpdateSandboxTool", req, cb);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.Client = Client;
|
|
@@ -0,0 +1,489 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* StartSandboxInstance请求参数结构体
|
|
3
|
+
*/
|
|
4
|
+
export interface StartSandboxInstanceRequest {
|
|
5
|
+
/**
|
|
6
|
+
* 沙箱工具 ID,与 ToolName 至少有一个要填
|
|
7
|
+
*/
|
|
8
|
+
ToolId?: string;
|
|
9
|
+
/**
|
|
10
|
+
* 沙箱工具名称,与 ToolId 至少有一个要填
|
|
11
|
+
*/
|
|
12
|
+
ToolName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 超时时间,超过这个时间就自动回收实例。支持格式:5m、300s、1h 等,默认 5m。最小 30s,最大 24h
|
|
15
|
+
*/
|
|
16
|
+
Timeout?: string;
|
|
17
|
+
/**
|
|
18
|
+
* 幂等性 Token,长度不超过 64 字符
|
|
19
|
+
*/
|
|
20
|
+
ClientToken?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* 沙箱实例结构体
|
|
24
|
+
*/
|
|
25
|
+
export interface SandboxInstance {
|
|
26
|
+
/**
|
|
27
|
+
* 沙箱实例唯一标识符
|
|
28
|
+
*/
|
|
29
|
+
InstanceId: string;
|
|
30
|
+
/**
|
|
31
|
+
* 所属沙箱工具 ID
|
|
32
|
+
*/
|
|
33
|
+
ToolId: string;
|
|
34
|
+
/**
|
|
35
|
+
* 所属沙箱工具名称
|
|
36
|
+
*/
|
|
37
|
+
ToolName: string;
|
|
38
|
+
/**
|
|
39
|
+
* 实例状态:STARTING(启动中)、RUNNING(运行中)、STOPPING(停止中)、STOPPED(已停止)、STOP_FAILED(停止失败)、FAILED(失败状态)
|
|
40
|
+
*/
|
|
41
|
+
Status: string;
|
|
42
|
+
/**
|
|
43
|
+
* 超时时间(秒),null 表示无超时设置
|
|
44
|
+
*/
|
|
45
|
+
TimeoutSeconds?: number;
|
|
46
|
+
/**
|
|
47
|
+
* 过期时间(ISO 8601 格式),null 表示无过期时间
|
|
48
|
+
*/
|
|
49
|
+
ExpiresAt?: string;
|
|
50
|
+
/**
|
|
51
|
+
* 停止原因:manual(手动)、timeout(超时)、error(错误)、system(系统),仅在状态为 STOPPED、STOP_FAILED 或 FAILED 时有值。当 provider 停止失败时,状态为 STOP_FAILED,原因为 error
|
|
52
|
+
*/
|
|
53
|
+
StopReason?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 创建时间(ISO 8601 格式)
|
|
56
|
+
*/
|
|
57
|
+
CreateTime?: string;
|
|
58
|
+
/**
|
|
59
|
+
* 更新时间(ISO 8601 格式)
|
|
60
|
+
*/
|
|
61
|
+
UpdateTime?: string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* StopSandboxInstance请求参数结构体
|
|
65
|
+
*/
|
|
66
|
+
export interface StopSandboxInstanceRequest {
|
|
67
|
+
/**
|
|
68
|
+
* 沙箱实例ID
|
|
69
|
+
*/
|
|
70
|
+
InstanceId: string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* DescribeSandboxToolList返回参数结构体
|
|
74
|
+
*/
|
|
75
|
+
export interface DescribeSandboxToolListResponse {
|
|
76
|
+
/**
|
|
77
|
+
* 沙箱工具列表
|
|
78
|
+
*/
|
|
79
|
+
SandboxToolSet?: Array<SandboxTool>;
|
|
80
|
+
/**
|
|
81
|
+
* 符合条件的沙箱工具总数
|
|
82
|
+
*/
|
|
83
|
+
TotalCount?: number;
|
|
84
|
+
/**
|
|
85
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
86
|
+
*/
|
|
87
|
+
RequestId?: string;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* CreateAPIKey返回参数结构体
|
|
91
|
+
*/
|
|
92
|
+
export interface CreateAPIKeyResponse {
|
|
93
|
+
/**
|
|
94
|
+
* 用户传入的API密钥名称,方便用户记忆
|
|
95
|
+
*/
|
|
96
|
+
Name?: string;
|
|
97
|
+
/**
|
|
98
|
+
* 生成的API密钥,仅返回此一次,后续无法获取
|
|
99
|
+
*/
|
|
100
|
+
APIKey?: string;
|
|
101
|
+
/**
|
|
102
|
+
* API密钥ID
|
|
103
|
+
*/
|
|
104
|
+
KeyId?: string;
|
|
105
|
+
/**
|
|
106
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
107
|
+
*/
|
|
108
|
+
RequestId?: string;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* DescribeSandboxToolList请求参数结构体
|
|
112
|
+
*/
|
|
113
|
+
export interface DescribeSandboxToolListRequest {
|
|
114
|
+
/**
|
|
115
|
+
* 沙箱工具ID列表,指定要查询的工具。如果为空则查询所有工具。最大支持100个ID
|
|
116
|
+
*/
|
|
117
|
+
ToolIds?: Array<string>;
|
|
118
|
+
/**
|
|
119
|
+
* 偏移量,默认为0
|
|
120
|
+
*/
|
|
121
|
+
Offset?: number;
|
|
122
|
+
/**
|
|
123
|
+
* 返回数量,默认为20,最大值为100
|
|
124
|
+
*/
|
|
125
|
+
Limit?: number;
|
|
126
|
+
/**
|
|
127
|
+
* 过滤条件
|
|
128
|
+
*/
|
|
129
|
+
Filters?: Array<Filter>;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* CreateSandboxTool请求参数结构体
|
|
133
|
+
*/
|
|
134
|
+
export interface CreateSandboxToolRequest {
|
|
135
|
+
/**
|
|
136
|
+
* 沙箱工具名称,长度 1-50 字符,支持英文、数字、下划线和连接线。同一 AppId 下沙箱工具名称必须唯一
|
|
137
|
+
*/
|
|
138
|
+
ToolName: string;
|
|
139
|
+
/**
|
|
140
|
+
* 沙箱工具类型,目前支持:browser、code-interpreter
|
|
141
|
+
*/
|
|
142
|
+
ToolType: string;
|
|
143
|
+
/**
|
|
144
|
+
* 网络配置
|
|
145
|
+
*/
|
|
146
|
+
NetworkConfiguration: NetworkConfiguration;
|
|
147
|
+
/**
|
|
148
|
+
* 沙箱工具描述,最大长度 200 字符
|
|
149
|
+
*/
|
|
150
|
+
Description?: string;
|
|
151
|
+
/**
|
|
152
|
+
* 默认超时时间,支持格式:5m、300s、1h 等,不指定则使用系统默认值(5 分钟)。最大 24 小时
|
|
153
|
+
*/
|
|
154
|
+
DefaultTimeout?: string;
|
|
155
|
+
/**
|
|
156
|
+
* 标签规格,为沙箱工具绑定标签,支持多种资源类型的标签绑定
|
|
157
|
+
*/
|
|
158
|
+
Tags?: Array<Tag>;
|
|
159
|
+
/**
|
|
160
|
+
* 幂等性 Token,长度不超过 64 字符
|
|
161
|
+
*/
|
|
162
|
+
ClientToken?: string;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* DeleteAPIKey返回参数结构体
|
|
166
|
+
*/
|
|
167
|
+
export interface DeleteAPIKeyResponse {
|
|
168
|
+
/**
|
|
169
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
170
|
+
*/
|
|
171
|
+
RequestId?: string;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* API密钥简略信息
|
|
175
|
+
*/
|
|
176
|
+
export interface APIKeyInfo {
|
|
177
|
+
/**
|
|
178
|
+
* API密钥名称
|
|
179
|
+
*/
|
|
180
|
+
Name?: string;
|
|
181
|
+
/**
|
|
182
|
+
* API密钥ID
|
|
183
|
+
*/
|
|
184
|
+
KeyId?: string;
|
|
185
|
+
/**
|
|
186
|
+
* 密钥状态。可以为API_KEY_STATUS_ACTIVE,或API_KEY_STATUS_INACTIVE
|
|
187
|
+
*/
|
|
188
|
+
Status?: string;
|
|
189
|
+
/**
|
|
190
|
+
* 隐藏部分字符的API密钥,方便用户辨认
|
|
191
|
+
*/
|
|
192
|
+
MaskedKey?: string;
|
|
193
|
+
/**
|
|
194
|
+
* API密钥创建时间
|
|
195
|
+
*/
|
|
196
|
+
CreatedAt?: string;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* UpdateSandboxInstance返回参数结构体
|
|
200
|
+
*/
|
|
201
|
+
export interface UpdateSandboxInstanceResponse {
|
|
202
|
+
/**
|
|
203
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
204
|
+
*/
|
|
205
|
+
RequestId?: string;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* DeleteSandboxTool请求参数结构体
|
|
209
|
+
*/
|
|
210
|
+
export interface DeleteSandboxToolRequest {
|
|
211
|
+
/**
|
|
212
|
+
* 沙箱工具ID
|
|
213
|
+
*/
|
|
214
|
+
ToolId: string;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* CreateAPIKey请求参数结构体
|
|
218
|
+
*/
|
|
219
|
+
export interface CreateAPIKeyRequest {
|
|
220
|
+
/**
|
|
221
|
+
* API密钥名称,方便用户记忆
|
|
222
|
+
*/
|
|
223
|
+
Name?: string;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* 沙箱网络配置
|
|
227
|
+
*/
|
|
228
|
+
export interface NetworkConfiguration {
|
|
229
|
+
/**
|
|
230
|
+
* 网络模式(当前支持 PUBLIC)
|
|
231
|
+
*/
|
|
232
|
+
NetworkMode: string;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* DeleteSandboxTool返回参数结构体
|
|
236
|
+
*/
|
|
237
|
+
export interface DeleteSandboxToolResponse {
|
|
238
|
+
/**
|
|
239
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
240
|
+
*/
|
|
241
|
+
RequestId?: string;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* 沙箱工具结构体
|
|
245
|
+
*/
|
|
246
|
+
export interface SandboxTool {
|
|
247
|
+
/**
|
|
248
|
+
* 沙箱工具唯一标识符
|
|
249
|
+
*/
|
|
250
|
+
ToolId: string;
|
|
251
|
+
/**
|
|
252
|
+
* 沙箱工具名称,长度 1-50 字符,支持中英文、数字、下划线。同一 AppId 下沙箱工具名称必须唯一
|
|
253
|
+
*/
|
|
254
|
+
ToolName?: string;
|
|
255
|
+
/**
|
|
256
|
+
* 沙箱工具类型,取值:browser(浏览器工具)、code-interpreter(代码解释器工具)、computer(计算机控制工具)、mobile(移动设备工具)
|
|
257
|
+
*/
|
|
258
|
+
ToolType?: string;
|
|
259
|
+
/**
|
|
260
|
+
* 沙箱工具状态,取值:CREATING(创建中)、ACTIVE(可用)、DELETING(删除中)、FAILED(失败)
|
|
261
|
+
*/
|
|
262
|
+
Status?: string;
|
|
263
|
+
/**
|
|
264
|
+
* 沙箱工具描述信息,最大长度 200 字符
|
|
265
|
+
*/
|
|
266
|
+
Description?: string;
|
|
267
|
+
/**
|
|
268
|
+
* 默认超时时间,支持格式:5m、300s、1h 等,不指定则使用系统默认值(5 分钟)。最大 24 小时
|
|
269
|
+
*/
|
|
270
|
+
DefaultTimeoutSeconds?: number;
|
|
271
|
+
/**
|
|
272
|
+
* 网络配置
|
|
273
|
+
*/
|
|
274
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
275
|
+
/**
|
|
276
|
+
* 标签规格,包含资源标签绑定关系。用于为沙箱工具绑定标签,支持多种资源类型的标签绑定
|
|
277
|
+
*/
|
|
278
|
+
Tags?: Array<Tag>;
|
|
279
|
+
/**
|
|
280
|
+
* 沙箱工具创建时间,格式:ISO8601
|
|
281
|
+
*/
|
|
282
|
+
CreateTime?: string;
|
|
283
|
+
/**
|
|
284
|
+
* 沙箱工具更新时间,格式:ISO8601
|
|
285
|
+
*/
|
|
286
|
+
UpdateTime?: string;
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* 过滤列表规则
|
|
290
|
+
*/
|
|
291
|
+
export interface Filter {
|
|
292
|
+
/**
|
|
293
|
+
* 属性名称, 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
|
294
|
+
*/
|
|
295
|
+
Name?: string;
|
|
296
|
+
/**
|
|
297
|
+
* 属性值, 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
|
|
298
|
+
*/
|
|
299
|
+
Values?: Array<string>;
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* StartSandboxInstance返回参数结构体
|
|
303
|
+
*/
|
|
304
|
+
export interface StartSandboxInstanceResponse {
|
|
305
|
+
/**
|
|
306
|
+
* 创建的沙箱实例完整信息
|
|
307
|
+
*/
|
|
308
|
+
Instance?: SandboxInstance;
|
|
309
|
+
/**
|
|
310
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
311
|
+
*/
|
|
312
|
+
RequestId?: string;
|
|
313
|
+
}
|
|
314
|
+
/**
|
|
315
|
+
* AcquireSandboxInstanceToken请求参数结构体
|
|
316
|
+
*/
|
|
317
|
+
export interface AcquireSandboxInstanceTokenRequest {
|
|
318
|
+
/**
|
|
319
|
+
* 沙箱实例ID,生成的访问Token将仅可用于访问此沙箱实例
|
|
320
|
+
*/
|
|
321
|
+
InstanceId: string;
|
|
322
|
+
}
|
|
323
|
+
/**
|
|
324
|
+
* DescribeAPIKeyList返回参数结构体
|
|
325
|
+
*/
|
|
326
|
+
export interface DescribeAPIKeyListResponse {
|
|
327
|
+
/**
|
|
328
|
+
* API密钥简略信息列表。
|
|
329
|
+
*/
|
|
330
|
+
APIKeySet?: Array<APIKeyInfo>;
|
|
331
|
+
/**
|
|
332
|
+
* 列表中API密钥数量
|
|
333
|
+
*/
|
|
334
|
+
TotalCount?: number;
|
|
335
|
+
/**
|
|
336
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
337
|
+
*/
|
|
338
|
+
RequestId?: string;
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* DescribeSandboxInstanceList请求参数结构体
|
|
342
|
+
*/
|
|
343
|
+
export interface DescribeSandboxInstanceListRequest {
|
|
344
|
+
/**
|
|
345
|
+
* 沙箱实例ID列表,指定要查询的实例。如果为空则查询所有实例。最大支持100个ID
|
|
346
|
+
*/
|
|
347
|
+
InstanceIds?: Array<string>;
|
|
348
|
+
/**
|
|
349
|
+
* 沙箱工具ID,指定时查询该沙箱模板下的实例,为空则查询所有沙箱模板的实例
|
|
350
|
+
*/
|
|
351
|
+
ToolId?: string;
|
|
352
|
+
/**
|
|
353
|
+
* 偏移量,默认为0
|
|
354
|
+
*/
|
|
355
|
+
Offset?: number;
|
|
356
|
+
/**
|
|
357
|
+
* 返回数量,默认为20,最大值为100
|
|
358
|
+
*/
|
|
359
|
+
Limit?: number;
|
|
360
|
+
/**
|
|
361
|
+
* 过滤条件
|
|
362
|
+
*/
|
|
363
|
+
Filters?: Array<Filter>;
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* DescribeAPIKeyList请求参数结构体
|
|
367
|
+
*/
|
|
368
|
+
export type DescribeAPIKeyListRequest = null;
|
|
369
|
+
/**
|
|
370
|
+
* UpdateSandboxInstance请求参数结构体
|
|
371
|
+
*/
|
|
372
|
+
export interface UpdateSandboxInstanceRequest {
|
|
373
|
+
/**
|
|
374
|
+
* 沙箱实例ID
|
|
375
|
+
*/
|
|
376
|
+
InstanceId: string;
|
|
377
|
+
/**
|
|
378
|
+
* 新的超时时间(从设置时开始重新计算超时),支持格式:5m、300s、1h等。最小30s,最大24h。如果不指定则保持原有超时设置
|
|
379
|
+
*/
|
|
380
|
+
Timeout?: string;
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* CreateSandboxTool返回参数结构体
|
|
384
|
+
*/
|
|
385
|
+
export interface CreateSandboxToolResponse {
|
|
386
|
+
/**
|
|
387
|
+
* 创建的沙箱工具 ID
|
|
388
|
+
*/
|
|
389
|
+
ToolId?: string;
|
|
390
|
+
/**
|
|
391
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
392
|
+
*/
|
|
393
|
+
RequestId?: string;
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* UpdateSandboxTool返回参数结构体
|
|
397
|
+
*/
|
|
398
|
+
export interface UpdateSandboxToolResponse {
|
|
399
|
+
/**
|
|
400
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
401
|
+
*/
|
|
402
|
+
RequestId?: string;
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* DeleteAPIKey请求参数结构体
|
|
406
|
+
*/
|
|
407
|
+
export interface DeleteAPIKeyRequest {
|
|
408
|
+
/**
|
|
409
|
+
* 需要删除的API密钥ID
|
|
410
|
+
*/
|
|
411
|
+
KeyId: string;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* AcquireSandboxInstanceToken返回参数结构体
|
|
415
|
+
*/
|
|
416
|
+
export interface AcquireSandboxInstanceTokenResponse {
|
|
417
|
+
/**
|
|
418
|
+
* 访问Token
|
|
419
|
+
*/
|
|
420
|
+
Token?: string;
|
|
421
|
+
/**
|
|
422
|
+
* 过期时间
|
|
423
|
+
*/
|
|
424
|
+
ExpiresAt?: string;
|
|
425
|
+
/**
|
|
426
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
427
|
+
*/
|
|
428
|
+
RequestId?: string;
|
|
429
|
+
}
|
|
430
|
+
/**
|
|
431
|
+
* StopSandboxInstance返回参数结构体
|
|
432
|
+
*/
|
|
433
|
+
export interface StopSandboxInstanceResponse {
|
|
434
|
+
/**
|
|
435
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
436
|
+
*/
|
|
437
|
+
RequestId?: string;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* 标签
|
|
441
|
+
*/
|
|
442
|
+
export interface Tag {
|
|
443
|
+
/**
|
|
444
|
+
* 标签键
|
|
445
|
+
*/
|
|
446
|
+
Key?: string;
|
|
447
|
+
/**
|
|
448
|
+
* 标签值
|
|
449
|
+
*/
|
|
450
|
+
Value?: string;
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* UpdateSandboxTool请求参数结构体
|
|
454
|
+
*/
|
|
455
|
+
export interface UpdateSandboxToolRequest {
|
|
456
|
+
/**
|
|
457
|
+
* 沙箱工具ID
|
|
458
|
+
*/
|
|
459
|
+
ToolId: string;
|
|
460
|
+
/**
|
|
461
|
+
* 沙箱工具描述,最大长度200字符
|
|
462
|
+
*/
|
|
463
|
+
Description?: string;
|
|
464
|
+
/**
|
|
465
|
+
* 网络配置
|
|
466
|
+
*/
|
|
467
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
468
|
+
/**
|
|
469
|
+
* 标签
|
|
470
|
+
*/
|
|
471
|
+
Tags?: Array<Tag>;
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* DescribeSandboxInstanceList返回参数结构体
|
|
475
|
+
*/
|
|
476
|
+
export interface DescribeSandboxInstanceListResponse {
|
|
477
|
+
/**
|
|
478
|
+
* 沙箱实例列表
|
|
479
|
+
*/
|
|
480
|
+
InstanceSet?: Array<SandboxInstance>;
|
|
481
|
+
/**
|
|
482
|
+
* 符合条件的实例总数
|
|
483
|
+
*/
|
|
484
|
+
TotalCount?: number;
|
|
485
|
+
/**
|
|
486
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
487
|
+
*/
|
|
488
|
+
RequestId?: string;
|
|
489
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Copyright (c) 2018 Tencent. All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing,
|
|
12
|
+
* software distributed under the License is distributed on an
|
|
13
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
* KIND, either express or implied. See the License for the
|
|
15
|
+
* specific language governing permissions and limitations
|
|
16
|
+
* under the License.
|
|
17
|
+
*/
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.v20250920 = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const Models = tslib_1.__importStar(require("./ags_models"));
|
|
6
|
+
const ags_client_1 = require("./ags_client");
|
|
7
|
+
exports.v20250920 = {
|
|
8
|
+
Client: ags_client_1.Client,
|
|
9
|
+
Models: Models
|
|
10
|
+
};
|
|
@@ -2434,7 +2434,9 @@ export interface CreateClustersRequest {
|
|
|
2434
2434
|
*/
|
|
2435
2435
|
Port?: number;
|
|
2436
2436
|
/**
|
|
2437
|
-
*
|
|
2437
|
+
* 计费模式,支持值为0和1,默认值为0。
|
|
2438
|
+
取值为0,表示按量计费。
|
|
2439
|
+
取值为1,表示包年包月。
|
|
2438
2440
|
*/
|
|
2439
2441
|
PayMode?: number;
|
|
2440
2442
|
/**
|
|
@@ -7049,7 +7051,7 @@ export interface OpenClusterReadOnlyInstanceGroupAccessResponse {
|
|
|
7049
7051
|
*/
|
|
7050
7052
|
export interface QueryParamFilter {
|
|
7051
7053
|
/**
|
|
7052
|
-
* 搜索字段,目前支持:
|
|
7054
|
+
* 搜索字段,目前支持:ProxyGroupId
|
|
7053
7055
|
*/
|
|
7054
7056
|
Names: Array<string>;
|
|
7055
7057
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.yunsou = exports.yunjing = exports.yinsuda = exports.wss = exports.wsa = exports.weilingwith = exports.wedata = exports.wav = exports.waf = exports.vtc = exports.vrs = exports.vpc = exports.vod = exports.vms = exports.vm = exports.vdb = exports.vcube = exports.vclm = exports.vcg = exports.tts = exports.tsw = exports.tsi = exports.tsf = exports.tse = exports.trtc = exports.trro = exports.trp = exports.trocket = exports.trabbit = exports.tourism = exports.tmt = exports.tms = exports.tkgdq = exports.tke = exports.tiw = exports.tione = exports.tiia = exports.tia = exports.thpc = exports.teo = exports.tem = void 0;
|
|
3
|
+
exports.cdwpg = exports.cdwdoris = exports.cdwch = exports.cds = exports.cdn = exports.cdc = exports.cdb = exports.ccc = exports.cbs = exports.cat = exports.car = exports.captcha = exports.cam = exports.ca = exports.btoe = exports.bsca = exports.bri = exports.bpaas = exports.bmvpc = exports.bmlb = exports.bmeip = exports.bma = exports.bm = exports.bizlive = exports.billing = exports.bi = exports.bh = exports.bda = exports.batch = exports.ba = exports.asw = exports.asr = exports.as = exports.apm = exports.apigateway = exports.api = exports.ape = exports.antiddos = exports.anicloud = exports.ams = exports.ame = exports.aiart = exports.ai3d = exports.ags = exports.afc = exports.af = exports.advisor = exports.acp = exports.aca = exports.aai = void 0;
|
|
4
|
+
exports.emr = exports.eis = exports.eiam = exports.ecm = exports.ecdn = exports.ecc = exports.eb = exports.dts = exports.dsgc = exports.ds = exports.drm = exports.domain = exports.dnspod = exports.dlc = exports.dcdb = exports.dc = exports.dbdc = exports.dbbrain = exports.dayu = exports.dasb = exports.cynosdb = exports.cws = exports.cwp = exports.cvm = exports.ctsdb = exports.ctem = exports.csxg = exports.csip = exports.cpdp = exports.controlcenter = exports.config = exports.cms = exports.cmq = exports.cme = exports.cls = exports.cloudstudio = exports.cloudhsm = exports.cloudaudit = exports.cloudapp = exports.clb = exports.ckafka = exports.cim = exports.cii = exports.ciam = exports.chdfs = exports.chc = exports.cfw = exports.cfs = exports.cfg = exports.cdz = void 0;
|
|
5
|
+
exports.monitor = exports.mongodb = exports.mna = exports.mmps = exports.memcached = exports.market = exports.mariadb = exports.mall = exports.lowcode = exports.lkeap = exports.lke = exports.live = exports.lighthouse = exports.lcic = exports.kms = exports.keewidb = exports.ivld = exports.iss = exports.irp = exports.iotvideoindustry = exports.iotvideo = exports.iotexplorer = exports.iotcloud = exports.iot = exports.ioa = exports.ims = exports.igtm = exports.ig = exports.ie = exports.icr = exports.ic = exports.iap = exports.iai = exports.hunyuan = exports.hcm = exports.hasim = exports.hai = exports.habo = exports.gwlb = exports.gs = exports.goosefs = exports.gme = exports.gaap = exports.ft = exports.fmu = exports.faceid = exports.facefusion = exports.essbasic = exports.ess = exports.es = void 0;
|
|
6
|
+
exports.tdmq = exports.tdid = exports.tdcpg = exports.tdai = exports.tcss = exports.tcr = exports.tcm = exports.tchd = exports.tccatalog = exports.tcbr = exports.tcb = exports.tcaplusdb = exports.tbp = exports.tbaas = exports.tat = exports.tag = exports.taf = exports.svp = exports.sts = exports.ssm = exports.sslpod = exports.ssl = exports.ssa = exports.sqlserver = exports.soe = exports.sms = exports.smop = exports.smh = exports.ses = exports.securitylake = exports.scf = exports.rum = exports.region = exports.redis = exports.rce = exports.pts = exports.privatedns = exports.postgres = exports.partners = exports.organization = exports.omics = exports.ocr = exports.oceanus = exports.npp = exports.nlp = exports.msp = exports.ms = exports.mrs = exports.mqtt = exports.mps = void 0;
|
|
7
|
+
exports.yunsou = exports.yunjing = exports.yinsuda = exports.wss = exports.wsa = exports.weilingwith = exports.wedata = exports.wav = exports.waf = exports.vtc = exports.vrs = exports.vpc = exports.vod = exports.vms = exports.vm = exports.vdb = exports.vcube = exports.vclm = exports.vcg = exports.tts = exports.tsw = exports.tsi = exports.tsf = exports.tse = exports.trtc = exports.trro = exports.trp = exports.trocket = exports.trabbit = exports.tourism = exports.tmt = exports.tms = exports.tkgdq = exports.tke = exports.tiw = exports.tione = exports.tiia = exports.tia = exports.thpc = exports.teo = exports.tem = exports.tds = void 0;
|
|
8
8
|
var aai_1 = require("./aai");
|
|
9
9
|
Object.defineProperty(exports, "aai", { enumerable: true, get: function () { return aai_1.aai; } });
|
|
10
10
|
var aca_1 = require("./aca");
|
|
@@ -17,6 +17,8 @@ var af_1 = require("./af");
|
|
|
17
17
|
Object.defineProperty(exports, "af", { enumerable: true, get: function () { return af_1.af; } });
|
|
18
18
|
var afc_1 = require("./afc");
|
|
19
19
|
Object.defineProperty(exports, "afc", { enumerable: true, get: function () { return afc_1.afc; } });
|
|
20
|
+
var ags_1 = require("./ags");
|
|
21
|
+
Object.defineProperty(exports, "ags", { enumerable: true, get: function () { return ags_1.ags; } });
|
|
20
22
|
var ai3d_1 = require("./ai3d");
|
|
21
23
|
Object.defineProperty(exports, "ai3d", { enumerable: true, get: function () { return ai3d_1.ai3d; } });
|
|
22
24
|
var aiart_1 = require("./aiart");
|
|
@@ -8435,9 +8435,9 @@ export interface ModifyHostsCertificateRequest {
|
|
|
8435
8435
|
<li>eofreecert:通过自动验证申请免费证书并部署。验证方式详见:[申请免费证书支持的验证方式](https://cloud.tencent.com/document/product/1552/90437)
|
|
8436
8436
|
|
|
8437
8437
|
- 在 NS 或者 DNSPod 托管接入模式下,仅支持自动验证的方式申请免费证书。
|
|
8438
|
-
- 当免费证书申请失败时会导致证书部署失败,您可以通过<a href = 'https://
|
|
8439
|
-
</ul><li>eofreecert_manual:部署 DNS 委派验证或者文件验证申请的免费证书。在部署免费证书前,您需要触发<a href = 'https://
|
|
8440
|
-
<ul><li>注意:在对免费证书部署时,需要保证当前已存在申请成功的免费证书。您可以通过<a href = 'https://
|
|
8438
|
+
- 当免费证书申请失败时会导致证书部署失败,您可以通过<a href = 'https://cloud.tencent.com/document/product/1552/124806'>检查免费证书申请结果</a>接口获取申请失败原因。</li>
|
|
8439
|
+
</ul><li>eofreecert_manual:部署 DNS 委派验证或者文件验证申请的免费证书。在部署免费证书前,您需要触发<a href = 'https://cloud.tencent.com/document/product/1552/124807'>申请免费证书</a>接口申请免费证书。在免费证书申请成功后,你可以通过该枚举值对免费证书进行部署;</li>
|
|
8440
|
+
<ul><li>注意:在对免费证书部署时,需要保证当前已存在申请成功的免费证书。您可以通过<a href = 'https://cloud.tencent.com/document/product/1552/124806'>检查免费证书申请结果</a>接口检查当前是否已存在申请成功的免费证书。</li>
|
|
8441
8441
|
</ul><li>sslcert:配置 SSL 托管服务端证书。</li>
|
|
8442
8442
|
*/
|
|
8443
8443
|
Mode?: string;
|