Class: TencentCloud::Tmt::V20180321::Client
- Inherits:
-
Common::AbstractClient
- Object
- Common::AbstractClient
- TencentCloud::Tmt::V20180321::Client
- Defined in:
- lib/v20180321/client.rb
Instance Method Summary collapse
-
#FileTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::FileTranslateResponse`.
-
#GetFileTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::GetFileTranslateResponse`.
-
#ImageTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::ImageTranslateResponse`.
-
#initialize(credential, region, profile = nil) ⇒ Client
constructor
A new instance of Client.
-
#LanguageDetect(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::LanguageDetectResponse`.
-
#SpeechTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::SpeechTranslateResponse`.
-
#TextTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::TextTranslateResponse`.
-
#TextTranslateBatch(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::TextTranslateBatchResponse`.
Constructor Details
#initialize(credential, region, profile = nil) ⇒ Client
Returns a new instance of Client.
24 25 26 27 28 29 |
# File 'lib/v20180321/client.rb', line 24 def initialize(credential, region, profile = nil) api_version = '2018-03-21' api_endpoint = 'tmt.tencentcloudapi.com' sdk_version = 'TMT_' + File.read(File.('../VERSION', __dir__)).strip super(credential, region, api_version, api_endpoint, sdk_version, profile) end |
Instance Method Details
#FileTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::FileTranslateResponse`
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/v20180321/client.rb', line 37 def FileTranslate(request) body = send_request('FileTranslate', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = FileTranslateResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |
#GetFileTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::GetFileTranslateResponse`
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/v20180321/client.rb', line 63 def GetFileTranslate(request) body = send_request('GetFileTranslate', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = GetFileTranslateResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |
#ImageTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::ImageTranslateResponse`
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/v20180321/client.rb', line 88 def ImageTranslate(request) body = send_request('ImageTranslate', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = ImageTranslateResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |
#LanguageDetect(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::LanguageDetectResponse`
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/v20180321/client.rb', line 113 def LanguageDetect(request) body = send_request('LanguageDetect', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = LanguageDetectResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |
#SpeechTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::SpeechTranslateResponse`
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/v20180321/client.rb', line 140 def SpeechTranslate(request) body = send_request('SpeechTranslate', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = SpeechTranslateResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |
#TextTranslate(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::TextTranslateResponse`
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/v20180321/client.rb', line 165 def TextTranslate(request) body = send_request('TextTranslate', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = TextTranslateResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |
#TextTranslateBatch(request) ⇒ Object
@rtype: :class:‘Tencentcloud::tmt::V20180321::TextTranslateBatchResponse`
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
# File 'lib/v20180321/client.rb', line 189 def TextTranslateBatch(request) body = send_request('TextTranslateBatch', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = TextTranslateBatchResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, , reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end |