Class: TencentCloud::Cdn::V20180606::RemoteAuthentication
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::RemoteAuthentication
- Defined in:
- lib/v20180606/models.rb
Overview
远程鉴权规则配置,可以包含多种规则配置。 RemoteAuthenticationRules和Server 互斥,只需要配置其中一个。 若只配置Server ,RemoteAuthenticationRules中详细规则参数将采用默认参数;默认参数值见各个配置项中说明;
Instance Attribute Summary collapse
-
#RemoteAuthenticationRules ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Server ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(switch = nil, remoteauthenticationrules = nil, server = nil) ⇒ RemoteAuthentication
constructor
A new instance of RemoteAuthentication.
Constructor Details
#initialize(switch = nil, remoteauthenticationrules = nil, server = nil) ⇒ RemoteAuthentication
Returns a new instance of RemoteAuthentication.
11338 11339 11340 11341 11342 |
# File 'lib/v20180606/models.rb', line 11338 def initialize(switch=nil, remoteauthenticationrules=nil, server=nil) @Switch = switch @RemoteAuthenticationRules = remoteauthenticationrules @Server = server end |
Instance Attribute Details
#RemoteAuthenticationRules ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
11336 11337 11338 |
# File 'lib/v20180606/models.rb', line 11336 def RemoteAuthenticationRules @RemoteAuthenticationRules end |
#Server ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
11336 11337 11338 |
# File 'lib/v20180606/models.rb', line 11336 def Server @Server end |
#Switch ⇒ Object
on:开启 off:关闭 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
11336 11337 11338 |
# File 'lib/v20180606/models.rb', line 11336 def Switch @Switch end |
Instance Method Details
#deserialize(params) ⇒ Object
11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 |
# File 'lib/v20180606/models.rb', line 11344 def deserialize(params) @Switch = params['Switch'] unless params['RemoteAuthenticationRules'].nil? @RemoteAuthenticationRules = [] params['RemoteAuthenticationRules'].each do |i| remoteauthenticationrule_tmp = RemoteAuthenticationRule.new remoteauthenticationrule_tmp.deserialize(i) @RemoteAuthenticationRules << remoteauthenticationrule_tmp end end @Server = params['Server'] end |