tencentcloud-sdk-nodejs-tcss 4.0.663 → 4.0.665
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/CHANGELOG.md +316 -0
- package/SERVICE_CHANGELOG.md +389 -31
- package/package.json +1 -1
- package/products.md +22 -22
- package/src/services/tcss/v20201101/tcss_client.ts +32 -7
- package/src/services/tcss/v20201101/tcss_models.ts +663 -116
- package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +11 -3
- package/tencentcloud/services/tcss/v20201101/tcss_client.js +15 -3
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +658 -116
|
@@ -186,11 +186,16 @@ export interface DescribeUnfinishRefreshTaskResponse {
|
|
|
186
186
|
/**
|
|
187
187
|
* 返回最近的一次任务ID
|
|
188
188
|
*/
|
|
189
|
-
TaskId
|
|
189
|
+
TaskId?: number
|
|
190
190
|
/**
|
|
191
191
|
* 任务状态,为Task_New,Task_Running,Task_Finish,Task_Error,Task_NoExist.Task_New,Task_Running表示有任务存在,不允许新下发
|
|
192
192
|
*/
|
|
193
|
-
TaskStatus
|
|
193
|
+
TaskStatus?: string
|
|
194
|
+
/**
|
|
195
|
+
* 新任务ID
|
|
196
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
197
|
+
*/
|
|
198
|
+
NewTaskID?: string
|
|
194
199
|
/**
|
|
195
200
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
196
201
|
*/
|
|
@@ -3001,6 +3006,46 @@ export interface DescribePublicKeyResponse {
|
|
|
3001
3006
|
RequestId?: string
|
|
3002
3007
|
}
|
|
3003
3008
|
|
|
3009
|
+
/**
|
|
3010
|
+
* DescribeRiskDnsList请求参数结构体
|
|
3011
|
+
*/
|
|
3012
|
+
export interface DescribeRiskDnsListRequest {
|
|
3013
|
+
/**
|
|
3014
|
+
* 需要返回的数量,默认为10,最大值为100
|
|
3015
|
+
*/
|
|
3016
|
+
Limit?: number
|
|
3017
|
+
/**
|
|
3018
|
+
* 偏移量,默认为0。
|
|
3019
|
+
*/
|
|
3020
|
+
Offset?: number
|
|
3021
|
+
/**
|
|
3022
|
+
* 过滤条件。
|
|
3023
|
+
<li>EventStatus- String - 是否必填:否 - 事件状态,待处理:EVENT_UNDEAL,EVENT_DEALED:已处理,已忽略:EVENT_IGNORE, EVENT_ADD_WHITE:已加白</li>
|
|
3024
|
+
<li>ContainerStatus- String - 是否必填:否 - 容器运行状态筛选,已创建:CREATED,正常运行:RUNNING, 暂定运行:PAUSED, 停止运行: STOPPED,重启中:RESTARTING, 迁移中:REMOVING, 销毁:DESTROYED </li>
|
|
3025
|
+
<li>ContainerNetStatus- String -是否必填: 否 - 容器网络状态筛选 未隔离:NORMAL,已隔离:ISOLATED,隔离失败:ISOLATE_FAILED,解除隔离失败:RESTORE_FAILED,解除隔离中:RESTORING,隔离中:ISOLATING</li>
|
|
3026
|
+
<li>EventType - String -是否必填: 否 - 事件类型,恶意域名请求:DOMAIN,恶意IP请求:IP</li>
|
|
3027
|
+
<li>TimeRange- String -是否必填: 否 - 时间范围,第一个值表示开始时间,第二个值表示结束时间 </li>
|
|
3028
|
+
<li>RiskDns- string - 是否必填:否 - 恶意域名。</li>
|
|
3029
|
+
<li>RiskIP- string - 是否必填:否 - 恶意IP。</li>
|
|
3030
|
+
<li>ContainerName- string - 是否必填:否 - 容器名称。</li>
|
|
3031
|
+
<li>ContainerID- string - 是否必填:否 - 容器ID。</li>
|
|
3032
|
+
<li>ImageName- string - 是否必填:否 - 镜像名称。</li>
|
|
3033
|
+
<li>ImageID- string - 是否必填:否 - 镜像ID。</li>
|
|
3034
|
+
<li>HostName- string - 是否必填:否 - 主机名称。</li>
|
|
3035
|
+
<li>HostIP- string - 是否必填:否 - 内网IP。</li>
|
|
3036
|
+
<li>PublicIP- string - 是否必填:否 - 外网IP。</li>
|
|
3037
|
+
*/
|
|
3038
|
+
Filters?: Array<RunTimeFilters>
|
|
3039
|
+
/**
|
|
3040
|
+
* 排序方式:asc/desc
|
|
3041
|
+
*/
|
|
3042
|
+
Order?: string
|
|
3043
|
+
/**
|
|
3044
|
+
* 排序字段:告警数量:EventCount,最近生成时间:LatestFoundTime
|
|
3045
|
+
*/
|
|
3046
|
+
By?: string
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3004
3049
|
/**
|
|
3005
3050
|
* SetCheckMode请求参数结构体
|
|
3006
3051
|
*/
|
|
@@ -6176,83 +6221,108 @@ export interface ClusterInfoItem {
|
|
|
6176
6221
|
/**
|
|
6177
6222
|
* 集群id
|
|
6178
6223
|
*/
|
|
6179
|
-
ClusterId
|
|
6224
|
+
ClusterId?: string
|
|
6180
6225
|
/**
|
|
6181
6226
|
* 集群名字
|
|
6182
6227
|
*/
|
|
6183
|
-
ClusterName
|
|
6228
|
+
ClusterName?: string
|
|
6184
6229
|
/**
|
|
6185
6230
|
* 集群版本
|
|
6186
6231
|
*/
|
|
6187
|
-
ClusterVersion
|
|
6232
|
+
ClusterVersion?: string
|
|
6188
6233
|
/**
|
|
6189
6234
|
* 集群操作系统
|
|
6190
6235
|
*/
|
|
6191
|
-
ClusterOs
|
|
6236
|
+
ClusterOs?: string
|
|
6192
6237
|
/**
|
|
6193
6238
|
* 集群类型
|
|
6194
6239
|
*/
|
|
6195
|
-
ClusterType
|
|
6240
|
+
ClusterType?: string
|
|
6196
6241
|
/**
|
|
6197
6242
|
* 集群节点数
|
|
6198
6243
|
*/
|
|
6199
|
-
ClusterNodeNum
|
|
6244
|
+
ClusterNodeNum?: number
|
|
6200
6245
|
/**
|
|
6201
6246
|
* 集群区域
|
|
6202
6247
|
*/
|
|
6203
|
-
Region
|
|
6248
|
+
Region?: string
|
|
6204
6249
|
/**
|
|
6205
6250
|
* 监控组件的状态,为Defender_Uninstall、Defender_Normal、Defender_Error、Defender_Installing
|
|
6206
6251
|
*/
|
|
6207
|
-
DefenderStatus
|
|
6252
|
+
DefenderStatus?: string
|
|
6208
6253
|
/**
|
|
6209
6254
|
* 集群状态
|
|
6210
6255
|
*/
|
|
6211
|
-
ClusterStatus
|
|
6256
|
+
ClusterStatus?: string
|
|
6212
6257
|
/**
|
|
6213
6258
|
* 集群的检测模式,为Cluster_Normal或者Cluster_Actived.
|
|
6214
6259
|
*/
|
|
6215
|
-
ClusterCheckMode
|
|
6260
|
+
ClusterCheckMode?: string
|
|
6216
6261
|
/**
|
|
6217
6262
|
* 是否自动定期检测
|
|
6218
6263
|
*/
|
|
6219
|
-
ClusterAutoCheck
|
|
6264
|
+
ClusterAutoCheck?: boolean
|
|
6220
6265
|
/**
|
|
6221
6266
|
* 防护容器部署失败原因,为UserDaemonSetNotReady时,和UnreadyNodeNum转成"N个节点防御容器为就绪",其他错误直接展示
|
|
6222
6267
|
*/
|
|
6223
|
-
DefenderErrorReason
|
|
6268
|
+
DefenderErrorReason?: string
|
|
6224
6269
|
/**
|
|
6225
6270
|
* 防御容器没有ready状态的节点数量
|
|
6226
6271
|
*/
|
|
6227
|
-
UnreadyNodeNum
|
|
6272
|
+
UnreadyNodeNum?: number
|
|
6228
6273
|
/**
|
|
6229
6274
|
* 严重风险检查项的数量
|
|
6230
6275
|
*/
|
|
6231
|
-
SeriousRiskCount
|
|
6276
|
+
SeriousRiskCount?: number
|
|
6232
6277
|
/**
|
|
6233
6278
|
* 高风险检查项的数量
|
|
6234
6279
|
*/
|
|
6235
|
-
HighRiskCount
|
|
6280
|
+
HighRiskCount?: number
|
|
6236
6281
|
/**
|
|
6237
6282
|
* 中风险检查项的数量
|
|
6238
6283
|
*/
|
|
6239
|
-
MiddleRiskCount
|
|
6284
|
+
MiddleRiskCount?: number
|
|
6240
6285
|
/**
|
|
6241
6286
|
* 提示风险检查项的数量
|
|
6242
6287
|
*/
|
|
6243
|
-
HintRiskCount
|
|
6288
|
+
HintRiskCount?: number
|
|
6244
6289
|
/**
|
|
6245
6290
|
* 检查失败原因
|
|
6246
6291
|
*/
|
|
6247
|
-
CheckFailReason
|
|
6292
|
+
CheckFailReason?: string
|
|
6248
6293
|
/**
|
|
6249
6294
|
* 检查状态,为Task_Running, NoRisk, HasRisk, Uncheck, Task_Error
|
|
6250
6295
|
*/
|
|
6251
|
-
CheckStatus
|
|
6296
|
+
CheckStatus?: string
|
|
6252
6297
|
/**
|
|
6253
6298
|
* 任务创建时间,检查时间
|
|
6254
6299
|
*/
|
|
6255
|
-
TaskCreateTime
|
|
6300
|
+
TaskCreateTime?: string
|
|
6301
|
+
/**
|
|
6302
|
+
* 接入状态
|
|
6303
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6304
|
+
*/
|
|
6305
|
+
AccessedStatus?: string
|
|
6306
|
+
/**
|
|
6307
|
+
* 接入失败原因
|
|
6308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6309
|
+
*/
|
|
6310
|
+
AccessedSubStatus?: string
|
|
6311
|
+
/**
|
|
6312
|
+
* 节点总数
|
|
6313
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6314
|
+
*/
|
|
6315
|
+
NodeCount?: number
|
|
6316
|
+
/**
|
|
6317
|
+
* 离线节点数
|
|
6318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6319
|
+
*/
|
|
6320
|
+
OffLineNodeCount?: number
|
|
6321
|
+
/**
|
|
6322
|
+
* 未安装agent节点数
|
|
6323
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6324
|
+
*/
|
|
6325
|
+
UnInstallAgentNodeCount?: number
|
|
6256
6326
|
}
|
|
6257
6327
|
|
|
6258
6328
|
/**
|
|
@@ -6893,6 +6963,21 @@ export interface DescribeClusterSummaryResponse {
|
|
|
6893
6963
|
* eks集群数量
|
|
6894
6964
|
*/
|
|
6895
6965
|
ServerlessClusterCount?: number
|
|
6966
|
+
/**
|
|
6967
|
+
* TKE集群数量
|
|
6968
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6969
|
+
*/
|
|
6970
|
+
TkeClusterCount?: number
|
|
6971
|
+
/**
|
|
6972
|
+
* 用户自建腾讯云集群数量
|
|
6973
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6974
|
+
*/
|
|
6975
|
+
UserCreateTencentClusterCount?: number
|
|
6976
|
+
/**
|
|
6977
|
+
* 用户自建集群混合云数量
|
|
6978
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6979
|
+
*/
|
|
6980
|
+
UserCreateHybridClusterCount?: number
|
|
6896
6981
|
/**
|
|
6897
6982
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6898
6983
|
*/
|
|
@@ -8910,77 +8995,85 @@ export interface HostInfo {
|
|
|
8910
8995
|
/**
|
|
8911
8996
|
* 主机id
|
|
8912
8997
|
*/
|
|
8913
|
-
HostID
|
|
8998
|
+
HostID?: string
|
|
8914
8999
|
/**
|
|
8915
9000
|
* 主机ip即内网ip
|
|
8916
9001
|
*/
|
|
8917
|
-
HostIP
|
|
9002
|
+
HostIP?: string
|
|
8918
9003
|
/**
|
|
8919
9004
|
* 主机名称
|
|
8920
9005
|
*/
|
|
8921
|
-
HostName
|
|
9006
|
+
HostName?: string
|
|
8922
9007
|
/**
|
|
8923
9008
|
* 业务组
|
|
8924
9009
|
*/
|
|
8925
|
-
Group
|
|
9010
|
+
Group?: string
|
|
8926
9011
|
/**
|
|
8927
9012
|
* docker 版本
|
|
8928
9013
|
*/
|
|
8929
|
-
DockerVersion
|
|
9014
|
+
DockerVersion?: string
|
|
8930
9015
|
/**
|
|
8931
9016
|
* docker 文件系统类型
|
|
8932
9017
|
*/
|
|
8933
|
-
DockerFileSystemDriver
|
|
9018
|
+
DockerFileSystemDriver?: string
|
|
8934
9019
|
/**
|
|
8935
9020
|
* 镜像个数
|
|
8936
9021
|
*/
|
|
8937
|
-
ImageCnt
|
|
9022
|
+
ImageCnt?: number
|
|
8938
9023
|
/**
|
|
8939
9024
|
* 容器个数
|
|
8940
9025
|
*/
|
|
8941
|
-
ContainerCnt
|
|
9026
|
+
ContainerCnt?: number
|
|
8942
9027
|
/**
|
|
8943
9028
|
* agent运行状态
|
|
8944
9029
|
*/
|
|
8945
|
-
Status
|
|
9030
|
+
Status?: string
|
|
8946
9031
|
/**
|
|
8947
9032
|
* 是否是Containerd
|
|
8948
9033
|
*/
|
|
8949
|
-
IsContainerd
|
|
9034
|
+
IsContainerd?: boolean
|
|
8950
9035
|
/**
|
|
8951
9036
|
* 主机来源:["CVM", "ECM", "LH", "BM"] 中的之一为腾讯云服务器;["Other"]之一非腾讯云服务器;
|
|
8952
9037
|
*/
|
|
8953
|
-
MachineType
|
|
9038
|
+
MachineType?: string
|
|
8954
9039
|
/**
|
|
8955
9040
|
* 外网ip
|
|
8956
9041
|
*/
|
|
8957
|
-
PublicIp
|
|
9042
|
+
PublicIp?: string
|
|
8958
9043
|
/**
|
|
8959
9044
|
* 主机uuid
|
|
8960
9045
|
*/
|
|
8961
|
-
Uuid
|
|
9046
|
+
Uuid?: string
|
|
8962
9047
|
/**
|
|
8963
9048
|
* 主机实例ID
|
|
8964
9049
|
*/
|
|
8965
|
-
InstanceID
|
|
9050
|
+
InstanceID?: string
|
|
8966
9051
|
/**
|
|
8967
9052
|
* 地域ID
|
|
8968
9053
|
*/
|
|
8969
|
-
RegionID
|
|
9054
|
+
RegionID?: number
|
|
8970
9055
|
/**
|
|
8971
9056
|
* 所属项目
|
|
8972
9057
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8973
9058
|
*/
|
|
8974
|
-
Project
|
|
9059
|
+
Project?: ProjectInfo
|
|
8975
9060
|
/**
|
|
8976
9061
|
* 标签
|
|
8977
9062
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8978
9063
|
*/
|
|
8979
|
-
Tags
|
|
9064
|
+
Tags?: Array<TagInfo>
|
|
8980
9065
|
/**
|
|
8981
9066
|
* 集群id
|
|
8982
9067
|
*/
|
|
8983
9068
|
ClusterID?: string
|
|
9069
|
+
/**
|
|
9070
|
+
* 集群名称
|
|
9071
|
+
*/
|
|
9072
|
+
ClusterName?: string
|
|
9073
|
+
/**
|
|
9074
|
+
* 集群接入状态
|
|
9075
|
+
*/
|
|
9076
|
+
ClusterAccessedStatus?: string
|
|
8984
9077
|
}
|
|
8985
9078
|
|
|
8986
9079
|
/**
|
|
@@ -9713,6 +9806,18 @@ export interface DescribeAssetHostDetailResponse {
|
|
|
9713
9806
|
* 标签
|
|
9714
9807
|
*/
|
|
9715
9808
|
Tags?: Array<TagInfo>
|
|
9809
|
+
/**
|
|
9810
|
+
* 集群ID
|
|
9811
|
+
*/
|
|
9812
|
+
ClusterID?: string
|
|
9813
|
+
/**
|
|
9814
|
+
* 集群名称
|
|
9815
|
+
*/
|
|
9816
|
+
ClusterName?: string
|
|
9817
|
+
/**
|
|
9818
|
+
* 集群接入状态
|
|
9819
|
+
*/
|
|
9820
|
+
ClusterAccessedStatus?: string
|
|
9716
9821
|
/**
|
|
9717
9822
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9718
9823
|
*/
|
|
@@ -11314,6 +11419,24 @@ export interface CreateHostExportJobResponse {
|
|
|
11314
11419
|
RequestId?: string
|
|
11315
11420
|
}
|
|
11316
11421
|
|
|
11422
|
+
/**
|
|
11423
|
+
* DescribeRiskDnsList返回参数结构体
|
|
11424
|
+
*/
|
|
11425
|
+
export interface DescribeRiskDnsListResponse {
|
|
11426
|
+
/**
|
|
11427
|
+
* 恶意请求事件列表
|
|
11428
|
+
*/
|
|
11429
|
+
List?: Array<RiskDnsEventInfo>
|
|
11430
|
+
/**
|
|
11431
|
+
* 总数量
|
|
11432
|
+
*/
|
|
11433
|
+
TotalCount?: number
|
|
11434
|
+
/**
|
|
11435
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11436
|
+
*/
|
|
11437
|
+
RequestId?: string
|
|
11438
|
+
}
|
|
11439
|
+
|
|
11317
11440
|
/**
|
|
11318
11441
|
* DescribeNetworkFirewallPolicyDiscover请求参数结构体
|
|
11319
11442
|
*/
|
|
@@ -11325,101 +11448,251 @@ export interface DescribeNetworkFirewallPolicyDiscoverRequest {
|
|
|
11325
11448
|
}
|
|
11326
11449
|
|
|
11327
11450
|
/**
|
|
11328
|
-
*
|
|
11451
|
+
* 恶意请求事件信息
|
|
11329
11452
|
*/
|
|
11330
|
-
export interface
|
|
11453
|
+
export interface RiskDnsEventInfo {
|
|
11331
11454
|
/**
|
|
11332
|
-
*
|
|
11455
|
+
* 事件ID
|
|
11333
11456
|
*/
|
|
11334
|
-
|
|
11457
|
+
EventID: number
|
|
11335
11458
|
/**
|
|
11336
|
-
*
|
|
11459
|
+
* 事件类型,恶意域名请求:DOMAIN,恶意IP请求:IP
|
|
11337
11460
|
*/
|
|
11338
|
-
|
|
11461
|
+
EventType: string
|
|
11339
11462
|
/**
|
|
11340
|
-
*
|
|
11341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11463
|
+
* 恶意请求域名/IP
|
|
11342
11464
|
*/
|
|
11343
|
-
|
|
11465
|
+
Address: string
|
|
11344
11466
|
/**
|
|
11345
|
-
*
|
|
11346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11467
|
+
* 容器ID
|
|
11347
11468
|
*/
|
|
11348
|
-
|
|
11469
|
+
ContainerID: string
|
|
11349
11470
|
/**
|
|
11350
|
-
*
|
|
11471
|
+
* 容器名称
|
|
11351
11472
|
*/
|
|
11352
|
-
|
|
11473
|
+
ContainerName: string
|
|
11353
11474
|
/**
|
|
11354
|
-
*
|
|
11475
|
+
* 隔离状态
|
|
11476
|
+
未隔离 NORMAL
|
|
11477
|
+
已隔离 ISOLATED
|
|
11478
|
+
隔离中 ISOLATING
|
|
11479
|
+
隔离失败 ISOLATE_FAILED
|
|
11480
|
+
解除隔离中 RESTORING
|
|
11481
|
+
解除隔离失败 RESTORE_FAILED
|
|
11355
11482
|
*/
|
|
11356
|
-
|
|
11483
|
+
ContainerNetStatus: string
|
|
11357
11484
|
/**
|
|
11358
|
-
*
|
|
11359
|
-
|
|
11485
|
+
* 容器状态
|
|
11486
|
+
正在运行: RUNNING
|
|
11487
|
+
暂停: PAUSED
|
|
11488
|
+
停止: STOPPED
|
|
11489
|
+
已经创建: CREATED
|
|
11490
|
+
已经销毁: DESTROYED
|
|
11491
|
+
正在重启中: RESTARTING
|
|
11492
|
+
迁移中: REMOVING
|
|
11360
11493
|
*/
|
|
11361
|
-
|
|
11494
|
+
ContainerStatus: string
|
|
11362
11495
|
/**
|
|
11363
|
-
*
|
|
11496
|
+
* 容器子状态
|
|
11497
|
+
"AGENT_OFFLINE" //Agent离线
|
|
11498
|
+
"NODE_DESTROYED" //节点已销毁
|
|
11499
|
+
"CONTAINER_EXITED" //容器已退出
|
|
11500
|
+
"CONTAINER_DESTROYED" //容器已销毁
|
|
11501
|
+
"SHARED_HOST" // 容器与主机共享网络
|
|
11502
|
+
"RESOURCE_LIMIT" //隔离操作资源超限
|
|
11503
|
+
"UNKNOW" // 原因未知
|
|
11364
11504
|
*/
|
|
11365
|
-
|
|
11505
|
+
ContainerNetSubStatus: string
|
|
11366
11506
|
/**
|
|
11367
|
-
*
|
|
11368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11507
|
+
* 容器隔离操作来源
|
|
11369
11508
|
*/
|
|
11370
|
-
|
|
11509
|
+
ContainerIsolateOperationSrc: string
|
|
11371
11510
|
/**
|
|
11372
|
-
*
|
|
11511
|
+
* 镜像ID
|
|
11373
11512
|
*/
|
|
11374
|
-
|
|
11375
|
-
}
|
|
11376
|
-
|
|
11377
|
-
/**
|
|
11378
|
-
* CreateOrModifyPostPayCores请求参数结构体
|
|
11379
|
-
*/
|
|
11380
|
-
export interface CreateOrModifyPostPayCoresRequest {
|
|
11513
|
+
ImageID: string
|
|
11381
11514
|
/**
|
|
11382
|
-
*
|
|
11515
|
+
* 镜像名称
|
|
11383
11516
|
*/
|
|
11384
|
-
|
|
11385
|
-
}
|
|
11386
|
-
|
|
11387
|
-
/**
|
|
11388
|
-
* ModifyImageAuthorized请求参数结构体
|
|
11389
|
-
*/
|
|
11390
|
-
export interface ModifyImageAuthorizedRequest {
|
|
11517
|
+
ImageName: string
|
|
11391
11518
|
/**
|
|
11392
|
-
*
|
|
11519
|
+
* 首次发现时间
|
|
11393
11520
|
*/
|
|
11394
|
-
|
|
11521
|
+
FoundTime: string
|
|
11395
11522
|
/**
|
|
11396
|
-
*
|
|
11523
|
+
* 最近生成时间
|
|
11397
11524
|
*/
|
|
11398
|
-
|
|
11525
|
+
LatestFoundTime: string
|
|
11399
11526
|
/**
|
|
11400
|
-
*
|
|
11527
|
+
* 事件状态
|
|
11528
|
+
EVENT_UNDEAL: 待处理
|
|
11529
|
+
EVENT_DEALED:已处理
|
|
11530
|
+
EVENT_IGNORE: 已忽略
|
|
11531
|
+
EVENT_ADD_WHITE:已加白
|
|
11401
11532
|
*/
|
|
11402
|
-
|
|
11533
|
+
EventStatus: string
|
|
11403
11534
|
/**
|
|
11404
|
-
*
|
|
11535
|
+
* 恶意请求次数
|
|
11405
11536
|
*/
|
|
11406
|
-
|
|
11537
|
+
EventCount: number
|
|
11407
11538
|
/**
|
|
11408
|
-
*
|
|
11539
|
+
* 事件描述
|
|
11409
11540
|
*/
|
|
11410
|
-
|
|
11541
|
+
Description: string
|
|
11411
11542
|
/**
|
|
11412
|
-
*
|
|
11543
|
+
* 解决方案
|
|
11413
11544
|
*/
|
|
11414
|
-
|
|
11545
|
+
Solution: string
|
|
11415
11546
|
/**
|
|
11416
|
-
*
|
|
11547
|
+
* 恶意IP所属城市
|
|
11417
11548
|
*/
|
|
11418
|
-
|
|
11549
|
+
City: string
|
|
11419
11550
|
/**
|
|
11420
|
-
*
|
|
11551
|
+
* 主机名称
|
|
11421
11552
|
*/
|
|
11422
|
-
|
|
11553
|
+
HostName: string
|
|
11554
|
+
/**
|
|
11555
|
+
* 主机ID
|
|
11556
|
+
*/
|
|
11557
|
+
HostID: string
|
|
11558
|
+
/**
|
|
11559
|
+
* 内网IP
|
|
11560
|
+
*/
|
|
11561
|
+
HostIP: string
|
|
11562
|
+
/**
|
|
11563
|
+
* 外网IP
|
|
11564
|
+
*/
|
|
11565
|
+
PublicIP: string
|
|
11566
|
+
/**
|
|
11567
|
+
* 节点类型:NORMAL普通节点、SUPER超级节点
|
|
11568
|
+
*/
|
|
11569
|
+
NodeType?: string
|
|
11570
|
+
/**
|
|
11571
|
+
* 节点名称
|
|
11572
|
+
*/
|
|
11573
|
+
NodeName?: string
|
|
11574
|
+
/**
|
|
11575
|
+
* pod ip
|
|
11576
|
+
*/
|
|
11577
|
+
PodIP?: string
|
|
11578
|
+
/**
|
|
11579
|
+
* pod 名称
|
|
11580
|
+
*/
|
|
11581
|
+
PodName?: string
|
|
11582
|
+
/**
|
|
11583
|
+
* 集群ID
|
|
11584
|
+
*/
|
|
11585
|
+
ClusterID?: string
|
|
11586
|
+
/**
|
|
11587
|
+
* 节点id
|
|
11588
|
+
*/
|
|
11589
|
+
NodeID?: string
|
|
11590
|
+
/**
|
|
11591
|
+
* 节点唯一id
|
|
11592
|
+
*/
|
|
11593
|
+
NodeUniqueID?: string
|
|
11594
|
+
/**
|
|
11595
|
+
* 集群名称
|
|
11596
|
+
*/
|
|
11597
|
+
ClusterName?: string
|
|
11598
|
+
}
|
|
11599
|
+
|
|
11600
|
+
/**
|
|
11601
|
+
* DescribeNetworkFirewallPolicyYamlDetail返回参数结构体
|
|
11602
|
+
*/
|
|
11603
|
+
export interface DescribeNetworkFirewallPolicyYamlDetailResponse {
|
|
11604
|
+
/**
|
|
11605
|
+
* 集群Id
|
|
11606
|
+
*/
|
|
11607
|
+
ClusterId: string
|
|
11608
|
+
/**
|
|
11609
|
+
* 策略名
|
|
11610
|
+
*/
|
|
11611
|
+
PolicyName: string
|
|
11612
|
+
/**
|
|
11613
|
+
* base64编码的yaml字符串
|
|
11614
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11615
|
+
*/
|
|
11616
|
+
Yaml: string
|
|
11617
|
+
/**
|
|
11618
|
+
* 策略描述
|
|
11619
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11620
|
+
*/
|
|
11621
|
+
Description: string
|
|
11622
|
+
/**
|
|
11623
|
+
* 策略创建时间
|
|
11624
|
+
*/
|
|
11625
|
+
PolicyCreateTime: string
|
|
11626
|
+
/**
|
|
11627
|
+
* 策略源类型,分为System和Manual,分别代表手动和系统添加
|
|
11628
|
+
*/
|
|
11629
|
+
PolicySourceType: string
|
|
11630
|
+
/**
|
|
11631
|
+
* 网络策略对应的网络插件
|
|
11632
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11633
|
+
*/
|
|
11634
|
+
NetworkPolicyPlugin: string
|
|
11635
|
+
/**
|
|
11636
|
+
* 网络策略状态
|
|
11637
|
+
*/
|
|
11638
|
+
PublishStatus: string
|
|
11639
|
+
/**
|
|
11640
|
+
* 网络发布结果
|
|
11641
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11642
|
+
*/
|
|
11643
|
+
PublishResult: string
|
|
11644
|
+
/**
|
|
11645
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11646
|
+
*/
|
|
11647
|
+
RequestId?: string
|
|
11648
|
+
}
|
|
11649
|
+
|
|
11650
|
+
/**
|
|
11651
|
+
* CreateOrModifyPostPayCores请求参数结构体
|
|
11652
|
+
*/
|
|
11653
|
+
export interface CreateOrModifyPostPayCoresRequest {
|
|
11654
|
+
/**
|
|
11655
|
+
* 弹性计费上限,最小值500
|
|
11656
|
+
*/
|
|
11657
|
+
CoresCnt: number
|
|
11658
|
+
}
|
|
11659
|
+
|
|
11660
|
+
/**
|
|
11661
|
+
* ModifyImageAuthorized请求参数结构体
|
|
11662
|
+
*/
|
|
11663
|
+
export interface ModifyImageAuthorizedRequest {
|
|
11664
|
+
/**
|
|
11665
|
+
* 本地镜像是否全部授权的标识,优先权高于根据本地镜像ids授权。等于true时需UpdatedLocalImageCnt大于0。
|
|
11666
|
+
*/
|
|
11667
|
+
AllLocalImages: boolean
|
|
11668
|
+
/**
|
|
11669
|
+
* 仓库镜像是否全部授权的标识,优先权高于根据镜像ids授权。等于true时需UpdatedRegistryImageCnt大于0。
|
|
11670
|
+
*/
|
|
11671
|
+
AllRegistryImages: boolean
|
|
11672
|
+
/**
|
|
11673
|
+
* 指定操作授权的本地镜像数量,判断优先权最高,实际多出的镜像随机忽略,实际不足的部分也忽略。
|
|
11674
|
+
*/
|
|
11675
|
+
UpdatedLocalImageCnt: number
|
|
11676
|
+
/**
|
|
11677
|
+
* 指定操作授权的仓库镜像数量,判断优先权最高,实际多出的镜像随机忽略,实际不足的部分也忽略;
|
|
11678
|
+
*/
|
|
11679
|
+
UpdatedRegistryImageCnt: number
|
|
11680
|
+
/**
|
|
11681
|
+
* 根据满足条件的本地镜像授权,本地镜像来源;ASSETIMAGE:本地镜像列表;IMAGEALL:同步本地镜像;AllLocalImages为false且LocalImageIds为空和UpdatedLocalImageCnt大于0时,需要
|
|
11682
|
+
*/
|
|
11683
|
+
ImageSourceType: string
|
|
11684
|
+
/**
|
|
11685
|
+
* 根据满足条件的本地镜像授权,AllLocalImages为false且LocalImageIds为空和UpdatedLocalImageCnt大于0时,需要。
|
|
11686
|
+
*/
|
|
11687
|
+
LocalImageFilter?: Array<AssetFilters>
|
|
11688
|
+
/**
|
|
11689
|
+
* 根据满足条件的仓库镜像授权,AllRegistryImages为false且RegistryImageIds为空和UpdatedRegistryImageCnt大于0时,需要。
|
|
11690
|
+
*/
|
|
11691
|
+
RegistryImageFilter?: Array<AssetFilters>
|
|
11692
|
+
/**
|
|
11693
|
+
* 根据满足条件的镜像授权,同时排除的本地镜像。
|
|
11694
|
+
*/
|
|
11695
|
+
ExcludeLocalImageIds?: Array<string>
|
|
11423
11696
|
/**
|
|
11424
11697
|
* 根据满足条件的镜像授权,同时排除的仓库镜像。
|
|
11425
11698
|
*/
|
|
@@ -11590,6 +11863,27 @@ export interface DescribeAssetProcessListResponse {
|
|
|
11590
11863
|
RequestId?: string
|
|
11591
11864
|
}
|
|
11592
11865
|
|
|
11866
|
+
/**
|
|
11867
|
+
* 运行时安全事件趋势信息
|
|
11868
|
+
*/
|
|
11869
|
+
export interface SecTendencyEventInfo {
|
|
11870
|
+
/**
|
|
11871
|
+
* 趋势列表
|
|
11872
|
+
*/
|
|
11873
|
+
EventSet: Array<RunTimeTendencyInfo>
|
|
11874
|
+
/**
|
|
11875
|
+
* 事件类型:
|
|
11876
|
+
ET_ESCAPE : 容器逃逸
|
|
11877
|
+
ET_REVERSE_SHELL: 反弹shell
|
|
11878
|
+
ET_RISK_SYSCALL:高危系统调用
|
|
11879
|
+
ET_ABNORMAL_PROCESS: 异常进程
|
|
11880
|
+
ET_ACCESS_CONTROL 文件篡改
|
|
11881
|
+
ET_VIRUS 木马事件
|
|
11882
|
+
ET_MALICIOUS_CONNECTION 恶意外连事件
|
|
11883
|
+
*/
|
|
11884
|
+
EventType: string
|
|
11885
|
+
}
|
|
11886
|
+
|
|
11593
11887
|
/**
|
|
11594
11888
|
* 容器逃逸事件列表
|
|
11595
11889
|
*/
|
|
@@ -12401,24 +12695,13 @@ export interface DescribeAssetImageVirusListExportResponse {
|
|
|
12401
12695
|
export type DescribeVirusScanSettingRequest = null
|
|
12402
12696
|
|
|
12403
12697
|
/**
|
|
12404
|
-
*
|
|
12698
|
+
* DescribeRiskDnsEventDetail请求参数结构体
|
|
12405
12699
|
*/
|
|
12406
|
-
export interface
|
|
12407
|
-
/**
|
|
12408
|
-
* 趋势列表
|
|
12409
|
-
*/
|
|
12410
|
-
EventSet: Array<RunTimeTendencyInfo>
|
|
12700
|
+
export interface DescribeRiskDnsEventDetailRequest {
|
|
12411
12701
|
/**
|
|
12412
|
-
*
|
|
12413
|
-
ET_ESCAPE : 容器逃逸
|
|
12414
|
-
ET_REVERSE_SHELL: 反弹shell
|
|
12415
|
-
ET_RISK_SYSCALL:高危系统调用
|
|
12416
|
-
ET_ABNORMAL_PROCESS: 异常进程
|
|
12417
|
-
ET_ACCESS_CONTROL 文件篡改
|
|
12418
|
-
ET_VIRUS 木马事件
|
|
12419
|
-
ET_MALICIOUS_CONNECTION 恶意外连事件
|
|
12702
|
+
* 事件ID
|
|
12420
12703
|
*/
|
|
12421
|
-
|
|
12704
|
+
EventID: number
|
|
12422
12705
|
}
|
|
12423
12706
|
|
|
12424
12707
|
/**
|
|
@@ -12576,6 +12859,10 @@ export interface DescribeRefreshTaskRequest {
|
|
|
12576
12859
|
* 任务ID
|
|
12577
12860
|
*/
|
|
12578
12861
|
TaskId: number
|
|
12862
|
+
/**
|
|
12863
|
+
* 新任务ID
|
|
12864
|
+
*/
|
|
12865
|
+
NewTaskID?: string
|
|
12579
12866
|
}
|
|
12580
12867
|
|
|
12581
12868
|
/**
|
|
@@ -12585,11 +12872,16 @@ export interface CreateClusterCheckTaskResponse {
|
|
|
12585
12872
|
/**
|
|
12586
12873
|
* 返回创建的集群检查任务的ID,为0表示创建失败。
|
|
12587
12874
|
*/
|
|
12588
|
-
TaskId
|
|
12875
|
+
TaskId?: number
|
|
12589
12876
|
/**
|
|
12590
12877
|
* 创建检查任务的结果,"Succ"为成功,其他的为失败原因
|
|
12591
12878
|
*/
|
|
12592
|
-
CreateResult
|
|
12879
|
+
CreateResult?: string
|
|
12880
|
+
/**
|
|
12881
|
+
* 返回创建的集群新任务ID
|
|
12882
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12883
|
+
*/
|
|
12884
|
+
NewTaskID?: string
|
|
12593
12885
|
/**
|
|
12594
12886
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12595
12887
|
*/
|
|
@@ -12994,11 +13286,11 @@ export interface DescribeUserClusterResponse {
|
|
|
12994
13286
|
/**
|
|
12995
13287
|
* 集群总数
|
|
12996
13288
|
*/
|
|
12997
|
-
TotalCount
|
|
13289
|
+
TotalCount?: number
|
|
12998
13290
|
/**
|
|
12999
13291
|
* 集群的详细信息
|
|
13000
13292
|
*/
|
|
13001
|
-
ClusterInfoList
|
|
13293
|
+
ClusterInfoList?: Array<ClusterInfoItem>
|
|
13002
13294
|
/**
|
|
13003
13295
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13004
13296
|
*/
|
|
@@ -16664,6 +16956,261 @@ export interface AddAndPublishNetworkFirewallPolicyYamlDetailResponse {
|
|
|
16664
16956
|
RequestId?: string
|
|
16665
16957
|
}
|
|
16666
16958
|
|
|
16959
|
+
/**
|
|
16960
|
+
* DescribeRiskDnsEventDetail返回参数结构体
|
|
16961
|
+
*/
|
|
16962
|
+
export interface DescribeRiskDnsEventDetailResponse {
|
|
16963
|
+
/**
|
|
16964
|
+
* 事件ID
|
|
16965
|
+
*/
|
|
16966
|
+
EventID?: number
|
|
16967
|
+
/**
|
|
16968
|
+
* 事件类型,恶意域名请求:DOMAIN,恶意IP请求:IP
|
|
16969
|
+
*/
|
|
16970
|
+
EventType?: string
|
|
16971
|
+
/**
|
|
16972
|
+
* 恶意请求次数
|
|
16973
|
+
*/
|
|
16974
|
+
EventCount?: number
|
|
16975
|
+
/**
|
|
16976
|
+
* 首次发现时间
|
|
16977
|
+
*/
|
|
16978
|
+
FoundTime?: string
|
|
16979
|
+
/**
|
|
16980
|
+
* 最近生成时间
|
|
16981
|
+
*/
|
|
16982
|
+
LatestFoundTime?: string
|
|
16983
|
+
/**
|
|
16984
|
+
* 容器ID
|
|
16985
|
+
*/
|
|
16986
|
+
ContainerID?: string
|
|
16987
|
+
/**
|
|
16988
|
+
* 容器名称
|
|
16989
|
+
*/
|
|
16990
|
+
ContainerName?: string
|
|
16991
|
+
/**
|
|
16992
|
+
* 隔离状态
|
|
16993
|
+
未隔离 NORMAL
|
|
16994
|
+
已隔离 ISOLATED
|
|
16995
|
+
隔离中 ISOLATING
|
|
16996
|
+
隔离失败 ISOLATE_FAILED
|
|
16997
|
+
解除隔离中 RESTORING
|
|
16998
|
+
解除隔离失败 RESTORE_FAILED
|
|
16999
|
+
*/
|
|
17000
|
+
ContainerNetStatus?: string
|
|
17001
|
+
/**
|
|
17002
|
+
* 容器状态
|
|
17003
|
+
正在运行: RUNNING
|
|
17004
|
+
暂停: PAUSED
|
|
17005
|
+
停止: STOPPED
|
|
17006
|
+
已经创建: CREATED
|
|
17007
|
+
已经销毁: DESTROYED
|
|
17008
|
+
正在重启中: RESTARTING
|
|
17009
|
+
迁移中: REMOVING
|
|
17010
|
+
*/
|
|
17011
|
+
ContainerStatus?: string
|
|
17012
|
+
/**
|
|
17013
|
+
* 容器子状态
|
|
17014
|
+
"AGENT_OFFLINE" //Agent离线
|
|
17015
|
+
"NODE_DESTROYED" //节点已销毁
|
|
17016
|
+
"CONTAINER_EXITED" //容器已退出
|
|
17017
|
+
"CONTAINER_DESTROYED" //容器已销毁
|
|
17018
|
+
"SHARED_HOST" // 容器与主机共享网络
|
|
17019
|
+
"RESOURCE_LIMIT" //隔离操作资源超限
|
|
17020
|
+
"UNKNOW" // 原因未知
|
|
17021
|
+
*/
|
|
17022
|
+
ContainerNetSubStatus?: string
|
|
17023
|
+
/**
|
|
17024
|
+
* 容器隔离操作来源
|
|
17025
|
+
*/
|
|
17026
|
+
ContainerIsolateOperationSrc?: string
|
|
17027
|
+
/**
|
|
17028
|
+
* 镜像ID
|
|
17029
|
+
*/
|
|
17030
|
+
ImageID?: string
|
|
17031
|
+
/**
|
|
17032
|
+
* 镜像名称
|
|
17033
|
+
*/
|
|
17034
|
+
ImageName?: string
|
|
17035
|
+
/**
|
|
17036
|
+
* 主机名称
|
|
17037
|
+
*/
|
|
17038
|
+
HostName?: string
|
|
17039
|
+
/**
|
|
17040
|
+
* 内网IP
|
|
17041
|
+
*/
|
|
17042
|
+
HostIP?: string
|
|
17043
|
+
/**
|
|
17044
|
+
* 外网IP
|
|
17045
|
+
*/
|
|
17046
|
+
PublicIP?: string
|
|
17047
|
+
/**
|
|
17048
|
+
* 节点名称
|
|
17049
|
+
*/
|
|
17050
|
+
PodName?: string
|
|
17051
|
+
/**
|
|
17052
|
+
* 事件描述
|
|
17053
|
+
*/
|
|
17054
|
+
Description?: string
|
|
17055
|
+
/**
|
|
17056
|
+
* 解决方案
|
|
17057
|
+
*/
|
|
17058
|
+
Solution?: string
|
|
17059
|
+
/**
|
|
17060
|
+
* 参考链接
|
|
17061
|
+
*/
|
|
17062
|
+
Reference?: Array<string>
|
|
17063
|
+
/**
|
|
17064
|
+
* 恶意域名或IP
|
|
17065
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17066
|
+
*/
|
|
17067
|
+
Address?: string
|
|
17068
|
+
/**
|
|
17069
|
+
* 恶意IP所属城市
|
|
17070
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17071
|
+
*/
|
|
17072
|
+
City?: string
|
|
17073
|
+
/**
|
|
17074
|
+
* 命中规则类型
|
|
17075
|
+
SYSTEM:系统规则
|
|
17076
|
+
USER:用户自定义
|
|
17077
|
+
*/
|
|
17078
|
+
MatchRuleType?: string
|
|
17079
|
+
/**
|
|
17080
|
+
* 标签特征
|
|
17081
|
+
*/
|
|
17082
|
+
FeatureLabel?: string
|
|
17083
|
+
/**
|
|
17084
|
+
* 进程权限
|
|
17085
|
+
*/
|
|
17086
|
+
ProcessAuthority?: string
|
|
17087
|
+
/**
|
|
17088
|
+
* 进程md5
|
|
17089
|
+
*/
|
|
17090
|
+
ProcessMd5?: string
|
|
17091
|
+
/**
|
|
17092
|
+
* 进程启动用户
|
|
17093
|
+
*/
|
|
17094
|
+
ProcessStartUser?: string
|
|
17095
|
+
/**
|
|
17096
|
+
* 进程用户组
|
|
17097
|
+
*/
|
|
17098
|
+
ProcessUserGroup?: string
|
|
17099
|
+
/**
|
|
17100
|
+
* 进程路径
|
|
17101
|
+
*/
|
|
17102
|
+
ProcessPath?: string
|
|
17103
|
+
/**
|
|
17104
|
+
* 进程树
|
|
17105
|
+
*/
|
|
17106
|
+
ProcessTree?: string
|
|
17107
|
+
/**
|
|
17108
|
+
* 进程命令行参数
|
|
17109
|
+
*/
|
|
17110
|
+
ProcessParam?: string
|
|
17111
|
+
/**
|
|
17112
|
+
* 父进程启动用户
|
|
17113
|
+
*/
|
|
17114
|
+
ParentProcessStartUser?: string
|
|
17115
|
+
/**
|
|
17116
|
+
* 父进程用户组
|
|
17117
|
+
*/
|
|
17118
|
+
ParentProcessUserGroup?: string
|
|
17119
|
+
/**
|
|
17120
|
+
* 父进程路径
|
|
17121
|
+
*/
|
|
17122
|
+
ParentProcessPath?: string
|
|
17123
|
+
/**
|
|
17124
|
+
* 父进程命令行参数
|
|
17125
|
+
*/
|
|
17126
|
+
ParentProcessParam?: string
|
|
17127
|
+
/**
|
|
17128
|
+
* 祖先进程启动用户
|
|
17129
|
+
*/
|
|
17130
|
+
AncestorProcessStartUser?: string
|
|
17131
|
+
/**
|
|
17132
|
+
* 祖先进程用户组
|
|
17133
|
+
*/
|
|
17134
|
+
AncestorProcessUserGroup?: string
|
|
17135
|
+
/**
|
|
17136
|
+
* 祖先进程路径
|
|
17137
|
+
*/
|
|
17138
|
+
AncestorProcessPath?: string
|
|
17139
|
+
/**
|
|
17140
|
+
* 祖先进程命令行参数
|
|
17141
|
+
*/
|
|
17142
|
+
AncestorProcessParam?: string
|
|
17143
|
+
/**
|
|
17144
|
+
* 主机ID
|
|
17145
|
+
*/
|
|
17146
|
+
HostID?: string
|
|
17147
|
+
/**
|
|
17148
|
+
* 事件状态
|
|
17149
|
+
EVENT_UNDEAL: 待处理
|
|
17150
|
+
EVENT_DEALED:已处理
|
|
17151
|
+
EVENT_IGNORE: 已忽略
|
|
17152
|
+
EVENT_ADD_WHITE:已加白
|
|
17153
|
+
*/
|
|
17154
|
+
EventStatus?: string
|
|
17155
|
+
/**
|
|
17156
|
+
* 操作时间
|
|
17157
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17158
|
+
*/
|
|
17159
|
+
OperationTime?: string
|
|
17160
|
+
/**
|
|
17161
|
+
* 备注
|
|
17162
|
+
*/
|
|
17163
|
+
Remark?: string
|
|
17164
|
+
/**
|
|
17165
|
+
* 节点类型
|
|
17166
|
+
*/
|
|
17167
|
+
NodeType?: string
|
|
17168
|
+
/**
|
|
17169
|
+
* 节点名称
|
|
17170
|
+
*/
|
|
17171
|
+
NodeName?: string
|
|
17172
|
+
/**
|
|
17173
|
+
* 节点子网ID
|
|
17174
|
+
*/
|
|
17175
|
+
NodeSubNetID?: string
|
|
17176
|
+
/**
|
|
17177
|
+
* 节点子网名称
|
|
17178
|
+
*/
|
|
17179
|
+
NodeSubNetName?: string
|
|
17180
|
+
/**
|
|
17181
|
+
* 节点子网网段
|
|
17182
|
+
*/
|
|
17183
|
+
NodeSubNetCIDR?: string
|
|
17184
|
+
/**
|
|
17185
|
+
* 集群ID
|
|
17186
|
+
*/
|
|
17187
|
+
ClusterID?: string
|
|
17188
|
+
/**
|
|
17189
|
+
* podip
|
|
17190
|
+
*/
|
|
17191
|
+
PodIP?: string
|
|
17192
|
+
/**
|
|
17193
|
+
* pod状态
|
|
17194
|
+
*/
|
|
17195
|
+
PodStatus?: string
|
|
17196
|
+
/**
|
|
17197
|
+
* 节点唯一id
|
|
17198
|
+
*/
|
|
17199
|
+
NodeUniqueID?: string
|
|
17200
|
+
/**
|
|
17201
|
+
* 节点ID名称
|
|
17202
|
+
*/
|
|
17203
|
+
NodeID?: string
|
|
17204
|
+
/**
|
|
17205
|
+
* 集群名称
|
|
17206
|
+
*/
|
|
17207
|
+
ClusterName?: string
|
|
17208
|
+
/**
|
|
17209
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17210
|
+
*/
|
|
17211
|
+
RequestId?: string
|
|
17212
|
+
}
|
|
17213
|
+
|
|
16667
17214
|
/**
|
|
16668
17215
|
* AddAndPublishNetworkFirewallPolicyDetail请求参数结构体
|
|
16669
17216
|
*/
|
|
@@ -17450,7 +17997,7 @@ export interface AffectedNodeItem {
|
|
|
17450
17997
|
/**
|
|
17451
17998
|
* 节点名称
|
|
17452
17999
|
*/
|
|
17453
|
-
NodeName
|
|
18000
|
+
NodeName: string
|
|
17454
18001
|
}
|
|
17455
18002
|
|
|
17456
18003
|
/**
|
|
@@ -20764,7 +21311,7 @@ export interface DescribeRefreshTaskResponse {
|
|
|
20764
21311
|
/**
|
|
20765
21312
|
* 刷新任务状态,可能为:Task_New,Task_Running,Task_Finish,Task_Error,Task_NoExist
|
|
20766
21313
|
*/
|
|
20767
|
-
TaskStatus
|
|
21314
|
+
TaskStatus?: string
|
|
20768
21315
|
/**
|
|
20769
21316
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
20770
21317
|
*/
|