Class: TencentCloud::Ckafka::V20190819::CreateUserRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ckafka::V20190819::CreateUserRequest
- Defined in:
- lib/v20190819/models.rb
Overview
CreateUser请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, name = nil, password = nil) ⇒ CreateUserRequest
constructor
A new instance of CreateUserRequest.
Constructor Details
#initialize(instanceid = nil, name = nil, password = nil) ⇒ CreateUserRequest
Returns a new instance of CreateUserRequest.
2716 2717 2718 2719 2720 |
# File 'lib/v20190819/models.rb', line 2716 def initialize(instanceid=nil, name=nil, password=nil) @InstanceId = instanceid @Name = name @Password = password end |
Instance Attribute Details
#InstanceId ⇒ Object
2714 2715 2716 |
# File 'lib/v20190819/models.rb', line 2714 def InstanceId @InstanceId end |
#Name ⇒ Object
2714 2715 2716 |
# File 'lib/v20190819/models.rb', line 2714 def Name @Name end |
#Password ⇒ Object
2714 2715 2716 |
# File 'lib/v20190819/models.rb', line 2714 def Password @Password end |
Instance Method Details
#deserialize(params) ⇒ Object
2722 2723 2724 2725 2726 |
# File 'lib/v20190819/models.rb', line 2722 def deserialize(params) @InstanceId = params['InstanceId'] @Name = params['Name'] @Password = params['Password'] end |