tencentcloud-sdk-nodejs 4.1.272 → 4.1.273
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/cfw/v20190904/cfw_client.js +3 -0
- package/es/services/ga2/v20250115/ga2_client.js +24 -0
- package/es/services/rce/v20260130/rce_client.js +6 -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/adp/v20260520/adp_models.d.ts +52 -16
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +8 -0
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +5 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +6 -0
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +101 -30
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +3 -3
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +174 -6
- package/tencentcloud/services/ga2/v20250115/ga2_client.d.ts +33 -1
- package/tencentcloud/services/ga2/v20250115/ga2_client.js +48 -0
- package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +383 -58
- package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -0
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +1 -1
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +131 -82
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +48 -12
- package/tencentcloud/services/rce/v20260130/rce_client.d.ts +9 -1
- package/tencentcloud/services/rce/v20260130/rce_client.js +12 -0
- package/tencentcloud/services/rce/v20260130/rce_models.d.ts +158 -17
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +57 -64
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +7 -7
|
@@ -11,6 +11,19 @@ export interface DescribeTaskResultResponse {
|
|
|
11
11
|
*/
|
|
12
12
|
RequestId?: string;
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* DeleteGlobalAcceleratorAccessLog请求参数结构体
|
|
16
|
+
*/
|
|
17
|
+
export interface DeleteGlobalAcceleratorAccessLogRequest {
|
|
18
|
+
/**
|
|
19
|
+
* <p>日志唯一Id</p>
|
|
20
|
+
*/
|
|
21
|
+
LogPushTaskId: string;
|
|
22
|
+
/**
|
|
23
|
+
* <p>GA实例唯一Id</p>
|
|
24
|
+
*/
|
|
25
|
+
GlobalAcceleratorId: string;
|
|
26
|
+
}
|
|
14
27
|
/**
|
|
15
28
|
* DescribeEndpointGroups返回参数结构体
|
|
16
29
|
*/
|
|
@@ -90,6 +103,23 @@ export interface CreateForwardingRuleRequest {
|
|
|
90
103
|
*/
|
|
91
104
|
HideResponseHeaders?: Array<HideResponseHeaders>;
|
|
92
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* DescribeGlobalAcceleratorAccessLog返回参数结构体
|
|
108
|
+
*/
|
|
109
|
+
export interface DescribeGlobalAcceleratorAccessLogResponse {
|
|
110
|
+
/**
|
|
111
|
+
* <p>返回日志任务详情</p>
|
|
112
|
+
*/
|
|
113
|
+
GlobalAcceleratorAccessLog?: Array<GlobalAcceleratorAccessLog>;
|
|
114
|
+
/**
|
|
115
|
+
* <p>日志任务条数。</p>
|
|
116
|
+
*/
|
|
117
|
+
TotalCount?: number;
|
|
118
|
+
/**
|
|
119
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
120
|
+
*/
|
|
121
|
+
RequestId?: string;
|
|
122
|
+
}
|
|
93
123
|
/**
|
|
94
124
|
* DescribeForwardingPolicy返回参数结构体
|
|
95
125
|
*/
|
|
@@ -230,6 +260,23 @@ export interface ResponseHeaders {
|
|
|
230
260
|
*/
|
|
231
261
|
Value: string;
|
|
232
262
|
}
|
|
263
|
+
/**
|
|
264
|
+
* DescribeGlobalAcceleratorAclRules请求参数结构体
|
|
265
|
+
*/
|
|
266
|
+
export interface DescribeGlobalAcceleratorAclRulesRequest {
|
|
267
|
+
/**
|
|
268
|
+
* <p>访问控制策略ID。</p>
|
|
269
|
+
*/
|
|
270
|
+
GlobalAcceleratorAclPolicyId: string;
|
|
271
|
+
/**
|
|
272
|
+
* <p>偏移量,默认为0。</p>
|
|
273
|
+
*/
|
|
274
|
+
Offset?: number;
|
|
275
|
+
/**
|
|
276
|
+
* <p>返回数量。</p><p>取值范围:[1, 200]</p><p>默认值:20</p>
|
|
277
|
+
*/
|
|
278
|
+
Limit?: number;
|
|
279
|
+
}
|
|
233
280
|
/**
|
|
234
281
|
* DeleteGlobalAcceleratorAclRule返回参数结构体
|
|
235
282
|
*/
|
|
@@ -243,6 +290,23 @@ export interface DeleteGlobalAcceleratorAclRuleResponse {
|
|
|
243
290
|
*/
|
|
244
291
|
RequestId?: string;
|
|
245
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* DescribeAccessLogParam返回参数结构体
|
|
295
|
+
*/
|
|
296
|
+
export interface DescribeAccessLogParamResponse {
|
|
297
|
+
/**
|
|
298
|
+
* <p>七层可选参数</p>
|
|
299
|
+
*/
|
|
300
|
+
L7Param?: Array<string>;
|
|
301
|
+
/**
|
|
302
|
+
* <p>四层可选参数</p>
|
|
303
|
+
*/
|
|
304
|
+
L4Param?: Array<string>;
|
|
305
|
+
/**
|
|
306
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
307
|
+
*/
|
|
308
|
+
RequestId?: string;
|
|
309
|
+
}
|
|
246
310
|
/**
|
|
247
311
|
* ModifyGlobalAccelerator返回参数结构体
|
|
248
312
|
*/
|
|
@@ -565,6 +629,35 @@ export interface DescribeGlobalAcceleratorsResponse {
|
|
|
565
629
|
*/
|
|
566
630
|
RequestId?: string;
|
|
567
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* ModifyGlobalAcceleratorAccessLog请求参数结构体
|
|
634
|
+
*/
|
|
635
|
+
export interface ModifyGlobalAcceleratorAccessLogRequest {
|
|
636
|
+
/**
|
|
637
|
+
* <p>日志唯一Id</p>
|
|
638
|
+
*/
|
|
639
|
+
LogPushTaskId: string;
|
|
640
|
+
/**
|
|
641
|
+
* <p>GA实例唯一Id</p>
|
|
642
|
+
*/
|
|
643
|
+
GlobalAcceleratorId: string;
|
|
644
|
+
/**
|
|
645
|
+
* <p>日志主题Id</p>
|
|
646
|
+
*/
|
|
647
|
+
CloudLogId?: string;
|
|
648
|
+
/**
|
|
649
|
+
* <p>日志集Id</p>
|
|
650
|
+
*/
|
|
651
|
+
CloudLogSetId?: string;
|
|
652
|
+
/**
|
|
653
|
+
* <p>用户可选日志监听字段</p><p>枚举值:</p><ul><li>session_time: 四层,会话持续时间</li><li>upstream_bytes_received: 四层、七层,从终端节点接收的字节数</li><li>upstream_bytes_sent: 四层、七层,发送给终端节点的字节数</li><li>request_method: 七层,GET/POST</li><li>scheme: 七层,http/https</li><li>request_uri: 七层,客户端原始请求的URI</li><li>uri: 七层,当前请求的URI</li><li>host: 七层,客户端访问域名(七层)</li><li>remote_user: 七层,基本认证时的用户名(未认证时为"-")</li><li>http_user_agent: 七层,客户端浏览器标识</li><li>http_referer: 七层,请求来源URL(直接从地址栏访问时为"-")</li><li>http_x_forwarded_for: 七层,记录客户端原始IP及经过的代理服务器IP链</li><li>content_type: 七层,content_type</li><li>body_bytes_sent: 七层,发送给客户端的http body大小,不包含header</li><li>request_time: 七层,从接收到客户端请求的第一个字节到发送完响应最后一个字节之间的总时间(单位:秒)</li><li>sent_http_content_type: 七层,响应内容类型</li><li>upstream_header_time: 七层,终端节点的响应头到达时间</li><li>upstream_response_length: 七层,终端节点返回的响应体长度</li><li>upstream_response_time: 七层,终端节点完整响应时间</li><li>upstream_status: 七层,终端节点返回的HTTP状态码</li></ul>
|
|
654
|
+
*/
|
|
655
|
+
FieldKeys?: Array<string>;
|
|
656
|
+
/**
|
|
657
|
+
* <p>日志描述</p>
|
|
658
|
+
*/
|
|
659
|
+
FlowLogDescription?: string;
|
|
660
|
+
}
|
|
568
661
|
/**
|
|
569
662
|
* DescribeListeners返回参数结构体
|
|
570
663
|
*/
|
|
@@ -637,6 +730,48 @@ export interface AclEntries {
|
|
|
637
730
|
*/
|
|
638
731
|
Description?: string;
|
|
639
732
|
}
|
|
733
|
+
/**
|
|
734
|
+
* ModifyForwardingPolicy请求参数结构体
|
|
735
|
+
*/
|
|
736
|
+
export interface ModifyForwardingPolicyRequest {
|
|
737
|
+
/**
|
|
738
|
+
* <p>全球加速实例ID。</p>
|
|
739
|
+
*/
|
|
740
|
+
GlobalAcceleratorId: string;
|
|
741
|
+
/**
|
|
742
|
+
* <p>监听器ID。</p>
|
|
743
|
+
*/
|
|
744
|
+
ListenerId: string;
|
|
745
|
+
/**
|
|
746
|
+
* <p>策略ID。</p>
|
|
747
|
+
*/
|
|
748
|
+
ForwardingPolicyId: string;
|
|
749
|
+
/**
|
|
750
|
+
* <p>域名。</p><p>入参限制:长度范围在1-80。</p><p>格式必须满足正则表达式:^(<a href="?:[a-z0-9-]{0,61}[a-z0-9]">a-z0-9</a>?.)+[a-z]{2,}$</p>
|
|
751
|
+
*/
|
|
752
|
+
Host: string;
|
|
753
|
+
}
|
|
754
|
+
/**
|
|
755
|
+
* DescribeGlobalAcceleratorAccessLog请求参数结构体
|
|
756
|
+
*/
|
|
757
|
+
export interface DescribeGlobalAcceleratorAccessLogRequest {
|
|
758
|
+
/**
|
|
759
|
+
* <p>ga实例唯一Id</p>
|
|
760
|
+
*/
|
|
761
|
+
GlobalAcceleratorId: string;
|
|
762
|
+
/**
|
|
763
|
+
* <p>查询过滤参数。{ "Name": "listener-id", "Values": ["监听器唯一Id"] },{ "Name": "endpoint-group-id", "Values": ["终端节点组唯一Id"] },{ "Name": "access_log_id", "Values": ["日志唯一Id"] }</p>
|
|
764
|
+
*/
|
|
765
|
+
Filters?: Array<Filter>;
|
|
766
|
+
/**
|
|
767
|
+
* <p>偏移量,默认为0。</p>
|
|
768
|
+
*/
|
|
769
|
+
Offset?: number;
|
|
770
|
+
/**
|
|
771
|
+
* <p>返回数量。</p><p>取值范围:[0, 200]</p>
|
|
772
|
+
*/
|
|
773
|
+
Limit?: number;
|
|
774
|
+
}
|
|
640
775
|
/**
|
|
641
776
|
* CreateListenerAdditionalCert请求参数结构体
|
|
642
777
|
*/
|
|
@@ -781,21 +916,21 @@ export interface ModifyGlobalAcceleratorAclPolicyResponse {
|
|
|
781
916
|
RequestId?: string;
|
|
782
917
|
}
|
|
783
918
|
/**
|
|
784
|
-
*
|
|
919
|
+
* ModifyAccessLogStatus请求参数结构体
|
|
785
920
|
*/
|
|
786
|
-
export interface
|
|
921
|
+
export interface ModifyAccessLogStatusRequest {
|
|
787
922
|
/**
|
|
788
|
-
*
|
|
923
|
+
* <p>日志唯一Id</p>
|
|
789
924
|
*/
|
|
790
|
-
|
|
925
|
+
LogPushTaskId: string;
|
|
791
926
|
/**
|
|
792
|
-
*
|
|
927
|
+
* <p>状态(启动START, 停止STOP)</p><p>枚举值:</p><ul><li>START: 启动</li><li>STOP: 停止</li></ul>
|
|
793
928
|
*/
|
|
794
|
-
|
|
929
|
+
Status: string;
|
|
795
930
|
/**
|
|
796
|
-
*
|
|
931
|
+
* <p>GA实例唯一Id</p>
|
|
797
932
|
*/
|
|
798
|
-
|
|
933
|
+
GlobalAcceleratorId: string;
|
|
799
934
|
}
|
|
800
935
|
/**
|
|
801
936
|
* DeleteListener请求参数结构体
|
|
@@ -848,6 +983,19 @@ export interface DescribeForwardingRuleRequest {
|
|
|
848
983
|
*/
|
|
849
984
|
Limit?: number;
|
|
850
985
|
}
|
|
986
|
+
/**
|
|
987
|
+
* CreateGlobalAcceleratorAccessLog返回参数结构体
|
|
988
|
+
*/
|
|
989
|
+
export interface CreateGlobalAcceleratorAccessLogResponse {
|
|
990
|
+
/**
|
|
991
|
+
* <p>日志任务唯一Id</p>
|
|
992
|
+
*/
|
|
993
|
+
LogPushTaskId?: string;
|
|
994
|
+
/**
|
|
995
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
996
|
+
*/
|
|
997
|
+
RequestId?: string;
|
|
998
|
+
}
|
|
851
999
|
/**
|
|
852
1000
|
* DeleteEndpointGroups返回参数结构体
|
|
853
1001
|
*/
|
|
@@ -1118,6 +1266,23 @@ export interface DeleteGlobalAcceleratorResponse {
|
|
|
1118
1266
|
*/
|
|
1119
1267
|
RequestId?: string;
|
|
1120
1268
|
}
|
|
1269
|
+
/**
|
|
1270
|
+
* CreateGlobalAcceleratorAclRule返回参数结构体
|
|
1271
|
+
*/
|
|
1272
|
+
export interface CreateGlobalAcceleratorAclRuleResponse {
|
|
1273
|
+
/**
|
|
1274
|
+
* 异步任务ID。
|
|
1275
|
+
*/
|
|
1276
|
+
TaskId?: string;
|
|
1277
|
+
/**
|
|
1278
|
+
* ACL规则ID。
|
|
1279
|
+
*/
|
|
1280
|
+
GlobalAcceleratorAclRuleIds?: Array<string>;
|
|
1281
|
+
/**
|
|
1282
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1283
|
+
*/
|
|
1284
|
+
RequestId?: string;
|
|
1285
|
+
}
|
|
1121
1286
|
/**
|
|
1122
1287
|
* DescribeAccelerateRegions返回参数结构体
|
|
1123
1288
|
*/
|
|
@@ -1136,45 +1301,53 @@ export interface DescribeAccelerateRegionsResponse {
|
|
|
1136
1301
|
*/
|
|
1137
1302
|
export interface ForwardingRuleSet {
|
|
1138
1303
|
/**
|
|
1139
|
-
*
|
|
1304
|
+
* <p>七层转发规则条件信息。</p>
|
|
1140
1305
|
*/
|
|
1141
1306
|
RuleCondition?: Array<RuleCondition>;
|
|
1142
1307
|
/**
|
|
1143
|
-
*
|
|
1308
|
+
* <p>七层转发规则行为信息。</p>
|
|
1144
1309
|
*/
|
|
1145
1310
|
RuleAction?: Array<RuleAction>;
|
|
1146
1311
|
/**
|
|
1147
|
-
*
|
|
1312
|
+
* <p>是否开启回源Sni。</p>
|
|
1148
1313
|
*/
|
|
1149
1314
|
EnableOriginSni?: boolean;
|
|
1150
1315
|
/**
|
|
1151
|
-
*
|
|
1316
|
+
* <p>回源Sni。</p>
|
|
1152
1317
|
*/
|
|
1153
1318
|
OriginSni?: string;
|
|
1154
1319
|
/**
|
|
1155
|
-
*
|
|
1320
|
+
* <p>回源Herder信息。</p>
|
|
1156
1321
|
*/
|
|
1157
1322
|
OriginHeaders?: Array<OriginHeader>;
|
|
1158
1323
|
/**
|
|
1159
|
-
*
|
|
1324
|
+
* <p>回源Host。</p>
|
|
1160
1325
|
*/
|
|
1161
1326
|
OriginHost?: string;
|
|
1162
1327
|
/**
|
|
1163
|
-
*
|
|
1328
|
+
* <p>全球加速实例ID。</p>
|
|
1164
1329
|
*/
|
|
1165
1330
|
GlobalAcceleratorId?: string;
|
|
1166
1331
|
/**
|
|
1167
|
-
*
|
|
1332
|
+
* <p>监听器ID。</p>
|
|
1168
1333
|
*/
|
|
1169
1334
|
ListenerId?: string;
|
|
1170
1335
|
/**
|
|
1171
|
-
*
|
|
1336
|
+
* <p>七层转发策略ID。</p>
|
|
1172
1337
|
*/
|
|
1173
1338
|
ForwardingPolicyId?: string;
|
|
1174
1339
|
/**
|
|
1175
|
-
*
|
|
1340
|
+
* <p>七层转发规则ID。</p>
|
|
1176
1341
|
*/
|
|
1177
1342
|
ForwardingRuleId?: string;
|
|
1343
|
+
/**
|
|
1344
|
+
* <p>源站响应头</p>
|
|
1345
|
+
*/
|
|
1346
|
+
HideResponseHeaders?: Array<HideResponseHeaders>;
|
|
1347
|
+
/**
|
|
1348
|
+
* <p>删除源站响应头</p>
|
|
1349
|
+
*/
|
|
1350
|
+
ResponseHeaders?: Array<ResponseHeaders>;
|
|
1178
1351
|
}
|
|
1179
1352
|
/**
|
|
1180
1353
|
* CreateForwardingRule返回参数结构体
|
|
@@ -1210,6 +1383,43 @@ export interface CreateGlobalAcceleratorAclPolicyResponse {
|
|
|
1210
1383
|
*/
|
|
1211
1384
|
RequestId?: string;
|
|
1212
1385
|
}
|
|
1386
|
+
/**
|
|
1387
|
+
* CreateGlobalAcceleratorAccessLog请求参数结构体
|
|
1388
|
+
*/
|
|
1389
|
+
export interface CreateGlobalAcceleratorAccessLogRequest {
|
|
1390
|
+
/**
|
|
1391
|
+
* <p>GA示例唯一Id</p>
|
|
1392
|
+
*/
|
|
1393
|
+
GlobalAcceleratorId: string;
|
|
1394
|
+
/**
|
|
1395
|
+
* <p>监听器Id</p>
|
|
1396
|
+
*/
|
|
1397
|
+
ListenerId: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* <p>终端节点组Id</p>
|
|
1400
|
+
*/
|
|
1401
|
+
EndpointGroupId: string;
|
|
1402
|
+
/**
|
|
1403
|
+
* <p>日志集所在地域</p>
|
|
1404
|
+
*/
|
|
1405
|
+
CloudRegion: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* <p>日志主题Id</p>
|
|
1408
|
+
*/
|
|
1409
|
+
CloudLogId: string;
|
|
1410
|
+
/**
|
|
1411
|
+
* <p>日志集Id</p>
|
|
1412
|
+
*/
|
|
1413
|
+
CloudLogSetId: string;
|
|
1414
|
+
/**
|
|
1415
|
+
* <p>指定采集字段</p><p>枚举值:</p><ul><li>session_time: 四层,会话持续时间</li><li>upstream_bytes_received: 四层、七层,从终端节点接收的字节数</li><li>upstream_bytes_sent: 四层、七层,发送给终端节点的字节数</li><li>request_method: 七层,GET/POST</li><li>scheme: 七层,http/https</li><li>request_uri: 七层,客户端原始请求的URI</li><li>uri: 七层,当前请求的URI</li><li>host: 七层,客户端访问域名(七层)</li><li>remote_user: 七层,基本认证时的用户名(未认证时为"-")</li><li>http_user_agent: 七层,客户端浏览器标识</li><li>http_referer: 七层,请求来源URL(直接从地址栏访问时为"-")</li><li>http_x_forwarded_for: 七层,记录客户端原始IP及经过的代理服务器IP链</li><li>content_type: 七层,content_type</li><li>body_bytes_sent: 七层,发送给客户端的http body大小,不包含header</li><li>request_time: 七层,从接收到客户端请求的第一个字节到发送完响应最后一个字节之间的总时间(单位:秒)</li><li>sent_http_content_type: 七层,响应内容类型</li><li>upstream_header_time: 七层,终端节点的响应头到达时间</li><li>upstream_response_length: 七层,终端节点返回的响应体长度</li><li>upstream_response_time: 七层,终端节点完整响应时间</li><li>upstream_status: 七层,终端节点返回的HTTP状态码</li></ul>
|
|
1416
|
+
*/
|
|
1417
|
+
FieldKeys?: Array<string>;
|
|
1418
|
+
/**
|
|
1419
|
+
* <p>日志描述</p>
|
|
1420
|
+
*/
|
|
1421
|
+
FlowLogDescription?: string;
|
|
1422
|
+
}
|
|
1213
1423
|
/**
|
|
1214
1424
|
* ModifyGlobalAcceleratorAclRule请求参数结构体
|
|
1215
1425
|
*/
|
|
@@ -1433,6 +1643,56 @@ export interface DescribeForwardingRuleResponse {
|
|
|
1433
1643
|
*/
|
|
1434
1644
|
RequestId?: string;
|
|
1435
1645
|
}
|
|
1646
|
+
/**
|
|
1647
|
+
* 访问控制策略
|
|
1648
|
+
*/
|
|
1649
|
+
export interface GlobalAcceleratorAclPolicies {
|
|
1650
|
+
/**
|
|
1651
|
+
* 访问控制策略ID。
|
|
1652
|
+
*/
|
|
1653
|
+
GlobalAcceleratorAclPolicyId?: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* 默认动作。
|
|
1656
|
+
*/
|
|
1657
|
+
DefaultAction?: string;
|
|
1658
|
+
/**
|
|
1659
|
+
* 状态。
|
|
1660
|
+
*/
|
|
1661
|
+
Status?: string;
|
|
1662
|
+
}
|
|
1663
|
+
/**
|
|
1664
|
+
* Acl规则信息
|
|
1665
|
+
*/
|
|
1666
|
+
export interface GlobalAcceleratorAclRuleSet {
|
|
1667
|
+
/**
|
|
1668
|
+
* 访问控制策略ID。
|
|
1669
|
+
*/
|
|
1670
|
+
GlobalAcceleratorPolicyId?: string;
|
|
1671
|
+
/**
|
|
1672
|
+
* Acl规则ID。
|
|
1673
|
+
*/
|
|
1674
|
+
GlobalAcceleratorAclRuleId?: string;
|
|
1675
|
+
/**
|
|
1676
|
+
* 协议。
|
|
1677
|
+
*/
|
|
1678
|
+
Protocol?: string;
|
|
1679
|
+
/**
|
|
1680
|
+
* 端口。
|
|
1681
|
+
*/
|
|
1682
|
+
Port?: string;
|
|
1683
|
+
/**
|
|
1684
|
+
* 网段。
|
|
1685
|
+
*/
|
|
1686
|
+
SourceCidrBlock?: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* 动作。
|
|
1689
|
+
*/
|
|
1690
|
+
Policy?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* 描述。
|
|
1693
|
+
*/
|
|
1694
|
+
Description?: string;
|
|
1695
|
+
}
|
|
1436
1696
|
/**
|
|
1437
1697
|
* DeleteGlobalAccelerator请求参数结构体
|
|
1438
1698
|
*/
|
|
@@ -1509,17 +1769,13 @@ export interface ModifyListenerResponse {
|
|
|
1509
1769
|
RequestId?: string;
|
|
1510
1770
|
}
|
|
1511
1771
|
/**
|
|
1512
|
-
*
|
|
1772
|
+
* DeleteGlobalAcceleratorAccessLog返回参数结构体
|
|
1513
1773
|
*/
|
|
1514
|
-
export interface
|
|
1774
|
+
export interface DeleteGlobalAcceleratorAccessLogResponse {
|
|
1515
1775
|
/**
|
|
1516
|
-
*
|
|
1517
|
-
*/
|
|
1518
|
-
GlobalAcceleratorId: string;
|
|
1519
|
-
/**
|
|
1520
|
-
* <p>加速地域信息。一次最多创建10组加速地域。</p>
|
|
1776
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1521
1777
|
*/
|
|
1522
|
-
|
|
1778
|
+
RequestId?: string;
|
|
1523
1779
|
}
|
|
1524
1780
|
/**
|
|
1525
1781
|
* DeleteForwardingPolicy请求参数结构体
|
|
@@ -1689,25 +1945,29 @@ export interface CreateForwardingPolicyResponse {
|
|
|
1689
1945
|
RequestId?: string;
|
|
1690
1946
|
}
|
|
1691
1947
|
/**
|
|
1692
|
-
*
|
|
1948
|
+
* 七层转发策略信息
|
|
1693
1949
|
*/
|
|
1694
|
-
export interface
|
|
1950
|
+
export interface ForwardingPolicySet {
|
|
1695
1951
|
/**
|
|
1696
|
-
*
|
|
1952
|
+
* 全球加速实例ID。
|
|
1697
1953
|
*/
|
|
1698
|
-
GlobalAcceleratorId
|
|
1954
|
+
GlobalAcceleratorId?: string;
|
|
1699
1955
|
/**
|
|
1700
|
-
*
|
|
1956
|
+
* 监听器ID。
|
|
1701
1957
|
*/
|
|
1702
|
-
ListenerId
|
|
1958
|
+
ListenerId?: string;
|
|
1703
1959
|
/**
|
|
1704
|
-
*
|
|
1960
|
+
* 策略ID。
|
|
1705
1961
|
*/
|
|
1706
|
-
ForwardingPolicyId
|
|
1962
|
+
ForwardingPolicyId?: string;
|
|
1707
1963
|
/**
|
|
1708
|
-
*
|
|
1964
|
+
* 域名。
|
|
1709
1965
|
*/
|
|
1710
|
-
Host
|
|
1966
|
+
Host?: string;
|
|
1967
|
+
/**
|
|
1968
|
+
* 是否为默认域名。
|
|
1969
|
+
*/
|
|
1970
|
+
DefaultHostFlag?: boolean;
|
|
1711
1971
|
}
|
|
1712
1972
|
/**
|
|
1713
1973
|
* ModifyGlobalAcceleratorAclRule返回参数结构体
|
|
@@ -1752,6 +2012,19 @@ export interface DeleteForwardingPolicyResponse {
|
|
|
1752
2012
|
*/
|
|
1753
2013
|
RequestId?: string;
|
|
1754
2014
|
}
|
|
2015
|
+
/**
|
|
2016
|
+
* ModifyEndpointGroup返回参数结构体
|
|
2017
|
+
*/
|
|
2018
|
+
export interface ModifyEndpointGroupResponse {
|
|
2019
|
+
/**
|
|
2020
|
+
* <p>任务ID。</p>
|
|
2021
|
+
*/
|
|
2022
|
+
TaskId?: string;
|
|
2023
|
+
/**
|
|
2024
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2025
|
+
*/
|
|
2026
|
+
RequestId?: string;
|
|
2027
|
+
}
|
|
1755
2028
|
/**
|
|
1756
2029
|
* 监听器信息
|
|
1757
2030
|
*/
|
|
@@ -1842,38 +2115,30 @@ export interface ListenerSet {
|
|
|
1842
2115
|
IdleTimeout?: number;
|
|
1843
2116
|
}
|
|
1844
2117
|
/**
|
|
1845
|
-
*
|
|
2118
|
+
* DescribeGlobalAcceleratorAclRules返回参数结构体
|
|
1846
2119
|
*/
|
|
1847
|
-
export interface
|
|
2120
|
+
export interface DescribeGlobalAcceleratorAclRulesResponse {
|
|
1848
2121
|
/**
|
|
1849
|
-
*
|
|
2122
|
+
* <p>符合条件的Acl规则实例。</p>
|
|
1850
2123
|
*/
|
|
1851
|
-
|
|
1852
|
-
/**
|
|
1853
|
-
* 监听器ID。
|
|
1854
|
-
*/
|
|
1855
|
-
ListenerId?: string;
|
|
2124
|
+
GlobalAcceleratorAclRuleSet?: Array<GlobalAcceleratorAclRuleSet>;
|
|
1856
2125
|
/**
|
|
1857
|
-
*
|
|
1858
|
-
*/
|
|
1859
|
-
ForwardingPolicyId?: string;
|
|
1860
|
-
/**
|
|
1861
|
-
* 域名。
|
|
2126
|
+
* <p>符合条件的实例个数。</p>
|
|
1862
2127
|
*/
|
|
1863
|
-
|
|
2128
|
+
TotalCount?: number;
|
|
1864
2129
|
/**
|
|
1865
|
-
*
|
|
2130
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1866
2131
|
*/
|
|
1867
|
-
|
|
2132
|
+
RequestId?: string;
|
|
1868
2133
|
}
|
|
1869
2134
|
/**
|
|
1870
|
-
*
|
|
2135
|
+
* GA访问日志
|
|
1871
2136
|
*/
|
|
1872
|
-
export
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
2137
|
+
export type GlobalAcceleratorAccessLog = null;
|
|
2138
|
+
/**
|
|
2139
|
+
* ModifyAccessLogStatus返回参数结构体
|
|
2140
|
+
*/
|
|
2141
|
+
export interface ModifyAccessLogStatusResponse {
|
|
1877
2142
|
/**
|
|
1878
2143
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1879
2144
|
*/
|
|
@@ -1900,6 +2165,19 @@ export interface DescribeAccelerateAreasRequest {
|
|
|
1900
2165
|
*/
|
|
1901
2166
|
Filters?: Array<Filter>;
|
|
1902
2167
|
}
|
|
2168
|
+
/**
|
|
2169
|
+
* CreateAccelerateAreas请求参数结构体
|
|
2170
|
+
*/
|
|
2171
|
+
export interface CreateAccelerateAreasRequest {
|
|
2172
|
+
/**
|
|
2173
|
+
* <p>全球加速实例ID。</p>
|
|
2174
|
+
*/
|
|
2175
|
+
GlobalAcceleratorId: string;
|
|
2176
|
+
/**
|
|
2177
|
+
* <p>加速地域信息。一次最多创建10组加速地域。</p>
|
|
2178
|
+
*/
|
|
2179
|
+
AcceleratorAreas: Array<AcceleratorAreas>;
|
|
2180
|
+
}
|
|
1903
2181
|
/**
|
|
1904
2182
|
* DescribeCrossBorderSettlement返回参数结构体
|
|
1905
2183
|
*/
|
|
@@ -1926,6 +2204,15 @@ export interface DeleteAccelerateAreasRequest {
|
|
|
1926
2204
|
*/
|
|
1927
2205
|
AcceleratorAreaIds: Array<string>;
|
|
1928
2206
|
}
|
|
2207
|
+
/**
|
|
2208
|
+
* ModifyGlobalAcceleratorAccessLog返回参数结构体
|
|
2209
|
+
*/
|
|
2210
|
+
export interface ModifyGlobalAcceleratorAccessLogResponse {
|
|
2211
|
+
/**
|
|
2212
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2213
|
+
*/
|
|
2214
|
+
RequestId?: string;
|
|
2215
|
+
}
|
|
1929
2216
|
/**
|
|
1930
2217
|
* DeleteAccelerateAreas返回参数结构体
|
|
1931
2218
|
*/
|
|
@@ -1939,6 +2226,40 @@ export interface DeleteAccelerateAreasResponse {
|
|
|
1939
2226
|
*/
|
|
1940
2227
|
RequestId?: string;
|
|
1941
2228
|
}
|
|
2229
|
+
/**
|
|
2230
|
+
* DescribeGlobalAcceleratorAclPolicies请求参数结构体
|
|
2231
|
+
*/
|
|
2232
|
+
export interface DescribeGlobalAcceleratorAclPoliciesRequest {
|
|
2233
|
+
/**
|
|
2234
|
+
* <p>全球加速实例ID。</p>
|
|
2235
|
+
*/
|
|
2236
|
+
GlobalAcceleratorId: string;
|
|
2237
|
+
/**
|
|
2238
|
+
* <p>偏移量。默认值为0。</p>
|
|
2239
|
+
*/
|
|
2240
|
+
Offset?: number;
|
|
2241
|
+
/**
|
|
2242
|
+
* <p>返回数量,默认值为20,最大值为200。</p>
|
|
2243
|
+
*/
|
|
2244
|
+
Limit?: string;
|
|
2245
|
+
}
|
|
2246
|
+
/**
|
|
2247
|
+
* DescribeGlobalAcceleratorAclPolicies返回参数结构体
|
|
2248
|
+
*/
|
|
2249
|
+
export interface DescribeGlobalAcceleratorAclPoliciesResponse {
|
|
2250
|
+
/**
|
|
2251
|
+
* <p>访问控制策略信息。</p>
|
|
2252
|
+
*/
|
|
2253
|
+
GlobalAcceleratorAclPolicySet?: Array<GlobalAcceleratorAclPolicies>;
|
|
2254
|
+
/**
|
|
2255
|
+
* <p>符合条件实例总个数。</p>
|
|
2256
|
+
*/
|
|
2257
|
+
TotalCount?: number;
|
|
2258
|
+
/**
|
|
2259
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2260
|
+
*/
|
|
2261
|
+
RequestId?: string;
|
|
2262
|
+
}
|
|
1942
2263
|
/**
|
|
1943
2264
|
* ModifyForwardingRule返回参数结构体
|
|
1944
2265
|
*/
|
|
@@ -2086,6 +2407,10 @@ export interface DeleteGlobalAcceleratorAclPolicyRequest {
|
|
|
2086
2407
|
*/
|
|
2087
2408
|
GlobalAcceleratorAclPolicyId: string;
|
|
2088
2409
|
}
|
|
2410
|
+
/**
|
|
2411
|
+
* DescribeAccessLogParam请求参数结构体
|
|
2412
|
+
*/
|
|
2413
|
+
export type DescribeAccessLogParamRequest = null;
|
|
2089
2414
|
/**
|
|
2090
2415
|
* 端口映射
|
|
2091
2416
|
*/
|
|
@@ -8627,6 +8627,10 @@ export interface AvatarScriptInfo {
|
|
|
8627
8627
|
* <p>话术最后更新时间,UTC时间。<br>注意:UTC时间和北京时间相差八小时。</p>
|
|
8628
8628
|
*/
|
|
8629
8629
|
UpdateTime?: string;
|
|
8630
|
+
/**
|
|
8631
|
+
* <p>已完成状态的视频URL</p>
|
|
8632
|
+
*/
|
|
8633
|
+
MediaUrl?: string;
|
|
8630
8634
|
}
|
|
8631
8635
|
/**
|
|
8632
8636
|
* CreateLiveCallbackRule请求参数结构体
|