tencentcloud-sdk-antiddos 3.0.571 → 3.0.573

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200309/models.rb +43 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86ea3a2bda39433e74cc25a838a79b12e36766d9
4
- data.tar.gz: 4a939e452211b7d09809f4e485762eef13718340
3
+ metadata.gz: e0d9f6da3242d018d76b8467a032847b837429a7
4
+ data.tar.gz: efa4bc4e63526cf500fed1ddb8e94681ed466b4c
5
5
  SHA512:
6
- metadata.gz: a33b6ce876545eb6fd159742b5fa4c21c4802158a1c80ec826ae83c81320684fd2ad7f6e45c1ac512d9ad44dbb725d79e3dc57827189fb0b51e82a7e73d69d36
7
- data.tar.gz: 9899bb802e44a08b82096c181a790eaeb7daad045349afde37314e064bb29f307d9b5723f0e892a9ae16b2c7feb55ea5e112c9200fb7f1e066a9ffdf1b42cf57
6
+ metadata.gz: ce7fa25f80159960ee12fb8931c5a30b09ceccf12fc531e4229a35e8c94312092fa4317e5603ab560be5a19cdd390562d9adb247ee40f6089e635fad6e6b230d
7
+ data.tar.gz: 16b2fa0b7146492ea5a98931cdcf4e38fc5e99d411918f33cb8f6182c0b4f3de41aba5912aca406c841ac62d96c3892708311789fe8041f51e0a20240074f16e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.571
1
+ 3.0.573
@@ -739,15 +739,19 @@ module TencentCloud
739
739
  # @type DeviceType: String
740
740
  # @param IspCode: 运营商,绑定操作为必填项,解绑操作可不填。0:电信;1:联通;2:移动;5:BGP
741
741
  # @type IspCode: Integer
742
+ # @param Domain: 域名化资产对应的域名
743
+ # 注意:此字段可能返回 null,表示取不到有效值。
744
+ # @type Domain: String
742
745
 
743
- attr_accessor :Ip, :BizType, :InstanceId, :DeviceType, :IspCode
746
+ attr_accessor :Ip, :BizType, :InstanceId, :DeviceType, :IspCode, :Domain
744
747
 
745
- def initialize(ip=nil, biztype=nil, instanceid=nil, devicetype=nil, ispcode=nil)
748
+ def initialize(ip=nil, biztype=nil, instanceid=nil, devicetype=nil, ispcode=nil, domain=nil)
746
749
  @Ip = ip
747
750
  @BizType = biztype
748
751
  @InstanceId = instanceid
749
752
  @DeviceType = devicetype
750
753
  @IspCode = ispcode
754
+ @Domain = domain
751
755
  end
752
756
 
753
757
  def deserialize(params)
@@ -756,6 +760,7 @@ module TencentCloud
756
760
  @InstanceId = params['InstanceId']
757
761
  @DeviceType = params['DeviceType']
758
762
  @IspCode = params['IspCode']
763
+ @Domain = params['Domain']
759
764
  end
760
765
  end
761
766
 
@@ -1309,15 +1314,18 @@ module TencentCloud
1309
1314
  # @type UnBoundDevList: Array
1310
1315
  # @param CopyPolicy: 已弃用,不填
1311
1316
  # @type CopyPolicy: String
1317
+ # @param FilterRegion: 如果该资源实例为域名化资产则,该参数必填
1318
+ # @type FilterRegion: String
1312
1319
 
1313
- attr_accessor :Business, :Id, :BoundDevList, :UnBoundDevList, :CopyPolicy
1320
+ attr_accessor :Business, :Id, :BoundDevList, :UnBoundDevList, :CopyPolicy, :FilterRegion
1314
1321
 
1315
- def initialize(business=nil, id=nil, bounddevlist=nil, unbounddevlist=nil, copypolicy=nil)
1322
+ def initialize(business=nil, id=nil, bounddevlist=nil, unbounddevlist=nil, copypolicy=nil, filterregion=nil)
1316
1323
  @Business = business
1317
1324
  @Id = id
1318
1325
  @BoundDevList = bounddevlist
1319
1326
  @UnBoundDevList = unbounddevlist
1320
1327
  @CopyPolicy = copypolicy
1328
+ @FilterRegion = filterregion
1321
1329
  end
1322
1330
 
1323
1331
  def deserialize(params)
@@ -1340,6 +1348,7 @@ module TencentCloud
1340
1348
  end
1341
1349
  end
1342
1350
  @CopyPolicy = params['CopyPolicy']
1351
+ @FilterRegion = params['FilterRegion']
1343
1352
  end
1344
1353
  end
1345
1354
 
@@ -2965,15 +2974,23 @@ module TencentCloud
2965
2974
  class DescribeBasicDeviceStatusRequest < TencentCloud::Common::AbstractModel
2966
2975
  # @param IpList: IP 资源列表
2967
2976
  # @type IpList: Array
2977
+ # @param IdList: 域名化资源传id
2978
+ # @type IdList: Array
2979
+ # @param FilterRegion: 地域名称
2980
+ # @type FilterRegion: Integer
2968
2981
 
2969
- attr_accessor :IpList
2982
+ attr_accessor :IpList, :IdList, :FilterRegion
2970
2983
 
2971
- def initialize(iplist=nil)
2984
+ def initialize(iplist=nil, idlist=nil, filterregion=nil)
2972
2985
  @IpList = iplist
2986
+ @IdList = idlist
2987
+ @FilterRegion = filterregion
2973
2988
  end
2974
2989
 
2975
2990
  def deserialize(params)
2976
2991
  @IpList = params['IpList']
2992
+ @IdList = params['IdList']
2993
+ @FilterRegion = params['FilterRegion']
2977
2994
  end
2978
2995
  end
2979
2996
 
@@ -2984,13 +3001,17 @@ module TencentCloud
2984
3001
  # 2 - 正常状态
2985
3002
  # 3 - 攻击状态
2986
3003
  # @type Data: Array
3004
+ # @param CLBData: 域名化资产的名称
3005
+ # 注意:此字段可能返回 null,表示取不到有效值。
3006
+ # @type CLBData: Array
2987
3007
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2988
3008
  # @type RequestId: String
2989
3009
 
2990
- attr_accessor :Data, :RequestId
3010
+ attr_accessor :Data, :CLBData, :RequestId
2991
3011
 
2992
- def initialize(data=nil, requestid=nil)
3012
+ def initialize(data=nil, clbdata=nil, requestid=nil)
2993
3013
  @Data = data
3014
+ @CLBData = clbdata
2994
3015
  @RequestId = requestid
2995
3016
  end
2996
3017
 
@@ -3003,6 +3024,14 @@ module TencentCloud
3003
3024
  @Data << keyvalue_tmp
3004
3025
  end
3005
3026
  end
3027
+ unless params['CLBData'].nil?
3028
+ @CLBData = []
3029
+ params['CLBData'].each do |i|
3030
+ keyvalue_tmp = KeyValue.new
3031
+ keyvalue_tmp.deserialize(i)
3032
+ @CLBData << keyvalue_tmp
3033
+ end
3034
+ end
3006
3035
  @RequestId = params['RequestId']
3007
3036
  end
3008
3037
  end
@@ -5160,10 +5189,12 @@ module TencentCloud
5160
5189
  # @type ProtocolList: Array
5161
5190
  # @param Cname: 高防IP实例的Cname
5162
5191
  # @type Cname: String
5192
+ # @param Export: 默认为false,当为true时,将不对各个规则做策略检查,直接导出所有规则
5193
+ # @type Export: Boolean
5163
5194
 
5164
- attr_accessor :Business, :StatusList, :Domain, :Ip, :Limit, :Offset, :ProtocolList, :Cname
5195
+ attr_accessor :Business, :StatusList, :Domain, :Ip, :Limit, :Offset, :ProtocolList, :Cname, :Export
5165
5196
 
5166
- def initialize(business=nil, statuslist=nil, domain=nil, ip=nil, limit=nil, offset=nil, protocollist=nil, cname=nil)
5197
+ def initialize(business=nil, statuslist=nil, domain=nil, ip=nil, limit=nil, offset=nil, protocollist=nil, cname=nil, export=nil)
5167
5198
  @Business = business
5168
5199
  @StatusList = statuslist
5169
5200
  @Domain = domain
@@ -5172,6 +5203,7 @@ module TencentCloud
5172
5203
  @Offset = offset
5173
5204
  @ProtocolList = protocollist
5174
5205
  @Cname = cname
5206
+ @Export = export
5175
5207
  end
5176
5208
 
5177
5209
  def deserialize(params)
@@ -5183,6 +5215,7 @@ module TencentCloud
5183
5215
  @Offset = params['Offset']
5184
5216
  @ProtocolList = params['ProtocolList']
5185
5217
  @Cname = params['Cname']
5218
+ @Export = params['Export']
5186
5219
  end
5187
5220
  end
5188
5221
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-antiddos
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.571
4
+ version: 3.0.573
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-17 00:00:00.000000000 Z
11
+ date: 2023-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common