Class: TencentCloud::As::V20180419::DescribeLaunchConfigurationsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::As::V20180419::DescribeLaunchConfigurationsResponse
- Defined in:
- lib/v20180419/models.rb
Overview
DescribeLaunchConfigurations返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, launchconfigurationset = nil, requestid = nil) ⇒ DescribeLaunchConfigurationsResponse
constructor
A new instance of DescribeLaunchConfigurationsResponse.
Constructor Details
#initialize(totalcount = nil, launchconfigurationset = nil, requestid = nil) ⇒ DescribeLaunchConfigurationsResponse
Returns a new instance of DescribeLaunchConfigurationsResponse.
2183 2184 2185 2186 2187 |
# File 'lib/v20180419/models.rb', line 2183 def initialize(totalcount=nil, launchconfigurationset=nil, requestid=nil) @TotalCount = totalcount @LaunchConfigurationSet = launchconfigurationset @RequestId = requestid end |
Instance Attribute Details
#LaunchConfigurationSet ⇒ Object
2181 2182 2183 |
# File 'lib/v20180419/models.rb', line 2181 def LaunchConfigurationSet @LaunchConfigurationSet end |
#RequestId ⇒ Object
2181 2182 2183 |
# File 'lib/v20180419/models.rb', line 2181 def RequestId @RequestId end |
#TotalCount ⇒ Object
2181 2182 2183 |
# File 'lib/v20180419/models.rb', line 2181 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 |
# File 'lib/v20180419/models.rb', line 2189 def deserialize(params) @TotalCount = params['TotalCount'] unless params['LaunchConfigurationSet'].nil? @LaunchConfigurationSet = [] params['LaunchConfigurationSet'].each do |i| launchconfiguration_tmp = LaunchConfiguration.new launchconfiguration_tmp.deserialize(i) @LaunchConfigurationSet << launchconfiguration_tmp end end @RequestId = params['RequestId'] end |