Class: TencentCloud::Cdn::V20180606::HeuristicCache
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::HeuristicCache
- Defined in:
- lib/v20180606/models.rb
Overview
启发式缓存配置
Instance Attribute Summary collapse
-
#CacheConfig ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(switch = nil, cacheconfig = nil) ⇒ HeuristicCache
constructor
A new instance of HeuristicCache.
Constructor Details
#initialize(switch = nil, cacheconfig = nil) ⇒ HeuristicCache
Returns a new instance of HeuristicCache.
7826 7827 7828 7829 |
# File 'lib/v20180606/models.rb', line 7826 def initialize(switch=nil, cacheconfig=nil) @Switch = switch @CacheConfig = cacheconfig end |
Instance Attribute Details
#CacheConfig ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7824 7825 7826 |
# File 'lib/v20180606/models.rb', line 7824 def CacheConfig @CacheConfig end |
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7824 7825 7826 |
# File 'lib/v20180606/models.rb', line 7824 def Switch @Switch end |
Instance Method Details
#deserialize(params) ⇒ Object
7831 7832 7833 7834 7835 7836 7837 |
# File 'lib/v20180606/models.rb', line 7831 def deserialize(params) @Switch = params['Switch'] unless params['CacheConfig'].nil? @CacheConfig = CacheConfig.new @CacheConfig.deserialize(params['CacheConfig']) end end |