Class: TencentCloud::Waf::V20180125::SecretInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::SecretInfo
- Defined in:
- lib/v20180125/models.rb
Overview
用于JWT验签的密钥信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(secretsource = nil, secretkey = nil, filename = nil) ⇒ SecretInfo
constructor
A new instance of SecretInfo.
Constructor Details
#initialize(secretsource = nil, secretkey = nil, filename = nil) ⇒ SecretInfo
Returns a new instance of SecretInfo.
18326 18327 18328 18329 18330 |
# File 'lib/v20180125/models.rb', line 18326 def initialize(secretsource=nil, secretkey=nil, filename=nil) @SecretSource = secretsource @SecretKey = secretkey @FileName = filename end |
Instance Attribute Details
#FileName ⇒ Object
18324 18325 18326 |
# File 'lib/v20180125/models.rb', line 18324 def FileName @FileName end |
#SecretKey ⇒ Object
18324 18325 18326 |
# File 'lib/v20180125/models.rb', line 18324 def SecretKey @SecretKey end |
#SecretSource ⇒ Object
18324 18325 18326 |
# File 'lib/v20180125/models.rb', line 18324 def SecretSource @SecretSource end |
Instance Method Details
#deserialize(params) ⇒ Object
18332 18333 18334 18335 18336 |
# File 'lib/v20180125/models.rb', line 18332 def deserialize(params) @SecretSource = params['SecretSource'] @SecretKey = params['SecretKey'] @FileName = params['FileName'] end |