Class: TencentCloud::Ciam::V20220331::Salt
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ciam::V20220331::Salt
- Defined in:
- lib/v20220331/models.rb
Overview
密码盐
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(saltvalue = nil, saltlocation = nil) ⇒ Salt
constructor
A new instance of Salt.
Constructor Details
#initialize(saltvalue = nil, saltlocation = nil) ⇒ Salt
Returns a new instance of Salt.
1547 1548 1549 1550 |
# File 'lib/v20220331/models.rb', line 1547 def initialize(saltvalue=nil, saltlocation=nil) @SaltValue = saltvalue @SaltLocation = saltlocation end |
Instance Attribute Details
#SaltLocation ⇒ Object
1545 1546 1547 |
# File 'lib/v20220331/models.rb', line 1545 def SaltLocation @SaltLocation end |
#SaltValue ⇒ Object
1545 1546 1547 |
# File 'lib/v20220331/models.rb', line 1545 def SaltValue @SaltValue end |
Instance Method Details
#deserialize(params) ⇒ Object
1552 1553 1554 1555 1556 1557 1558 |
# File 'lib/v20220331/models.rb', line 1552 def deserialize(params) @SaltValue = params['SaltValue'] unless params['SaltLocation'].nil? @SaltLocation = SaltLocation.new @SaltLocation.deserialize(params['SaltLocation']) end end |