Class: TencentCloud::Cdn::V20180606::AdvancedCache

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180606/models.rb

Overview

缓存过期配置高级版,注意:此字段已经弃用,请使用RuleCache

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cacherules = nil, ignorecachecontrol = nil, ignoresetcookie = nil) ⇒ AdvancedCache

Returns a new instance of AdvancedCache.



961
962
963
964
965
# File 'lib/v20180606/models.rb', line 961

def initialize(cacherules=nil, ignorecachecontrol=nil, ignoresetcookie=nil)
  @CacheRules = cacherules
  @IgnoreCacheControl = ignorecachecontrol
  @IgnoreSetCookie = ignoresetcookie
end

Instance Attribute Details

#CacheRulesObject

注意:此字段可能返回 null,表示取不到有效值。 on:开启 off:关闭 开启时,源站返回 no-cache、no-store 头部时,仍按照缓存过期规则进行节点缓存 默认为关闭状态 注意:此字段可能返回 null,表示取不到有效值。 on:开启,不缓存该头部及body off:关闭,遵循用户自定义的节点缓存规则 默认为关闭状态 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • CacheRules:

    缓存过期规则

  • IgnoreCacheControl:

    强制缓存配置

  • IgnoreSetCookie:

    当源站返回Set-Cookie头部时,节点是否缓存该头部及body



959
960
961
# File 'lib/v20180606/models.rb', line 959

def CacheRules
  @CacheRules
end

#IgnoreCacheControlObject

注意:此字段可能返回 null,表示取不到有效值。 on:开启 off:关闭 开启时,源站返回 no-cache、no-store 头部时,仍按照缓存过期规则进行节点缓存 默认为关闭状态 注意:此字段可能返回 null,表示取不到有效值。 on:开启,不缓存该头部及body off:关闭,遵循用户自定义的节点缓存规则 默认为关闭状态 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • CacheRules:

    缓存过期规则

  • IgnoreCacheControl:

    强制缓存配置

  • IgnoreSetCookie:

    当源站返回Set-Cookie头部时,节点是否缓存该头部及body



959
960
961
# File 'lib/v20180606/models.rb', line 959

def IgnoreCacheControl
  @IgnoreCacheControl
end

#IgnoreSetCookieObject

注意:此字段可能返回 null,表示取不到有效值。 on:开启 off:关闭 开启时,源站返回 no-cache、no-store 头部时,仍按照缓存过期规则进行节点缓存 默认为关闭状态 注意:此字段可能返回 null,表示取不到有效值。 on:开启,不缓存该头部及body off:关闭,遵循用户自定义的节点缓存规则 默认为关闭状态 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • CacheRules:

    缓存过期规则

  • IgnoreCacheControl:

    强制缓存配置

  • IgnoreSetCookie:

    当源站返回Set-Cookie头部时,节点是否缓存该头部及body



959
960
961
# File 'lib/v20180606/models.rb', line 959

def IgnoreSetCookie
  @IgnoreSetCookie
end

Instance Method Details

#deserialize(params) ⇒ Object



967
968
969
970
971
972
973
974
975
976
977
978
# File 'lib/v20180606/models.rb', line 967

def deserialize(params)
  unless params['CacheRules'].nil?
    @CacheRules = []
    params['CacheRules'].each do |i|
      advancecacherule_tmp = AdvanceCacheRule.new
      advancecacherule_tmp.deserialize(i)
      @CacheRules << advancecacherule_tmp
    end
  end
  @IgnoreCacheControl = params['IgnoreCacheControl']
  @IgnoreSetCookie = params['IgnoreSetCookie']
end