首次推送
This commit is contained in:
43
TencentCloud/Bmeip/V20180625/Models/BindEipAclsRequest.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/BindEipAclsRequest.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindEipAclsRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 待关联的 EIP 与 ACL关系列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIdAclIdList")]
|
||||
public EipAclMap[] EipIdAclIdList{ get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// For internal usage only. DO NOT USE IT.
|
||||
/// </summary>
|
||||
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
||||
{
|
||||
this.SetParamArrayObj(map, prefix + "EipIdAclIdList.", this.EipIdAclIdList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/BindEipAclsResponse.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/BindEipAclsResponse.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindEipAclsResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/BindHostedRequest.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/BindHostedRequest.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindHostedRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID,可通过DescribeBmEip 接口返回字段中的 eipId获取。Eip和EipId参数必须要填写一个。
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 托管机器实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceId")]
|
||||
public string InstanceId{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/BindHostedResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/BindHostedResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindHostedResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 异步任务ID,可以通过EipBmQueryTask查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/BindRsRequest.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/BindRsRequest.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindRsRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物理服务器实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceId")]
|
||||
public string InstanceId{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/BindRsResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/BindRsResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindRsResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 绑定黑石物理机异步任务ID,可以通过DescribeEipTask查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
57
TencentCloud/Bmeip/V20180625/Models/BindVpcIpRequest.cs
Normal file
57
TencentCloud/Bmeip/V20180625/Models/BindVpcIpRequest.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindVpcIpRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP归属VpcId,例如vpc-k7j1t2x1
|
||||
/// </summary>
|
||||
[JsonProperty("VpcId")]
|
||||
public string VpcId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 绑定的VPC内IP地址
|
||||
/// </summary>
|
||||
[JsonProperty("VpcIp")]
|
||||
public string VpcIp{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
|
||||
this.SetParamSimple(map, prefix + "VpcIp", this.VpcIp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/BindVpcIpResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/BindVpcIpResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class BindVpcIpResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP绑定VPC网络IP异步任务ID,可以通过查询EIP任务状态查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/CreateEipAclRequest.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/CreateEipAclRequest.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class CreateEipAclRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// ACL 名称
|
||||
/// </summary>
|
||||
[JsonProperty("AclName")]
|
||||
public string AclName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 状态 0:无状态,1:有状态
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public ulong? Status{ 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 + "AclName", this.AclName);
|
||||
this.SetParamSimple(map, prefix + "Status", this.Status);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
71
TencentCloud/Bmeip/V20180625/Models/CreateEipAclResponse.cs
Normal file
71
TencentCloud/Bmeip/V20180625/Models/CreateEipAclResponse.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class CreateEipAclResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例 ID
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例状态
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public ulong? Status{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例名称
|
||||
/// </summary>
|
||||
[JsonProperty("AclName")]
|
||||
public string AclName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例创建时间
|
||||
/// </summary>
|
||||
[JsonProperty("CreatedAt")]
|
||||
public string CreatedAt{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "AclId", this.AclId);
|
||||
this.SetParamSimple(map, prefix + "Status", this.Status);
|
||||
this.SetParamSimple(map, prefix + "AclName", this.AclName);
|
||||
this.SetParamSimple(map, prefix + "CreatedAt", this.CreatedAt);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
85
TencentCloud/Bmeip/V20180625/Models/CreateEipRequest.cs
Normal file
85
TencentCloud/Bmeip/V20180625/Models/CreateEipRequest.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class CreateEipRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 申请数量,默认为1, 最大 20
|
||||
/// </summary>
|
||||
[JsonProperty("GoodsNum")]
|
||||
public ulong? GoodsNum{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP计费方式,flow-流量计费;bandwidth-带宽计费
|
||||
/// </summary>
|
||||
[JsonProperty("PayMode")]
|
||||
public string PayMode{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 带宽设定值(只在带宽计费时生效)
|
||||
/// </summary>
|
||||
[JsonProperty("Bandwidth")]
|
||||
public ulong? Bandwidth{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP模式,目前支持tunnel和fullnat
|
||||
/// </summary>
|
||||
[JsonProperty("SetType")]
|
||||
public string SetType{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否使用独占集群,0:不使用,1:使用。默认为0
|
||||
/// </summary>
|
||||
[JsonProperty("Exclusive")]
|
||||
public ulong? Exclusive{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP归属私有网络ID,例如vpc-k7j1t2x1
|
||||
/// </summary>
|
||||
[JsonProperty("VpcId")]
|
||||
public string VpcId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指定申请的IP列表
|
||||
/// </summary>
|
||||
[JsonProperty("IpList")]
|
||||
public string[] IpList{ 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 + "GoodsNum", this.GoodsNum);
|
||||
this.SetParamSimple(map, prefix + "PayMode", this.PayMode);
|
||||
this.SetParamSimple(map, prefix + "Bandwidth", this.Bandwidth);
|
||||
this.SetParamSimple(map, prefix + "SetType", this.SetType);
|
||||
this.SetParamSimple(map, prefix + "Exclusive", this.Exclusive);
|
||||
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
|
||||
this.SetParamArraySimple(map, prefix + "IpList.", this.IpList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
57
TencentCloud/Bmeip/V20180625/Models/CreateEipResponse.cs
Normal file
57
TencentCloud/Bmeip/V20180625/Models/CreateEipResponse.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class CreateEipResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIds")]
|
||||
public string[] EipIds{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务ID
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public ulong? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "EipIds.", this.EipIds);
|
||||
this.SetParamSimple(map, prefix + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/DeleteEipAclRequest.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/DeleteEipAclRequest.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DeleteEipAclRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 待删除的 ACL 实例 ID
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ 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 + "AclId", this.AclId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/DeleteEipAclResponse.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/DeleteEipAclResponse.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DeleteEipAclResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/DeleteEipRequest.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/DeleteEipRequest.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DeleteEipRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIds")]
|
||||
public string[] EipIds{ 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 + "EipIds.", this.EipIds);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/DeleteEipResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/DeleteEipResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DeleteEipResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 任务Id
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public ulong? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
106
TencentCloud/Bmeip/V20180625/Models/DescribeEipAclsRequest.cs
Normal file
106
TencentCloud/Bmeip/V20180625/Models/DescribeEipAclsRequest.cs
Normal file
@@ -0,0 +1,106 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipAclsRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// ACL 名称,支持模糊查找
|
||||
/// </summary>
|
||||
[JsonProperty("AclName")]
|
||||
public string AclName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例 ID 列表,数组下标从 0 开始
|
||||
/// </summary>
|
||||
[JsonProperty("AclIds")]
|
||||
public string[] AclIds{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分页参数。偏移量,默认为 0
|
||||
/// </summary>
|
||||
[JsonProperty("Offset")]
|
||||
public long? Offset{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分页参数。每一页的 EIPACL 列表数目
|
||||
/// </summary>
|
||||
[JsonProperty("Limit")]
|
||||
public long? Limit{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP实例ID列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIds")]
|
||||
public string[] EipIds{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP IP地址列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIps")]
|
||||
public string[] EipIps{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP名称列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipNames")]
|
||||
public string[] EipNames{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序字段
|
||||
/// </summary>
|
||||
[JsonProperty("OrderField")]
|
||||
public string OrderField{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序方式,取值:0:增序(默认),1:降序
|
||||
/// </summary>
|
||||
[JsonProperty("Order")]
|
||||
public ulong? Order{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL名称列表,支持模糊查找
|
||||
/// </summary>
|
||||
[JsonProperty("AclNames")]
|
||||
public string[] AclNames{ 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 + "AclName", this.AclName);
|
||||
this.SetParamArraySimple(map, prefix + "AclIds.", this.AclIds);
|
||||
this.SetParamSimple(map, prefix + "Offset", this.Offset);
|
||||
this.SetParamSimple(map, prefix + "Limit", this.Limit);
|
||||
this.SetParamArraySimple(map, prefix + "EipIds.", this.EipIds);
|
||||
this.SetParamArraySimple(map, prefix + "EipIps.", this.EipIps);
|
||||
this.SetParamArraySimple(map, prefix + "EipNames.", this.EipNames);
|
||||
this.SetParamSimple(map, prefix + "OrderField", this.OrderField);
|
||||
this.SetParamSimple(map, prefix + "Order", this.Order);
|
||||
this.SetParamArraySimple(map, prefix + "AclNames.", this.AclNames);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipAclsResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 返回 EIPACL 列表总数
|
||||
/// </summary>
|
||||
[JsonProperty("TotalCount")]
|
||||
public long? TotalCount{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIPACL列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipAclList")]
|
||||
public EipAcl[] EipAclList{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TotalCount", this.TotalCount);
|
||||
this.SetParamArrayObj(map, prefix + "EipAclList.", this.EipAclList);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipQuotaRequest : AbstractModel
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// For internal usage only. DO NOT USE IT.
|
||||
/// </summary>
|
||||
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,78 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipQuotaResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 能拥有的EIP个数的总配额,默认是100个
|
||||
/// </summary>
|
||||
[JsonProperty("EipNumQuota")]
|
||||
public long? EipNumQuota{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前已使用的EIP个数,包括创建中、绑定中、已绑定、解绑中、未绑定几种状态的EIP个数总和
|
||||
/// </summary>
|
||||
[JsonProperty("CurrentEipNum")]
|
||||
public long? CurrentEipNum{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当天申请EIP次数
|
||||
/// </summary>
|
||||
[JsonProperty("DailyApplyCount")]
|
||||
public long? DailyApplyCount{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 每日申请EIP的次数限制
|
||||
/// </summary>
|
||||
[JsonProperty("DailyApplyQuota")]
|
||||
public long? DailyApplyQuota{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// BatchApplyMax
|
||||
/// </summary>
|
||||
[JsonProperty("BatchApplyMax")]
|
||||
public long? BatchApplyMax{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "EipNumQuota", this.EipNumQuota);
|
||||
this.SetParamSimple(map, prefix + "CurrentEipNum", this.CurrentEipNum);
|
||||
this.SetParamSimple(map, prefix + "DailyApplyCount", this.DailyApplyCount);
|
||||
this.SetParamSimple(map, prefix + "DailyApplyQuota", this.DailyApplyQuota);
|
||||
this.SetParamSimple(map, prefix + "BatchApplyMax", this.BatchApplyMax);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipTaskRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP查询任务ID
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public ulong? TaskId{ 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 + "TaskId", this.TaskId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipTaskResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 当前任务状态码:0-成功,1-失败,2-进行中
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public long? Status{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "Status", this.Status);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
141
TencentCloud/Bmeip/V20180625/Models/DescribeEipsRequest.cs
Normal file
141
TencentCloud/Bmeip/V20180625/Models/DescribeEipsRequest.cs
Normal file
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipsRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP实例ID列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIds")]
|
||||
public string[] EipIds{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP IP 列表
|
||||
/// </summary>
|
||||
[JsonProperty("Eips")]
|
||||
public string[] Eips{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 主机实例ID 列表
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceIds")]
|
||||
public string[] InstanceIds{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP名称,模糊匹配
|
||||
/// </summary>
|
||||
[JsonProperty("SearchKey")]
|
||||
public string SearchKey{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 状态列表, 默认所有
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public long?[] Status{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 偏移量,默认为0
|
||||
/// </summary>
|
||||
[JsonProperty("Offset")]
|
||||
public long? Offset{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 返回EIP数量,默认 20, 最大值 100
|
||||
/// </summary>
|
||||
[JsonProperty("Limit")]
|
||||
public long? Limit{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序字段,支持: EipId,Eip,Status, InstanceId,CreatedAt
|
||||
/// </summary>
|
||||
[JsonProperty("OrderField")]
|
||||
public string OrderField{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序方式 0:递增 1:递减(默认)
|
||||
/// </summary>
|
||||
[JsonProperty("Order")]
|
||||
public long? Order{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 计费模式,流量:flow,带宽:bandwidth
|
||||
/// </summary>
|
||||
[JsonProperty("PayMode")]
|
||||
public string PayMode{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP归属VpcId,例如vpc-k7j1t2x1
|
||||
/// </summary>
|
||||
[JsonProperty("VpcId")]
|
||||
public string VpcId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 绑定类型,-1:未绑定,0:物理机,1:nat网关,2:虚拟IP, 3:托管机器
|
||||
/// </summary>
|
||||
[JsonProperty("BindTypes")]
|
||||
public long?[] BindTypes{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 独占标志,0:共享,1:独占
|
||||
/// </summary>
|
||||
[JsonProperty("ExclusiveTag")]
|
||||
public long? ExclusiveTag{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP ACL实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 搜索条件,是否绑定了EIP ACL, 0:未绑定,1:绑定
|
||||
/// </summary>
|
||||
[JsonProperty("BindAcl")]
|
||||
public long? BindAcl{ 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 + "EipIds.", this.EipIds);
|
||||
this.SetParamArraySimple(map, prefix + "Eips.", this.Eips);
|
||||
this.SetParamArraySimple(map, prefix + "InstanceIds.", this.InstanceIds);
|
||||
this.SetParamSimple(map, prefix + "SearchKey", this.SearchKey);
|
||||
this.SetParamArraySimple(map, prefix + "Status.", this.Status);
|
||||
this.SetParamSimple(map, prefix + "Offset", this.Offset);
|
||||
this.SetParamSimple(map, prefix + "Limit", this.Limit);
|
||||
this.SetParamSimple(map, prefix + "OrderField", this.OrderField);
|
||||
this.SetParamSimple(map, prefix + "Order", this.Order);
|
||||
this.SetParamSimple(map, prefix + "PayMode", this.PayMode);
|
||||
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
|
||||
this.SetParamArraySimple(map, prefix + "BindTypes.", this.BindTypes);
|
||||
this.SetParamSimple(map, prefix + "ExclusiveTag", this.ExclusiveTag);
|
||||
this.SetParamSimple(map, prefix + "AclId", this.AclId);
|
||||
this.SetParamSimple(map, prefix + "BindAcl", this.BindAcl);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
57
TencentCloud/Bmeip/V20180625/Models/DescribeEipsResponse.cs
Normal file
57
TencentCloud/Bmeip/V20180625/Models/DescribeEipsResponse.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class DescribeEipsResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 返回EIP信息数组
|
||||
/// </summary>
|
||||
[JsonProperty("EipSet")]
|
||||
public EipInfo[] EipSet{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 返回EIP数量
|
||||
/// </summary>
|
||||
[JsonProperty("TotalCount")]
|
||||
public ulong? TotalCount{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// For internal usage only. DO NOT USE IT.
|
||||
/// </summary>
|
||||
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
||||
{
|
||||
this.SetParamArrayObj(map, prefix + "EipSet.", this.EipSet);
|
||||
this.SetParamSimple(map, prefix + "TotalCount", this.TotalCount);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
85
TencentCloud/Bmeip/V20180625/Models/EipAcl.cs
Normal file
85
TencentCloud/Bmeip/V20180625/Models/EipAcl.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class EipAcl : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例 ID。
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例名称
|
||||
/// </summary>
|
||||
[JsonProperty("AclName")]
|
||||
public string AclName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 状态。0:无状态,1:有状态
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public string Status{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIPACL 创建时间
|
||||
/// </summary>
|
||||
[JsonProperty("CreatedAt")]
|
||||
public string CreatedAt{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIPACL 已关联的 eip 数目
|
||||
/// </summary>
|
||||
[JsonProperty("EipNum")]
|
||||
public long? EipNum{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出站规则
|
||||
/// </summary>
|
||||
[JsonProperty("OutRules")]
|
||||
public EipAclRule[] OutRules{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入站规则
|
||||
/// </summary>
|
||||
[JsonProperty("InRules")]
|
||||
public EipAclRule[] InRules{ 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 + "AclId", this.AclId);
|
||||
this.SetParamSimple(map, prefix + "AclName", this.AclName);
|
||||
this.SetParamSimple(map, prefix + "Status", this.Status);
|
||||
this.SetParamSimple(map, prefix + "CreatedAt", this.CreatedAt);
|
||||
this.SetParamSimple(map, prefix + "EipNum", this.EipNum);
|
||||
this.SetParamArrayObj(map, prefix + "OutRules.", this.OutRules);
|
||||
this.SetParamArrayObj(map, prefix + "InRules.", this.InRules);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/EipAclMap.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/EipAclMap.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class EipAclMap : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP 实例 ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例 ID
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "AclId", this.AclId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
71
TencentCloud/Bmeip/V20180625/Models/EipAclRule.cs
Normal file
71
TencentCloud/Bmeip/V20180625/Models/EipAclRule.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class EipAclRule : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 源 IP
|
||||
/// </summary>
|
||||
[JsonProperty("Ip")]
|
||||
public string Ip{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 目标端口
|
||||
/// </summary>
|
||||
[JsonProperty("Port")]
|
||||
public string Port{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 协议(TCP/UDP/ICMP/ANY)
|
||||
/// </summary>
|
||||
[JsonProperty("Protocol")]
|
||||
public string Protocol{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 策略(accept/drop)
|
||||
/// </summary>
|
||||
[JsonProperty("Action")]
|
||||
public string Action{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[JsonProperty("Description")]
|
||||
public string Description{ 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 + "Ip", this.Ip);
|
||||
this.SetParamSimple(map, prefix + "Port", this.Port);
|
||||
this.SetParamSimple(map, prefix + "Protocol", this.Protocol);
|
||||
this.SetParamSimple(map, prefix + "Action", this.Action);
|
||||
this.SetParamSimple(map, prefix + "Description", this.Description);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
232
TencentCloud/Bmeip/V20180625/Models/EipInfo.cs
Normal file
232
TencentCloud/Bmeip/V20180625/Models/EipInfo.cs
Normal file
@@ -0,0 +1,232 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class EipInfo : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP名称
|
||||
/// </summary>
|
||||
[JsonProperty("EipName")]
|
||||
public string EipName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP地址
|
||||
/// </summary>
|
||||
[JsonProperty("Eip")]
|
||||
public string Eip{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 运营商ID 0:电信; 1:联通; 2:移动; 3:教育网; 4:盈科; 5:BGP; 6:中国香港
|
||||
/// </summary>
|
||||
[JsonProperty("IspId")]
|
||||
public long? IspId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 状态 0:创建中; 1:绑定中; 2:已绑定; 3:解绑中; 4:未绑定; 6:下线中; 9:创建失败
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public long? Status{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否欠费隔离 1: 欠费隔离; 0: 正常。处在欠费隔离情况下的EIP不能进行任何管理操作。
|
||||
/// </summary>
|
||||
[JsonProperty("Arrears")]
|
||||
public long? Arrears{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP所绑定的服务器实例ID,未绑定则为空
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceId")]
|
||||
public string InstanceId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务器别名
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceAlias")]
|
||||
public string InstanceAlias{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP解绑时间
|
||||
/// </summary>
|
||||
[JsonProperty("FreeAt")]
|
||||
public string FreeAt{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP创建时间
|
||||
/// </summary>
|
||||
[JsonProperty("CreatedAt")]
|
||||
public string CreatedAt{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP更新时间
|
||||
/// </summary>
|
||||
[JsonProperty("UpdatedAt")]
|
||||
public string UpdatedAt{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP未绑定服务器时长(单位:秒)
|
||||
/// </summary>
|
||||
[JsonProperty("FreeSecond")]
|
||||
public long? FreeSecond{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP所绑定的资源类型,-1:未绑定资源;0:黑石物理机,字段对应unInstanceId;1:Nat网关,字段对应natUid;2:云服务器字段对应vpcIp; 3: 托管机器,字段对应HInstanceId, HInstanceAlias
|
||||
/// </summary>
|
||||
[JsonProperty("Type")]
|
||||
public long? Type{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP计费模式,"flow":流量计费; "bandwidth":带宽计费
|
||||
/// </summary>
|
||||
[JsonProperty("PayMode")]
|
||||
public string PayMode{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP带宽计费模式下的带宽上限(单位:MB)
|
||||
/// </summary>
|
||||
[JsonProperty("Bandwidth")]
|
||||
public long? Bandwidth{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最近一次操作变更的EIP计费模式,"flow":流量计费; "bandwidth":带宽计费
|
||||
/// </summary>
|
||||
[JsonProperty("LatestPayMode")]
|
||||
public string LatestPayMode{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最近一次操作变更的EIP计费模式对应的带宽上限值,仅在带宽计费模式下有效(单位:MB)
|
||||
/// </summary>
|
||||
[JsonProperty("LatestBandwidth")]
|
||||
public long? LatestBandwidth{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 私有网络名称
|
||||
/// </summary>
|
||||
[JsonProperty("VpcName")]
|
||||
public string VpcName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP所绑定的NAT网关的数字ID,形如:1001,,未绑定则为空
|
||||
/// </summary>
|
||||
[JsonProperty("NatId")]
|
||||
public long? NatId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP所绑定的NAT网关实例ID,形如:"nat-n47xxxxx",未绑定则为空
|
||||
/// </summary>
|
||||
[JsonProperty("NatUid")]
|
||||
public string NatUid{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP所绑定的云服务器IP(托管或者云服务器的IP),形如:"10.1.1.3"。 注意:IP资源需要通过bmvpc模块注册或者申请后才可以绑定eip,接口使用申请子网IP和注册子网IP:,未绑定则为空
|
||||
/// </summary>
|
||||
[JsonProperty("VpcIp")]
|
||||
public string VpcIp{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 私有网络实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("VpcId")]
|
||||
public string VpcId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为独占类型EIP
|
||||
/// </summary>
|
||||
[JsonProperty("Exclusive")]
|
||||
public long? Exclusive{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 私有网络的cidr
|
||||
/// </summary>
|
||||
[JsonProperty("VpcCidr")]
|
||||
public string VpcCidr{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP ACL实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP ACL名称
|
||||
/// </summary>
|
||||
[JsonProperty("AclName")]
|
||||
public string AclName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 托管机器实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("HInstanceId")]
|
||||
public string HInstanceId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 托管机器别名
|
||||
/// </summary>
|
||||
[JsonProperty("HInstanceAlias")]
|
||||
public string HInstanceAlias{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "EipName", this.EipName);
|
||||
this.SetParamSimple(map, prefix + "Eip", this.Eip);
|
||||
this.SetParamSimple(map, prefix + "IspId", this.IspId);
|
||||
this.SetParamSimple(map, prefix + "Status", this.Status);
|
||||
this.SetParamSimple(map, prefix + "Arrears", this.Arrears);
|
||||
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
|
||||
this.SetParamSimple(map, prefix + "InstanceAlias", this.InstanceAlias);
|
||||
this.SetParamSimple(map, prefix + "FreeAt", this.FreeAt);
|
||||
this.SetParamSimple(map, prefix + "CreatedAt", this.CreatedAt);
|
||||
this.SetParamSimple(map, prefix + "UpdatedAt", this.UpdatedAt);
|
||||
this.SetParamSimple(map, prefix + "FreeSecond", this.FreeSecond);
|
||||
this.SetParamSimple(map, prefix + "Type", this.Type);
|
||||
this.SetParamSimple(map, prefix + "PayMode", this.PayMode);
|
||||
this.SetParamSimple(map, prefix + "Bandwidth", this.Bandwidth);
|
||||
this.SetParamSimple(map, prefix + "LatestPayMode", this.LatestPayMode);
|
||||
this.SetParamSimple(map, prefix + "LatestBandwidth", this.LatestBandwidth);
|
||||
this.SetParamSimple(map, prefix + "VpcName", this.VpcName);
|
||||
this.SetParamSimple(map, prefix + "NatId", this.NatId);
|
||||
this.SetParamSimple(map, prefix + "NatUid", this.NatUid);
|
||||
this.SetParamSimple(map, prefix + "VpcIp", this.VpcIp);
|
||||
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
|
||||
this.SetParamSimple(map, prefix + "Exclusive", this.Exclusive);
|
||||
this.SetParamSimple(map, prefix + "VpcCidr", this.VpcCidr);
|
||||
this.SetParamSimple(map, prefix + "AclId", this.AclId);
|
||||
this.SetParamSimple(map, prefix + "AclName", this.AclName);
|
||||
this.SetParamSimple(map, prefix + "HInstanceId", this.HInstanceId);
|
||||
this.SetParamSimple(map, prefix + "HInstanceAlias", this.HInstanceAlias);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/EipRsMap.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/EipRsMap.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class EipRsMap : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP实例 ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 黑石物理机实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceId")]
|
||||
public string InstanceId{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
71
TencentCloud/Bmeip/V20180625/Models/ModifyEipAclRequest.cs
Normal file
71
TencentCloud/Bmeip/V20180625/Models/ModifyEipAclRequest.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class ModifyEipAclRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// ACL 实例 ID
|
||||
/// </summary>
|
||||
[JsonProperty("AclId")]
|
||||
public string AclId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 名称
|
||||
/// </summary>
|
||||
[JsonProperty("AclName")]
|
||||
public string AclName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL 状态。0:无状态 1:有状态
|
||||
/// </summary>
|
||||
[JsonProperty("Status")]
|
||||
public long? Status{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 规则类型(in/out)。in:入站规则 out:出站规则
|
||||
/// </summary>
|
||||
[JsonProperty("Type")]
|
||||
public string Type{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ACL规则列表
|
||||
/// </summary>
|
||||
[JsonProperty("Rules")]
|
||||
public EipAclRule[] Rules{ 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 + "AclId", this.AclId);
|
||||
this.SetParamSimple(map, prefix + "AclName", this.AclName);
|
||||
this.SetParamSimple(map, prefix + "Status", this.Status);
|
||||
this.SetParamSimple(map, prefix + "Type", this.Type);
|
||||
this.SetParamArrayObj(map, prefix + "Rules.", this.Rules);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/ModifyEipAclResponse.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/ModifyEipAclResponse.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class ModifyEipAclResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class ModifyEipChargeRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// EIP计费方式,flow-流量计费;bandwidth-带宽计费
|
||||
/// </summary>
|
||||
[JsonProperty("PayMode")]
|
||||
public string PayMode{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIds")]
|
||||
public string[] EipIds{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 带宽设定值(只在带宽计费时生效)
|
||||
/// </summary>
|
||||
[JsonProperty("Bandwidth")]
|
||||
public ulong? Bandwidth{ 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 + "PayMode", this.PayMode);
|
||||
this.SetParamArraySimple(map, prefix + "EipIds.", this.EipIds);
|
||||
this.SetParamSimple(map, prefix + "Bandwidth", this.Bandwidth);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class ModifyEipChargeResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 修改计费模式的异步任务ID,可以通过查询EIP任务状态查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/ModifyEipNameRequest.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/ModifyEipNameRequest.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class ModifyEipNameRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID,可通过/v2/DescribeEip 接口返回字段中的 eipId获取
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP 实例别名
|
||||
/// </summary>
|
||||
[JsonProperty("EipName")]
|
||||
public string EipName{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "EipName", this.EipName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/ModifyEipNameResponse.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/ModifyEipNameResponse.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class ModifyEipNameResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/UnbindEipAclsRequest.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/UnbindEipAclsRequest.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindEipAclsRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 待解关联的 EIP 与 ACL列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipIdAclIdList")]
|
||||
public EipAclMap[] EipIdAclIdList{ get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// For internal usage only. DO NOT USE IT.
|
||||
/// </summary>
|
||||
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
||||
{
|
||||
this.SetParamArrayObj(map, prefix + "EipIdAclIdList.", this.EipIdAclIdList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/UnbindEipAclsResponse.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/UnbindEipAclsResponse.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindEipAclsResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
57
TencentCloud/Bmeip/V20180625/Models/UnbindHostedRequest.cs
Normal file
57
TencentCloud/Bmeip/V20180625/Models/UnbindHostedRequest.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindHostedRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 托管机器实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceId")]
|
||||
public string InstanceId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID,可通过DescribeBmEip 接口返回字段中的 eipId获取。Eip和EipId参数必须要填写一个。
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 弹性IP。Eip和EipId参数必须要填写一个。
|
||||
/// </summary>
|
||||
[JsonProperty("Eip")]
|
||||
public string Eip{ 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 + "InstanceId", this.InstanceId);
|
||||
this.SetParamSimple(map, prefix + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "Eip", this.Eip);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/UnbindHostedResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/UnbindHostedResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindHostedResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 异步任务ID,可以通过EipBmQueryTask查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public ulong? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
TencentCloud/Bmeip/V20180625/Models/UnbindRsListRequest.cs
Normal file
43
TencentCloud/Bmeip/V20180625/Models/UnbindRsListRequest.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindRsListRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 物理机绑定的EIP列表
|
||||
/// </summary>
|
||||
[JsonProperty("EipRsList")]
|
||||
public EipRsMap[] EipRsList{ get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// For internal usage only. DO NOT USE IT.
|
||||
/// </summary>
|
||||
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
||||
{
|
||||
this.SetParamArrayObj(map, prefix + "EipRsList.", this.EipRsList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/UnbindRsListResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/UnbindRsListResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindRsListResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 解绑操作的异步任务ID,可以通过查询EIP任务状态查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/UnbindRsRequest.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/UnbindRsRequest.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindRsRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物理服务器实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("InstanceId")]
|
||||
public string InstanceId{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/UnbindRsResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/UnbindRsResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindRsResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 解绑操作的异步任务ID,可以通过查询EIP任务状态查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
57
TencentCloud/Bmeip/V20180625/Models/UnbindVpcIpRequest.cs
Normal file
57
TencentCloud/Bmeip/V20180625/Models/UnbindVpcIpRequest.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindVpcIpRequest : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Eip实例ID
|
||||
/// </summary>
|
||||
[JsonProperty("EipId")]
|
||||
public string EipId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// EIP归属VpcId,例如vpc-k7j1t2x1
|
||||
/// </summary>
|
||||
[JsonProperty("VpcId")]
|
||||
public string VpcId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 绑定的VPC内IP地址
|
||||
/// </summary>
|
||||
[JsonProperty("VpcIp")]
|
||||
public string VpcIp{ 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 + "EipId", this.EipId);
|
||||
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
|
||||
this.SetParamSimple(map, prefix + "VpcIp", this.VpcIp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
50
TencentCloud/Bmeip/V20180625/Models/UnbindVpcIpResponse.cs
Normal file
50
TencentCloud/Bmeip/V20180625/Models/UnbindVpcIpResponse.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.Bmeip.V20180625.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class UnbindVpcIpResponse : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 绑定黑石物理机异步任务ID,可以通过查询EIP任务状态查询任务状态
|
||||
/// </summary>
|
||||
[JsonProperty("TaskId")]
|
||||
public long? TaskId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
||||
/// </summary>
|
||||
[JsonProperty("RequestId")]
|
||||
public string RequestId{ 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 + "TaskId", this.TaskId);
|
||||
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user