Class: TencentCloud::Cdn::V20180606::CacheTagKey

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) ⇒ CacheTagKey

Returns a new instance of CacheTagKey.



2345
2346
2347
2348
# File 'lib/v20180606/models.rb', line 2345

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

Instance Attribute Details

#SwitchObject

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

Parameters:

  • Switch:

    使用CacheTag作为CacheKey的一部分配置开关,取值有

  • Value:

    自定义CacheTag的值



2343
2344
2345
# File 'lib/v20180606/models.rb', line 2343

def Switch
  @Switch
end

#ValueObject

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

Parameters:

  • Switch:

    使用CacheTag作为CacheKey的一部分配置开关,取值有

  • Value:

    自定义CacheTag的值



2343
2344
2345
# File 'lib/v20180606/models.rb', line 2343

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



2350
2351
2352
2353
# File 'lib/v20180606/models.rb', line 2350

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