Class: TencentCloud::Tdcpg::V20211118::ResetAccountPasswordRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tdcpg::V20211118::ResetAccountPasswordRequest
- Defined in:
- lib/v20211118/models.rb
Overview
ResetAccountPassword请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clusterid = nil, accountname = nil, accountpassword = nil) ⇒ ResetAccountPasswordRequest
constructor
A new instance of ResetAccountPasswordRequest.
Constructor Details
#initialize(clusterid = nil, accountname = nil, accountpassword = nil) ⇒ ResetAccountPasswordRequest
Returns a new instance of ResetAccountPasswordRequest.
1537 1538 1539 1540 1541 |
# File 'lib/v20211118/models.rb', line 1537 def initialize(clusterid=nil, accountname=nil, accountpassword=nil) @ClusterId = clusterid @AccountName = accountname @AccountPassword = accountpassword end |
Instance Attribute Details
#AccountName ⇒ Object
1535 1536 1537 |
# File 'lib/v20211118/models.rb', line 1535 def AccountName @AccountName end |
#AccountPassword ⇒ Object
1535 1536 1537 |
# File 'lib/v20211118/models.rb', line 1535 def AccountPassword @AccountPassword end |
#ClusterId ⇒ Object
1535 1536 1537 |
# File 'lib/v20211118/models.rb', line 1535 def ClusterId @ClusterId end |
Instance Method Details
#deserialize(params) ⇒ Object
1543 1544 1545 1546 1547 |
# File 'lib/v20211118/models.rb', line 1543 def deserialize(params) @ClusterId = params['ClusterId'] @AccountName = params['AccountName'] @AccountPassword = params['AccountPassword'] end |