Class: TencentCloud::Cdn::V20180606::CookieKey

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

Overview

组成CacheKey的一部分

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(switch = nil, value = nil) ⇒ CookieKey

Returns a new instance of CookieKey.



2827
2828
2829
2830
# File 'lib/v20180606/models.rb', line 2827

def initialize(switch=nil, value=nil)
  @Switch = switch
  @Value = value
end

Instance Attribute Details

#SwitchObject

on:开启,使用Cookie作为Cache的一部分 off:关闭,不使用Cookie作为Cache的一部分 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Switch:

    使用Cookie作为Cache的一部分配置开关,取值有:

  • Value:

    使用的cookie,‘;’ 分割



2825
2826
2827
# File 'lib/v20180606/models.rb', line 2825

def Switch
  @Switch
end

#ValueObject

on:开启,使用Cookie作为Cache的一部分 off:关闭,不使用Cookie作为Cache的一部分 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Switch:

    使用Cookie作为Cache的一部分配置开关,取值有:

  • Value:

    使用的cookie,‘;’ 分割



2825
2826
2827
# File 'lib/v20180606/models.rb', line 2825

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



2832
2833
2834
2835
# File 'lib/v20180606/models.rb', line 2832

def deserialize(params)
  @Switch = params['Switch']
  @Value = params['Value']
end