Class: TencentCloud::Cdn::V20180606::AccessControl
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::AccessControl
- Defined in:
- lib/v20180606/models.rb
Overview
请求头部及请求url访问控制
Instance Attribute Summary collapse
-
#AccessControlRules ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ReturnCode ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(switch = nil, accesscontrolrules = nil, returncode = nil) ⇒ AccessControl
constructor
A new instance of AccessControl.
Constructor Details
#initialize(switch = nil, accesscontrolrules = nil, returncode = nil) ⇒ AccessControl
Returns a new instance of AccessControl.
35 36 37 38 39 |
# File 'lib/v20180606/models.rb', line 35 def initialize(switch=nil, accesscontrolrules=nil, returncode=nil) @Switch = switch @AccessControlRules = accesscontrolrules @ReturnCode = returncode end |
Instance Attribute Details
#AccessControlRules ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
33 34 35 |
# File 'lib/v20180606/models.rb', line 33 def AccessControlRules @AccessControlRules end |
#ReturnCode ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
33 34 35 |
# File 'lib/v20180606/models.rb', line 33 def ReturnCode @ReturnCode end |
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
33 34 35 |
# File 'lib/v20180606/models.rb', line 33 def Switch @Switch end |
Instance Method Details
#deserialize(params) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/v20180606/models.rb', line 41 def deserialize(params) @Switch = params['Switch'] unless params['AccessControlRules'].nil? @AccessControlRules = [] params['AccessControlRules'].each do |i| accesscontrolrule_tmp = AccessControlRule.new accesscontrolrule_tmp.deserialize(i) @AccessControlRules << accesscontrolrule_tmp end end @ReturnCode = params['ReturnCode'] end |