tencentcloud-sdk-cwp 3.0.646 → 3.0.649
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 +20 -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: 7bf5775f0c6c5f45fc3f5ff3111ea8b6b5a0a7db
|
|
4
|
+
data.tar.gz: 81fa91023b06db872a613172722a570d67b19230
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0e8ff2bf11eb52de276bfcf9d4f61adf3e3b2022b52a3074a7ac1c095aa8ff806eeda5c99e1e7fc58e5453a38cd1e53d47564905fce969c826e2291041db0a2
|
|
7
|
+
data.tar.gz: 1672a1d5f70af620bf3fd14e238ccbe27057ef24db6e78e3fec0eb83f1b939a0bbc41ea20b9ace12732dd004968b2b1054540497a3ee98e8f74e660e46c10a5b
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.649
|
data/lib/v20180228/models.rb
CHANGED
|
@@ -4085,10 +4085,16 @@ module TencentCloud
|
|
|
4085
4085
|
# @param DealOldEvents: 是否处理之前的事件 0: 不处理 1:处理
|
|
4086
4086
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4087
4087
|
# @type DealOldEvents: Integer
|
|
4088
|
+
# @param Description: 规则描述
|
|
4089
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4090
|
+
# @type Description: String
|
|
4088
4091
|
|
|
4089
|
-
attr_accessor :Id, :Uuid, :Name, :Level, :Rule, :Decription, :Operator, :IsGlobal, :Status, :CreateTime, :ModifyTime, :Hostip, :Uuids, :White, :DealOldEvents
|
|
4092
|
+
attr_accessor :Id, :Uuid, :Name, :Level, :Rule, :Decription, :Operator, :IsGlobal, :Status, :CreateTime, :ModifyTime, :Hostip, :Uuids, :White, :DealOldEvents, :Description
|
|
4093
|
+
extend Gem::Deprecate
|
|
4094
|
+
deprecate :Decription, :none, 2023, 8
|
|
4095
|
+
deprecate :Decription=, :none, 2023, 8
|
|
4090
4096
|
|
|
4091
|
-
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)
|
|
4097
|
+
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)
|
|
4092
4098
|
@Id = id
|
|
4093
4099
|
@Uuid = uuid
|
|
4094
4100
|
@Name = name
|
|
@@ -4104,6 +4110,7 @@ module TencentCloud
|
|
|
4104
4110
|
@Uuids = uuids
|
|
4105
4111
|
@White = white
|
|
4106
4112
|
@DealOldEvents = dealoldevents
|
|
4113
|
+
@Description = description
|
|
4107
4114
|
end
|
|
4108
4115
|
|
|
4109
4116
|
def deserialize(params)
|
|
@@ -4122,6 +4129,7 @@ module TencentCloud
|
|
|
4122
4129
|
@Uuids = params['Uuids']
|
|
4123
4130
|
@White = params['White']
|
|
4124
4131
|
@DealOldEvents = params['DealOldEvents']
|
|
4132
|
+
@Description = params['Description']
|
|
4125
4133
|
end
|
|
4126
4134
|
end
|
|
4127
4135
|
|
|
@@ -13146,13 +13154,19 @@ module TencentCloud
|
|
|
13146
13154
|
|
|
13147
13155
|
# <li>Domain - String - 基线名称</li>
|
|
13148
13156
|
# @type Filters: Array
|
|
13157
|
+
# @param Order: 排序方式 [asc:升序|desc:降序]
|
|
13158
|
+
# @type Order: String
|
|
13159
|
+
# @param By: 排序字段
|
|
13160
|
+
# @type By: String
|
|
13149
13161
|
|
|
13150
|
-
attr_accessor :Limit, :Offset, :Filters
|
|
13162
|
+
attr_accessor :Limit, :Offset, :Filters, :Order, :By
|
|
13151
13163
|
|
|
13152
|
-
def initialize(limit=nil, offset=nil, filters=nil)
|
|
13164
|
+
def initialize(limit=nil, offset=nil, filters=nil, order=nil, by=nil)
|
|
13153
13165
|
@Limit = limit
|
|
13154
13166
|
@Offset = offset
|
|
13155
13167
|
@Filters = filters
|
|
13168
|
+
@Order = order
|
|
13169
|
+
@By = by
|
|
13156
13170
|
end
|
|
13157
13171
|
|
|
13158
13172
|
def deserialize(params)
|
|
@@ -13166,6 +13180,8 @@ module TencentCloud
|
|
|
13166
13180
|
@Filters << filters_tmp
|
|
13167
13181
|
end
|
|
13168
13182
|
end
|
|
13183
|
+
@Order = params['Order']
|
|
13184
|
+
@By = params['By']
|
|
13169
13185
|
end
|
|
13170
13186
|
end
|
|
13171
13187
|
|
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.649
|
|
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-08-
|
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|