use of com.tencentcloudapi.common.Credential in project austin by ZhongFuCheng3y.
the class TencentSmsScript method init.
/**
* 初始化 client
*
* @param account
*/
private SmsClient init(TencentSmsParam account) {
Credential cred = new Credential(account.getSecretId(), account.getSecretKey());
HttpProfile httpProfile = new HttpProfile();
httpProfile.setEndpoint(account.getUrl());
ClientProfile clientProfile = new ClientProfile();
clientProfile.setHttpProfile(httpProfile);
SmsClient client = new SmsClient(cred, account.getRegion(), clientProfile);
return client;
}
use of com.tencentcloudapi.common.Credential in project Ant-Live by PinTeh.
the class TencentConfig method getOcrClient.
@Bean
public OcrClient getOcrClient() {
Credential cred = new Credential(iii, kkk);
HttpProfile httpProfile = new HttpProfile();
httpProfile.setEndpoint("ocr.tencentcloudapi.com");
ClientProfile clientProfile = new ClientProfile();
clientProfile.setHttpProfile(httpProfile);
return new OcrClient(cred, "ap-guangzhou", clientProfile);
}
use of com.tencentcloudapi.common.Credential in project Ant-Live by PinTeh.
the class TencentConfig method getLiveClient.
@Bean
public LiveClient getLiveClient() {
Credential cred = new Credential(iii, kkk);
HttpProfile httpProfile = new HttpProfile();
httpProfile.setEndpoint("live.tencentcloudapi.com");
ClientProfile clientProfile = new ClientProfile();
clientProfile.setHttpProfile(httpProfile);
return new LiveClient(cred, "ap-chengdu", clientProfile);
}
use of com.tencentcloudapi.common.Credential in project cmq-java-sdk by tencentyun.
the class Account method listQueue.
/**
* list queue
*
* @param searchWord String
* @param offset int
* @param limit int
* @param queueList List<String>
* @return totalCount int
* @throws Exception
* @throws CMQClientException
* @throws CMQServerException
*/
public int listQueue(String searchWord, int offset, int limit, List<String> queueList) {
try {
CmqConfig cmqConfig = client.getCmqConfig();
Credential cred = new Credential(cmqConfig.getSecretId(), cmqConfig.getSecretKey());
String endPoint = cmqConfig.getEndpoint();
String region = CMQTool.convertRegion(endPoint);
DescribeCmqQueuesRequest req = new DescribeCmqQueuesRequest();
if (offset > 0) {
req.setOffset((long) offset);
}
if (limit > 0) {
req.setLimit((long) limit);
}
if (null != searchWord && !"".equals(searchWord)) {
req.setQueueName(searchWord);
}
HttpProfile httpProfile = new HttpProfile();
httpProfile.setEndpoint(cmqConfig.getManagerEndpoint());
ClientProfile clientProfile = new ClientProfile();
clientProfile.setHttpProfile(httpProfile);
TdmqClient client = new TdmqClient(cred, region, clientProfile);
DescribeCmqQueuesResponse resp = client.DescribeCmqQueues(req);
CmqQueue[] cmqQueues = resp.getQueueList();
int totalCount = resp.getTotalCount().intValue();
if (cmqQueues.length > 0) {
for (CmqQueue queue : resp.getQueueList()) {
queueList.add(queue.getQueueName());
}
}
return totalCount;
} catch (TencentCloudSDKException e) {
System.out.println(e.toString());
}
return 0;
}
use of com.tencentcloudapi.common.Credential in project cmq-java-sdk by tencentyun.
the class Queue method getQueueAttributes.
/**
* 获取队列属性
*
* @return 返回的队列属性参数
*/
public QueueMeta getQueueAttributes() {
QueueMeta meta = new QueueMeta();
try {
CmqConfig cmqConfig = client.getCmqConfig();
Credential cred = new Credential(cmqConfig.getSecretId(), cmqConfig.getSecretKey());
String endPoint = cmqConfig.getEndpoint();
String region = CMQTool.convertRegion(endPoint);
HttpProfile httpProfile = new HttpProfile();
httpProfile.setEndpoint(cmqConfig.getManagerEndpoint());
ClientProfile clientProfile = new ClientProfile();
clientProfile.setHttpProfile(httpProfile);
TdmqClient client = new TdmqClient(cred, region, clientProfile);
DescribeCmqQueueDetailRequest req = new DescribeCmqQueueDetailRequest();
req.setQueueName(this.queueName);
DescribeCmqQueueDetailResponse resp = client.DescribeCmqQueueDetail(req);
CmqQueue cmqQueue = resp.getQueueDescribe();
meta.maxMsgHeapNum = cmqQueue.getMaxMsgHeapNum().intValue();
meta.pollingWaitSeconds = cmqQueue.getPollingWaitSeconds().intValue();
meta.visibilityTimeout = cmqQueue.getVisibilityTimeout().intValue();
meta.maxMsgSize = cmqQueue.getMaxMsgSize().intValue();
meta.msgRetentionSeconds = cmqQueue.getMsgRetentionSeconds().intValue();
meta.createTime = (int) (cmqQueue.getCreateTime() / 1000);
meta.lastModifyTime = (int) (cmqQueue.getLastModifyTime() / 1000);
meta.activeMsgNum = cmqQueue.getActiveMsgNum().intValue();
meta.inactiveMsgNum = cmqQueue.getInactiveMsgNum().intValue();
if (null != cmqQueue.getRewindMsgNum()) {
meta.rewindmsgNum = cmqQueue.getRewindMsgNum().intValue();
}
if (null != cmqQueue.getMinMsgTime()) {
meta.minMsgTime = cmqQueue.getMinMsgTime().intValue();
}
if (null != cmqQueue.getDelayMsgNum()) {
meta.delayMsgNum = cmqQueue.getDelayMsgNum().intValue();
}
meta.rewindSeconds = cmqQueue.getRewindSeconds().intValue();
} catch (TencentCloudSDKException e) {
System.out.println(e.toString());
}
return meta;
}
Aggregations