tencentcloud-sdk-nodejs 4.1.137 → 4.1.138
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/ccc/v20200210/ccc_client.js +3 -0
- package/es/services/dnspod/v20210323/dnspod_client.js +6 -0
- package/es/services/tcss/v20201101/tcss_client.js +3 -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/ccc/v20200210/ccc_client.d.ts +5 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +6 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +55 -8
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +2 -2
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +1 -1
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +1 -1
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +47 -3
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +12 -0
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +3 -3
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +9 -3
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +12 -2
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +114 -62
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1 -1
- package/tencentcloud/services/gme/v20180711/gme_client.d.ts +2 -2
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +103 -13
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +38 -14
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +8 -0
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +4 -0
- package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +5 -1
- package/tencentcloud/services/tcss/v20201101/tcss_client.js +6 -0
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +18 -0
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +1 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +2 -2
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +28 -12
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +3 -3
|
@@ -657,7 +657,7 @@ export interface DomainInfo {
|
|
|
657
657
|
*/
|
|
658
658
|
DomainId?: number;
|
|
659
659
|
/**
|
|
660
|
-
*
|
|
660
|
+
* 域名状态,正常:ENABLE,暂停:PAUSE,封禁:SPAM
|
|
661
661
|
*/
|
|
662
662
|
Status?: string;
|
|
663
663
|
/**
|
|
@@ -673,7 +673,7 @@ export interface DomainInfo {
|
|
|
673
673
|
*/
|
|
674
674
|
IsMark?: string;
|
|
675
675
|
/**
|
|
676
|
-
* TTL(DNS记录缓存时间)
|
|
676
|
+
* TTL(DNS记录缓存时间),单位:秒
|
|
677
677
|
*/
|
|
678
678
|
TTL?: number;
|
|
679
679
|
/**
|
|
@@ -689,7 +689,7 @@ export interface DomainInfo {
|
|
|
689
689
|
*/
|
|
690
690
|
Punycode?: string;
|
|
691
691
|
/**
|
|
692
|
-
* 域名DNS
|
|
692
|
+
* 域名DNS状态,错误:dnserror,正常:空字符串
|
|
693
693
|
*/
|
|
694
694
|
DnsStatus?: string;
|
|
695
695
|
/**
|
|
@@ -1760,6 +1760,35 @@ export interface CreateDealRequest {
|
|
|
1760
1760
|
*/
|
|
1761
1761
|
NewPackageType?: string;
|
|
1762
1762
|
}
|
|
1763
|
+
/**
|
|
1764
|
+
* 子域名解析量统计查询信息
|
|
1765
|
+
*/
|
|
1766
|
+
export interface SubdomainAnalyticsInfo {
|
|
1767
|
+
/**
|
|
1768
|
+
* DATE:按天维度统计 HOUR:按小时维度统计
|
|
1769
|
+
*/
|
|
1770
|
+
DnsFormat: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* 当前统计周期解析量总计
|
|
1773
|
+
*/
|
|
1774
|
+
DnsTotal: number;
|
|
1775
|
+
/**
|
|
1776
|
+
* 当前查询的域名
|
|
1777
|
+
*/
|
|
1778
|
+
Domain: string;
|
|
1779
|
+
/**
|
|
1780
|
+
* 当前统计周期开始时间
|
|
1781
|
+
*/
|
|
1782
|
+
StartDate: string;
|
|
1783
|
+
/**
|
|
1784
|
+
* 当前统计周期结束时间
|
|
1785
|
+
*/
|
|
1786
|
+
EndDate: string;
|
|
1787
|
+
/**
|
|
1788
|
+
* 当前统计的子域名
|
|
1789
|
+
*/
|
|
1790
|
+
Subdomain: string;
|
|
1791
|
+
}
|
|
1763
1792
|
/**
|
|
1764
1793
|
* ModifyDomainLock请求参数结构体
|
|
1765
1794
|
*/
|
|
@@ -1815,11 +1844,11 @@ export interface ModifyTXTRecordRequest {
|
|
|
1815
1844
|
*/
|
|
1816
1845
|
SubDomain?: string;
|
|
1817
1846
|
/**
|
|
1818
|
-
* 线路的 ID,通过 API
|
|
1847
|
+
* 线路的 ID,通过 API 记录线路获得,字符串,比如:10=1。参数RecordLineId优先级高于RecordLine,如果同时传递二者,优先使用RecordLineId参数。
|
|
1819
1848
|
*/
|
|
1820
1849
|
RecordLineId?: string;
|
|
1821
1850
|
/**
|
|
1822
|
-
* TTL,范围1-604800
|
|
1851
|
+
* TTL,范围1-604800,不同等级域名最小值不同。单位:秒
|
|
1823
1852
|
*/
|
|
1824
1853
|
TTL?: number;
|
|
1825
1854
|
/**
|
|
@@ -2043,6 +2072,19 @@ export interface DeleteRecordGroupResponse {
|
|
|
2043
2072
|
*/
|
|
2044
2073
|
RequestId?: string;
|
|
2045
2074
|
}
|
|
2075
|
+
/**
|
|
2076
|
+
* ModifyDomainRecursiveStatusBatch返回参数结构体
|
|
2077
|
+
*/
|
|
2078
|
+
export interface ModifyDomainRecursiveStatusBatchResponse {
|
|
2079
|
+
/**
|
|
2080
|
+
* 任务 ID
|
|
2081
|
+
*/
|
|
2082
|
+
JobId?: number;
|
|
2083
|
+
/**
|
|
2084
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2085
|
+
*/
|
|
2086
|
+
RequestId?: string;
|
|
2087
|
+
}
|
|
2046
2088
|
/**
|
|
2047
2089
|
* 记录信息
|
|
2048
2090
|
*/
|
|
@@ -2109,35 +2151,6 @@ export interface RecordInfo {
|
|
|
2109
2151
|
*/
|
|
2110
2152
|
DomainId?: number;
|
|
2111
2153
|
}
|
|
2112
|
-
/**
|
|
2113
|
-
* 域名解析量统计信息
|
|
2114
|
-
*/
|
|
2115
|
-
export interface ResolveCountInfo {
|
|
2116
|
-
/**
|
|
2117
|
-
* 当前统计周期解析量总计
|
|
2118
|
-
*/
|
|
2119
|
-
DnsTotal?: number;
|
|
2120
|
-
/**
|
|
2121
|
-
* 当前查询的域名
|
|
2122
|
-
*/
|
|
2123
|
-
Domain?: string;
|
|
2124
|
-
/**
|
|
2125
|
-
* 当前统计周期开始时间
|
|
2126
|
-
*/
|
|
2127
|
-
StartDate?: string;
|
|
2128
|
-
/**
|
|
2129
|
-
* 当前统计周期结束时间
|
|
2130
|
-
*/
|
|
2131
|
-
EndDate?: string;
|
|
2132
|
-
/**
|
|
2133
|
-
* 当前统计的子域名
|
|
2134
|
-
*/
|
|
2135
|
-
SubDomain?: string;
|
|
2136
|
-
/**
|
|
2137
|
-
* 数据统计格式,取值为minute、hour、day,分别表示按十分钟、小时、天统计数据
|
|
2138
|
-
*/
|
|
2139
|
-
DnsFormat?: string;
|
|
2140
|
-
}
|
|
2141
2154
|
/**
|
|
2142
2155
|
* DescribeSnapshotRollbackTask请求参数结构体
|
|
2143
2156
|
*/
|
|
@@ -2181,7 +2194,7 @@ export interface UserInfo {
|
|
|
2181
2194
|
*/
|
|
2182
2195
|
Email?: string;
|
|
2183
2196
|
/**
|
|
2184
|
-
*
|
|
2197
|
+
* 账号状态: "enabled": 正常; "disabled": 被封禁
|
|
2185
2198
|
*/
|
|
2186
2199
|
Status?: string;
|
|
2187
2200
|
/**
|
|
@@ -2189,11 +2202,11 @@ export interface UserInfo {
|
|
|
2189
2202
|
*/
|
|
2190
2203
|
Telephone?: string;
|
|
2191
2204
|
/**
|
|
2192
|
-
*
|
|
2205
|
+
* 邮箱是否通过验证:"yes": 通过; "no": 未通过
|
|
2193
2206
|
*/
|
|
2194
2207
|
EmailVerified?: string;
|
|
2195
2208
|
/**
|
|
2196
|
-
*
|
|
2209
|
+
* 手机是否通过验证:"yes": 通过; "no": 未通过
|
|
2197
2210
|
*/
|
|
2198
2211
|
TelephoneVerified?: string;
|
|
2199
2212
|
/**
|
|
@@ -2205,7 +2218,7 @@ export interface UserInfo {
|
|
|
2205
2218
|
*/
|
|
2206
2219
|
RealName?: string;
|
|
2207
2220
|
/**
|
|
2208
|
-
*
|
|
2221
|
+
* 是否绑定微信: "yes": 通过; "no": 未通过
|
|
2209
2222
|
*/
|
|
2210
2223
|
WechatBinded?: string;
|
|
2211
2224
|
/**
|
|
@@ -2942,7 +2955,7 @@ export interface RecordListItem {
|
|
|
2942
2955
|
*/
|
|
2943
2956
|
TTL?: number;
|
|
2944
2957
|
/**
|
|
2945
|
-
* MX
|
|
2958
|
+
* MX值
|
|
2946
2959
|
*/
|
|
2947
2960
|
MX?: number;
|
|
2948
2961
|
/**
|
|
@@ -3045,33 +3058,17 @@ export interface ModifyDomainOwnerResponse {
|
|
|
3045
3058
|
RequestId?: string;
|
|
3046
3059
|
}
|
|
3047
3060
|
/**
|
|
3048
|
-
*
|
|
3061
|
+
* ModifyDomainRecursiveStatusBatch请求参数结构体
|
|
3049
3062
|
*/
|
|
3050
|
-
export interface
|
|
3063
|
+
export interface ModifyDomainRecursiveStatusBatchRequest {
|
|
3051
3064
|
/**
|
|
3052
|
-
*
|
|
3053
|
-
*/
|
|
3054
|
-
DnsFormat: string;
|
|
3055
|
-
/**
|
|
3056
|
-
* 当前统计周期解析量总计
|
|
3057
|
-
*/
|
|
3058
|
-
DnsTotal: number;
|
|
3059
|
-
/**
|
|
3060
|
-
* 当前查询的域名
|
|
3061
|
-
*/
|
|
3062
|
-
Domain: string;
|
|
3063
|
-
/**
|
|
3064
|
-
* 当前统计周期开始时间
|
|
3065
|
-
*/
|
|
3066
|
-
StartDate: string;
|
|
3067
|
-
/**
|
|
3068
|
-
* 当前统计周期结束时间
|
|
3065
|
+
* 域名列表
|
|
3069
3066
|
*/
|
|
3070
|
-
|
|
3067
|
+
DomainList: Array<string>;
|
|
3071
3068
|
/**
|
|
3072
|
-
*
|
|
3069
|
+
* ENABLE-开启;DISABLE-关闭。
|
|
3073
3070
|
*/
|
|
3074
|
-
|
|
3071
|
+
Status: string;
|
|
3075
3072
|
}
|
|
3076
3073
|
/**
|
|
3077
3074
|
* 自定义线路详情
|
|
@@ -3206,7 +3203,7 @@ export interface CreateDomainRequest {
|
|
|
3206
3203
|
*/
|
|
3207
3204
|
GroupId?: number;
|
|
3208
3205
|
/**
|
|
3209
|
-
*
|
|
3206
|
+
* 是否星标域名,"yes"、"no" 分别代表是和否。
|
|
3210
3207
|
*/
|
|
3211
3208
|
IsMark?: string;
|
|
3212
3209
|
/**
|
|
@@ -3998,6 +3995,19 @@ export interface DescribeRecordGroupListResponse {
|
|
|
3998
3995
|
*/
|
|
3999
3996
|
RequestId?: string;
|
|
4000
3997
|
}
|
|
3998
|
+
/**
|
|
3999
|
+
* ModifyDomainCNAMESpeedupStatusBatch请求参数结构体
|
|
4000
|
+
*/
|
|
4001
|
+
export interface ModifyDomainCNAMESpeedupStatusBatchRequest {
|
|
4002
|
+
/**
|
|
4003
|
+
* 域名列表
|
|
4004
|
+
*/
|
|
4005
|
+
DomainList: Array<string>;
|
|
4006
|
+
/**
|
|
4007
|
+
* 状态。ENABLE-开启;DISABLE-关闭。
|
|
4008
|
+
*/
|
|
4009
|
+
Status: string;
|
|
4010
|
+
}
|
|
4001
4011
|
/**
|
|
4002
4012
|
* 自定义线路分组元素
|
|
4003
4013
|
*/
|
|
@@ -4526,6 +4536,19 @@ export interface DescribeRecordExistExceptDefaultNSRequest {
|
|
|
4526
4536
|
*/
|
|
4527
4537
|
DomainId?: number;
|
|
4528
4538
|
}
|
|
4539
|
+
/**
|
|
4540
|
+
* ModifyDomainCNAMESpeedupStatusBatch返回参数结构体
|
|
4541
|
+
*/
|
|
4542
|
+
export interface ModifyDomainCNAMESpeedupStatusBatchResponse {
|
|
4543
|
+
/**
|
|
4544
|
+
* 任务 ID
|
|
4545
|
+
*/
|
|
4546
|
+
JobId?: number;
|
|
4547
|
+
/**
|
|
4548
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4549
|
+
*/
|
|
4550
|
+
RequestId?: string;
|
|
4551
|
+
}
|
|
4529
4552
|
/**
|
|
4530
4553
|
* ModifySnapshotConfig返回参数结构体
|
|
4531
4554
|
*/
|
|
@@ -4921,6 +4944,35 @@ export interface CreateDealResponse {
|
|
|
4921
4944
|
*/
|
|
4922
4945
|
RequestId?: string;
|
|
4923
4946
|
}
|
|
4947
|
+
/**
|
|
4948
|
+
* 域名解析量统计信息
|
|
4949
|
+
*/
|
|
4950
|
+
export interface ResolveCountInfo {
|
|
4951
|
+
/**
|
|
4952
|
+
* 当前统计周期解析量总计
|
|
4953
|
+
*/
|
|
4954
|
+
DnsTotal?: number;
|
|
4955
|
+
/**
|
|
4956
|
+
* 当前查询的域名
|
|
4957
|
+
*/
|
|
4958
|
+
Domain?: string;
|
|
4959
|
+
/**
|
|
4960
|
+
* 当前统计周期开始时间
|
|
4961
|
+
*/
|
|
4962
|
+
StartDate?: string;
|
|
4963
|
+
/**
|
|
4964
|
+
* 当前统计周期结束时间
|
|
4965
|
+
*/
|
|
4966
|
+
EndDate?: string;
|
|
4967
|
+
/**
|
|
4968
|
+
* 当前统计的子域名
|
|
4969
|
+
*/
|
|
4970
|
+
SubDomain?: string;
|
|
4971
|
+
/**
|
|
4972
|
+
* 数据统计格式,取值为minute、hour、day,分别表示按十分钟、小时、天统计数据
|
|
4973
|
+
*/
|
|
4974
|
+
DnsFormat?: string;
|
|
4975
|
+
}
|
|
4924
4976
|
/**
|
|
4925
4977
|
* DescribeRecordExistExceptDefaultNS返回参数结构体
|
|
4926
4978
|
*/
|
|
@@ -9582,7 +9582,7 @@ export interface Component {
|
|
|
9582
9582
|
<b>参数样例</b>:`{"UseSealSize":true}`
|
|
9583
9583
|
|
|
9584
9584
|
<font color="red">签署意见功能设置,</font>当ComponentType为SIGN_OPINION时,可以通过以下参数设置签署意见的相关内容:
|
|
9585
|
-
<ul><li> <b>Values</b
|
|
9585
|
+
<ul><li> <b>Values</b>:签署意见预设的需要用户填写的文本</li>
|
|
9586
9586
|
<li> <b>ValuesArray</b>:签署意见需要用户按顺序点击的分词(组合后应和Values内容一致)</li></ul>
|
|
9587
9587
|
<b>参数样例</b>:`{"Values":"我已知晓内容并同意签署","ValuesArray":["我","已知晓","内容","并","同意","签署"]}`
|
|
9588
9588
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { ModifyAppStatusRequest, ModifyRecordInfoRequest, ModifyCustomizationStateRequest, StartAIConversationResponse, CreateScanUserRequest, StartAIConversationRequest, DescribeScanResultListRequest, StartRecordRequest, GetCustomizationListResponse, DeleteScanUserRequest, ModifyUserMicStatusRequest, UpdateScanUsersResponse, ControlAIConversationResponse, DescribeAgeDetectTaskRequest, DeleteCustomizationResponse, DescribeApplicationListRequest, GetCustomizationListRequest, RegisterVoicePrintResponse, DescribeRecordInfoResponse,
|
|
3
|
+
import { ModifyAppStatusRequest, ModifyRecordInfoRequest, ModifyCustomizationStateRequest, StartAIConversationResponse, CreateScanUserRequest, StartAIConversationRequest, DescribeScanResultListRequest, StartRecordRequest, GetCustomizationListResponse, DeleteScanUserRequest, ModifyUserMicStatusRequest, UpdateScanUsersResponse, ControlAIConversationResponse, DescribeAgeDetectTaskRequest, DeleteCustomizationResponse, DescribeApplicationListRequest, GetCustomizationListRequest, RegisterVoicePrintResponse, DescribeRecordInfoResponse, CreateAppResponse, StopRecordResponse, DeleteVoicePrintRequest, DescribeUserInAndOutTimeRequest, StartRecordResponse, DescribeScanResultListResponse, DescribeApplicationListResponse, DescribeRecordInfoRequest, DescribeRoomInfoRequest, DescribeAuditResultExternalRequest, ModifyCustomizationResponse, DeleteCustomizationRequest, CreateAgeDetectTaskRequest, DescribeAppStatisticsResponse, DescribeVoicePrintResponse, DeleteScanUserResponse, DescribeRoomInfoResponse, DescribeAIConversationResponse, DescribeVoicePrintRequest, DescribeTaskInfoRequest, DescribeAuditResultExternalResponse, ScanVoiceRequest, RegisterVoicePrintRequest, UpdateVoicePrintRequest, DescribeApplicationDataRequest, CreateScanUserResponse, DeleteVoicePrintResponse, ModifyUserMicStatusResponse, DescribeTaskInfoResponse, DeleteRoomMemberResponse, ModifyCustomizationRequest, StopAIConversationResponse, DescribeAIConversationRequest, DescribeUserInAndOutTimeResponse, DescribeAppStatisticsRequest, StopRecordRequest, CreateAppRequest, ControlAIConversationRequest, ScanVoiceResponse, CreateAgeDetectTaskResponse, DescribeRealtimeScanConfigResponse, DeleteRoomMemberRequest, CreateCustomizationRequest, UpdateScanRoomsRequest, DescribeRealtimeScanConfigRequest, DescribeAgeDetectTaskResponse, StopAIConversationRequest, UpdateAIConversationRequest, UpdateScanRoomsResponse, DescribeApplicationDataResponse, UpdateAIConversationResponse, UpdateVoicePrintResponse, UpdateScanUsersRequest, ModifyAppStatusResponse, CreateCustomizationResponse, ModifyCustomizationStateResponse, ModifyRecordInfoResponse } from "./gme_models";
|
|
4
4
|
/**
|
|
5
5
|
* gme client
|
|
6
6
|
* @class
|
|
@@ -19,7 +19,7 @@ export declare class Client extends AbstractClient {
|
|
|
19
19
|
/**
|
|
20
20
|
* 获审核结果明细(外部API)
|
|
21
21
|
*/
|
|
22
|
-
DescribeAuditResultExternal(req
|
|
22
|
+
DescribeAuditResultExternal(req: DescribeAuditResultExternalRequest, cb?: (error: string, rep: DescribeAuditResultExternalResponse) => void): Promise<DescribeAuditResultExternalResponse>;
|
|
23
23
|
/**
|
|
24
24
|
* 更新AIConversation参数
|
|
25
25
|
*/
|
|
@@ -588,17 +588,13 @@ export interface DescribeRecordInfoResponse {
|
|
|
588
588
|
RequestId?: string;
|
|
589
589
|
}
|
|
590
590
|
/**
|
|
591
|
-
*
|
|
591
|
+
* CreateApp返回参数结构体
|
|
592
592
|
*/
|
|
593
|
-
export interface
|
|
594
|
-
/**
|
|
595
|
-
* 获取应用列表返回
|
|
596
|
-
*/
|
|
597
|
-
ApplicationList?: Array<ApplicationList>;
|
|
593
|
+
export interface CreateAppResponse {
|
|
598
594
|
/**
|
|
599
|
-
*
|
|
595
|
+
* 创建应用返回数据
|
|
600
596
|
*/
|
|
601
|
-
|
|
597
|
+
Data?: CreateAppResp;
|
|
602
598
|
/**
|
|
603
599
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
604
600
|
*/
|
|
@@ -758,13 +754,17 @@ export interface UserMicStatus {
|
|
|
758
754
|
StrUid?: string;
|
|
759
755
|
}
|
|
760
756
|
/**
|
|
761
|
-
*
|
|
757
|
+
* DescribeApplicationList返回参数结构体
|
|
762
758
|
*/
|
|
763
|
-
export interface
|
|
759
|
+
export interface DescribeApplicationListResponse {
|
|
764
760
|
/**
|
|
765
|
-
*
|
|
761
|
+
* 获取应用列表返回
|
|
766
762
|
*/
|
|
767
|
-
|
|
763
|
+
ApplicationList?: Array<ApplicationList>;
|
|
764
|
+
/**
|
|
765
|
+
* 应用总数
|
|
766
|
+
*/
|
|
767
|
+
Total?: number;
|
|
768
768
|
/**
|
|
769
769
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
770
770
|
*/
|
|
@@ -820,7 +820,48 @@ export interface DescribeRoomInfoRequest {
|
|
|
820
820
|
/**
|
|
821
821
|
* DescribeAuditResultExternal请求参数结构体
|
|
822
822
|
*/
|
|
823
|
-
export
|
|
823
|
+
export interface DescribeAuditResultExternalRequest {
|
|
824
|
+
/**
|
|
825
|
+
* 应用 ID
|
|
826
|
+
*/
|
|
827
|
+
BizId: number;
|
|
828
|
+
/**
|
|
829
|
+
* 页数 取值范围:>=1
|
|
830
|
+
*/
|
|
831
|
+
PageNo: number;
|
|
832
|
+
/**
|
|
833
|
+
* 每页大小
|
|
834
|
+
*/
|
|
835
|
+
PageSize: number;
|
|
836
|
+
/**
|
|
837
|
+
* 起始时间戳(秒)
|
|
838
|
+
*/
|
|
839
|
+
BeginTime: number;
|
|
840
|
+
/**
|
|
841
|
+
* 截止时间戳(秒)
|
|
842
|
+
*/
|
|
843
|
+
EndTime: number;
|
|
844
|
+
/**
|
|
845
|
+
* 最小恶意分数
|
|
846
|
+
*/
|
|
847
|
+
MinRate: number;
|
|
848
|
+
/**
|
|
849
|
+
* 最大恶意分数
|
|
850
|
+
*/
|
|
851
|
+
MaxRate: number;
|
|
852
|
+
/**
|
|
853
|
+
* UserID
|
|
854
|
+
*/
|
|
855
|
+
OpenId: string;
|
|
856
|
+
/**
|
|
857
|
+
* 恶意分类
|
|
858
|
+
*/
|
|
859
|
+
Label?: string;
|
|
860
|
+
/**
|
|
861
|
+
* 房间 ID
|
|
862
|
+
*/
|
|
863
|
+
RoomId?: string;
|
|
864
|
+
}
|
|
824
865
|
/**
|
|
825
866
|
* ModifyCustomization返回参数结构体
|
|
826
867
|
*/
|
|
@@ -1178,11 +1219,60 @@ export interface ScanVoiceResult {
|
|
|
1178
1219
|
* DescribeAuditResultExternal返回参数结构体
|
|
1179
1220
|
*/
|
|
1180
1221
|
export interface DescribeAuditResultExternalResponse {
|
|
1222
|
+
/**
|
|
1223
|
+
* 总数
|
|
1224
|
+
*/
|
|
1225
|
+
TotalCount?: number;
|
|
1226
|
+
/**
|
|
1227
|
+
* 明细列表
|
|
1228
|
+
*/
|
|
1229
|
+
Data?: Array<AuditResultDetailExternal>;
|
|
1181
1230
|
/**
|
|
1182
1231
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1183
1232
|
*/
|
|
1184
1233
|
RequestId?: string;
|
|
1185
1234
|
}
|
|
1235
|
+
/**
|
|
1236
|
+
* 审核结果明细(对外)
|
|
1237
|
+
*/
|
|
1238
|
+
export interface AuditResultDetailExternal {
|
|
1239
|
+
/**
|
|
1240
|
+
* 任务 ID
|
|
1241
|
+
*/
|
|
1242
|
+
TaskId?: string;
|
|
1243
|
+
/**
|
|
1244
|
+
* 房间 ID
|
|
1245
|
+
*/
|
|
1246
|
+
RoomId?: string;
|
|
1247
|
+
/**
|
|
1248
|
+
* UserID
|
|
1249
|
+
*/
|
|
1250
|
+
OpenId?: string;
|
|
1251
|
+
/**
|
|
1252
|
+
* 标签
|
|
1253
|
+
*/
|
|
1254
|
+
Label?: string;
|
|
1255
|
+
/**
|
|
1256
|
+
* 恶意分数
|
|
1257
|
+
*/
|
|
1258
|
+
Rate?: number;
|
|
1259
|
+
/**
|
|
1260
|
+
* 创建时间
|
|
1261
|
+
*/
|
|
1262
|
+
CreateTime?: number;
|
|
1263
|
+
/**
|
|
1264
|
+
* 音频 Url
|
|
1265
|
+
*/
|
|
1266
|
+
Url?: string;
|
|
1267
|
+
/**
|
|
1268
|
+
* 文件Id
|
|
1269
|
+
*/
|
|
1270
|
+
FileId?: string;
|
|
1271
|
+
/**
|
|
1272
|
+
* ASR结果
|
|
1273
|
+
*/
|
|
1274
|
+
Info?: string;
|
|
1275
|
+
}
|
|
1186
1276
|
/**
|
|
1187
1277
|
* 服务开关状态
|
|
1188
1278
|
*/
|
|
@@ -2605,6 +2605,13 @@ export interface CreateMcpServerRequest {
|
|
|
2605
2605
|
* MCP Server环境变量。最大长度:10
|
|
2606
2606
|
*/
|
|
2607
2607
|
Envs?: Array<McpServerEnv>;
|
|
2608
|
+
/**
|
|
2609
|
+
* 传输类型。枚举值如下:
|
|
2610
|
+
|
|
2611
|
+
<li>STREAMABLE_HTTP:HTTP协议的流式传输方式。未传传输类型字段时,默认创建此类型的MCP Server</li>
|
|
2612
|
+
<li>SSE:Server-Sent Events,服务器发送事件</li>
|
|
2613
|
+
*/
|
|
2614
|
+
TransportType?: string;
|
|
2608
2615
|
}
|
|
2609
2616
|
/**
|
|
2610
2617
|
* DescribeInstancesDiskNum返回参数结构体
|
|
@@ -4152,7 +4159,7 @@ export interface ContainerEnv {
|
|
|
4152
4159
|
*/
|
|
4153
4160
|
export interface McpServer {
|
|
4154
4161
|
/**
|
|
4155
|
-
* MCP Server ID
|
|
4162
|
+
* MCP Server ID
|
|
4156
4163
|
*/
|
|
4157
4164
|
McpServerId?: string;
|
|
4158
4165
|
/**
|
|
@@ -4160,7 +4167,10 @@ export interface McpServer {
|
|
|
4160
4167
|
*/
|
|
4161
4168
|
Name?: string;
|
|
4162
4169
|
/**
|
|
4163
|
-
* MCP Server
|
|
4170
|
+
* MCP Server类型。枚举值如下:
|
|
4171
|
+
|
|
4172
|
+
<li>PUBLIC_PACKAGE:公共包安装</li>
|
|
4173
|
+
<li>AGENT_GENERATED:AI生成</li>
|
|
4164
4174
|
*/
|
|
4165
4175
|
McpServerType?: string;
|
|
4166
4176
|
/**
|
|
@@ -4174,20 +4184,20 @@ export interface McpServer {
|
|
|
4174
4184
|
/**
|
|
4175
4185
|
* MCP Server状态。枚举值如下:
|
|
4176
4186
|
|
|
4177
|
-
PENDING
|
|
4178
|
-
LAUNCH_FAILED
|
|
4179
|
-
RUNNING
|
|
4180
|
-
STOPPED
|
|
4181
|
-
STARTING
|
|
4182
|
-
STOPPING
|
|
4183
|
-
RESTARTING
|
|
4184
|
-
REMOVING
|
|
4185
|
-
UNKNOWN
|
|
4186
|
-
ENV_ERROR
|
|
4187
|
+
<li>PENDING:表示创建中</li>
|
|
4188
|
+
<li>LAUNCH_FAILED:表示创建失败</li>
|
|
4189
|
+
<li>RUNNING:表示运行中</li>
|
|
4190
|
+
<li>STOPPED:表示关闭</li>
|
|
4191
|
+
<li>STARTING:表示开启中</li>
|
|
4192
|
+
<li>STOPPING:表示关闭中</li>
|
|
4193
|
+
<li>RESTARTING:表示重启中</li>
|
|
4194
|
+
<li>REMOVING:表示删除中</li>
|
|
4195
|
+
<li>UNKNOWN:表示未知</li>
|
|
4196
|
+
<li>ENV_ERROR:表示环境错误</li>
|
|
4187
4197
|
*/
|
|
4188
4198
|
State?: string;
|
|
4189
4199
|
/**
|
|
4190
|
-
* MCP Server
|
|
4200
|
+
* MCP Server访问地址。传输类型 TransportType 为 STREAMABLE_HTTP 时以 /mcp结尾,为 SSE 时以 /sse结尾。
|
|
4191
4201
|
*/
|
|
4192
4202
|
ServerUrl?: string;
|
|
4193
4203
|
/**
|
|
@@ -4212,6 +4222,13 @@ export interface McpServer {
|
|
|
4212
4222
|
* MCP Server环境变量
|
|
4213
4223
|
*/
|
|
4214
4224
|
EnvSet?: Array<McpServerEnv>;
|
|
4225
|
+
/**
|
|
4226
|
+
* 传输类型。枚举值如下:
|
|
4227
|
+
|
|
4228
|
+
<li>STREAMABLE_HTTP:HTTP协议的流式传输方式</li>
|
|
4229
|
+
<li>SSE:Server-Sent Events,服务器发送事件</li>
|
|
4230
|
+
*/
|
|
4231
|
+
TransportType?: string;
|
|
4215
4232
|
}
|
|
4216
4233
|
/**
|
|
4217
4234
|
* DescribeImagesToShare请求参数结构体
|
|
@@ -4745,7 +4762,7 @@ export interface ModifyMcpServerRequest {
|
|
|
4745
4762
|
*/
|
|
4746
4763
|
InstanceId: string;
|
|
4747
4764
|
/**
|
|
4748
|
-
* MCP Server ID
|
|
4765
|
+
* MCP Server ID。可以通[DescribeMcpServers](https://cloud.tencent.com/document/product/1207/122837)接口返回值中的McpServerId获取。
|
|
4749
4766
|
*/
|
|
4750
4767
|
McpServerId: string;
|
|
4751
4768
|
/**
|
|
@@ -4764,6 +4781,13 @@ export interface ModifyMcpServerRequest {
|
|
|
4764
4781
|
* MCP Server环境变量。最大长度:10。用于完整替换MCP Server的环境变量。当该字段为空时,系统将清除当前所有环境变量。若无需修改环境变量,请勿传递该字段。
|
|
4765
4782
|
*/
|
|
4766
4783
|
Envs?: Array<McpServerEnv>;
|
|
4784
|
+
/**
|
|
4785
|
+
* 传输类型。枚举值如下:
|
|
4786
|
+
|
|
4787
|
+
<li>STREAMABLE_HTTP:HTTP协议的流式传输方式</li>
|
|
4788
|
+
<li>SSE:Server-Sent Events,服务器发送事件</li>
|
|
4789
|
+
*/
|
|
4790
|
+
TransportType?: string;
|
|
4767
4791
|
}
|
|
4768
4792
|
/**
|
|
4769
4793
|
* ResetInstance请求参数结构体
|
|
@@ -6289,6 +6289,14 @@ export interface InstanceClusterShard {
|
|
|
6289
6289
|
- 1:on。
|
|
6290
6290
|
*/
|
|
6291
6291
|
Connected?: number;
|
|
6292
|
+
/**
|
|
6293
|
+
* 可用区信息。
|
|
6294
|
+
*/
|
|
6295
|
+
ZoneId?: string;
|
|
6296
|
+
/**
|
|
6297
|
+
* 节点组 ID。
|
|
6298
|
+
*/
|
|
6299
|
+
ReplicasNodeId?: number;
|
|
6292
6300
|
}
|
|
6293
6301
|
/**
|
|
6294
6302
|
* OpenSSL返回参数结构体
|
|
@@ -1030,6 +1030,10 @@ export interface CreateInvokerRequest {
|
|
|
1030
1030
|
当执行器类型为 `SCHEDULE` 时,必须指定此参数。
|
|
1031
1031
|
*/
|
|
1032
1032
|
ScheduleSettings?: ScheduleSettings;
|
|
1033
|
+
/**
|
|
1034
|
+
* 为命令关联的标签,列表长度不超过10
|
|
1035
|
+
*/
|
|
1036
|
+
Tags?: Array<Tag>;
|
|
1033
1037
|
}
|
|
1034
1038
|
/**
|
|
1035
1039
|
* DescribeAutomationAgentStatus请求参数结构体
|