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
1056 1057 1058 1059 |
# File 'lib/v20220501/models.rb', line 1056 def initialize(healthchecktemplate=nil, requestid=nil) @HealthCheckTemplate = healthchecktemplate @RequestId = requestid end |
Instance Attribute Details
#HealthCheckTemplate ⇒ Object
1054 1055 1056 |
# File 'lib/v20220501/models.rb', line 1054 def HealthCheckTemplate @HealthCheckTemplate end |
#RequestId ⇒ Object
1054 1055 1056 |
# File 'lib/v20220501/models.rb', line 1054 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1061 1062 1063 1064 1065 1066 1067 |
# File 'lib/v20220501/models.rb', line 1061 def deserialize(params) unless params['HealthCheckTemplate'].nil? @HealthCheckTemplate = HealthCheckTemplate.new @HealthCheckTemplate.deserialize(params['HealthCheckTemplate']) end @RequestId = params['RequestId'] end |