Class: TencentCloud::Waf::V20180125::DescribeCiphersDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::DescribeCiphersDetailResponse
- Defined in:
- lib/v20180125/models.rb
Overview
DescribeCiphersDetail返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(ciphers = nil, requestid = nil) ⇒ DescribeCiphersDetailResponse
constructor
A new instance of DescribeCiphersDetailResponse.
Constructor Details
#initialize(ciphers = nil, requestid = nil) ⇒ DescribeCiphersDetailResponse
Returns a new instance of DescribeCiphersDetailResponse.
6894 6895 6896 6897 |
# File 'lib/v20180125/models.rb', line 6894 def initialize(ciphers=nil, requestid=nil) @Ciphers = ciphers @RequestId = requestid end |
Instance Attribute Details
#Ciphers ⇒ Object
6892 6893 6894 |
# File 'lib/v20180125/models.rb', line 6892 def Ciphers @Ciphers end |
#RequestId ⇒ Object
6892 6893 6894 |
# File 'lib/v20180125/models.rb', line 6892 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 |
# File 'lib/v20180125/models.rb', line 6899 def deserialize(params) unless params['Ciphers'].nil? @Ciphers = [] params['Ciphers'].each do |i| tlsciphers_tmp = TLSCiphers.new tlsciphers_tmp.deserialize(i) @Ciphers << tlsciphers_tmp end end @RequestId = params['RequestId'] end |