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.
6071 6072 6073 6074 6075 6076 6077 |
# File 'lib/v20180411/models.rb', line 6071 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
6069 6070 6071 |
# File 'lib/v20180411/models.rb', line 6069 def EncryptedPassword @EncryptedPassword end |
#Host ⇒ Object
6069 6070 6071 |
# File 'lib/v20180411/models.rb', line 6069 def Host @Host end |
#InstanceId ⇒ Object
6069 6070 6071 |
# File 'lib/v20180411/models.rb', line 6069 def InstanceId @InstanceId end |
#Password ⇒ Object
6069 6070 6071 |
# File 'lib/v20180411/models.rb', line 6069 def Password @Password end |
#UserName ⇒ Object
6069 6070 6071 |
# File 'lib/v20180411/models.rb', line 6069 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
6079 6080 6081 6082 6083 6084 6085 |
# File 'lib/v20180411/models.rb', line 6079 def deserialize(params) @InstanceId = params['InstanceId'] @UserName = params['UserName'] @Host = params['Host'] @Password = params['Password'] @EncryptedPassword = params['EncryptedPassword'] end |