媒体处理 MPC-查询独立加密任务:复合查询

时间:2024-07-30 16:48:27

复合查询

1
2
3
4
5
6
7
8
// 复合查询
ListEncryptTaskRequest req = new ListEncryptTaskRequest().withPage(1).withSize(4)
        .withStartTime("20201220131400").withEndTime("20201221131400")
        .withStatus(ListEncryptTaskRequest.StatusEnum.FAILED);
// 向MPC发送查询独立加密任务的请求
ListEncryptTaskResponse rsp = initMpcClient().listEncryptTask(req);   
// 打印返回消息         
System.out.println(rsp.toString());
support.huaweicloud.com/sdkreference-mpc/mpc_05_0117.html