tencentcloud-sdk-teo 1.0.341 → 1.0.342
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/v20220106/models.rb +40 -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: fc7610f8075698998dadfc8f9def0ffed64e2a47
|
4
|
+
data.tar.gz: b4c702daea16abe38eb4d12a1540a25cc15038c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50f1997dffd7566e4449379408b5d08078a70795a99e613530b7bf7b2af5b51c8d709b77f5047681c90948c646eb27c6957848fbd86f97494aec4335560b6720
|
7
|
+
data.tar.gz: ba808a9d56cc7113d721728b194a9c98f6d693fe088826239f13e034ea7a90985835af317c05bf2706d89eff6855dcf54d99b371082261dc063f5609622f814f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.342
|
data/lib/v20220106/models.rb
CHANGED
@@ -991,6 +991,27 @@ module TencentCloud
|
|
991
991
|
end
|
992
992
|
end
|
993
993
|
|
994
|
+
# 缓存预刷新
|
995
|
+
class CachePrefresh < TencentCloud::Common::AbstractModel
|
996
|
+
# @param Switch: 缓存预刷新配置开关
|
997
|
+
# @type Switch: String
|
998
|
+
# @param Percent: 缓存预刷新百分比:1-99
|
999
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1000
|
+
# @type Percent: Integer
|
1001
|
+
|
1002
|
+
attr_accessor :Switch, :Percent
|
1003
|
+
|
1004
|
+
def initialize(switch=nil, percent=nil)
|
1005
|
+
@Switch = switch
|
1006
|
+
@Percent = percent
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
def deserialize(params)
|
1010
|
+
@Switch = params['Switch']
|
1011
|
+
@Percent = params['Percent']
|
1012
|
+
end
|
1013
|
+
end
|
1014
|
+
|
994
1015
|
# 证书查询过滤条件
|
995
1016
|
class CertFilter < TencentCloud::Common::AbstractModel
|
996
1017
|
# @param Name: 过滤字段名,支持的列表如下:
|
@@ -6325,12 +6346,15 @@ module TencentCloud
|
|
6325
6346
|
# @param ClientIpHeader: 客户端IP回源请求头配置
|
6326
6347
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6327
6348
|
# @type ClientIpHeader: :class:`Tencentcloud::Teo.v20220106.models.ClientIp`
|
6349
|
+
# @param CachePrefresh: 缓存预刷新配置
|
6350
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6351
|
+
# @type CachePrefresh: :class:`Tencentcloud::Teo.v20220106.models.CachePrefresh`
|
6328
6352
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6329
6353
|
# @type RequestId: String
|
6330
6354
|
|
6331
|
-
attr_accessor :Cache, :CacheKey, :MaxAge, :OfflineCache, :Quic, :PostMaxSize, :Compression, :UpstreamHttp2, :ForceRedirect, :Https, :Origin, :SmartRouting, :ZoneId, :Zone, :WebSocket, :ClientIpHeader, :RequestId
|
6355
|
+
attr_accessor :Cache, :CacheKey, :MaxAge, :OfflineCache, :Quic, :PostMaxSize, :Compression, :UpstreamHttp2, :ForceRedirect, :Https, :Origin, :SmartRouting, :ZoneId, :Zone, :WebSocket, :ClientIpHeader, :CachePrefresh, :RequestId
|
6332
6356
|
|
6333
|
-
def initialize(cache=nil, cachekey=nil, maxage=nil, offlinecache=nil, quic=nil, postmaxsize=nil, compression=nil, upstreamhttp2=nil, forceredirect=nil, https=nil, origin=nil, smartrouting=nil, zoneid=nil, zone=nil, websocket=nil, clientipheader=nil, requestid=nil)
|
6357
|
+
def initialize(cache=nil, cachekey=nil, maxage=nil, offlinecache=nil, quic=nil, postmaxsize=nil, compression=nil, upstreamhttp2=nil, forceredirect=nil, https=nil, origin=nil, smartrouting=nil, zoneid=nil, zone=nil, websocket=nil, clientipheader=nil, cacheprefresh=nil, requestid=nil)
|
6334
6358
|
@Cache = cache
|
6335
6359
|
@CacheKey = cachekey
|
6336
6360
|
@MaxAge = maxage
|
@@ -6347,6 +6371,7 @@ module TencentCloud
|
|
6347
6371
|
@Zone = zone
|
6348
6372
|
@WebSocket = websocket
|
6349
6373
|
@ClientIpHeader = clientipheader
|
6374
|
+
@CachePrefresh = cacheprefresh
|
6350
6375
|
@RequestId = requestid
|
6351
6376
|
end
|
6352
6377
|
|
@@ -6409,6 +6434,10 @@ module TencentCloud
|
|
6409
6434
|
@ClientIpHeader = ClientIp.new
|
6410
6435
|
@ClientIpHeader.deserialize(params['ClientIpHeader'])
|
6411
6436
|
end
|
6437
|
+
unless params['CachePrefresh'].nil?
|
6438
|
+
@CachePrefresh = CachePrefresh.new
|
6439
|
+
@CachePrefresh.deserialize(params['CachePrefresh'])
|
6440
|
+
end
|
6412
6441
|
@RequestId = params['RequestId']
|
6413
6442
|
end
|
6414
6443
|
end
|
@@ -8282,10 +8311,12 @@ module TencentCloud
|
|
8282
8311
|
# @type WebSocket: :class:`Tencentcloud::Teo.v20220106.models.WebSocket`
|
8283
8312
|
# @param ClientIpHeader: 客户端IP回源请求头配置
|
8284
8313
|
# @type ClientIpHeader: :class:`Tencentcloud::Teo.v20220106.models.ClientIp`
|
8314
|
+
# @param CachePrefresh: 缓存预刷新配置
|
8315
|
+
# @type CachePrefresh: :class:`Tencentcloud::Teo.v20220106.models.CachePrefresh`
|
8285
8316
|
|
8286
|
-
attr_accessor :ZoneId, :Cache, :CacheKey, :MaxAge, :OfflineCache, :Quic, :PostMaxSize, :Compression, :UpstreamHttp2, :ForceRedirect, :Https, :Origin, :SmartRouting, :WebSocket, :ClientIpHeader
|
8317
|
+
attr_accessor :ZoneId, :Cache, :CacheKey, :MaxAge, :OfflineCache, :Quic, :PostMaxSize, :Compression, :UpstreamHttp2, :ForceRedirect, :Https, :Origin, :SmartRouting, :WebSocket, :ClientIpHeader, :CachePrefresh
|
8287
8318
|
|
8288
|
-
def initialize(zoneid=nil, cache=nil, cachekey=nil, maxage=nil, offlinecache=nil, quic=nil, postmaxsize=nil, compression=nil, upstreamhttp2=nil, forceredirect=nil, https=nil, origin=nil, smartrouting=nil, websocket=nil, clientipheader=nil)
|
8319
|
+
def initialize(zoneid=nil, cache=nil, cachekey=nil, maxage=nil, offlinecache=nil, quic=nil, postmaxsize=nil, compression=nil, upstreamhttp2=nil, forceredirect=nil, https=nil, origin=nil, smartrouting=nil, websocket=nil, clientipheader=nil, cacheprefresh=nil)
|
8289
8320
|
@ZoneId = zoneid
|
8290
8321
|
@Cache = cache
|
8291
8322
|
@CacheKey = cachekey
|
@@ -8301,6 +8332,7 @@ module TencentCloud
|
|
8301
8332
|
@SmartRouting = smartrouting
|
8302
8333
|
@WebSocket = websocket
|
8303
8334
|
@ClientIpHeader = clientipheader
|
8335
|
+
@CachePrefresh = cacheprefresh
|
8304
8336
|
end
|
8305
8337
|
|
8306
8338
|
def deserialize(params)
|
@@ -8361,6 +8393,10 @@ module TencentCloud
|
|
8361
8393
|
@ClientIpHeader = ClientIp.new
|
8362
8394
|
@ClientIpHeader.deserialize(params['ClientIpHeader'])
|
8363
8395
|
end
|
8396
|
+
unless params['CachePrefresh'].nil?
|
8397
|
+
@CachePrefresh = CachePrefresh.new
|
8398
|
+
@CachePrefresh.deserialize(params['CachePrefresh'])
|
8399
|
+
end
|
8364
8400
|
end
|
8365
8401
|
end
|
8366
8402
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-teo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.342
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|