Class: TencentCloud::Emr::V20190103::ExternalAccess
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::ExternalAccess
- Defined in:
- lib/v20190103/models.rb
Overview
容器集群外部访问设置
Instance Attribute Summary collapse
-
#CLBServer ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Type ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(type = nil, clbserver = nil) ⇒ ExternalAccess
constructor
A new instance of ExternalAccess.
Constructor Details
#initialize(type = nil, clbserver = nil) ⇒ ExternalAccess
Returns a new instance of ExternalAccess.
6788 6789 6790 6791 |
# File 'lib/v20190103/models.rb', line 6788 def initialize(type=nil, clbserver=nil) @Type = type @CLBServer = clbserver end |
Instance Attribute Details
#CLBServer ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6786 6787 6788 |
# File 'lib/v20190103/models.rb', line 6786 def CLBServer @CLBServer end |
#Type ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6786 6787 6788 |
# File 'lib/v20190103/models.rb', line 6786 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
6793 6794 6795 6796 6797 6798 6799 |
# File 'lib/v20190103/models.rb', line 6793 def deserialize(params) @Type = params['Type'] unless params['CLBServer'].nil? @CLBServer = CLBSetting.new @CLBServer.deserialize(params['CLBServer']) end end |