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.
2502 2503 2504 2505 2506 |
# File 'lib/v20191118/models.rb', line 2502 def initialize(total=nil, running=nil, requestid=nil) @Total = total @Running = running @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2500 2501 2502 |
# File 'lib/v20191118/models.rb', line 2500 def RequestId @RequestId end |
#Running ⇒ Object
2500 2501 2502 |
# File 'lib/v20191118/models.rb', line 2500 def Running @Running end |
#Total ⇒ Object
2500 2501 2502 |
# File 'lib/v20191118/models.rb', line 2500 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
2508 2509 2510 2511 2512 |
# File 'lib/v20191118/models.rb', line 2508 def deserialize(params) @Total = params['Total'] @Running = params['Running'] @RequestId = params['RequestId'] end |