Class: TencentCloud::Dcdb::V20180411::CreateAccountResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dcdb::V20180411::CreateAccountResponse
- Defined in:
- lib/v20180411/models.rb
Overview
CreateAccount返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, username = nil, host = nil, readonly = nil, requestid = nil) ⇒ CreateAccountResponse
constructor
A new instance of CreateAccountResponse.
Constructor Details
#initialize(instanceid = nil, username = nil, host = nil, readonly = nil, requestid = nil) ⇒ CreateAccountResponse
Returns a new instance of CreateAccountResponse.
581 582 583 584 585 586 587 |
# File 'lib/v20180411/models.rb', line 581 def initialize(instanceid=nil, username=nil, host=nil, readonly=nil, requestid=nil) @InstanceId = instanceid @UserName = username @Host = host @ReadOnly = readonly @RequestId = requestid end |
Instance Attribute Details
#Host ⇒ Object
579 580 581 |
# File 'lib/v20180411/models.rb', line 579 def Host @Host end |
#InstanceId ⇒ Object
579 580 581 |
# File 'lib/v20180411/models.rb', line 579 def InstanceId @InstanceId end |
#ReadOnly ⇒ Object
579 580 581 |
# File 'lib/v20180411/models.rb', line 579 def ReadOnly @ReadOnly end |
#RequestId ⇒ Object
579 580 581 |
# File 'lib/v20180411/models.rb', line 579 def RequestId @RequestId end |
#UserName ⇒ Object
579 580 581 |
# File 'lib/v20180411/models.rb', line 579 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
589 590 591 592 593 594 595 |
# File 'lib/v20180411/models.rb', line 589 def deserialize(params) @InstanceId = params['InstanceId'] @UserName = params['UserName'] @Host = params['Host'] @ReadOnly = params['ReadOnly'] @RequestId = params['RequestId'] end |