93 lines
3.4 KiB
C#
93 lines
3.4 KiB
C#
|
|
/*
|
|||
|
|
* 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.Bmlb.V20180625.Models
|
|||
|
|
{
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using TencentCloud.Common;
|
|||
|
|
|
|||
|
|
public class SetTrafficMirrorHealthSwitchRequest : AbstractModel
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 流量镜像实例ID。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("TrafficMirrorId")]
|
|||
|
|
public string TrafficMirrorId{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查开关,0:关闭,1:打开
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("HealthSwitch")]
|
|||
|
|
public long? HealthSwitch{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查判断健康的次数,最小值2,最大值10。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("HealthNum")]
|
|||
|
|
public long? HealthNum{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查判断不健康的次数,最小值2,最大值10。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("UnhealthNum")]
|
|||
|
|
public long? UnhealthNum{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查间隔,单位:秒,最小值5,最大值300。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("IntervalTime")]
|
|||
|
|
public long? IntervalTime{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 检查的域名配置。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("HttpCheckDomain")]
|
|||
|
|
public string HttpCheckDomain{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 检查的路径配置。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("HttpCheckPath")]
|
|||
|
|
public string HttpCheckPath{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查中认为健康的HTTP返回码的组合。可选值为1~5的集合,1表示HTTP返回码为1xx认为健康。2表示HTTP返回码为2xx认为健康。3表示HTTP返回码为3xx认为健康。4表示HTTP返回码为4xx认为健康。5表示HTTP返回码为5xx认为健康。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("HttpCodes")]
|
|||
|
|
public long?[] HttpCodes{ get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// For internal usage only. DO NOT USE IT.
|
|||
|
|
/// </summary>
|
|||
|
|
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
|||
|
|
{
|
|||
|
|
this.SetParamSimple(map, prefix + "TrafficMirrorId", this.TrafficMirrorId);
|
|||
|
|
this.SetParamSimple(map, prefix + "HealthSwitch", this.HealthSwitch);
|
|||
|
|
this.SetParamSimple(map, prefix + "HealthNum", this.HealthNum);
|
|||
|
|
this.SetParamSimple(map, prefix + "UnhealthNum", this.UnhealthNum);
|
|||
|
|
this.SetParamSimple(map, prefix + "IntervalTime", this.IntervalTime);
|
|||
|
|
this.SetParamSimple(map, prefix + "HttpCheckDomain", this.HttpCheckDomain);
|
|||
|
|
this.SetParamSimple(map, prefix + "HttpCheckPath", this.HttpCheckPath);
|
|||
|
|
this.SetParamArraySimple(map, prefix + "HttpCodes.", this.HttpCodes);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|