/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ namespace TencentCloud.Bizlive.V20190313 { using Newtonsoft.Json; using System.Threading.Tasks; using TencentCloud.Common; using TencentCloud.Common.Profile; using TencentCloud.Bizlive.V20190313.Models; public class BizliveClient : AbstractClient{ private const string endpoint = "bizlive.tencentcloudapi.com"; private const string version = "2019-03-13"; /// /// Client constructor. /// /// Credentials. /// Region name, such as "ap-guangzhou". public BizliveClient(Credential credential, string region) : this(credential, region, new ClientProfile()) { } /// /// Client Constructor. /// /// Credentials. /// Region name, such as "ap-guangzhou". /// Client profiles. public BizliveClient(Credential credential, string region, ClientProfile profile) : base(endpoint, version, credential, region, profile) { } /// /// 创建会话 /// /// /// public async Task CreateSession(CreateSessionRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "CreateSession"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 创建会话 /// /// /// public CreateSessionResponse CreateSessionSync(CreateSessionRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "CreateSession"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 查询播放数据,支持按流名称查询详细播放数据,也可按播放域名查询详细总数据。 /// /// /// public async Task DescribeStreamPlayInfoList(DescribeStreamPlayInfoListRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeStreamPlayInfoList"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 查询播放数据,支持按流名称查询详细播放数据,也可按播放域名查询详细总数据。 /// /// /// public DescribeStreamPlayInfoListResponse DescribeStreamPlayInfoListSync(DescribeStreamPlayInfoListRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeStreamPlayInfoList"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 查询空闲机器数量 /// /// /// public async Task DescribeWorkers(DescribeWorkersRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "DescribeWorkers"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 查询空闲机器数量 /// /// /// public DescribeWorkersResponse DescribeWorkersSync(DescribeWorkersRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "DescribeWorkers"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 禁止某条流的推送,可以预设某个时刻将流恢复。 /// /// /// public async Task ForbidLiveStream(ForbidLiveStreamRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "ForbidLiveStream"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 禁止某条流的推送,可以预设某个时刻将流恢复。 /// /// /// public ForbidLiveStreamResponse ForbidLiveStreamSync(ForbidLiveStreamRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "ForbidLiveStream"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 注册聊天室 /// /// /// public async Task RegisterIM(RegisterIMRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "RegisterIM"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 注册聊天室 /// /// /// public RegisterIMResponse RegisterIMSync(RegisterIMRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "RegisterIM"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 强制退出游戏 /// /// /// public async Task StopGame(StopGameRequest req) { JsonResponseModel rsp = null; try { var strResp = await this.InternalRequest(req, "StopGame"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } /// /// 强制退出游戏 /// /// /// public StopGameResponse StopGameSync(StopGameRequest req) { JsonResponseModel rsp = null; try { var strResp = this.InternalRequestSync(req, "StopGame"); rsp = JsonConvert.DeserializeObject>(strResp); } catch (JsonSerializationException e) { throw new TencentCloudSDKException(e.Message); } return rsp.Response; } } }