Class: TencentCloud::Eis::V20210601::ListDeployableRuntimesMCResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eis::V20210601::ListDeployableRuntimesMCResponse
- Defined in:
- lib/v20210601/models.rb
Overview
ListDeployableRuntimesMC返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(runtimes = nil, requestid = nil) ⇒ ListDeployableRuntimesMCResponse
constructor
A new instance of ListDeployableRuntimesMCResponse.
Constructor Details
#initialize(runtimes = nil, requestid = nil) ⇒ ListDeployableRuntimesMCResponse
Returns a new instance of ListDeployableRuntimesMCResponse.
237 238 239 240 |
# File 'lib/v20210601/models.rb', line 237 def initialize(runtimes=nil, requestid=nil) @Runtimes = runtimes @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
235 236 237 |
# File 'lib/v20210601/models.rb', line 235 def RequestId @RequestId end |
#Runtimes ⇒ Object
235 236 237 |
# File 'lib/v20210601/models.rb', line 235 def Runtimes @Runtimes end |
Instance Method Details
#deserialize(params) ⇒ Object
242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/v20210601/models.rb', line 242 def deserialize(params) unless params['Runtimes'].nil? @Runtimes = [] params['Runtimes'].each do |i| abstractruntimemc_tmp = AbstractRuntimeMC.new abstractruntimemc_tmp.deserialize(i) @Runtimes << abstractruntimemc_tmp end end @RequestId = params['RequestId'] end |