Class: TencentCloud::Tke::V20220501::DescribeHealthCheckTemplateResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20220501::DescribeHealthCheckTemplateResponse
- Defined in:
- lib/v20220501/models.rb
Overview
DescribeHealthCheckTemplate返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(healthchecktemplate = nil, requestid = nil) ⇒ DescribeHealthCheckTemplateResponse
constructor
A new instance of DescribeHealthCheckTemplateResponse.
Constructor Details
#initialize(healthchecktemplate = nil, requestid = nil) ⇒ DescribeHealthCheckTemplateResponse
Returns a new instance of DescribeHealthCheckTemplateResponse.
740 741 742 743 |
# File 'lib/v20220501/models.rb', line 740 def initialize(healthchecktemplate=nil, requestid=nil) @HealthCheckTemplate = healthchecktemplate @RequestId = requestid end |
Instance Attribute Details
#HealthCheckTemplate ⇒ Object
738 739 740 |
# File 'lib/v20220501/models.rb', line 738 def HealthCheckTemplate @HealthCheckTemplate end |
#RequestId ⇒ Object
738 739 740 |
# File 'lib/v20220501/models.rb', line 738 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
745 746 747 748 749 750 751 |
# File 'lib/v20220501/models.rb', line 745 def deserialize(params) unless params['HealthCheckTemplate'].nil? @HealthCheckTemplate = HealthCheckTemplate.new @HealthCheckTemplate.deserialize(params['HealthCheckTemplate']) end @RequestId = params['RequestId'] end |