tencentcloud-sdk-tcss 3.0.687 → 3.0.688

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201101/models.rb +25 -5
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8385eca72b230e874d378771e0f7c5608138f17b
4
- data.tar.gz: e5d7da60ee5705521bffe3d0c7cdc9e28fcbf403
3
+ metadata.gz: ef5efa467285c827ad8cdb3e9b851ccb73c2e72b
4
+ data.tar.gz: 1955f49a696a2bad2d424f47936b424c8d995d10
5
5
  SHA512:
6
- metadata.gz: 4876ef47087881a8307d6af86bfeae5fdb8232083662aaa7c8c7c245e8606fef0b6cda52f3315250b58b5930e6c74982adc5fda6229c147c09369d02f07c5934
7
- data.tar.gz: 4dec8ac447b4820e897de5dfba74fb80586c46e565981710fd88a563d8fa6d36139c152451ea51a08a2616b2a9e648e7a160ae05de9bd2a21aa67ffc6ea3b621
6
+ metadata.gz: 94a02543078146dbc4370d12204251ac30c346e4a8f4365121883975772c04b8bd9f8b381c44b264016011dfbd07362f669f0216b602e7b163597a60a237c1a8
7
+ data.tar.gz: 01248e8dd1551580f099c74dd2de1a1a10e6a5c0464baef59e86ae7e2572bc1d4befa6406bcf94f396fc0434fa9aadc33d50a83aeafbc150da381362b65b1fb0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.687
1
+ 3.0.688
@@ -3249,10 +3249,16 @@ module TencentCloud
3249
3249
  # @param ApplicableVersion: 检测项适用的版本
3250
3250
  # 注意:此字段可能返回 null,表示取不到有效值。
3251
3251
  # @type ApplicableVersion: String
3252
+ # @param Description: 检查项描述
3253
+ # 注意:此字段可能返回 null,表示取不到有效值。
3254
+ # @type Description: String
3255
+ # @param AuditProcedure: 检查项审计方法
3256
+ # 注意:此字段可能返回 null,表示取不到有效值。
3257
+ # @type AuditProcedure: String
3252
3258
 
3253
- attr_accessor :CustomerPolicyItemId, :BasePolicyItemId, :Name, :Category, :BenchmarkStandardName, :RiskLevel, :AssetType, :LastCheckTime, :CheckStatus, :CheckResult, :PassedAssetCount, :FailedAssetCount, :WhitelistId, :FixSuggestion, :BenchmarkStandardId, :ApplicableVersion
3259
+ attr_accessor :CustomerPolicyItemId, :BasePolicyItemId, :Name, :Category, :BenchmarkStandardName, :RiskLevel, :AssetType, :LastCheckTime, :CheckStatus, :CheckResult, :PassedAssetCount, :FailedAssetCount, :WhitelistId, :FixSuggestion, :BenchmarkStandardId, :ApplicableVersion, :Description, :AuditProcedure
3254
3260
 
3255
- def initialize(customerpolicyitemid=nil, basepolicyitemid=nil, name=nil, category=nil, benchmarkstandardname=nil, risklevel=nil, assettype=nil, lastchecktime=nil, checkstatus=nil, checkresult=nil, passedassetcount=nil, failedassetcount=nil, whitelistid=nil, fixsuggestion=nil, benchmarkstandardid=nil, applicableversion=nil)
3261
+ def initialize(customerpolicyitemid=nil, basepolicyitemid=nil, name=nil, category=nil, benchmarkstandardname=nil, risklevel=nil, assettype=nil, lastchecktime=nil, checkstatus=nil, checkresult=nil, passedassetcount=nil, failedassetcount=nil, whitelistid=nil, fixsuggestion=nil, benchmarkstandardid=nil, applicableversion=nil, description=nil, auditprocedure=nil)
3256
3262
  @CustomerPolicyItemId = customerpolicyitemid
3257
3263
  @BasePolicyItemId = basepolicyitemid
3258
3264
  @Name = name
@@ -3269,6 +3275,8 @@ module TencentCloud
3269
3275
  @FixSuggestion = fixsuggestion
3270
3276
  @BenchmarkStandardId = benchmarkstandardid
3271
3277
  @ApplicableVersion = applicableversion
3278
+ @Description = description
3279
+ @AuditProcedure = auditprocedure
3272
3280
  end
3273
3281
 
3274
3282
  def deserialize(params)
@@ -3288,6 +3296,8 @@ module TencentCloud
3288
3296
  @FixSuggestion = params['FixSuggestion']
3289
3297
  @BenchmarkStandardId = params['BenchmarkStandardId']
3290
3298
  @ApplicableVersion = params['ApplicableVersion']
3299
+ @Description = params['Description']
3300
+ @AuditProcedure = params['AuditProcedure']
3291
3301
  end
3292
3302
  end
3293
3303
 
@@ -12446,15 +12456,19 @@ module TencentCloud
12446
12456
  class DescribeEscapeEventDetailRequest < TencentCloud::Common::AbstractModel
12447
12457
  # @param EventId: 事件唯一id
12448
12458
  # @type EventId: String
12459
+ # @param EventType: 事件类型
12460
+ # @type EventType: String
12449
12461
 
12450
- attr_accessor :EventId
12462
+ attr_accessor :EventId, :EventType
12451
12463
 
12452
- def initialize(eventid=nil)
12464
+ def initialize(eventid=nil, eventtype=nil)
12453
12465
  @EventId = eventid
12466
+ @EventType = eventtype
12454
12467
  end
12455
12468
 
12456
12469
  def deserialize(params)
12457
12470
  @EventId = params['EventId']
12471
+ @EventType = params['EventType']
12458
12472
  end
12459
12473
  end
12460
12474
 
@@ -12516,7 +12530,13 @@ module TencentCloud
12516
12530
  # @type Limit: Integer
12517
12531
  # @param Offset: 偏移量,默认为0。
12518
12532
  # @type Offset: Integer
12519
- # @param Filters: 过滤参数,Status:EVENT_UNDEAL:未处理,EVENT_DEALED:已处理,EVENT_INGNORE:忽略
12533
+ # @param Filters: 过滤参数,
12534
+ # Status:状态(EVENT_UNDEAL:未处理,EVENT_DEALED:已处理,EVENT_INGNORE:忽略)
12535
+ # EventType: 事件类型(MOUNT_SENSITIVE_PTAH:敏感路径挂载 PRIVILEGE_CONTAINER_START:特权容器 PRIVILEGE:提权事件
12536
+ # ESCAPE_VUL_OCCURRED:逃逸漏洞利用 ESCAPE_DOCKER_API:访问Docker API接口逃逸 ESCAPE_TAMPER_SENSITIVE_FILE:篡改敏感文件逃逸 ESCAPE_CGROUPS:利用cgroup机制逃逸)
12537
+ # ContainerNetStatus: 容器隔离状态 (NORMAL:正常 ISOLATED:已隔离 ISOLATE_FAILED:隔离失败 ISOLATE_FAILED:解除隔离失败 RESTORING:解除隔离中 ISOLATING:隔离中)
12538
+ # ContainerStatus: 容器状态(CREATED:已创建 RUNNING:正常运行 PAUSED:暂停运行 STOPPED:停止运行 RESTARTING:重启中 REMOVING:迁移中 DEAD:DEAD UNKNOWN:未知 DESTROYED:已销毁)
12539
+ # ForeignUniqueKey:镜像ID及事件类型唯一值
12520
12540
  # @type Filters: Array
12521
12541
  # @param Order: 升序降序,asc desc
12522
12542
  # @type Order: String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.687
4
+ version: 3.0.688
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud