tencentcloud-sdk-ctem 3.0.1114 → 3.0.1126
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/v20231128/models.rb +12 -4
- 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: 0077c28faa8f0b33d1772c57627451a299803619
|
4
|
+
data.tar.gz: eb6580c3506ed7a595577ff71ba18586da995527
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48d354152863896d31f77b39ff6fdb5450a240e7d8632d0628b5e294e794fd9b8374ee1e868dab50d043e032c967e5e0a9da878247832437496c491675e501dc
|
7
|
+
data.tar.gz: 07c4d918c4b0fd368765fecc48ab4c8e1b10fb2e715997f3c799bed274998f7c745c45cc8949d419b2d832e09368f8d0aa6d075fbb480d63c67437a3c6a1f273
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1126
|
data/lib/v20231128/models.rb
CHANGED
@@ -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
|
|
@@ -3243,15 +3247,18 @@ module TencentCloud
|
|
3243
3247
|
# @type Url: String
|
3244
3248
|
# @param DisplayToolCommon: 公共字段
|
3245
3249
|
# @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
|
3250
|
+
# @param Status: 状态:unrepaired:未修复,repaired:已修复,ignore:已忽略
|
3251
|
+
# @type Status: String
|
3246
3252
|
|
3247
|
-
attr_accessor :Id, :Content, :MatchedKeywords, :Url, :DisplayToolCommon
|
3253
|
+
attr_accessor :Id, :Content, :MatchedKeywords, :Url, :DisplayToolCommon, :Status
|
3248
3254
|
|
3249
|
-
def initialize(id=nil, content=nil, matchedkeywords=nil, url=nil, displaytoolcommon=nil)
|
3255
|
+
def initialize(id=nil, content=nil, matchedkeywords=nil, url=nil, displaytoolcommon=nil, status=nil)
|
3250
3256
|
@Id = id
|
3251
3257
|
@Content = content
|
3252
3258
|
@MatchedKeywords = matchedkeywords
|
3253
3259
|
@Url = url
|
3254
3260
|
@DisplayToolCommon = displaytoolcommon
|
3261
|
+
@Status = status
|
3255
3262
|
end
|
3256
3263
|
|
3257
3264
|
def deserialize(params)
|
@@ -3263,6 +3270,7 @@ module TencentCloud
|
|
3263
3270
|
@DisplayToolCommon = DisplayToolCommon.new
|
3264
3271
|
@DisplayToolCommon.deserialize(params['DisplayToolCommon'])
|
3265
3272
|
end
|
3273
|
+
@Status = params['Status']
|
3266
3274
|
end
|
3267
3275
|
end
|
3268
3276
|
|
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.
|
4
|
+
version: 3.0.1126
|
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-
|
11
|
+
date: 2025-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|