com.volcengine.model.acep.v20231030.ResultPortMappingRuleDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.acep.v20231030;
import com.alibaba.fastjson.JSON;
/**
* ResultPortMappingRuleDetail
*/
@lombok.Data
public final class ResultPortMappingRuleDetail {
/**
* 运营商信息。取值如下:
*
*
*
* - 1:移动
*
* - 2:联通
*
* - 4:电信
*
* - 7:三条运营商线路各开一个
*
* - 8:BGP
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Isp")
private Integer isp;
/**
* 创建时间。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CreateAt")
private Long createAt;
/**
* 端口映射的协议类型,取值如下:
*
*
*
* - `tcp`:TCP 协议类型。
*
* - `udp`:UDP 协议类型。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Protocol")
private String protocol;
/**
* 方向类型。取值如下:
*
*
*
* - Inbound:入向
*
* - Bidirectional:双向
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Direction")
private String direction;
/**
* 业务 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ProductId")
private String productId;
/**
* 已绑定实例数。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TotalPods")
private Integer totalPods;
/**
* 源端口号。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SourcePort")
private Integer sourcePort;
/**
* 更新时间。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UpdateTime")
private Long updateTime;
/**
* 资源所在的物理区域,包含以下取值:
*
*
*
* - `inner`:中国大陆
*
* - `cn-hongkong-pop`:中国香港
*/
@com.alibaba.fastjson.annotation.JSONField(name = "VolcRegion")
private String volcRegion;
/**
* 端口映射规则 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PortMappingRuleId")
private String portMappingRuleId;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy