Class: TencentCloud::Tms::V20201229::Client

Inherits:
Common::AbstractClient
  • Object
show all
Defined in:
lib/v20201229/client.rb

Instance Method Summary collapse

Constructor Details

#initialize(credential, region, profile = nil) ⇒ Client

Returns a new instance of Client.



24
25
26
27
28
29
# File 'lib/v20201229/client.rb', line 24

def initialize(credential, region, profile = nil)
    api_version = '2020-12-29'
    api_endpoint = 'tms.tencentcloudapi.com'
    sdk_version = 'TMS_' + File.read(File.expand_path('../VERSION', __dir__)).strip
    super(credential, region, api_version, api_endpoint, sdk_version, profile)
end

Instance Method Details

#TextModeration(request) ⇒ Object

@rtype: :class:‘Tencentcloud::tms::V20201229::TextModerationResponse`

Parameters:

  • request:

    Request instance for TextModeration.



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/v20201229/client.rb', line 53

def TextModeration(request)
  body = send_request('TextModeration', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = TextModerationResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end