Files
g.hnyhua.cn/TencentCloud/Clb/V20180317/Models/DescribeLoadBalancersRequest.cs
2026-02-07 15:48:27 +08:00

175 lines
7.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 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.Clb.V20180317.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeLoadBalancersRequest : AbstractModel
{
/// <summary>
/// 负载均衡实例 ID。
/// </summary>
[JsonProperty("LoadBalancerIds")]
public string[] LoadBalancerIds{ get; set; }
/// <summary>
/// 负载均衡实例的网络类型:
/// OPEN公网属性 INTERNAL内网属性。
/// </summary>
[JsonProperty("LoadBalancerType")]
public string LoadBalancerType{ get; set; }
/// <summary>
/// 负载均衡实例的类型。1通用的负载均衡实例0传统型负载均衡实例。如果不传此参数则查询所有类型的负载均衡实例。
/// </summary>
[JsonProperty("Forward")]
public long? Forward{ get; set; }
/// <summary>
/// 负载均衡实例的名称。
/// </summary>
[JsonProperty("LoadBalancerName")]
public string LoadBalancerName{ get; set; }
/// <summary>
/// 腾讯云为负载均衡实例分配的域名,本参数仅对传统型公网负载均衡才有意义。
/// </summary>
[JsonProperty("Domain")]
public string Domain{ get; set; }
/// <summary>
/// 负载均衡实例的 VIP 地址,支持多个。
/// </summary>
[JsonProperty("LoadBalancerVips")]
public string[] LoadBalancerVips{ get; set; }
/// <summary>
/// 负载均衡绑定的后端服务的外网 IP。
/// </summary>
[JsonProperty("BackendPublicIps")]
public string[] BackendPublicIps{ get; set; }
/// <summary>
/// 负载均衡绑定的后端服务的内网 IP。
/// </summary>
[JsonProperty("BackendPrivateIps")]
public string[] BackendPrivateIps{ get; set; }
/// <summary>
/// 数据偏移量,默认为 0。
/// </summary>
[JsonProperty("Offset")]
public long? Offset{ get; set; }
/// <summary>
/// 返回负载均衡实例的数量默认为20最大值为100。
/// </summary>
[JsonProperty("Limit")]
public long? Limit{ get; set; }
/// <summary>
/// 排序参数支持以下字段LoadBalancerNameCreateTimeDomainLoadBalancerType。
/// </summary>
[JsonProperty("OrderBy")]
public string OrderBy{ get; set; }
/// <summary>
/// 1倒序0顺序默认按照创建时间倒序。
/// </summary>
[JsonProperty("OrderType")]
public long? OrderType{ get; set; }
/// <summary>
/// 搜索字段模糊匹配名称、域名、VIP。
/// </summary>
[JsonProperty("SearchKey")]
public string SearchKey{ get; set; }
/// <summary>
/// 负载均衡实例所属的项目 ID可以通过 DescribeProject 接口获取。
/// </summary>
[JsonProperty("ProjectId")]
public long? ProjectId{ get; set; }
/// <summary>
/// 负载均衡是否绑定后端服务0没有绑定后端服务1绑定后端服务-1查询全部。
/// </summary>
[JsonProperty("WithRs")]
public long? WithRs{ get; set; }
/// <summary>
/// 负载均衡实例所属私有网络唯一ID如 vpc-bhqkbhdx
/// 基础网络可传入'0'。
/// </summary>
[JsonProperty("VpcId")]
public string VpcId{ get; set; }
/// <summary>
/// 安全组ID如 sg-m1cc9123
/// </summary>
[JsonProperty("SecurityGroup")]
public string SecurityGroup{ get; set; }
/// <summary>
/// 主可用区ID"100001" (对应的是广州一区)
/// </summary>
[JsonProperty("MasterZone")]
public string MasterZone{ get; set; }
/// <summary>
/// 每次请求的`Filters`的上限为10`Filter.Values`的上限为100。详细的过滤条件如下
/// <li> internet-charge-type - String - 是否必填:否 - (过滤条件)按照 CLB 的网络计费模式过滤,包括"BANDWIDTH_PREPAID","TRAFFIC_POSTPAID_BY_HOUR","BANDWIDTH_POSTPAID_BY_HOUR","BANDWIDTH_PACKAGE"。</li>
/// <li> master-zone-id - String - 是否必填:否 - (过滤条件)按照 CLB 的主可用区ID过滤"100001" (对应的是广州一区)。</li>
/// <li> tag-key - String - 是否必填:否 - (过滤条件)按照 CLB 标签的键过滤。</li>
/// </summary>
[JsonProperty("Filters")]
public Filter[] Filters{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArraySimple(map, prefix + "LoadBalancerIds.", this.LoadBalancerIds);
this.SetParamSimple(map, prefix + "LoadBalancerType", this.LoadBalancerType);
this.SetParamSimple(map, prefix + "Forward", this.Forward);
this.SetParamSimple(map, prefix + "LoadBalancerName", this.LoadBalancerName);
this.SetParamSimple(map, prefix + "Domain", this.Domain);
this.SetParamArraySimple(map, prefix + "LoadBalancerVips.", this.LoadBalancerVips);
this.SetParamArraySimple(map, prefix + "BackendPublicIps.", this.BackendPublicIps);
this.SetParamArraySimple(map, prefix + "BackendPrivateIps.", this.BackendPrivateIps);
this.SetParamSimple(map, prefix + "Offset", this.Offset);
this.SetParamSimple(map, prefix + "Limit", this.Limit);
this.SetParamSimple(map, prefix + "OrderBy", this.OrderBy);
this.SetParamSimple(map, prefix + "OrderType", this.OrderType);
this.SetParamSimple(map, prefix + "SearchKey", this.SearchKey);
this.SetParamSimple(map, prefix + "ProjectId", this.ProjectId);
this.SetParamSimple(map, prefix + "WithRs", this.WithRs);
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
this.SetParamSimple(map, prefix + "SecurityGroup", this.SecurityGroup);
this.SetParamSimple(map, prefix + "MasterZone", this.MasterZone);
this.SetParamArrayObj(map, prefix + "Filters.", this.Filters);
}
}
}