tencentcloud-sdk-nodejs 4.1.275 → 4.1.277
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/adp/v20260520/adp_client.js +77 -14
- package/es/services/dlc/v20210125/dlc_client.js +9 -0
- package/es/services/mps/v20190612/mps_client.js +8 -2
- 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/adp/v20260520/adp_client.d.ts +99 -15
- package/tencentcloud/services/adp/v20260520/adp_client.js +147 -21
- package/tencentcloud/services/adp/v20260520/adp_models.d.ts +2089 -599
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_models.d.ts +63 -48
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +47 -43
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +17 -17
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +17 -17
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +206 -206
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +13 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +18 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +208 -36
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +17 -14
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +23 -56
- package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +1 -1
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +11 -3
- package/tencentcloud/services/mps/v20190612/mps_client.js +15 -3
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +250 -94
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +35 -35
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +106 -55
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +18 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +4 -5
|
@@ -2183,35 +2183,35 @@ export interface DescribeApplicationExitReportListRequest {
|
|
|
2183
2183
|
*/
|
|
2184
2184
|
export interface DescribeRumLogTotalV2Request {
|
|
2185
2185
|
/**
|
|
2186
|
-
*
|
|
2186
|
+
* <p>排序方式 desc asc</p>
|
|
2187
2187
|
*/
|
|
2188
2188
|
OrderBy: string;
|
|
2189
2189
|
/**
|
|
2190
|
-
*
|
|
2190
|
+
* <p>查询日志开始时间(必填)格式为时间戳 毫秒</p>
|
|
2191
2191
|
*/
|
|
2192
2192
|
StartTime: number;
|
|
2193
2193
|
/**
|
|
2194
|
-
*
|
|
2194
|
+
* <p>单次查询返回的原始日志条数,最大值为100(必填)</p>
|
|
2195
2195
|
*/
|
|
2196
2196
|
Limit: number;
|
|
2197
2197
|
/**
|
|
2198
|
-
*
|
|
2198
|
+
* <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
|
|
2199
2199
|
*/
|
|
2200
2200
|
Filter: string;
|
|
2201
2201
|
/**
|
|
2202
|
-
*
|
|
2202
|
+
* <p>查询日志结束时间(必填)格式为时间戳 毫秒</p>
|
|
2203
2203
|
*/
|
|
2204
2204
|
EndTime: number;
|
|
2205
2205
|
/**
|
|
2206
|
-
*
|
|
2206
|
+
* <p>项目ID(必填)</p>
|
|
2207
2207
|
*/
|
|
2208
2208
|
ID: number;
|
|
2209
2209
|
/**
|
|
2210
|
-
*
|
|
2210
|
+
* <p>上次查询的最后一个日志的时间戳</p>
|
|
2211
2211
|
*/
|
|
2212
2212
|
LastTime?: number;
|
|
2213
2213
|
/**
|
|
2214
|
-
*
|
|
2214
|
+
* <p>上次查询的最后一个日志的rowId</p>
|
|
2215
2215
|
*/
|
|
2216
2216
|
LastRowId?: number;
|
|
2217
2217
|
}
|
|
@@ -2762,27 +2762,27 @@ export interface DescribeDataLogUrlStatisticsResponse {
|
|
|
2762
2762
|
*/
|
|
2763
2763
|
export interface DescribeRumLogExportV2Request {
|
|
2764
2764
|
/**
|
|
2765
|
-
*
|
|
2765
|
+
* <p>Name(string,必填):导出任务名称标识,需要在使用API创建导出任务时填写。此字段为后续能力扩展预留,不在查询结果中返回。</p>
|
|
2766
2766
|
*/
|
|
2767
2767
|
Name: string;
|
|
2768
2768
|
/**
|
|
2769
|
-
*
|
|
2769
|
+
* <p>查询日志开始时间(必填)</p>
|
|
2770
2770
|
*/
|
|
2771
2771
|
StartTime: number;
|
|
2772
2772
|
/**
|
|
2773
|
-
*
|
|
2773
|
+
* <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
|
|
2774
2774
|
*/
|
|
2775
2775
|
Filter: string;
|
|
2776
2776
|
/**
|
|
2777
|
-
*
|
|
2777
|
+
* <p>查询日志结束时间(必填)</p>
|
|
2778
2778
|
*/
|
|
2779
2779
|
EndTime: number;
|
|
2780
2780
|
/**
|
|
2781
|
-
*
|
|
2781
|
+
* <p>项目ID</p>
|
|
2782
2782
|
*/
|
|
2783
2783
|
ID: number;
|
|
2784
2784
|
/**
|
|
2785
|
-
*
|
|
2785
|
+
* <p>注意:这个字段必选,不能为空!选择要导出哪些字段的参数,对应日志的列,可查看文档:https://cloud.tencent.com/document/product/248/87223</p><p>枚举值:</p><ul><li>level: 日志类型</li><li>url: URL</li><li>ip: 用户终端IP</li><li>version: 版本</li></ul>
|
|
2786
2786
|
*/
|
|
2787
2787
|
Fields?: Array<string>;
|
|
2788
2788
|
}
|
|
@@ -2955,7 +2955,7 @@ export interface DescribeDataPvUrlStatisticsRequest {
|
|
|
2955
2955
|
*/
|
|
2956
2956
|
export interface DescribeRumStatsLogListV2Response {
|
|
2957
2957
|
/**
|
|
2958
|
-
*
|
|
2958
|
+
* <p>日志时间分布</p>
|
|
2959
2959
|
*/
|
|
2960
2960
|
Result?: string;
|
|
2961
2961
|
/**
|
|
@@ -3701,7 +3701,7 @@ export interface DescribeDataWebVitalsPageV2Response {
|
|
|
3701
3701
|
*/
|
|
3702
3702
|
export interface DescribeRumLogExportV2Response {
|
|
3703
3703
|
/**
|
|
3704
|
-
*
|
|
3704
|
+
* <p>日志导出任务TaskId</p>
|
|
3705
3705
|
*/
|
|
3706
3706
|
Result?: string;
|
|
3707
3707
|
/**
|
|
@@ -4347,23 +4347,23 @@ export interface DescribeDataBridgeUrlV2Response {
|
|
|
4347
4347
|
*/
|
|
4348
4348
|
export interface DescribeRumStatsLogListV2Request {
|
|
4349
4349
|
/**
|
|
4350
|
-
*
|
|
4350
|
+
* <p>查询日志开始时间(必填)</p>
|
|
4351
4351
|
*/
|
|
4352
4352
|
StartTime: number;
|
|
4353
4353
|
/**
|
|
4354
|
-
*
|
|
4354
|
+
* <p>单次查询返回的原始日志条数,最大值为100(必填)</p>
|
|
4355
4355
|
*/
|
|
4356
4356
|
Limit: number;
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
|
|
4359
4359
|
*/
|
|
4360
4360
|
Filter: string;
|
|
4361
4361
|
/**
|
|
4362
|
-
*
|
|
4362
|
+
* <p>查询日志结束时间(必填)</p>
|
|
4363
4363
|
*/
|
|
4364
4364
|
EndTime: number;
|
|
4365
4365
|
/**
|
|
4366
|
-
*
|
|
4366
|
+
* <p>项目ID(必填)</p>
|
|
4367
4367
|
*/
|
|
4368
4368
|
ID: number;
|
|
4369
4369
|
}
|
|
@@ -4439,7 +4439,7 @@ export interface DeleteStarProjectResponse {
|
|
|
4439
4439
|
*/
|
|
4440
4440
|
export interface DescribeRumLogDetailsV2Response {
|
|
4441
4441
|
/**
|
|
4442
|
-
*
|
|
4442
|
+
* <p>日志明细</p>
|
|
4443
4443
|
*/
|
|
4444
4444
|
Result?: string;
|
|
4445
4445
|
/**
|
|
@@ -4550,7 +4550,7 @@ export interface DescribeReleaseFileSignResponse {
|
|
|
4550
4550
|
*/
|
|
4551
4551
|
export interface DescribeRumLogTotalV2Response {
|
|
4552
4552
|
/**
|
|
4553
|
-
*
|
|
4553
|
+
* <p>日志总量</p>
|
|
4554
4554
|
*/
|
|
4555
4555
|
Result?: string;
|
|
4556
4556
|
/**
|
|
@@ -5689,7 +5689,7 @@ export interface DescribeRumLogListRequest {
|
|
|
5689
5689
|
*/
|
|
5690
5690
|
export interface DescribeRumGroupLogV2Response {
|
|
5691
5691
|
/**
|
|
5692
|
-
* <p
|
|
5692
|
+
* <p>日志聚合结果</p>
|
|
5693
5693
|
*/
|
|
5694
5694
|
Result?: string;
|
|
5695
5695
|
/**
|
|
@@ -6151,35 +6151,35 @@ export interface DescribeFOOMReportListRequest {
|
|
|
6151
6151
|
*/
|
|
6152
6152
|
export interface DescribeRumLogDetailsV2Request {
|
|
6153
6153
|
/**
|
|
6154
|
-
*
|
|
6154
|
+
* <p>排序方式 desc asc</p>
|
|
6155
6155
|
*/
|
|
6156
6156
|
OrderBy: string;
|
|
6157
6157
|
/**
|
|
6158
|
-
*
|
|
6158
|
+
* <p>查询日志开始时间(必填)格式为时间戳 毫秒</p>
|
|
6159
6159
|
*/
|
|
6160
6160
|
StartTime: number;
|
|
6161
6161
|
/**
|
|
6162
|
-
*
|
|
6162
|
+
* <p>单次查询返回的原始日志条数,最大值为100(必填)</p>
|
|
6163
6163
|
*/
|
|
6164
6164
|
Limit: number;
|
|
6165
6165
|
/**
|
|
6166
|
-
*
|
|
6166
|
+
* <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
|
|
6167
6167
|
*/
|
|
6168
6168
|
Filter: string;
|
|
6169
6169
|
/**
|
|
6170
|
-
*
|
|
6170
|
+
* <p>查询日志结束时间(必填)格式为时间戳 毫秒</p>
|
|
6171
6171
|
*/
|
|
6172
6172
|
EndTime: number;
|
|
6173
6173
|
/**
|
|
6174
|
-
*
|
|
6174
|
+
* <p>项目ID(必填)</p>
|
|
6175
6175
|
*/
|
|
6176
6176
|
ID: number;
|
|
6177
6177
|
/**
|
|
6178
|
-
*
|
|
6178
|
+
* <p>上次查询的最后一个日志的时间戳</p>
|
|
6179
6179
|
*/
|
|
6180
6180
|
LastTime?: number;
|
|
6181
6181
|
/**
|
|
6182
|
-
*
|
|
6182
|
+
* <p>上次查询的最后一个日志的rowId</p>
|
|
6183
6183
|
*/
|
|
6184
6184
|
LastRowId?: number;
|
|
6185
6185
|
}
|
|
@@ -6536,7 +6536,7 @@ export interface DescribeRumGroupLogV2Request {
|
|
|
6536
6536
|
*/
|
|
6537
6537
|
OrderBy: string;
|
|
6538
6538
|
/**
|
|
6539
|
-
* <p
|
|
6539
|
+
* <p>查询日志开始时间(必填)</p>
|
|
6540
6540
|
*/
|
|
6541
6541
|
StartTime: number;
|
|
6542
6542
|
/**
|
|
@@ -6544,11 +6544,11 @@ export interface DescribeRumGroupLogV2Request {
|
|
|
6544
6544
|
*/
|
|
6545
6545
|
Limit: number;
|
|
6546
6546
|
/**
|
|
6547
|
-
* <p
|
|
6547
|
+
* <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
|
|
6548
6548
|
*/
|
|
6549
6549
|
Filter: string;
|
|
6550
6550
|
/**
|
|
6551
|
-
* <p
|
|
6551
|
+
* <p>查询日志结束时间(必填)</p>
|
|
6552
6552
|
*/
|
|
6553
6553
|
EndTime: number;
|
|
6554
6554
|
/**
|
|
@@ -1180,11 +1180,11 @@ export interface DescribeLoginConfigRequest {
|
|
|
1180
1180
|
*/
|
|
1181
1181
|
export interface CreateHTTPServiceRouteRequest {
|
|
1182
1182
|
/**
|
|
1183
|
-
*
|
|
1183
|
+
* <p>环境ID</p>
|
|
1184
1184
|
*/
|
|
1185
1185
|
EnvId: string;
|
|
1186
1186
|
/**
|
|
1187
|
-
*
|
|
1187
|
+
* <p>域名路由信息</p>
|
|
1188
1188
|
*/
|
|
1189
1189
|
Domain: HTTPServiceDomainParam;
|
|
1190
1190
|
}
|
|
@@ -3806,6 +3806,23 @@ export interface DescribeStaticStoreRequest {
|
|
|
3806
3806
|
*/
|
|
3807
3807
|
EnvId: string;
|
|
3808
3808
|
}
|
|
3809
|
+
/**
|
|
3810
|
+
* 域名归属权验证指引信息
|
|
3811
|
+
*/
|
|
3812
|
+
export interface OwnershipVerificationInfo {
|
|
3813
|
+
/**
|
|
3814
|
+
* <p>归属权校验的域名</p>
|
|
3815
|
+
*/
|
|
3816
|
+
Domain?: string;
|
|
3817
|
+
/**
|
|
3818
|
+
* <p>归属权校验dns校验信息</p>
|
|
3819
|
+
*/
|
|
3820
|
+
DnsVerification?: Array<OwnershipVerificationDnsInfo>;
|
|
3821
|
+
/**
|
|
3822
|
+
* <p>归属权校验文件校验信息</p>
|
|
3823
|
+
*/
|
|
3824
|
+
FileVerification?: Array<OwnershipVerificationFileInfo>;
|
|
3825
|
+
}
|
|
3809
3826
|
/**
|
|
3810
3827
|
* http访问服务客户端限频
|
|
3811
3828
|
*/
|
|
@@ -4051,45 +4068,17 @@ export interface CreateTableResponse {
|
|
|
4051
4068
|
RequestId?: string;
|
|
4052
4069
|
}
|
|
4053
4070
|
/**
|
|
4054
|
-
*
|
|
4071
|
+
* 域名归属权验证指引文件验证信息
|
|
4055
4072
|
*/
|
|
4056
|
-
export interface
|
|
4057
|
-
/**
|
|
4058
|
-
* 用户ID
|
|
4059
|
-
*/
|
|
4060
|
-
Uid?: string;
|
|
4073
|
+
export interface OwnershipVerificationFileInfo {
|
|
4061
4074
|
/**
|
|
4062
|
-
*
|
|
4075
|
+
* <p>归属权校验文件路径</p>
|
|
4063
4076
|
*/
|
|
4064
|
-
|
|
4065
|
-
/**
|
|
4066
|
-
* 用户类型:internalUser-内部用户、externalUser-外部用户
|
|
4067
|
-
*/
|
|
4068
|
-
Type?: string;
|
|
4069
|
-
/**
|
|
4070
|
-
* 用户状态:ACTIVE(激活)、BLOCKED(冻结)
|
|
4071
|
-
*/
|
|
4072
|
-
UserStatus?: string;
|
|
4073
|
-
/**
|
|
4074
|
-
* 用户昵称
|
|
4075
|
-
*/
|
|
4076
|
-
NickName?: string;
|
|
4077
|
-
/**
|
|
4078
|
-
* 手机号
|
|
4079
|
-
*/
|
|
4080
|
-
Phone?: string;
|
|
4081
|
-
/**
|
|
4082
|
-
* 邮箱
|
|
4083
|
-
*/
|
|
4084
|
-
Email?: string;
|
|
4085
|
-
/**
|
|
4086
|
-
* 头像链接
|
|
4087
|
-
*/
|
|
4088
|
-
AvatarUrl?: string;
|
|
4077
|
+
Path?: string;
|
|
4089
4078
|
/**
|
|
4090
|
-
*
|
|
4079
|
+
* <p>归属权校验文件内容</p>
|
|
4091
4080
|
*/
|
|
4092
|
-
|
|
4081
|
+
Content?: string;
|
|
4093
4082
|
}
|
|
4094
4083
|
/**
|
|
4095
4084
|
* 销毁 Mysql 结果
|
|
@@ -4766,6 +4755,47 @@ export interface DescribeCurveDataRequest {
|
|
|
4766
4755
|
*/
|
|
4767
4756
|
Period?: number;
|
|
4768
4757
|
}
|
|
4758
|
+
/**
|
|
4759
|
+
* 用户信息
|
|
4760
|
+
*/
|
|
4761
|
+
export interface User {
|
|
4762
|
+
/**
|
|
4763
|
+
* 用户ID
|
|
4764
|
+
*/
|
|
4765
|
+
Uid?: string;
|
|
4766
|
+
/**
|
|
4767
|
+
* 用户名
|
|
4768
|
+
*/
|
|
4769
|
+
Name?: string;
|
|
4770
|
+
/**
|
|
4771
|
+
* 用户类型:internalUser-内部用户、externalUser-外部用户
|
|
4772
|
+
*/
|
|
4773
|
+
Type?: string;
|
|
4774
|
+
/**
|
|
4775
|
+
* 用户状态:ACTIVE(激活)、BLOCKED(冻结)
|
|
4776
|
+
*/
|
|
4777
|
+
UserStatus?: string;
|
|
4778
|
+
/**
|
|
4779
|
+
* 用户昵称
|
|
4780
|
+
*/
|
|
4781
|
+
NickName?: string;
|
|
4782
|
+
/**
|
|
4783
|
+
* 手机号
|
|
4784
|
+
*/
|
|
4785
|
+
Phone?: string;
|
|
4786
|
+
/**
|
|
4787
|
+
* 邮箱
|
|
4788
|
+
*/
|
|
4789
|
+
Email?: string;
|
|
4790
|
+
/**
|
|
4791
|
+
* 头像链接
|
|
4792
|
+
*/
|
|
4793
|
+
AvatarUrl?: string;
|
|
4794
|
+
/**
|
|
4795
|
+
* 用户描述
|
|
4796
|
+
*/
|
|
4797
|
+
Description?: string;
|
|
4798
|
+
}
|
|
4769
4799
|
/**
|
|
4770
4800
|
* DescribeStaticStore返回参数结构体
|
|
4771
4801
|
*/
|
|
@@ -5329,6 +5359,10 @@ export interface DeleteAuthDomainRequest {
|
|
|
5329
5359
|
* CreateHTTPServiceRoute返回参数结构体
|
|
5330
5360
|
*/
|
|
5331
5361
|
export interface CreateHTTPServiceRouteResponse {
|
|
5362
|
+
/**
|
|
5363
|
+
* <p>归属权校验不通过返回信息,根据校验信息配置dns或者文件验证,可通过VerifyHTTPServiceRoute接口验证归属权是否通过</p>
|
|
5364
|
+
*/
|
|
5365
|
+
OwnershipVerification?: OwnershipVerificationInfo;
|
|
5332
5366
|
/**
|
|
5333
5367
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5334
5368
|
*/
|
|
@@ -5395,6 +5429,31 @@ export interface ModifyClientRequest {
|
|
|
5395
5429
|
*/
|
|
5396
5430
|
AccessTokenExpiresIn?: number;
|
|
5397
5431
|
}
|
|
5432
|
+
/**
|
|
5433
|
+
* 安全网关自定义配置
|
|
5434
|
+
*/
|
|
5435
|
+
export interface WxGatewayCustomConfig {
|
|
5436
|
+
/**
|
|
5437
|
+
* 是否开启x-real-ip
|
|
5438
|
+
*/
|
|
5439
|
+
IsOpenXRealIp?: boolean;
|
|
5440
|
+
/**
|
|
5441
|
+
* 封禁配置
|
|
5442
|
+
*/
|
|
5443
|
+
BanConfig?: BanConfig;
|
|
5444
|
+
/**
|
|
5445
|
+
* 获取源ip方式,PPV1(Proxy Protocol V1)、PPV2(Proxy Protocol V2)、TOA(tcp option address)
|
|
5446
|
+
*/
|
|
5447
|
+
SourceIpType?: string;
|
|
5448
|
+
/**
|
|
5449
|
+
* 日志信息
|
|
5450
|
+
*/
|
|
5451
|
+
LogConfig?: CustomLogConfig;
|
|
5452
|
+
/**
|
|
5453
|
+
* 是否开启http1.0
|
|
5454
|
+
*/
|
|
5455
|
+
IsAcceptHttpOne?: boolean;
|
|
5456
|
+
}
|
|
5398
5457
|
/**
|
|
5399
5458
|
* 三方认证出参映射。如果您的对接方不标准,则可以使用这个参数。默认情况下,该参数可以为空。比如:microsoft, github,google,apple 接入,这些参数为空,但是国内的腾讯,新浪等则需要配置该参数。原因主要是:腾讯等公司在实现oauth时,未能完全遵循oauth标准。
|
|
5400
5459
|
*/
|
|
@@ -5543,7 +5602,7 @@ export interface HTTPServiceDomainParam {
|
|
|
5543
5602
|
*/
|
|
5544
5603
|
Domain: string;
|
|
5545
5604
|
/**
|
|
5546
|
-
* <p>绑定类型</p><p>枚举值:</p><ul><li>DIRECT: 直连到HTTP访问服务</li><li>CDN: 接入云开发CDN
|
|
5605
|
+
* <p>绑定类型</p><p>枚举值:</p><ul><li>DIRECT: 直连到HTTP访问服务</li><li>CDN: 接入云开发CDN(即将下线)</li><li>CUSTOM: 自定义接入类型(CDN、EO、WAF等接入)</li><li>EO: 接入云开发EdgeOne</li></ul><p>默认值:DIRECT</p>
|
|
5547
5606
|
*/
|
|
5548
5607
|
AccessType?: string;
|
|
5549
5608
|
/**
|
|
@@ -5852,29 +5911,21 @@ export interface MessageLocalized {
|
|
|
5852
5911
|
Locale: string;
|
|
5853
5912
|
}
|
|
5854
5913
|
/**
|
|
5855
|
-
*
|
|
5914
|
+
* 域名归属权验证指引DNS验证信息
|
|
5856
5915
|
*/
|
|
5857
|
-
export interface
|
|
5858
|
-
/**
|
|
5859
|
-
* 是否开启x-real-ip
|
|
5860
|
-
*/
|
|
5861
|
-
IsOpenXRealIp?: boolean;
|
|
5862
|
-
/**
|
|
5863
|
-
* 封禁配置
|
|
5864
|
-
*/
|
|
5865
|
-
BanConfig?: BanConfig;
|
|
5916
|
+
export interface OwnershipVerificationDnsInfo {
|
|
5866
5917
|
/**
|
|
5867
|
-
*
|
|
5918
|
+
* <p>归属权校验dns子域名</p>
|
|
5868
5919
|
*/
|
|
5869
|
-
|
|
5920
|
+
Subdomain?: string;
|
|
5870
5921
|
/**
|
|
5871
|
-
*
|
|
5922
|
+
* <p>归属权校验dns记录类型</p>
|
|
5872
5923
|
*/
|
|
5873
|
-
|
|
5924
|
+
RecordType?: string;
|
|
5874
5925
|
/**
|
|
5875
|
-
*
|
|
5926
|
+
* <p>归属权校验dns记录值</p>
|
|
5876
5927
|
*/
|
|
5877
|
-
|
|
5928
|
+
RecordValue?: string;
|
|
5878
5929
|
}
|
|
5879
5930
|
/**
|
|
5880
5931
|
* DescribeTable返回参数结构体
|
|
@@ -6170,11 +6221,11 @@ export interface HTTPServiceRouteParam {
|
|
|
6170
6221
|
*/
|
|
6171
6222
|
Path: string;
|
|
6172
6223
|
/**
|
|
6173
|
-
* <p>上游服务类型。创建时必填,修改时可选填</p><p>枚举值:</p><ul><li>SCF: 云函数</li><li>CBR: 云托管</li><li>STATIC_STORE: 静态托管</li><li>WEB_SCF: web云函数</li><li>LH: Lighthouse</li></ul>
|
|
6224
|
+
* <p>上游服务类型。创建时必填,修改时可选填</p><p>枚举值:</p><ul><li>SCF: 云函数</li><li>CBR: 云托管</li><li>STATIC_STORE: 静态托管</li><li>WEB_SCF: web云函数</li><li>LH: Lighthouse</li><li>STORAGE: 云存储</li></ul>
|
|
6174
6225
|
*/
|
|
6175
6226
|
UpstreamResourceType?: string;
|
|
6176
6227
|
/**
|
|
6177
|
-
* <p
|
|
6228
|
+
* <p>上游服务名。创建时必填,修改时可选填。HTTPServiceRouteServiceType类型为STATIC_STORE时,可不填,默认staticstore;HTTPServiceRouteServiceType类型为STORAGE时,可不填,默认storage。其他上游类型必须填写准确的服务名</p>
|
|
6178
6229
|
*/
|
|
6179
6230
|
UpstreamResourceName?: string;
|
|
6180
6231
|
/**
|
|
@@ -186,6 +186,10 @@ export interface CreateModelServiceRequest {
|
|
|
186
186
|
* <p>网关相关配置</p>
|
|
187
187
|
*/
|
|
188
188
|
GatewayConfig?: GatewayConfig;
|
|
189
|
+
/**
|
|
190
|
+
* <p>资源供应属性(潮汐/竞价等供应模式);空表示常规按量后付费</p>
|
|
191
|
+
*/
|
|
192
|
+
ResourceSupplyAttribute?: ResourceSupplyAttribute;
|
|
189
193
|
}
|
|
190
194
|
/**
|
|
191
195
|
* DescribePresetImageList请求参数结构体
|
|
@@ -925,6 +929,11 @@ export interface Service {
|
|
|
925
929
|
* <p>变更服务的子账户名称</p>
|
|
926
930
|
*/
|
|
927
931
|
ChangerName?: string;
|
|
932
|
+
/**
|
|
933
|
+
* <p>资源供应属性(潮汐/竞价等供应模式);空表示常规按量后付费</p>
|
|
934
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
935
|
+
*/
|
|
936
|
+
ResourceSupplyAttribute?: ResourceSupplyAttribute;
|
|
928
937
|
}
|
|
929
938
|
/**
|
|
930
939
|
* 设备对应的镜像信息
|
|
@@ -6794,6 +6803,15 @@ export interface MountLimitInfo {
|
|
|
6794
6803
|
*/
|
|
6795
6804
|
ExtraConf?: StorageExtraConf;
|
|
6796
6805
|
}
|
|
6806
|
+
/**
|
|
6807
|
+
* 资源供应属性
|
|
6808
|
+
*/
|
|
6809
|
+
export interface ResourceSupplyAttribute {
|
|
6810
|
+
/**
|
|
6811
|
+
* <p>资源供应类型。TIDE:潮汐;SPOT:竞价;空:常规按量后付费</p>
|
|
6812
|
+
*/
|
|
6813
|
+
SupplyType?: string;
|
|
6814
|
+
}
|
|
6797
6815
|
/**
|
|
6798
6816
|
* DescribePresetImageList返回参数结构体
|
|
6799
6817
|
*/
|
|
@@ -3647,20 +3647,19 @@ export interface CreatePostCKafkaFlowResponse {
|
|
|
3647
3647
|
*/
|
|
3648
3648
|
export interface FieldWriteConfig {
|
|
3649
3649
|
/**
|
|
3650
|
-
* 1:开启 0
|
|
3650
|
+
* <p>1:开启 0:不开启</p>
|
|
3651
3651
|
*/
|
|
3652
3652
|
EnableHeaders?: number;
|
|
3653
3653
|
/**
|
|
3654
|
-
* 1:开启 0
|
|
3654
|
+
* <p>1:开启 0:不开启</p>
|
|
3655
3655
|
*/
|
|
3656
3656
|
EnableBody?: number;
|
|
3657
3657
|
/**
|
|
3658
|
-
* 1:开启 0
|
|
3658
|
+
* <p>1:开启 0:不开启</p>
|
|
3659
3659
|
*/
|
|
3660
3660
|
EnableBot?: number;
|
|
3661
3661
|
/**
|
|
3662
|
-
*
|
|
3663
|
-
1:开启 0:不开启
|
|
3662
|
+
* <p>响应方向body<br>1:开启 0:不开启</p>
|
|
3664
3663
|
*/
|
|
3665
3664
|
EnableResponse?: number;
|
|
3666
3665
|
}
|