Class: TencentCloud::Ssl::V20191205::TCBHostService
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TCBHostService
- Defined in:
- lib/v20191205/models.rb
Overview
TCB静态托管服务列表
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil) ⇒ TCBHostService
constructor
A new instance of TCBHostService.
Constructor Details
#initialize(instancelist = nil, totalcount = nil) ⇒ TCBHostService
Returns a new instance of TCBHostService.
7582 7583 7584 7585 |
# File 'lib/v20191205/models.rb', line 7582 def initialize(instancelist=nil, totalcount=nil) @InstanceList = instancelist @TotalCount = totalcount end |
Instance Attribute Details
#InstanceList ⇒ Object
7580 7581 7582 |
# File 'lib/v20191205/models.rb', line 7580 def InstanceList @InstanceList end |
#TotalCount ⇒ Object
7580 7581 7582 |
# File 'lib/v20191205/models.rb', line 7580 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 |
# File 'lib/v20191205/models.rb', line 7587 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| tcbhostinstance_tmp = TCBHostInstance.new tcbhostinstance_tmp.deserialize(i) @InstanceList << tcbhostinstance_tmp end end @TotalCount = params['TotalCount'] end |