Class: TencentCloud::Trabbit::V20230418::CreateRabbitMQServerlessUserRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trabbit::V20230418::CreateRabbitMQServerlessUserRequest
- Defined in:
- lib/v20230418/models.rb
Overview
CreateRabbitMQServerlessUser请求参数结构体
Instance Attribute Summary collapse
- #Description ⇒ Object
- #InstanceId ⇒ Object
- #MaxChannels ⇒ Object
- #MaxConnections ⇒ Object
- #Password ⇒ Object
- #Tags ⇒ Object
- #User ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, user = nil, password = nil, description = nil, tags = nil, maxconnections = nil, maxchannels = nil) ⇒ CreateRabbitMQServerlessUserRequest
constructor
A new instance of CreateRabbitMQServerlessUserRequest.
Constructor Details
#initialize(instanceid = nil, user = nil, password = nil, description = nil, tags = nil, maxconnections = nil, maxchannels = nil) ⇒ CreateRabbitMQServerlessUserRequest
Returns a new instance of CreateRabbitMQServerlessUserRequest.
307 308 309 310 311 312 313 314 315 |
# File 'lib/v20230418/models.rb', line 307 def initialize(instanceid=nil, user=nil, password=nil, description=nil, =nil, maxconnections=nil, maxchannels=nil) @InstanceId = instanceid @User = user @Password = password @Description = description @Tags = @MaxConnections = maxconnections @MaxChannels = maxchannels end |
Instance Attribute Details
#Description ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def Description @Description end |
#InstanceId ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def InstanceId @InstanceId end |
#MaxChannels ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def MaxChannels @MaxChannels end |
#MaxConnections ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def MaxConnections @MaxConnections end |
#Password ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def Password @Password end |
#Tags ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def Tags @Tags end |
#User ⇒ Object
305 306 307 |
# File 'lib/v20230418/models.rb', line 305 def User @User end |
Instance Method Details
#deserialize(params) ⇒ Object
317 318 319 320 321 322 323 324 325 |
# File 'lib/v20230418/models.rb', line 317 def deserialize(params) @InstanceId = params['InstanceId'] @User = params['User'] @Password = params['Password'] @Description = params['Description'] @Tags = params['Tags'] @MaxConnections = params['MaxConnections'] @MaxChannels = params['MaxChannels'] end |