1 Star 14 Fork 2

tencentcloud/tencentcloud-sdk-dotnet

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
ConfigClient.cs 4.73 KB
Copy Edit Raw Blame History
tencentcloud authored 2024-09-20 11:03 . release 3.0.1091
/*
* 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.Config.V20220802
{
using Newtonsoft.Json;
using System.Threading.Tasks;
using TencentCloud.Common;
using TencentCloud.Common.Profile;
using TencentCloud.Config.V20220802.Models;
public class ConfigClient : AbstractClient{
private const string endpoint = "config.tencentcloudapi.com";
private const string version = "2022-08-02";
private const string sdkVersion = "SDK_NET_3.0.1091";
/// <summary>
/// Client constructor.
/// </summary>
/// <param name="credential">Credentials.</param>
/// <param name="region">Region name, such as "ap-guangzhou".</param>
public ConfigClient(Credential credential, string region)
: this(credential, region, new ClientProfile { Language = Language.ZH_CN })
{
}
/// <summary>
/// Client Constructor.
/// </summary>
/// <param name="credential">Credentials.</param>
/// <param name="region">Region name, such as "ap-guangzhou".</param>
/// <param name="profile">Client profiles.</param>
public ConfigClient(Credential credential, string region, ClientProfile profile)
: base(endpoint, version, credential, region, profile)
{
SdkVersion = sdkVersion;
}
/// <summary>
/// 账号组获取规则列表
/// </summary>
/// <param name="req"><see cref="ListAggregateConfigRulesRequest"/></param>
/// <returns><see cref="ListAggregateConfigRulesResponse"/></returns>
public Task<ListAggregateConfigRulesResponse> ListAggregateConfigRules(ListAggregateConfigRulesRequest req)
{
return InternalRequestAsync<ListAggregateConfigRulesResponse>(req, "ListAggregateConfigRules");
}
/// <summary>
/// 账号组获取规则列表
/// </summary>
/// <param name="req"><see cref="ListAggregateConfigRulesRequest"/></param>
/// <returns><see cref="ListAggregateConfigRulesResponse"/></returns>
public ListAggregateConfigRulesResponse ListAggregateConfigRulesSync(ListAggregateConfigRulesRequest req)
{
return InternalRequestAsync<ListAggregateConfigRulesResponse>(req, "ListAggregateConfigRules")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
/// <summary>
/// 获取规则列表
/// </summary>
/// <param name="req"><see cref="ListConfigRulesRequest"/></param>
/// <returns><see cref="ListConfigRulesResponse"/></returns>
public Task<ListConfigRulesResponse> ListConfigRules(ListConfigRulesRequest req)
{
return InternalRequestAsync<ListConfigRulesResponse>(req, "ListConfigRules");
}
/// <summary>
/// 获取规则列表
/// </summary>
/// <param name="req"><see cref="ListConfigRulesRequest"/></param>
/// <returns><see cref="ListConfigRulesResponse"/></returns>
public ListConfigRulesResponse ListConfigRulesSync(ListConfigRulesRequest req)
{
return InternalRequestAsync<ListConfigRulesResponse>(req, "ListConfigRules")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
/// <summary>
/// 上报自定义规则评估结果
/// </summary>
/// <param name="req"><see cref="PutEvaluationsRequest"/></param>
/// <returns><see cref="PutEvaluationsResponse"/></returns>
public Task<PutEvaluationsResponse> PutEvaluations(PutEvaluationsRequest req)
{
return InternalRequestAsync<PutEvaluationsResponse>(req, "PutEvaluations");
}
/// <summary>
/// 上报自定义规则评估结果
/// </summary>
/// <param name="req"><see cref="PutEvaluationsRequest"/></param>
/// <returns><see cref="PutEvaluationsResponse"/></returns>
public PutEvaluationsResponse PutEvaluationsSync(PutEvaluationsRequest req)
{
return InternalRequestAsync<PutEvaluationsResponse>(req, "PutEvaluations")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tencentcloud/tencentcloud-sdk-dotnet.git
git@gitee.com:tencentcloud/tencentcloud-sdk-dotnet.git
tencentcloud
tencentcloud-sdk-dotnet
tencentcloud-sdk-dotnet
master

Search

D67c1975 1850385 1daf7b77 1850385