Class: TencentCloud::Monitor::V20180724::DescribeClusterAgentCreatingProgressResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Monitor::V20180724::DescribeClusterAgentCreatingProgressResponse
- Defined in:
- lib/v20180724/models.rb
Overview
DescribeClusterAgentCreatingProgress返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(response = nil, requestid = nil) ⇒ DescribeClusterAgentCreatingProgressResponse
constructor
A new instance of DescribeClusterAgentCreatingProgressResponse.
Constructor Details
#initialize(response = nil, requestid = nil) ⇒ DescribeClusterAgentCreatingProgressResponse
Returns a new instance of DescribeClusterAgentCreatingProgressResponse.
5587 5588 5589 5590 |
# File 'lib/v20180724/models.rb', line 5587 def initialize(response=nil, requestid=nil) @Response = response @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
5585 5586 5587 |
# File 'lib/v20180724/models.rb', line 5585 def RequestId @RequestId end |
#Response ⇒ Object
5585 5586 5587 |
# File 'lib/v20180724/models.rb', line 5585 def Response @Response end |
Instance Method Details
#deserialize(params) ⇒ Object
5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 |
# File 'lib/v20180724/models.rb', line 5592 def deserialize(params) unless params['Response'].nil? @Response = [] params['Response'].each do |i| bindprogressresponse_tmp = BindProgressResponse.new bindprogressresponse_tmp.deserialize(i) @Response << bindprogressresponse_tmp end end @RequestId = params['RequestId'] end |