Class: TencentCloud::Ams::V20201229::Client
- Inherits:
-
Common::AbstractClient
- Object
- Common::AbstractClient
- TencentCloud::Ams::V20201229::Client
- Defined in:
- lib/v20201229/client.rb
Instance Method Summary collapse
-
#CancelTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::CancelTaskResponse`.
-
#CreateAudioModerationSyncTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::CreateAudioModerationSyncTaskResponse`.
-
#CreateAudioModerationTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::CreateAudioModerationTaskResponse`.
-
#DescribeTaskDetail(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::DescribeTaskDetailResponse`.
-
#DescribeTasks(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::DescribeTasksResponse`.
-
#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/v20201229/client.rb', line 24 def initialize(credential, region, profile = nil) api_version = '2020-12-29' 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::V20201229::CancelTaskResponse`
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/v20201229/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 |
#CreateAudioModerationSyncTask(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::CreateAudioModerationSyncTaskResponse`
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/v20201229/client.rb', line 73 def CreateAudioModerationSyncTask(request) body = send_request('CreateAudioModerationSyncTask', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = CreateAudioModerationSyncTaskResponse.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::V20201229::CreateAudioModerationTaskResponse`
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/v20201229/client.rb', line 127 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 |
#DescribeTaskDetail(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::DescribeTaskDetailResponse`
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'lib/v20201229/client.rb', line 151 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 |
#DescribeTasks(request) ⇒ Object
@rtype: :class:‘Tencentcloud::ams::V20201229::DescribeTasksResponse`
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/v20201229/client.rb', line 175 def DescribeTasks(request) body = send_request('DescribeTasks', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeTasksResponse.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 |