Class: TencentCloud::Mongodb::V20190725::DeleteAccountUserRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mongodb::V20190725::DeleteAccountUserRequest
- Defined in:
- lib/v20190725/models.rb
Overview
DeleteAccountUser请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, username = nil, mongouserpassword = nil) ⇒ DeleteAccountUserRequest
constructor
A new instance of DeleteAccountUserRequest.
Constructor Details
#initialize(instanceid = nil, username = nil, mongouserpassword = nil) ⇒ DeleteAccountUserRequest
Returns a new instance of DeleteAccountUserRequest.
1386 1387 1388 1389 1390 |
# File 'lib/v20190725/models.rb', line 1386 def initialize(instanceid=nil, username=nil, mongouserpassword=nil) @InstanceId = instanceid @UserName = username @MongoUserPassword = mongouserpassword end |
Instance Attribute Details
#InstanceId ⇒ Object
1384 1385 1386 |
# File 'lib/v20190725/models.rb', line 1384 def InstanceId @InstanceId end |
#MongoUserPassword ⇒ Object
1384 1385 1386 |
# File 'lib/v20190725/models.rb', line 1384 def MongoUserPassword @MongoUserPassword end |
#UserName ⇒ Object
1384 1385 1386 |
# File 'lib/v20190725/models.rb', line 1384 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
1392 1393 1394 1395 1396 |
# File 'lib/v20190725/models.rb', line 1392 def deserialize(params) @InstanceId = params['InstanceId'] @UserName = params['UserName'] @MongoUserPassword = params['MongoUserPassword'] end |