Class: TencentCloud::Tse::V20201207::ModifyNetworkAccessStrategyRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tse::V20201207::ModifyNetworkAccessStrategyRequest
- Defined in:
- lib/v20201207/models.rb
Overview
ModifyNetworkAccessStrategy请求参数结构体
Instance Attribute Summary collapse
-
#AccessControl ⇒ Object
- Open 公网 - Internal 内网 (暂不支持).
-
#GatewayId ⇒ Object
- Open 公网 - Internal 内网 (暂不支持).
-
#GroupId ⇒ Object
- Open 公网 - Internal 内网 (暂不支持).
-
#NetworkType ⇒ Object
- Open 公网 - Internal 内网 (暂不支持).
-
#Vip ⇒ Object
- Open 公网 - Internal 内网 (暂不支持).
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(gatewayid = nil, groupid = nil, networktype = nil, vip = nil, accesscontrol = nil) ⇒ ModifyNetworkAccessStrategyRequest
constructor
A new instance of ModifyNetworkAccessStrategyRequest.
Constructor Details
#initialize(gatewayid = nil, groupid = nil, networktype = nil, vip = nil, accesscontrol = nil) ⇒ ModifyNetworkAccessStrategyRequest
Returns a new instance of ModifyNetworkAccessStrategyRequest.
10512 10513 10514 10515 10516 10517 10518 |
# File 'lib/v20201207/models.rb', line 10512 def initialize(gatewayid=nil, groupid=nil, networktype=nil, vip=nil, accesscontrol=nil) @GatewayId = gatewayid @GroupId = groupid @NetworkType = networktype @Vip = vip @AccessControl = accesscontrol end |
Instance Attribute Details
#AccessControl ⇒ Object
- Open 公网
- Internal 内网 (暂不支持)
10510 10511 10512 |
# File 'lib/v20201207/models.rb', line 10510 def AccessControl @AccessControl end |
#GatewayId ⇒ Object
- Open 公网
- Internal 内网 (暂不支持)
10510 10511 10512 |
# File 'lib/v20201207/models.rb', line 10510 def GatewayId @GatewayId end |
#GroupId ⇒ Object
- Open 公网
- Internal 内网 (暂不支持)
10510 10511 10512 |
# File 'lib/v20201207/models.rb', line 10510 def GroupId @GroupId end |
#NetworkType ⇒ Object
- Open 公网
- Internal 内网 (暂不支持)
10510 10511 10512 |
# File 'lib/v20201207/models.rb', line 10510 def NetworkType @NetworkType end |
#Vip ⇒ Object
- Open 公网
- Internal 内网 (暂不支持)
10510 10511 10512 |
# File 'lib/v20201207/models.rb', line 10510 def Vip @Vip end |
Instance Method Details
#deserialize(params) ⇒ Object
10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 |
# File 'lib/v20201207/models.rb', line 10520 def deserialize(params) @GatewayId = params['GatewayId'] @GroupId = params['GroupId'] @NetworkType = params['NetworkType'] @Vip = params['Vip'] unless params['AccessControl'].nil? @AccessControl = NetworkAccessControl.new @AccessControl.deserialize(params['AccessControl']) end end |