Class: TencentCloud::Trocket::V20230308::MQTTUserItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trocket::V20230308::MQTTUserItem
- Defined in:
- lib/v20230308/models.rb
Overview
MQTT集群用户信息
Instance Attribute Summary collapse
- #CreatedTime ⇒ Object
- #ModifiedTime ⇒ Object
- #Password ⇒ Object
- #PermRead ⇒ Object
- #PermWrite ⇒ Object
- #Remark ⇒ Object
- #Username ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(username = nil, password = nil, permread = nil, permwrite = nil, remark = nil, createdtime = nil, modifiedtime = nil) ⇒ MQTTUserItem
constructor
A new instance of MQTTUserItem.
Constructor Details
#initialize(username = nil, password = nil, permread = nil, permwrite = nil, remark = nil, createdtime = nil, modifiedtime = nil) ⇒ MQTTUserItem
Returns a new instance of MQTTUserItem.
4690 4691 4692 4693 4694 4695 4696 4697 4698 |
# File 'lib/v20230308/models.rb', line 4690 def initialize(username=nil, password=nil, permread=nil, permwrite=nil, remark=nil, createdtime=nil, modifiedtime=nil) @Username = username @Password = password @PermRead = permread @PermWrite = permwrite @Remark = remark @CreatedTime = createdtime @ModifiedTime = modifiedtime end |
Instance Attribute Details
#CreatedTime ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def CreatedTime @CreatedTime end |
#ModifiedTime ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def ModifiedTime @ModifiedTime end |
#Password ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def Password @Password end |
#PermRead ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def PermRead @PermRead end |
#PermWrite ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def PermWrite @PermWrite end |
#Remark ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def Remark @Remark end |
#Username ⇒ Object
4688 4689 4690 |
# File 'lib/v20230308/models.rb', line 4688 def Username @Username end |
Instance Method Details
#deserialize(params) ⇒ Object
4700 4701 4702 4703 4704 4705 4706 4707 4708 |
# File 'lib/v20230308/models.rb', line 4700 def deserialize(params) @Username = params['Username'] @Password = params['Password'] @PermRead = params['PermRead'] @PermWrite = params['PermWrite'] @Remark = params['Remark'] @CreatedTime = params['CreatedTime'] @ModifiedTime = params['ModifiedTime'] end |