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.
1209 1210 1211 1212 1213 1214 1215 1216 |
# File 'lib/v20191118/models.rb', line 1209 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
1207 1208 1209 |
# File 'lib/v20191118/models.rb', line 1207 def ConnectCommand @ConnectCommand end |
#HostName ⇒ Object
1207 1208 1209 |
# File 'lib/v20191118/models.rb', line 1207 def HostName @HostName end |
#Port ⇒ Object
1207 1208 1209 |
# File 'lib/v20191118/models.rb', line 1207 def Port @Port end |
#PrivateKey ⇒ Object
1207 1208 1209 |
# File 'lib/v20191118/models.rb', line 1207 def PrivateKey @PrivateKey end |
#RequestId ⇒ Object
1207 1208 1209 |
# File 'lib/v20191118/models.rb', line 1207 def RequestId @RequestId end |
#UserName ⇒ Object
1207 1208 1209 |
# File 'lib/v20191118/models.rb', line 1207 def UserName @UserName end |
Instance Method Details
#deserialize(params) ⇒ Object
1218 1219 1220 1221 1222 1223 1224 1225 |
# File 'lib/v20191118/models.rb', line 1218 def deserialize(params) @PrivateKey = params['PrivateKey'] @UserName = params['UserName'] @HostName = params['HostName'] @Port = params['Port'] @ConnectCommand = params['ConnectCommand'] @RequestId = params['RequestId'] end |