Class: TencentCloud::Goosefs::V20220519::QueryCrossVpcSubnetSupportForClientNodeResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Goosefs::V20220519::QueryCrossVpcSubnetSupportForClientNodeResponse
- Defined in:
- lib/v20220519/models.rb
Overview
QueryCrossVpcSubnetSupportForClientNode返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(subnetinfocollection = nil, requestid = nil) ⇒ QueryCrossVpcSubnetSupportForClientNodeResponse
constructor
A new instance of QueryCrossVpcSubnetSupportForClientNodeResponse.
Constructor Details
#initialize(subnetinfocollection = nil, requestid = nil) ⇒ QueryCrossVpcSubnetSupportForClientNodeResponse
Returns a new instance of QueryCrossVpcSubnetSupportForClientNodeResponse.
1540 1541 1542 1543 |
# File 'lib/v20220519/models.rb', line 1540 def initialize(subnetinfocollection=nil, requestid=nil) @SubnetInfoCollection = subnetinfocollection @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1538 1539 1540 |
# File 'lib/v20220519/models.rb', line 1538 def RequestId @RequestId end |
#SubnetInfoCollection ⇒ Object
1538 1539 1540 |
# File 'lib/v20220519/models.rb', line 1538 def SubnetInfoCollection @SubnetInfoCollection end |
Instance Method Details
#deserialize(params) ⇒ Object
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 |
# File 'lib/v20220519/models.rb', line 1545 def deserialize(params) unless params['SubnetInfoCollection'].nil? @SubnetInfoCollection = [] params['SubnetInfoCollection'].each do |i| subnetinfo_tmp = SubnetInfo.new subnetinfo_tmp.deserialize(i) @SubnetInfoCollection << subnetinfo_tmp end end @RequestId = params['RequestId'] end |