tencentcloud-sdk-cwp 3.0.762 → 3.0.764
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180228/models.rb +73 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1739edfc009b2b4cb565598ce255c2a403940a48
|
4
|
+
data.tar.gz: ff08a6f7ba578c8f1dfd6d76f584226b9cbe43fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be6ce827db5b01afbb87396c61facf912c6e4b9c3633a51c5e24bebf961ef5ca195d81ae9ce6b690e3e786b80781d640e455624e9c7f3ae0f3a212302a6f6ddd
|
7
|
+
data.tar.gz: 642f29fb660dc058f5dc0dafebfd1bcd237867634f525c8f1b09ba7176416414fdd89f42bdd9330fc8dc6e412d75c9caa24d1717fa1ab0b23c58e3e6792f6ae3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.764
|
data/lib/v20180228/models.rb
CHANGED
@@ -4711,8 +4711,8 @@ module TencentCloud
|
|
4711
4711
|
|
4712
4712
|
attr_accessor :Id, :Uuid, :Name, :Level, :Rule, :Decription, :Operator, :IsGlobal, :Status, :CreateTime, :ModifyTime, :Hostip, :Uuids, :White, :DealOldEvents, :Description
|
4713
4713
|
extend Gem::Deprecate
|
4714
|
-
deprecate :Decription, :none, 2024,
|
4715
|
-
deprecate :Decription=, :none, 2024,
|
4714
|
+
deprecate :Decription, :none, 2024, 2
|
4715
|
+
deprecate :Decription=, :none, 2024, 2
|
4716
4716
|
|
4717
4717
|
def initialize(id=nil, uuid=nil, name=nil, level=nil, rule=nil, decription=nil, operator=nil, isglobal=nil, status=nil, createtime=nil, modifytime=nil, hostip=nil, uuids=nil, white=nil, dealoldevents=nil, description=nil)
|
4718
4718
|
@Id = id
|
@@ -19512,20 +19512,38 @@ module TencentCloud
|
|
19512
19512
|
# @type NetAttackEnable: Integer
|
19513
19513
|
# @param NetAttackAlarmStatus: 0 新增告警事件默认待处理,1新增告警事件默认已处理,3新增告警事件默认忽略
|
19514
19514
|
# @type NetAttackAlarmStatus: Integer
|
19515
|
+
# @param Scope: 1 全部旗舰版主机,0 InstanceIds列表主机
|
19516
|
+
# @type Scope: Integer
|
19517
|
+
# @param InstanceIds: 自选主机
|
19518
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19519
|
+
# @type InstanceIds: Array
|
19520
|
+
# @param ExcludeInstanceIds: 自选排除主机
|
19521
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19522
|
+
# @type ExcludeInstanceIds: Array
|
19523
|
+
# @param AutoInclude: 新增资产自动包含 0 不包含 1包含
|
19524
|
+
# @type AutoInclude: Integer
|
19515
19525
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
19516
19526
|
# @type RequestId: String
|
19517
19527
|
|
19518
|
-
attr_accessor :NetAttackEnable, :NetAttackAlarmStatus, :RequestId
|
19528
|
+
attr_accessor :NetAttackEnable, :NetAttackAlarmStatus, :Scope, :InstanceIds, :ExcludeInstanceIds, :AutoInclude, :RequestId
|
19519
19529
|
|
19520
|
-
def initialize(netattackenable=nil, netattackalarmstatus=nil, requestid=nil)
|
19530
|
+
def initialize(netattackenable=nil, netattackalarmstatus=nil, scope=nil, instanceids=nil, excludeinstanceids=nil, autoinclude=nil, requestid=nil)
|
19521
19531
|
@NetAttackEnable = netattackenable
|
19522
19532
|
@NetAttackAlarmStatus = netattackalarmstatus
|
19533
|
+
@Scope = scope
|
19534
|
+
@InstanceIds = instanceids
|
19535
|
+
@ExcludeInstanceIds = excludeinstanceids
|
19536
|
+
@AutoInclude = autoinclude
|
19523
19537
|
@RequestId = requestid
|
19524
19538
|
end
|
19525
19539
|
|
19526
19540
|
def deserialize(params)
|
19527
19541
|
@NetAttackEnable = params['NetAttackEnable']
|
19528
19542
|
@NetAttackAlarmStatus = params['NetAttackAlarmStatus']
|
19543
|
+
@Scope = params['Scope']
|
19544
|
+
@InstanceIds = params['InstanceIds']
|
19545
|
+
@ExcludeInstanceIds = params['ExcludeInstanceIds']
|
19546
|
+
@AutoInclude = params['AutoInclude']
|
19529
19547
|
@RequestId = params['RequestId']
|
19530
19548
|
end
|
19531
19549
|
end
|
@@ -24404,16 +24422,27 @@ module TencentCloud
|
|
24404
24422
|
# @type Quuids: Array
|
24405
24423
|
# @param FlagshipCount: 当前旗舰版主机数量
|
24406
24424
|
# @type FlagshipCount: Integer
|
24425
|
+
# @param InstanceIds: 影响主机id列表
|
24426
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24427
|
+
# @type InstanceIds: Array
|
24428
|
+
# @param AutoInclude: 新增旗舰版主机自动加入;1是,0否
|
24429
|
+
# @type AutoInclude: Integer
|
24430
|
+
# @param ExcludeInstanceIds: 排除的主机id列表
|
24431
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24432
|
+
# @type ExcludeInstanceIds: Array
|
24407
24433
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
24408
24434
|
# @type RequestId: String
|
24409
24435
|
|
24410
|
-
attr_accessor :Enable, :Scope, :Quuids, :FlagshipCount, :RequestId
|
24436
|
+
attr_accessor :Enable, :Scope, :Quuids, :FlagshipCount, :InstanceIds, :AutoInclude, :ExcludeInstanceIds, :RequestId
|
24411
24437
|
|
24412
|
-
def initialize(enable=nil, scope=nil, quuids=nil, flagshipcount=nil, requestid=nil)
|
24438
|
+
def initialize(enable=nil, scope=nil, quuids=nil, flagshipcount=nil, instanceids=nil, autoinclude=nil, excludeinstanceids=nil, requestid=nil)
|
24413
24439
|
@Enable = enable
|
24414
24440
|
@Scope = scope
|
24415
24441
|
@Quuids = quuids
|
24416
24442
|
@FlagshipCount = flagshipcount
|
24443
|
+
@InstanceIds = instanceids
|
24444
|
+
@AutoInclude = autoinclude
|
24445
|
+
@ExcludeInstanceIds = excludeinstanceids
|
24417
24446
|
@RequestId = requestid
|
24418
24447
|
end
|
24419
24448
|
|
@@ -24422,6 +24451,9 @@ module TencentCloud
|
|
24422
24451
|
@Scope = params['Scope']
|
24423
24452
|
@Quuids = params['Quuids']
|
24424
24453
|
@FlagshipCount = params['FlagshipCount']
|
24454
|
+
@InstanceIds = params['InstanceIds']
|
24455
|
+
@AutoInclude = params['AutoInclude']
|
24456
|
+
@ExcludeInstanceIds = params['ExcludeInstanceIds']
|
24425
24457
|
@RequestId = params['RequestId']
|
24426
24458
|
end
|
24427
24459
|
end
|
@@ -28469,8 +28501,8 @@ module TencentCloud
|
|
28469
28501
|
|
28470
28502
|
attr_accessor :Filters, :Fileds, :Fields
|
28471
28503
|
extend Gem::Deprecate
|
28472
|
-
deprecate :Fileds, :none, 2024,
|
28473
|
-
deprecate :Fileds=, :none, 2024,
|
28504
|
+
deprecate :Fileds, :none, 2024, 2
|
28505
|
+
deprecate :Fileds=, :none, 2024, 2
|
28474
28506
|
|
28475
28507
|
def initialize(filters=nil, fileds=nil, fields=nil)
|
28476
28508
|
@Filters = filters
|
@@ -34661,17 +34693,33 @@ module TencentCloud
|
|
34661
34693
|
# @type NetAttackEnable: Integer
|
34662
34694
|
# @param NetAttackAlarmStatus: 0 新增告警事件默认待处理,1新增告警事件默认已处理,3新增告警事件默认忽略
|
34663
34695
|
# @type NetAttackAlarmStatus: Integer
|
34696
|
+
# @param Scope: 1 全部旗舰版主机,0 Quuids列表主机
|
34697
|
+
# @type Scope: Integer
|
34698
|
+
# @param InstanceIds: 自选主机
|
34699
|
+
# @type InstanceIds: Array
|
34700
|
+
# @param ExcludeInstanceIds: 自选排除的主机
|
34701
|
+
# @type ExcludeInstanceIds: Array
|
34702
|
+
# @param AutoInclude: 新增资产自动包含 0 不包含 1包含
|
34703
|
+
# @type AutoInclude: Integer
|
34664
34704
|
|
34665
|
-
attr_accessor :NetAttackEnable, :NetAttackAlarmStatus
|
34705
|
+
attr_accessor :NetAttackEnable, :NetAttackAlarmStatus, :Scope, :InstanceIds, :ExcludeInstanceIds, :AutoInclude
|
34666
34706
|
|
34667
|
-
def initialize(netattackenable=nil, netattackalarmstatus=nil)
|
34707
|
+
def initialize(netattackenable=nil, netattackalarmstatus=nil, scope=nil, instanceids=nil, excludeinstanceids=nil, autoinclude=nil)
|
34668
34708
|
@NetAttackEnable = netattackenable
|
34669
34709
|
@NetAttackAlarmStatus = netattackalarmstatus
|
34710
|
+
@Scope = scope
|
34711
|
+
@InstanceIds = instanceids
|
34712
|
+
@ExcludeInstanceIds = excludeinstanceids
|
34713
|
+
@AutoInclude = autoinclude
|
34670
34714
|
end
|
34671
34715
|
|
34672
34716
|
def deserialize(params)
|
34673
34717
|
@NetAttackEnable = params['NetAttackEnable']
|
34674
34718
|
@NetAttackAlarmStatus = params['NetAttackAlarmStatus']
|
34719
|
+
@Scope = params['Scope']
|
34720
|
+
@InstanceIds = params['InstanceIds']
|
34721
|
+
@ExcludeInstanceIds = params['ExcludeInstanceIds']
|
34722
|
+
@AutoInclude = params['AutoInclude']
|
34675
34723
|
end
|
34676
34724
|
end
|
34677
34725
|
|
@@ -35103,21 +35151,33 @@ module TencentCloud
|
|
35103
35151
|
# @type Enable: Integer
|
35104
35152
|
# @param Scope: 1 全部旗舰版主机,0 Quuids列表主机
|
35105
35153
|
# @type Scope: Integer
|
35106
|
-
# @param Quuids:
|
35154
|
+
# @param Quuids: 作用范围内旗舰版主机列表
|
35107
35155
|
# @type Quuids: Array
|
35156
|
+
# @param ExcludeInstanceIds: 排除作用范围内旗舰版主机列表
|
35157
|
+
# @type ExcludeInstanceIds: Array
|
35158
|
+
# @param AutoInclude: 新增资产自动包含 0 不包含 1包含
|
35159
|
+
# @type AutoInclude: Integer
|
35160
|
+
# @param InstanceIds: 作用范围内旗舰版主机列表
|
35161
|
+
# @type InstanceIds: Array
|
35108
35162
|
|
35109
|
-
attr_accessor :Enable, :Scope, :Quuids
|
35163
|
+
attr_accessor :Enable, :Scope, :Quuids, :ExcludeInstanceIds, :AutoInclude, :InstanceIds
|
35110
35164
|
|
35111
|
-
def initialize(enable=nil, scope=nil, quuids=nil)
|
35165
|
+
def initialize(enable=nil, scope=nil, quuids=nil, excludeinstanceids=nil, autoinclude=nil, instanceids=nil)
|
35112
35166
|
@Enable = enable
|
35113
35167
|
@Scope = scope
|
35114
35168
|
@Quuids = quuids
|
35169
|
+
@ExcludeInstanceIds = excludeinstanceids
|
35170
|
+
@AutoInclude = autoinclude
|
35171
|
+
@InstanceIds = instanceids
|
35115
35172
|
end
|
35116
35173
|
|
35117
35174
|
def deserialize(params)
|
35118
35175
|
@Enable = params['Enable']
|
35119
35176
|
@Scope = params['Scope']
|
35120
35177
|
@Quuids = params['Quuids']
|
35178
|
+
@ExcludeInstanceIds = params['ExcludeInstanceIds']
|
35179
|
+
@AutoInclude = params['AutoInclude']
|
35180
|
+
@InstanceIds = params['InstanceIds']
|
35121
35181
|
end
|
35122
35182
|
end
|
35123
35183
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cwp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.764
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|