Class: TencentCloud::Ams::V20200608::Client
- Inherits:
-
Common::AbstractClient
- Object
- Common::AbstractClient
- TencentCloud::Ams::V20200608::Client
- Defined in:
- lib/v20200608/client.rb
Instance Method Summary collapse
-
#CancelTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::CancelTaskResponse`.
-
#CreateAudioModerationTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::CreateAudioModerationTaskResponse`.
-
#CreateBizConfig(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::CreateBizConfigResponse`.
-
#DescribeAmsList(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeAmsListResponse`.
-
#DescribeAudioStat(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeAudioStatResponse`.
-
#DescribeBizConfig(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeBizConfigResponse`.
-
#DescribeTaskDetail(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeTaskDetailResponse`.
-
#initialize(credential, region, profile = nil) ⇒ Client
constructor
A new instance of Client.
Constructor Details
#initialize(credential, region, profile = nil) ⇒ Client
Returns a new instance of Client.
24 25 26 27 28 29 |
# File 'lib/v20200608/client.rb', line 24 def initialize(credential, region, profile = nil) api_version = '2020-06-08' api_endpoint = 'ams.tencentcloudapi.com' sdk_version = 'AMS_' + File.read(File.('../VERSION', __dir__)).strip super(credential, region, api_version, api_endpoint, sdk_version, profile) end |
Instance Method Details
#CancelTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::CancelTaskResponse`
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/v20200608/client.rb', line 37 def CancelTask(request) body = send_request('CancelTask', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = CancelTaskResponse.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 |
#CreateAudioModerationTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::CreateAudioModerationTaskResponse`
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/v20200608/client.rb', line 84 def CreateAudioModerationTask(request) body = send_request('CreateAudioModerationTask', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = CreateAudioModerationTaskResponse.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 |
#CreateBizConfig(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::CreateBizConfigResponse`
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/v20200608/client.rb', line 112 def CreateBizConfig(request) body = send_request('CreateBizConfig', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = CreateBizConfigResponse.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 |
#DescribeAmsList(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeAmsListResponse`
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'lib/v20200608/client.rb', line 136 def DescribeAmsList(request) body = send_request('DescribeAmsList', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeAmsListResponse.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 |
#DescribeAudioStat(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeAudioStatResponse`
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/v20200608/client.rb', line 160 def DescribeAudioStat(request) body = send_request('DescribeAudioStat', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeAudioStatResponse.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 |
#DescribeBizConfig(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeBizConfigResponse`
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/v20200608/client.rb', line 184 def DescribeBizConfig(request) body = send_request('DescribeBizConfig', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeBizConfigResponse.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 |
#DescribeTaskDetail(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20200608::DescribeTaskDetailResponse`
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/v20200608/client.rb', line 208 def DescribeTaskDetail(request) body = send_request('DescribeTaskDetail', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeTaskDetailResponse.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 |