Class: TencentCloud::Lighthouse::V20200324::ResetInstancesPasswordRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lighthouse::V20200324::ResetInstancesPasswordRequest
- Defined in:
- lib/v20200324/models.rb
Overview
ResetInstancesPassword请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceids = nil, password = nil, username = nil) ⇒ ResetInstancesPasswordRequest
constructor
A new instance of ResetInstancesPasswordRequest.
Constructor Details
#initialize(instanceids = nil, password = nil, username = nil) ⇒ ResetInstancesPasswordRequest
Returns a new instance of ResetInstancesPasswordRequest.
7890 7891 7892 7893 7894 |
# File 'lib/v20200324/models.rb', line 7890 def initialize(instanceids=nil, password=nil, username=nil) @InstanceIds = instanceids @Password = password @UserName = username end |
Instance Attribute Details
#InstanceIds ⇒ Object
7888 7889 7890 |
# File 'lib/v20200324/models.rb', line 7888 def InstanceIds @InstanceIds end |
#Password ⇒ Object
7888 7889 7890 |
# File 'lib/v20200324/models.rb', line 7888 def Password @Password end |
#UserName ⇒ Object
7888 7889 7890 |
# File 'lib/v20200324/models.rb', line 7888 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
7896 7897 7898 7899 7900 |
# File 'lib/v20200324/models.rb', line 7896 def deserialize(params) @InstanceIds = params['InstanceIds'] @Password = params['Password'] @UserName = params['UserName'] end |