Class: TencentCloud::Dcdb::V20180411::ResetAccountPasswordRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dcdb::V20180411::ResetAccountPasswordRequest
- Defined in:
- lib/v20180411/models.rb
Overview
ResetAccountPassword请求参数结构体
Instance Attribute Summary collapse
- #EncryptedPassword ⇒ Object
- #Host ⇒ Object
- #InstanceId ⇒ Object
- #Password ⇒ Object
- #UserName ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, username = nil, host = nil, password = nil, encryptedpassword = nil) ⇒ ResetAccountPasswordRequest
constructor
A new instance of ResetAccountPasswordRequest.
Constructor Details
#initialize(instanceid = nil, username = nil, host = nil, password = nil, encryptedpassword = nil) ⇒ ResetAccountPasswordRequest
Returns a new instance of ResetAccountPasswordRequest.
5753 5754 5755 5756 5757 5758 5759 |
# File 'lib/v20180411/models.rb', line 5753 def initialize(instanceid=nil, username=nil, host=nil, password=nil, encryptedpassword=nil) @InstanceId = instanceid @UserName = username @Host = host @Password = password @EncryptedPassword = encryptedpassword end |
Instance Attribute Details
#EncryptedPassword ⇒ Object
5751 5752 5753 |
# File 'lib/v20180411/models.rb', line 5751 def EncryptedPassword @EncryptedPassword end |
#Host ⇒ Object
5751 5752 5753 |
# File 'lib/v20180411/models.rb', line 5751 def Host @Host end |
#InstanceId ⇒ Object
5751 5752 5753 |
# File 'lib/v20180411/models.rb', line 5751 def InstanceId @InstanceId end |
#Password ⇒ Object
5751 5752 5753 |
# File 'lib/v20180411/models.rb', line 5751 def Password @Password end |
#UserName ⇒ Object
5751 5752 5753 |
# File 'lib/v20180411/models.rb', line 5751 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
5761 5762 5763 5764 5765 5766 5767 |
# File 'lib/v20180411/models.rb', line 5761 def deserialize(params) @InstanceId = params['InstanceId'] @UserName = params['UserName'] @Host = params['Host'] @Password = params['Password'] @EncryptedPassword = params['EncryptedPassword'] end |