Class: TencentCloud::Gs::V20191118::DescribeInstancesCountResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gs::V20191118::DescribeInstancesCountResponse
- Defined in:
- lib/v20191118/models.rb
Overview
DescribeInstancesCount返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, running = nil, requestid = nil) ⇒ DescribeInstancesCountResponse
constructor
A new instance of DescribeInstancesCountResponse.
Constructor Details
#initialize(total = nil, running = nil, requestid = nil) ⇒ DescribeInstancesCountResponse
Returns a new instance of DescribeInstancesCountResponse.
2380 2381 2382 2383 2384 |
# File 'lib/v20191118/models.rb', line 2380 def initialize(total=nil, running=nil, requestid=nil) @Total = total @Running = running @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2378 2379 2380 |
# File 'lib/v20191118/models.rb', line 2378 def RequestId @RequestId end |
#Running ⇒ Object
2378 2379 2380 |
# File 'lib/v20191118/models.rb', line 2378 def Running @Running end |
#Total ⇒ Object
2378 2379 2380 |
# File 'lib/v20191118/models.rb', line 2378 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
2386 2387 2388 2389 2390 |
# File 'lib/v20191118/models.rb', line 2386 def deserialize(params) @Total = params['Total'] @Running = params['Running'] @RequestId = params['RequestId'] end |