tencentcloud-sdk-ctem 3.0.1114 → 3.0.1139

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/v20231128/models.rb +32 -8
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abcd0c9bc200e41488c07dddb8dfb3863bfaf9f5
4
- data.tar.gz: 543a97bf544a9356574c5abdad5ac76d3e9cff1c
3
+ metadata.gz: 6252d74fa2125a94d57a05cc806d4c6fc1c1ac95
4
+ data.tar.gz: a7c2dd5c558cf0d958284529727791ccee72c8af
5
5
  SHA512:
6
- metadata.gz: ab9da40945078608e03cc25af9fcc95bf473790019308cb20bad81ff62f33a03498c860bedd81d8bb14be3363eac88196758523a45ba978c6d0f21c22f67fb77
7
- data.tar.gz: cef1993527beee58a7ba44b3b77c8d8e4beff6684b5611fcd0b5ed635732f38ed1e7bab43e636719ec5d1d95723e404fda2c8cb1bcb5551d7a22672544c41655
6
+ metadata.gz: a7ad5e384531809669771c9da200c59a30b6a7aa55b408c326a0a9212433d7f42ab1f364c2abed3473cad084c03cfc6d52bc4f17b3e1f5093ffe046193326d4a
7
+ data.tar.gz: 9a255ee6521037c06669f44f8542e968833a01c2a5cbb772100e3a63b168c8f71230303320d270baae0c1a1896f5989b4b96a069fe12d8989205b7e75be0ccd4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1114
1
+ 3.0.1139
@@ -504,10 +504,12 @@ module TencentCloud
504
504
  # @type Filters: Array
505
505
  # @param Ignored: 是否显示被忽略的数据
506
506
  # @type Ignored: Boolean
507
+ # @param OrderBy: 支持按照响应长度排序,例如:+ContentLength或-ContentLength,+是递增,-是递减
508
+ # @type OrderBy: String
507
509
 
508
- attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
510
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :OrderBy
509
511
 
510
- def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
512
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil, orderby=nil)
511
513
  @CustomerIdList = customeridlist
512
514
  @IsAggregation = isaggregation
513
515
  @IsNew = isnew
@@ -522,6 +524,7 @@ module TencentCloud
522
524
  @UpdateAtEnd = updateatend
523
525
  @Filters = filters
524
526
  @Ignored = ignored
527
+ @OrderBy = orderby
525
528
  end
526
529
 
527
530
  def deserialize(params)
@@ -546,6 +549,7 @@ module TencentCloud
546
549
  end
547
550
  end
548
551
  @Ignored = params['Ignored']
552
+ @OrderBy = params['OrderBy']
549
553
  end
550
554
  end
551
555
 
@@ -3143,10 +3147,18 @@ module TencentCloud
3143
3147
  # @type Isp: String
3144
3148
  # @param DisplayToolCommon: 公共字段
3145
3149
  # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3146
-
3147
- attr_accessor :Id, :Os, :Ip, :Country, :Province, :City, :Isp, :DisplayToolCommon
3148
-
3149
- def initialize(id=nil, os=nil, ip=nil, country=nil, province=nil, city=nil, isp=nil, displaytoolcommon=nil)
3150
+ # @param Ports: 端口数据
3151
+ # @type Ports: String
3152
+ # @param Services: 服务数据
3153
+ # @type Services: String
3154
+ # @param Domains: 域名数据
3155
+ # @type Domains: String
3156
+ # @param LastModify: 端口和服务最近更新时间
3157
+ # @type LastModify: String
3158
+
3159
+ attr_accessor :Id, :Os, :Ip, :Country, :Province, :City, :Isp, :DisplayToolCommon, :Ports, :Services, :Domains, :LastModify
3160
+
3161
+ def initialize(id=nil, os=nil, ip=nil, country=nil, province=nil, city=nil, isp=nil, displaytoolcommon=nil, ports=nil, services=nil, domains=nil, lastmodify=nil)
3150
3162
  @Id = id
3151
3163
  @Os = os
3152
3164
  @Ip = ip
@@ -3155,6 +3167,10 @@ module TencentCloud
3155
3167
  @City = city
3156
3168
  @Isp = isp
3157
3169
  @DisplayToolCommon = displaytoolcommon
3170
+ @Ports = ports
3171
+ @Services = services
3172
+ @Domains = domains
3173
+ @LastModify = lastmodify
3158
3174
  end
3159
3175
 
3160
3176
  def deserialize(params)
@@ -3169,6 +3185,10 @@ module TencentCloud
3169
3185
  @DisplayToolCommon = DisplayToolCommon.new
3170
3186
  @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
3171
3187
  end
3188
+ @Ports = params['Ports']
3189
+ @Services = params['Services']
3190
+ @Domains = params['Domains']
3191
+ @LastModify = params['LastModify']
3172
3192
  end
3173
3193
  end
3174
3194
 
@@ -3243,15 +3263,18 @@ module TencentCloud
3243
3263
  # @type Url: String
3244
3264
  # @param DisplayToolCommon: 公共字段
3245
3265
  # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3266
+ # @param Status: 状态:unrepaired:未修复,repaired:已修复,ignore:已忽略
3267
+ # @type Status: String
3246
3268
 
3247
- attr_accessor :Id, :Content, :MatchedKeywords, :Url, :DisplayToolCommon
3269
+ attr_accessor :Id, :Content, :MatchedKeywords, :Url, :DisplayToolCommon, :Status
3248
3270
 
3249
- def initialize(id=nil, content=nil, matchedkeywords=nil, url=nil, displaytoolcommon=nil)
3271
+ def initialize(id=nil, content=nil, matchedkeywords=nil, url=nil, displaytoolcommon=nil, status=nil)
3250
3272
  @Id = id
3251
3273
  @Content = content
3252
3274
  @MatchedKeywords = matchedkeywords
3253
3275
  @Url = url
3254
3276
  @DisplayToolCommon = displaytoolcommon
3277
+ @Status = status
3255
3278
  end
3256
3279
 
3257
3280
  def deserialize(params)
@@ -3263,6 +3286,7 @@ module TencentCloud
3263
3286
  @DisplayToolCommon = DisplayToolCommon.new
3264
3287
  @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
3265
3288
  end
3289
+ @Status = params['Status']
3266
3290
  end
3267
3291
  end
3268
3292
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ctem
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1114
4
+ version: 3.0.1139
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-30 00:00:00.000000000 Z
11
+ date: 2025-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,8 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20231128/client.rb
37
36
  - lib/v20231128/models.rb
37
+ - lib/v20231128/client.rb
38
38
  - lib/tencentcloud-sdk-ctem.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby