Class: TencentCloud::Gs::V20191118::CreateAndroidInstanceSSHResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gs::V20191118::CreateAndroidInstanceSSHResponse
- Defined in:
- lib/v20191118/models.rb
Overview
CreateAndroidInstanceSSH返回参数结构体
Instance Attribute Summary collapse
- #ConnectCommand ⇒ Object
- #HostName ⇒ Object
- #Port ⇒ Object
- #PrivateKey ⇒ Object
- #RequestId ⇒ Object
- #UserName ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(privatekey = nil, username = nil, hostname = nil, port = nil, connectcommand = nil, requestid = nil) ⇒ CreateAndroidInstanceSSHResponse
constructor
A new instance of CreateAndroidInstanceSSHResponse.
Constructor Details
#initialize(privatekey = nil, username = nil, hostname = nil, port = nil, connectcommand = nil, requestid = nil) ⇒ CreateAndroidInstanceSSHResponse
Returns a new instance of CreateAndroidInstanceSSHResponse.
1215 1216 1217 1218 1219 1220 1221 1222 |
# File 'lib/v20191118/models.rb', line 1215 def initialize(privatekey=nil, username=nil, hostname=nil, port=nil, connectcommand=nil, requestid=nil) @PrivateKey = privatekey @UserName = username @HostName = hostname @Port = port @ConnectCommand = connectcommand @RequestId = requestid end |
Instance Attribute Details
#ConnectCommand ⇒ Object
1213 1214 1215 |
# File 'lib/v20191118/models.rb', line 1213 def ConnectCommand @ConnectCommand end |
#HostName ⇒ Object
1213 1214 1215 |
# File 'lib/v20191118/models.rb', line 1213 def HostName @HostName end |
#Port ⇒ Object
1213 1214 1215 |
# File 'lib/v20191118/models.rb', line 1213 def Port @Port end |
#PrivateKey ⇒ Object
1213 1214 1215 |
# File 'lib/v20191118/models.rb', line 1213 def PrivateKey @PrivateKey end |
#RequestId ⇒ Object
1213 1214 1215 |
# File 'lib/v20191118/models.rb', line 1213 def RequestId @RequestId end |
#UserName ⇒ Object
1213 1214 1215 |
# File 'lib/v20191118/models.rb', line 1213 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
1224 1225 1226 1227 1228 1229 1230 1231 |
# File 'lib/v20191118/models.rb', line 1224 def deserialize(params) @PrivateKey = params['PrivateKey'] @UserName = params['UserName'] @HostName = params['HostName'] @Port = params['Port'] @ConnectCommand = params['ConnectCommand'] @RequestId = params['RequestId'] end |