Class: TencentCloud::Antiddos::V20200309::DescribeL7RulesBySSLCertIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Antiddos::V20200309::DescribeL7RulesBySSLCertIdResponse
- Defined in:
- lib/v20200309/models.rb
Overview
DescribeL7RulesBySSLCertId返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(certset = nil, requestid = nil) ⇒ DescribeL7RulesBySSLCertIdResponse
constructor
A new instance of DescribeL7RulesBySSLCertIdResponse.
Constructor Details
#initialize(certset = nil, requestid = nil) ⇒ DescribeL7RulesBySSLCertIdResponse
Returns a new instance of DescribeL7RulesBySSLCertIdResponse.
4445 4446 4447 4448 |
# File 'lib/v20200309/models.rb', line 4445 def initialize(certset=nil, requestid=nil) @CertSet = certset @RequestId = requestid end |
Instance Attribute Details
#CertSet ⇒ Object
4443 4444 4445 |
# File 'lib/v20200309/models.rb', line 4443 def CertSet @CertSet end |
#RequestId ⇒ Object
4443 4444 4445 |
# File 'lib/v20200309/models.rb', line 4443 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 |
# File 'lib/v20200309/models.rb', line 4450 def deserialize(params) unless params['CertSet'].nil? @CertSet = [] params['CertSet'].each do |i| certidinsl7rules_tmp = CertIdInsL7Rules.new certidinsl7rules_tmp.deserialize(i) @CertSet << certidinsl7rules_tmp end end @RequestId = params['RequestId'] end |