Class: TencentCloud::Ssl::V20191205::TCBAccessService
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TCBAccessService
- Defined in:
- lib/v20191205/models.rb
Overview
TCB访问服务列表
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil) ⇒ TCBAccessService
constructor
A new instance of TCBAccessService.
Constructor Details
#initialize(instancelist = nil, totalcount = nil) ⇒ TCBAccessService
7463 7464 7465 7466 |
# File 'lib/v20191205/models.rb', line 7463 def initialize(instancelist=nil, totalcount=nil) @InstanceList = instancelist @TotalCount = totalcount end |
Instance Attribute Details
#InstanceList ⇒ Object
7461 7462 7463 |
# File 'lib/v20191205/models.rb', line 7461 def InstanceList @InstanceList end |
#TotalCount ⇒ Object
7461 7462 7463 |
# File 'lib/v20191205/models.rb', line 7461 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 |
# File 'lib/v20191205/models.rb', line 7468 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| tcbaccessinstance_tmp = TCBAccessInstance.new tcbaccessinstance_tmp.deserialize(i) @InstanceList << tcbaccessinstance_tmp end end @TotalCount = params['TotalCount'] end |