Search in sources :

Example 1 with SubmitOpenClassTaskResponse

use of com.tencentcloudapi.tci.v20190318.models.SubmitOpenClassTaskResponse in project tencentcloud-sdk-java by TencentCloud.

the class SubmitOpenClassTask method main.

public static void main(String[] args) {
    try {
        Credential cred = new Credential("", "");
        HttpProfile httpProfile = new HttpProfile();
        httpProfile.setReqMethod("POST");
        httpProfile.setConnTimeout(60);
        httpProfile.setEndpoint("tci.ap-beijing.tencentcloudapi.com");
        ClientProfile clientProfile = new ClientProfile();
        clientProfile.setUnsignedPayload(true);
        clientProfile.setHttpProfile(httpProfile);
        TciClient client = new TciClient(cred, "", clientProfile);
        SubmitOpenClassTaskRequest req = new SubmitOpenClassTaskRequest();
        req.setFileContent("https://edu-test-1253131631.cos.ap-guangzhou.myqcloud.com/aieduautotest/autotest_vedio.mp4");
        req.setFileType("vod_url");
        req.setLibrarySet(new String[] { "library_15603955264181591716" });
        SubmitOpenClassTaskResponse res = client.SubmitOpenClassTask(req);
        System.out.println(SubmitOpenClassTaskResponse.toJsonString(res));
        System.out.println(res.getRequestId());
    } catch (TencentCloudSDKException e) {
        e.printStackTrace();
    }
}
Also used : Credential(com.tencentcloudapi.common.Credential) TencentCloudSDKException(com.tencentcloudapi.common.exception.TencentCloudSDKException) ClientProfile(com.tencentcloudapi.common.profile.ClientProfile) SubmitOpenClassTaskRequest(com.tencentcloudapi.tci.v20190318.models.SubmitOpenClassTaskRequest) HttpProfile(com.tencentcloudapi.common.profile.HttpProfile) TciClient(com.tencentcloudapi.tci.v20190318.TciClient) SubmitOpenClassTaskResponse(com.tencentcloudapi.tci.v20190318.models.SubmitOpenClassTaskResponse)

Aggregations

Credential (com.tencentcloudapi.common.Credential)1 TencentCloudSDKException (com.tencentcloudapi.common.exception.TencentCloudSDKException)1 ClientProfile (com.tencentcloudapi.common.profile.ClientProfile)1 HttpProfile (com.tencentcloudapi.common.profile.HttpProfile)1 TciClient (com.tencentcloudapi.tci.v20190318.TciClient)1 SubmitOpenClassTaskRequest (com.tencentcloudapi.tci.v20190318.models.SubmitOpenClassTaskRequest)1 SubmitOpenClassTaskResponse (com.tencentcloudapi.tci.v20190318.models.SubmitOpenClassTaskResponse)1