Class: TencentCloud::Cdn::V20180606::ErrorPage
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::ErrorPage
- Defined in:
- lib/v20180606/models.rb
Overview
状态码重定向配置,默认为关闭状态
Instance Attribute Summary collapse
-
#PageRules ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(switch = nil, pagerules = nil) ⇒ ErrorPage
constructor
A new instance of ErrorPage.
Constructor Details
#initialize(switch = nil, pagerules = nil) ⇒ ErrorPage
Returns a new instance of ErrorPage.
7515 7516 7517 7518 |
# File 'lib/v20180606/models.rb', line 7515 def initialize(switch=nil, pagerules=nil) @Switch = switch @PageRules = pagerules end |
Instance Attribute Details
#PageRules ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7513 7514 7515 |
# File 'lib/v20180606/models.rb', line 7513 def PageRules @PageRules end |
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7513 7514 7515 |
# File 'lib/v20180606/models.rb', line 7513 def Switch @Switch end |
Instance Method Details
#deserialize(params) ⇒ Object
7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 |
# File 'lib/v20180606/models.rb', line 7520 def deserialize(params) @Switch = params['Switch'] unless params['PageRules'].nil? @PageRules = [] params['PageRules'].each do |i| errorpagerule_tmp = ErrorPageRule.new errorpagerule_tmp.deserialize(i) @PageRules << errorpagerule_tmp end end end |