getIPSet() {
+ return ipSet;
+ }
- /**
- * 是否为backup,只有当vserver的Backup属性为1时才会有此字段,说明:
- *
- * 0:主rs 1:备rs
- */
- @SerializedName("IsBackup")
- private Integer isBackup;
+ public void setIPSet(List ipSet) {
+ this.ipSet = ipSet;
+ }
- public String getBackendId() {
- return backendId;
+ public List getVServerSet() {
+ return vServerSet;
}
- public void setBackendId(String backendId) {
- this.backendId = backendId;
+ public void setVServerSet(List vServerSet) {
+ this.vServerSet = vServerSet;
}
- public String getResourceType() {
- return resourceType;
+ public String getULBType() {
+ return ulbType;
}
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
+ public void setULBType(String ulbType) {
+ this.ulbType = ulbType;
}
- public String getResourceId() {
- return resourceId;
+ public String getIPVersion() {
+ return ipVersion;
}
- public void setResourceId(String resourceId) {
- this.resourceId = resourceId;
+ public void setIPVersion(String ipVersion) {
+ this.ipVersion = ipVersion;
}
- public String getResourceName() {
- return resourceName;
+ public String getListenType() {
+ return listenType;
}
- public void setResourceName(String resourceName) {
- this.resourceName = resourceName;
+ public void setListenType(String listenType) {
+ this.listenType = listenType;
}
- public String getSubResourceType() {
- return subResourceType;
+ public String getVPCId() {
+ return vpcId;
}
- public void setSubResourceType(String subResourceType) {
- this.subResourceType = subResourceType;
+ public void setVPCId(String vpcId) {
+ this.vpcId = vpcId;
}
- public String getSubResourceId() {
- return subResourceId;
+ public String getSubnetId() {
+ return subnetId;
}
- public void setSubResourceId(String subResourceId) {
- this.subResourceId = subResourceId;
+ public void setSubnetId(String subnetId) {
+ this.subnetId = subnetId;
}
- public String getSubResourceName() {
- return subResourceName;
+ public String getBusinessId() {
+ return businessId;
}
- public void setSubResourceName(String subResourceName) {
- this.subResourceName = subResourceName;
+ public void setBusinessId(String businessId) {
+ this.businessId = businessId;
}
public String getPrivateIP() {
@@ -694,182 +643,186 @@ public void setPrivateIP(String privateIP) {
this.privateIP = privateIP;
}
- public Integer getPort() {
- return port;
+ public List getFirewallSet() {
+ return firewallSet;
}
- public void setPort(Integer port) {
- this.port = port;
+ public void setFirewallSet(List firewallSet) {
+ this.firewallSet = firewallSet;
}
- public Integer getEnabled() {
- return enabled;
+ public Integer getEnableLog() {
+ return enableLog;
}
- public void setEnabled(Integer enabled) {
- this.enabled = enabled;
+ public void setEnableLog(Integer enableLog) {
+ this.enableLog = enableLog;
}
- public Integer getStatus() {
- return status;
+ public LoggerSet getLogSet() {
+ return logSet;
}
- public void setStatus(Integer status) {
- this.status = status;
+ public void setLogSet(LoggerSet logSet) {
+ this.logSet = logSet;
}
+ }
- public String getSubnetId() {
- return subnetId;
- }
+ public static class ULBPolicySet extends Response {
- public void setSubnetId(String subnetId) {
- this.subnetId = subnetId;
- }
+ /** 内容转发规则中域名的匹配方式。枚举值:Regular,正则;Wildcard,泛域名 */
+ @SerializedName("DomainMatchMode")
+ private String domainMatchMode;
- public Integer getIsBackup() {
- return isBackup;
- }
+ /** 内容转发Id,默认内容转发类型下为空。 */
+ @SerializedName("PolicyId")
+ private String policyId;
- public void setIsBackup(Integer isBackup) {
- this.isBackup = isBackup;
- }
- }
+ /** 内容类型,枚举值:Custom -> 客户自定义;Default -> 默认内容转发 */
+ @SerializedName("PolicyType")
+ private String policyType;
- public static class FirewallSet extends Response {
+ /** 内容转发匹配字段的类型,枚举值:Domain -> 域名;Path -> 路径; 默认内容转发类型下为空 */
+ @SerializedName("Type")
+ private String type;
- /** 防火墙名称 */
- @SerializedName("FirewallName")
- private String firewallName;
+ /** 内容转发匹配字段;默认内容转发类型下为空。 */
+ @SerializedName("Match")
+ private String match;
- /** 防火墙ID */
- @SerializedName("FirewallId")
- private String firewallId;
+ /** 内容转发优先级,范围[1,9999],数字越大优先级越高。默认内容转发规则下为0。 */
+ @SerializedName("PolicyPriority")
+ private Integer policyPriority;
- public String getFirewallName() {
- return firewallName;
- }
+ /** 所属VServerId */
+ @SerializedName("VServerId")
+ private String vServerId;
- public void setFirewallName(String firewallName) {
- this.firewallName = firewallName;
- }
+ /** 默认内容转发类型下返回当前rs总数 */
+ @SerializedName("TotalCount")
+ private Integer totalCount;
- public String getFirewallId() {
- return firewallId;
+ /** 内容转发下rs的详细信息,参考PolicyBackendSet */
+ @SerializedName("BackendSet")
+ private List backendSet;
+
+ public String getDomainMatchMode() {
+ return domainMatchMode;
}
- public void setFirewallId(String firewallId) {
- this.firewallId = firewallId;
+ public void setDomainMatchMode(String domainMatchMode) {
+ this.domainMatchMode = domainMatchMode;
}
- }
- public static class ULBSet extends Response {
+ public String getPolicyId() {
+ return policyId;
+ }
- /** 负载均衡的资源ID */
- @SerializedName("ULBId")
- private String ulbId;
+ public void setPolicyId(String policyId) {
+ this.policyId = policyId;
+ }
- /** 负载均衡的资源名称 */
- @SerializedName("Name")
- private String name;
+ public String getPolicyType() {
+ return policyType;
+ }
- /** 负载均衡的业务组名称 */
- @SerializedName("Tag")
- private String tag;
+ public void setPolicyType(String policyType) {
+ this.policyType = policyType;
+ }
- /** 负载均衡的备注 */
- @SerializedName("Remark")
- private String remark;
+ public String getType() {
+ return type;
+ }
- /** 带宽类型,枚举值为: 0,非共享带宽; 1,共享带宽 */
- @SerializedName("BandwidthType")
- private Integer bandwidthType;
+ public void setType(String type) {
+ this.type = type;
+ }
- /** 带宽 */
- @SerializedName("Bandwidth")
- private Integer bandwidth;
+ public String getMatch() {
+ return match;
+ }
- /** ULB的创建时间,格式为Unix Timestamp */
- @SerializedName("CreateTime")
- private Integer createTime;
+ public void setMatch(String match) {
+ this.match = match;
+ }
- /** ULB的详细信息列表,具体结构见下方 ULBIPSet */
- @SerializedName("IPSet")
- private List ipSet;
+ public Integer getPolicyPriority() {
+ return policyPriority;
+ }
- /** 负载均衡实例中存在的VServer实例列表,具体结构见下方 ULBVServerSet */
- @SerializedName("VServerSet")
- private List vServerSet;
+ public void setPolicyPriority(Integer policyPriority) {
+ this.policyPriority = policyPriority;
+ }
- /** ULB 的类型 */
- @SerializedName("ULBType")
- private String ulbType;
+ public String getVServerId() {
+ return vServerId;
+ }
- /** ULB ip类型,枚举值:IPv6 / IPv4 (内部测试,暂未对外开放) */
- @SerializedName("IPVersion")
- private String ipVersion;
+ public void setVServerId(String vServerId) {
+ this.vServerId = vServerId;
+ }
- /** ULB 监听器类型,枚举值:RequestProxy,请求代理; PacketsTransmit ,报文转发;Comprehensive,兼容型;Pending,未定型 */
- @SerializedName("ListenType")
- private String listenType;
+ public Integer getTotalCount() {
+ return totalCount;
+ }
- /** ULB所在的VPC的ID */
- @SerializedName("VPCId")
- private String vpcId;
+ public void setTotalCount(Integer totalCount) {
+ this.totalCount = totalCount;
+ }
- /** ULB 为 InnerMode 时,ULB 所属的子网ID,默认为空 */
- @SerializedName("SubnetId")
- private String subnetId;
+ public List getBackendSet() {
+ return backendSet;
+ }
- /** ULB 所属的业务组ID */
- @SerializedName("BusinessId")
- private String businessId;
+ public void setBackendSet(List backendSet) {
+ this.backendSet = backendSet;
+ }
+ }
- /** ULB的内网IP,当ULBType为OuterMode时,该值为空 */
- @SerializedName("PrivateIP")
- private String privateIP;
+ public static class ULBIPSet extends Response {
- /** 防火墙信息,具体结构见下方 FirewallSet */
- @SerializedName("FirewallSet")
- private List firewallSet;
+ /** 弹性IP的运营商信息,枚举值为: Bgp:BGP IP International:国际IP */
+ @SerializedName("OperatorName")
+ private String operatorName;
- /** ULB是否开启日志功能。0,关闭;1,开启 */
- @SerializedName("EnableLog")
- private Integer enableLog;
+ /** 弹性IP地址 */
+ @SerializedName("EIP")
+ private String eip;
- /** 日志功能相关信息,仅当EnableLog为true时会返回,具体结构见下方 LoggerSet */
- @SerializedName("LogSet")
- private LoggerSet logSet;
+ /** 弹性IP的ID */
+ @SerializedName("EIPId")
+ private String eipId;
- public String getULBId() {
- return ulbId;
- }
+ /** 弹性IP的带宽类型,枚举值:1 表示是共享带宽,0 普通带宽类型(暂未对外开放) */
+ @SerializedName("BandwidthType")
+ private Integer bandwidthType;
- public void setULBId(String ulbId) {
- this.ulbId = ulbId;
- }
+ /** 弹性IP的带宽值(暂未对外开放) */
+ @SerializedName("Bandwidth")
+ private Integer bandwidth;
- public String getName() {
- return name;
+ public String getOperatorName() {
+ return operatorName;
}
- public void setName(String name) {
- this.name = name;
+ public void setOperatorName(String operatorName) {
+ this.operatorName = operatorName;
}
- public String getTag() {
- return tag;
+ public String getEIP() {
+ return eip;
}
- public void setTag(String tag) {
- this.tag = tag;
+ public void setEIP(String eip) {
+ this.eip = eip;
}
- public String getRemark() {
- return remark;
+ public String getEIPId() {
+ return eipId;
}
- public void setRemark(String remark) {
- this.remark = remark;
+ public void setEIPId(String eipId) {
+ this.eipId = eipId;
}
public Integer getBandwidthType() {
@@ -887,152 +840,179 @@ public Integer getBandwidth() {
public void setBandwidth(Integer bandwidth) {
this.bandwidth = bandwidth;
}
+ }
- public Integer getCreateTime() {
- return createTime;
- }
+ public static class FirewallSet extends Response {
- public void setCreateTime(Integer createTime) {
- this.createTime = createTime;
- }
+ /** 防火墙名称 */
+ @SerializedName("FirewallName")
+ private String firewallName;
- public List getIPSet() {
- return ipSet;
- }
+ /** 防火墙ID */
+ @SerializedName("FirewallId")
+ private String firewallId;
- public void setIPSet(List ipSet) {
- this.ipSet = ipSet;
+ public String getFirewallName() {
+ return firewallName;
}
- public List getVServerSet() {
- return vServerSet;
+ public void setFirewallName(String firewallName) {
+ this.firewallName = firewallName;
}
- public void setVServerSet(List vServerSet) {
- this.vServerSet = vServerSet;
+ public String getFirewallId() {
+ return firewallId;
}
- public String getULBType() {
- return ulbType;
+ public void setFirewallId(String firewallId) {
+ this.firewallId = firewallId;
}
+ }
- public void setULBType(String ulbType) {
- this.ulbType = ulbType;
- }
+ public static class ULBSSLSet extends Response {
- public String getIPVersion() {
- return ipVersion;
- }
+ /** SSL证书的Id */
+ @SerializedName("SSLId")
+ private String sslId;
- public void setIPVersion(String ipVersion) {
- this.ipVersion = ipVersion;
- }
+ /** SSL证书的名字 */
+ @SerializedName("SSLName")
+ private String sslName;
+
+ /** SSL证书类型,暂时只有 Pem 一种类型 */
+ @SerializedName("SSLType")
+ private String sslType;
+
+ /** SSL证书的内容 */
+ @SerializedName("SSLContent")
+ private String sslContent;
+
+ /** SSL证书的创建时间 */
+ @SerializedName("CreateTime")
+ private Integer createTime;
- public String getListenType() {
- return listenType;
- }
+ /** SSL证书的HASH值 */
+ @SerializedName("HashValue")
+ private String hashValue;
- public void setListenType(String listenType) {
- this.listenType = listenType;
- }
+ /** SSL证书绑定到的对象 */
+ @SerializedName("BindedTargetSet")
+ private List bindedTargetSet;
- public String getVPCId() {
- return vpcId;
+ public String getSSLId() {
+ return sslId;
}
- public void setVPCId(String vpcId) {
- this.vpcId = vpcId;
+ public void setSSLId(String sslId) {
+ this.sslId = sslId;
}
- public String getSubnetId() {
- return subnetId;
+ public String getSSLName() {
+ return sslName;
}
- public void setSubnetId(String subnetId) {
- this.subnetId = subnetId;
+ public void setSSLName(String sslName) {
+ this.sslName = sslName;
}
- public String getBusinessId() {
- return businessId;
+ public String getSSLType() {
+ return sslType;
}
- public void setBusinessId(String businessId) {
- this.businessId = businessId;
+ public void setSSLType(String sslType) {
+ this.sslType = sslType;
}
- public String getPrivateIP() {
- return privateIP;
+ public String getSSLContent() {
+ return sslContent;
}
- public void setPrivateIP(String privateIP) {
- this.privateIP = privateIP;
+ public void setSSLContent(String sslContent) {
+ this.sslContent = sslContent;
}
- public List getFirewallSet() {
- return firewallSet;
+ public Integer getCreateTime() {
+ return createTime;
}
- public void setFirewallSet(List firewallSet) {
- this.firewallSet = firewallSet;
+ public void setCreateTime(Integer createTime) {
+ this.createTime = createTime;
}
- public Integer getEnableLog() {
- return enableLog;
+ public String getHashValue() {
+ return hashValue;
}
- public void setEnableLog(Integer enableLog) {
- this.enableLog = enableLog;
+ public void setHashValue(String hashValue) {
+ this.hashValue = hashValue;
}
- public LoggerSet getLogSet() {
- return logSet;
+ public List getBindedTargetSet() {
+ return bindedTargetSet;
}
- public void setLogSet(LoggerSet logSet) {
- this.logSet = logSet;
+ public void setBindedTargetSet(List bindedTargetSet) {
+ this.bindedTargetSet = bindedTargetSet;
}
}
- public static class PolicyBackendSet extends Response {
+ public static class ULBBackendSet extends Response {
- /** 所添加的后端资源在ULB中的对象ID,(为ULB系统中使用,与资源自身ID无关 */
+ /** 后端资源实例的Id */
@SerializedName("BackendId")
private String backendId;
- /**
- * 所添加的后端资源的类型,枚举值:UHost -> 云主机;UPM -> 物理云主机; UDHost -> 私有专区主机;UDocker ->
- * 容器;UHybrid->混合云主机;CUBE->Cube;UNI -> 虚拟网卡
- */
+ /** 资源实例的类型 */
@SerializedName("ResourceType")
private String resourceType;
- /** 后端资源的实例名称 */
+ /** 资源实例的资源Id */
+ @SerializedName("ResourceId")
+ private String resourceId;
+
+ /** 资源实例的资源名称 */
@SerializedName("ResourceName")
private String resourceName;
- /** 如果资源绑定了弹性网卡,则展示弹性网卡的资源ID */
+ /** 资源绑定的虚拟网卡实例的类型 */
+ @SerializedName("SubResourceType")
+ private String subResourceType;
+
+ /** 资源绑定的虚拟网卡实例的资源Id */
@SerializedName("SubResourceId")
private String subResourceId;
- /** 如果资源绑定了弹性网卡,则展示弹性网卡的资源名称 */
+ /** 资源绑定的虚拟网卡实例的资源名称 */
@SerializedName("SubResourceName")
private String subResourceName;
- /** "UNI"或者为空 */
- @SerializedName("SubResourceType")
- private String subResourceType;
-
- /** 后端资源的对象ID */
- @SerializedName("ObjectId")
- private String objectId;
+ /** 后端提供服务的内网IP */
+ @SerializedName("PrivateIP")
+ private String privateIP;
- /** 所添加的后端资源服务端口 */
+ /** 后端提供服务的端口 */
@SerializedName("Port")
private Integer port;
- /** 后端资源的内网IP */
- @SerializedName("PrivateIP")
- private String privateIP;
+ /** 后端提供服务的实例启用与否,枚举值:0 禁用 1 启用 */
+ @SerializedName("Enabled")
+ private Integer enabled;
+
+ /** 后端提供服务的实例运行状态,枚举值:0健康检查健康状态 1 健康检查异常 */
+ @SerializedName("Status")
+ private Integer status;
+
+ /** 后端提供服务的资源所在的子网的ID */
+ @SerializedName("SubnetId")
+ private String subnetId;
+
+ /**
+ * 是否为backup,只有当vserver的Backup属性为1时才会有此字段,说明:
+ *
+ * 0:主rs 1:备rs
+ */
+ @SerializedName("IsBackup")
+ private Integer isBackup;
public String getBackendId() {
return backendId;
@@ -1050,6 +1030,14 @@ public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
+ public String getResourceId() {
+ return resourceId;
+ }
+
+ public void setResourceId(String resourceId) {
+ this.resourceId = resourceId;
+ }
+
public String getResourceName() {
return resourceName;
}
@@ -1058,6 +1046,14 @@ public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}
+ public String getSubResourceType() {
+ return subResourceType;
+ }
+
+ public void setSubResourceType(String subResourceType) {
+ this.subResourceType = subResourceType;
+ }
+
public String getSubResourceId() {
return subResourceId;
}
@@ -1074,20 +1070,12 @@ public void setSubResourceName(String subResourceName) {
this.subResourceName = subResourceName;
}
- public String getSubResourceType() {
- return subResourceType;
- }
-
- public void setSubResourceType(String subResourceType) {
- this.subResourceType = subResourceType;
- }
-
- public String getObjectId() {
- return objectId;
+ public String getPrivateIP() {
+ return privateIP;
}
- public void setObjectId(String objectId) {
- this.objectId = objectId;
+ public void setPrivateIP(String privateIP) {
+ this.privateIP = privateIP;
}
public Integer getPort() {
@@ -1098,75 +1086,87 @@ public void setPort(Integer port) {
this.port = port;
}
- public String getPrivateIP() {
- return privateIP;
+ public Integer getEnabled() {
+ return enabled;
}
- public void setPrivateIP(String privateIP) {
- this.privateIP = privateIP;
+ public void setEnabled(Integer enabled) {
+ this.enabled = enabled;
}
- }
-
- public static class ULBIPSet extends Response {
-
- /** 弹性IP的运营商信息,枚举值为: Bgp:BGP IP International:国际IP */
- @SerializedName("OperatorName")
- private String operatorName;
- /** 弹性IP地址 */
- @SerializedName("EIP")
- private String eip;
+ public Integer getStatus() {
+ return status;
+ }
- /** 弹性IP的ID */
- @SerializedName("EIPId")
- private String eipId;
+ public void setStatus(Integer status) {
+ this.status = status;
+ }
- /** 弹性IP的带宽类型,枚举值:1 表示是共享带宽,0 普通带宽类型(暂未对外开放) */
- @SerializedName("BandwidthType")
- private Integer bandwidthType;
+ public String getSubnetId() {
+ return subnetId;
+ }
- /** 弹性IP的带宽值(暂未对外开放) */
- @SerializedName("Bandwidth")
- private Integer bandwidth;
+ public void setSubnetId(String subnetId) {
+ this.subnetId = subnetId;
+ }
- public String getOperatorName() {
- return operatorName;
+ public Integer getIsBackup() {
+ return isBackup;
}
- public void setOperatorName(String operatorName) {
- this.operatorName = operatorName;
+ public void setIsBackup(Integer isBackup) {
+ this.isBackup = isBackup;
}
+ }
- public String getEIP() {
- return eip;
+ public static class SSLBindedTargetSet extends Response {
+
+ /** SSL证书绑定到的VServer的资源ID */
+ @SerializedName("VServerId")
+ private String vServerId;
+
+ /** 对应的VServer的名字 */
+ @SerializedName("VServerName")
+ private String vServerName;
+
+ /** VServer 所属的ULB实例的资源ID */
+ @SerializedName("ULBId")
+ private String ulbId;
+
+ /** ULB实例的名称 */
+ @SerializedName("ULBName")
+ private String ulbName;
+
+ public String getVServerId() {
+ return vServerId;
}
- public void setEIP(String eip) {
- this.eip = eip;
+ public void setVServerId(String vServerId) {
+ this.vServerId = vServerId;
}
- public String getEIPId() {
- return eipId;
+ public String getVServerName() {
+ return vServerName;
}
- public void setEIPId(String eipId) {
- this.eipId = eipId;
+ public void setVServerName(String vServerName) {
+ this.vServerName = vServerName;
}
- public Integer getBandwidthType() {
- return bandwidthType;
+ public String getULBId() {
+ return ulbId;
}
- public void setBandwidthType(Integer bandwidthType) {
- this.bandwidthType = bandwidthType;
+ public void setULBId(String ulbId) {
+ this.ulbId = ulbId;
}
- public Integer getBandwidth() {
- return bandwidth;
+ public String getULBName() {
+ return ulbName;
}
- public void setBandwidth(Integer bandwidth) {
- this.bandwidth = bandwidth;
+ public void setULBName(String ulbName) {
+ this.ulbName = ulbName;
}
}
}
diff --git a/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBSimpleResponse.java b/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBSimpleResponse.java
index 6031ca40..05f37d2a 100644
--- a/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBSimpleResponse.java
+++ b/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBSimpleResponse.java
@@ -45,6 +45,33 @@ public void setDataSet(List dataSet) {
this.dataSet = dataSet;
}
+ public static class FirewallSet extends Response {
+
+ /** 防火墙名称 */
+ @SerializedName("FirewallName")
+ private String firewallName;
+
+ /** 防火墙ID */
+ @SerializedName("FirewallId")
+ private String firewallId;
+
+ public String getFirewallName() {
+ return firewallName;
+ }
+
+ public void setFirewallName(String firewallName) {
+ this.firewallName = firewallName;
+ }
+
+ public String getFirewallId() {
+ return firewallId;
+ }
+
+ public void setFirewallId(String firewallId) {
+ this.firewallId = firewallId;
+ }
+ }
+
public static class ULBIPSet extends Response {
/** 弹性IP的运营商信息,枚举值为: Bgp:BGP IP International:国际IP */
@@ -377,31 +404,4 @@ public void setTokenName(String tokenName) {
this.tokenName = tokenName;
}
}
-
- public static class FirewallSet extends Response {
-
- /** 防火墙名称 */
- @SerializedName("FirewallName")
- private String firewallName;
-
- /** 防火墙ID */
- @SerializedName("FirewallId")
- private String firewallId;
-
- public String getFirewallName() {
- return firewallName;
- }
-
- public void setFirewallName(String firewallName) {
- this.firewallName = firewallName;
- }
-
- public String getFirewallId() {
- return firewallId;
- }
-
- public void setFirewallId(String firewallId) {
- this.firewallId = firewallId;
- }
- }
}
diff --git a/ucloud-sdk-java-umem/pom.xml b/ucloud-sdk-java-umem/pom.xml
index 54441570..0e61c276 100644
--- a/ucloud-sdk-java-umem/pom.xml
+++ b/ucloud-sdk-java-umem/pom.xml
@@ -5,18 +5,18 @@
ucloud-sdk-java
cn.ucloud
- 1.0.0-release
+ 1.0.0-SNAPSHOT
4.0.0
ucloud-sdk-java-umem
- 1.0.0-release
+ 1.0.0-SNAPSHOT
cn.ucloud
ucloud-sdk-java-common
- 1.0.0-release
+ 1.0.0-SNAPSHOT
diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml
index 148e015c..a432d0d1 100644
--- a/ucloud-sdk-java-unet/pom.xml
+++ b/ucloud-sdk-java-unet/pom.xml
@@ -5,18 +5,18 @@
ucloud-sdk-java
cn.ucloud
- 1.0.0-release
+ 1.0.0-SNAPSHOT
4.0.0
ucloud-sdk-java-unet
- 1.0.0-release
+ 1.0.0-SNAPSHOT
cn.ucloud
ucloud-sdk-java-common
- 1.0.0-release
+ 1.0.0-SNAPSHOT
diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml
index 2d74a03e..1c88d817 100644
--- a/ucloud-sdk-java-uphone/pom.xml
+++ b/ucloud-sdk-java-uphone/pom.xml
@@ -5,18 +5,18 @@
ucloud-sdk-java
cn.ucloud
- 1.0.0-release
+ 1.0.0-SNAPSHOT
4.0.0
ucloud-sdk-java-uphone
- 1.0.0-release
+ 1.0.0-SNAPSHOT
cn.ucloud
ucloud-sdk-java-common
- 1.0.0-release
+ 1.0.0-SNAPSHOT
diff --git a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneDetailByAppResponse.java b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneDetailByAppResponse.java
index 30129e8f..e35ef5c8 100644
--- a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneDetailByAppResponse.java
+++ b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneDetailByAppResponse.java
@@ -45,6 +45,105 @@ public void setUPhoneDetails(List uPhoneDetails) {
this.uPhoneDetails = uPhoneDetails;
}
+ public static class AppVersionInstance extends Response {
+
+ /** 应用的唯一标识ID */
+ @SerializedName("AppId")
+ private String appId;
+
+ /** 应用版本的唯一标识ID */
+ @SerializedName("AppVersionId")
+ private String appVersionId;
+
+ /** 应用版本名。 */
+ @SerializedName("AppVersionName")
+ private String appVersionName;
+
+ /** 应用包名。 */
+ @SerializedName("PackageName")
+ private String packageName;
+
+ /** 应用版本相关的Apk文件存放的公网URL地址。 */
+ @SerializedName("URL")
+ private String url;
+
+ /** 创建时间,格式为Unix时间戳。 */
+ @SerializedName("CreateTime")
+ private Integer createTime;
+
+ /** 修改时间,格式为Unix时间戳。 */
+ @SerializedName("ModifyTime")
+ private Integer modifyTime;
+
+ /** 应用版本描述。 */
+ @SerializedName("Description")
+ private String description;
+
+ public String getAppId() {
+ return appId;
+ }
+
+ public void setAppId(String appId) {
+ this.appId = appId;
+ }
+
+ public String getAppVersionId() {
+ return appVersionId;
+ }
+
+ public void setAppVersionId(String appVersionId) {
+ this.appVersionId = appVersionId;
+ }
+
+ public String getAppVersionName() {
+ return appVersionName;
+ }
+
+ public void setAppVersionName(String appVersionName) {
+ this.appVersionName = appVersionName;
+ }
+
+ public String getPackageName() {
+ return packageName;
+ }
+
+ public void setPackageName(String packageName) {
+ this.packageName = packageName;
+ }
+
+ public String getURL() {
+ return url;
+ }
+
+ public void setURL(String url) {
+ this.url = url;
+ }
+
+ public Integer getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Integer createTime) {
+ this.createTime = createTime;
+ }
+
+ public Integer getModifyTime() {
+ return modifyTime;
+ }
+
+ public void setModifyTime(Integer modifyTime) {
+ this.modifyTime = modifyTime;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+ }
+
public static class UPhoneDetailInstance extends Response {
/** 云手机的名称,不超过65个字符。 */
@@ -252,103 +351,4 @@ public void setAppVersion(AppVersionInstance appVersion) {
this.appVersion = appVersion;
}
}
-
- public static class AppVersionInstance extends Response {
-
- /** 应用的唯一标识ID */
- @SerializedName("AppId")
- private String appId;
-
- /** 应用版本的唯一标识ID */
- @SerializedName("AppVersionId")
- private String appVersionId;
-
- /** 应用版本名。 */
- @SerializedName("AppVersionName")
- private String appVersionName;
-
- /** 应用包名。 */
- @SerializedName("PackageName")
- private String packageName;
-
- /** 应用版本相关的Apk文件存放的公网URL地址。 */
- @SerializedName("URL")
- private String url;
-
- /** 创建时间,格式为Unix时间戳。 */
- @SerializedName("CreateTime")
- private Integer createTime;
-
- /** 修改时间,格式为Unix时间戳。 */
- @SerializedName("ModifyTime")
- private Integer modifyTime;
-
- /** 应用版本描述。 */
- @SerializedName("Description")
- private String description;
-
- public String getAppId() {
- return appId;
- }
-
- public void setAppId(String appId) {
- this.appId = appId;
- }
-
- public String getAppVersionId() {
- return appVersionId;
- }
-
- public void setAppVersionId(String appVersionId) {
- this.appVersionId = appVersionId;
- }
-
- public String getAppVersionName() {
- return appVersionName;
- }
-
- public void setAppVersionName(String appVersionName) {
- this.appVersionName = appVersionName;
- }
-
- public String getPackageName() {
- return packageName;
- }
-
- public void setPackageName(String packageName) {
- this.packageName = packageName;
- }
-
- public String getURL() {
- return url;
- }
-
- public void setURL(String url) {
- this.url = url;
- }
-
- public Integer getCreateTime() {
- return createTime;
- }
-
- public void setCreateTime(Integer createTime) {
- this.createTime = createTime;
- }
-
- public Integer getModifyTime() {
- return modifyTime;
- }
-
- public void setModifyTime(Integer modifyTime) {
- this.modifyTime = modifyTime;
- }
-
- public String getDescription() {
- return description;
- }
-
- public void setDescription(String description) {
- this.description = description;
- }
- }
}
diff --git a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerModelResponse.java b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerModelResponse.java
index 6915b933..4cb52c3f 100644
--- a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerModelResponse.java
+++ b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerModelResponse.java
@@ -45,78 +45,6 @@ public void setServerModels(List serverModels) {
this.serverModels = serverModels;
}
- public static class UPhoneSpec extends Response {
-
- /** 手机规格名 */
- @SerializedName("UPhoneModelName")
- private String uPhoneModelName;
-
- /** 手机开数,即该服务器规格能生成对应手机规格的云手机个数 */
- @SerializedName("UPhoneCount")
- private Integer uPhoneCount;
-
- public String getUPhoneModelName() {
- return uPhoneModelName;
- }
-
- public void setUPhoneModelName(String uPhoneModelName) {
- this.uPhoneModelName = uPhoneModelName;
- }
-
- public Integer getUPhoneCount() {
- return uPhoneCount;
- }
-
- public void setUPhoneCount(Integer uPhoneCount) {
- this.uPhoneCount = uPhoneCount;
- }
- }
-
- public static class ServerDiskSet extends Response {
-
- /** 磁盘类型。请参考磁盘类型。 */
- @SerializedName("DiskType")
- private String diskType;
-
- /**
- * 是否是系统盘。枚举值:
- *
- * > True,是系统盘
- *
- *
> False,是数据盘(默认)。Disks数组中有且只能有一块盘是系统盘。
- */
- @SerializedName("IsBoot")
- private Boolean isBoot;
-
- /** 磁盘大小,单位: GB */
- @SerializedName("Size")
- private Integer size;
-
- public String getDiskType() {
- return diskType;
- }
-
- public void setDiskType(String diskType) {
- this.diskType = diskType;
- }
-
- public Boolean getIsBoot() {
- return isBoot;
- }
-
- public void setIsBoot(Boolean isBoot) {
- this.isBoot = isBoot;
- }
-
- public Integer getSize() {
- return size;
- }
-
- public void setSize(Integer size) {
- this.size = size;
- }
- }
-
public static class ServerModelInstance extends Response {
/** ServerModel名称 */
@@ -215,4 +143,76 @@ public void setServerModelState(String serverModelState) {
this.serverModelState = serverModelState;
}
}
+
+ public static class UPhoneSpec extends Response {
+
+ /** 手机规格名 */
+ @SerializedName("UPhoneModelName")
+ private String uPhoneModelName;
+
+ /** 手机开数,即该服务器规格能生成对应手机规格的云手机个数 */
+ @SerializedName("UPhoneCount")
+ private Integer uPhoneCount;
+
+ public String getUPhoneModelName() {
+ return uPhoneModelName;
+ }
+
+ public void setUPhoneModelName(String uPhoneModelName) {
+ this.uPhoneModelName = uPhoneModelName;
+ }
+
+ public Integer getUPhoneCount() {
+ return uPhoneCount;
+ }
+
+ public void setUPhoneCount(Integer uPhoneCount) {
+ this.uPhoneCount = uPhoneCount;
+ }
+ }
+
+ public static class ServerDiskSet extends Response {
+
+ /** 磁盘类型。请参考磁盘类型。 */
+ @SerializedName("DiskType")
+ private String diskType;
+
+ /**
+ * 是否是系统盘。枚举值:
+ *
+ *
> True,是系统盘
+ *
+ *
> False,是数据盘(默认)。Disks数组中有且只能有一块盘是系统盘。
+ */
+ @SerializedName("IsBoot")
+ private Boolean isBoot;
+
+ /** 磁盘大小,单位: GB */
+ @SerializedName("Size")
+ private Integer size;
+
+ public String getDiskType() {
+ return diskType;
+ }
+
+ public void setDiskType(String diskType) {
+ this.diskType = diskType;
+ }
+
+ public Boolean getIsBoot() {
+ return isBoot;
+ }
+
+ public void setIsBoot(Boolean isBoot) {
+ this.isBoot = isBoot;
+ }
+
+ public Integer getSize() {
+ return size;
+ }
+
+ public void setSize(Integer size) {
+ this.size = size;
+ }
+ }
}
diff --git a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerResponse.java b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerResponse.java
index 815a3d04..195e8c85 100644
--- a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerResponse.java
+++ b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneServerResponse.java
@@ -222,6 +222,51 @@ public void setUPhoneCount(Integer uPhoneCount) {
}
}
+ public static class ServerDiskSet extends Response {
+
+ /** 磁盘类型。请参考磁盘类型。 */
+ @SerializedName("DiskType")
+ private String diskType;
+
+ /**
+ * 是否是系统盘。枚举值:
+ *
+ *
> True,是系统盘
+ *
+ *
> False,是数据盘(默认)。Disks数组中有且只能有一块盘是系统盘。
+ */
+ @SerializedName("IsBoot")
+ private Boolean isBoot;
+
+ /** 磁盘大小,单位: GB */
+ @SerializedName("Size")
+ private Integer size;
+
+ public String getDiskType() {
+ return diskType;
+ }
+
+ public void setDiskType(String diskType) {
+ this.diskType = diskType;
+ }
+
+ public Boolean getIsBoot() {
+ return isBoot;
+ }
+
+ public void setIsBoot(Boolean isBoot) {
+ this.isBoot = isBoot;
+ }
+
+ public Integer getSize() {
+ return size;
+ }
+
+ public void setSize(Integer size) {
+ this.size = size;
+ }
+ }
+
public static class ServerInstance extends Response {
/** 云手机服务器的唯一标识。 */
@@ -400,49 +445,4 @@ public void setIpSet(List ipSet) {
this.ipSet = ipSet;
}
}
-
- public static class ServerDiskSet extends Response {
-
- /** 磁盘类型。请参考磁盘类型。 */
- @SerializedName("DiskType")
- private String diskType;
-
- /**
- * 是否是系统盘。枚举值:
- *
- * > True,是系统盘
- *
- *
> False,是数据盘(默认)。Disks数组中有且只能有一块盘是系统盘。
- */
- @SerializedName("IsBoot")
- private Boolean isBoot;
-
- /** 磁盘大小,单位: GB */
- @SerializedName("Size")
- private Integer size;
-
- public String getDiskType() {
- return diskType;
- }
-
- public void setDiskType(String diskType) {
- this.diskType = diskType;
- }
-
- public Boolean getIsBoot() {
- return isBoot;
- }
-
- public void setIsBoot(Boolean isBoot) {
- this.isBoot = isBoot;
- }
-
- public Integer getSize() {
- return size;
- }
-
- public void setSize(Integer size) {
- this.size = size;
- }
- }
}
diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml
index c66505ee..9d4c5cd8 100644
--- a/ucloud-sdk-java-uphost/pom.xml
+++ b/ucloud-sdk-java-uphost/pom.xml
@@ -5,18 +5,18 @@
ucloud-sdk-java
cn.ucloud
- 1.0.0-release
+ 1.0.0-SNAPSHOT
4.0.0
ucloud-sdk-java-uphost
- 1.0.0-release
+ 1.0.0-SNAPSHOT
cn.ucloud
ucloud-sdk-java-common
- 1.0.0-release
+ 1.0.0-SNAPSHOT
diff --git a/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribeBaremetalMachineTypeResponse.java b/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribeBaremetalMachineTypeResponse.java
index 6239bb76..d57a4eb5 100644
--- a/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribeBaremetalMachineTypeResponse.java
+++ b/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribeBaremetalMachineTypeResponse.java
@@ -33,6 +33,69 @@ public void setMachineTypes(List machineTypes) {
this.machineTypes = machineTypes;
}
+ public static class PHostCloudMachineTypeSet extends Response {
+
+ /** 物理云主机机型别名,全网唯一。 */
+ @SerializedName("Type")
+ private String type;
+
+ /** CPU信息 */
+ @SerializedName("CPU")
+ private PHostCPUSet cpu;
+
+ /** 内存大小,单位MB */
+ @SerializedName("Memory")
+ private Integer memory;
+
+ /** 其他组件信息 */
+ @SerializedName("Components")
+ private PHostComponentSet components;
+
+ /** 集群库存信息 */
+ @SerializedName("Clusters")
+ private List clusters;
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+ public PHostCPUSet getCPU() {
+ return cpu;
+ }
+
+ public void setCPU(PHostCPUSet cpu) {
+ this.cpu = cpu;
+ }
+
+ public Integer getMemory() {
+ return memory;
+ }
+
+ public void setMemory(Integer memory) {
+ this.memory = memory;
+ }
+
+ public PHostComponentSet getComponents() {
+ return components;
+ }
+
+ public void setComponents(PHostComponentSet components) {
+ this.components = components;
+ }
+
+ public List getClusters() {
+ return clusters;
+ }
+
+ public void setClusters(List clusters) {
+ this.clusters = clusters;
+ }
+ }
+
public static class PHostClusterSet extends Response {
/** 集群名。枚举值:千兆网络集群:1G;万兆网络集群:10G;智能网卡网络:25G; */
@@ -137,67 +200,4 @@ public void setCoreCount(Integer coreCount) {
this.coreCount = coreCount;
}
}
-
- public static class PHostCloudMachineTypeSet extends Response {
-
- /** 物理云主机机型别名,全网唯一。 */
- @SerializedName("Type")
- private String type;
-
- /** CPU信息 */
- @SerializedName("CPU")
- private PHostCPUSet cpu;
-
- /** 内存大小,单位MB */
- @SerializedName("Memory")
- private Integer memory;
-
- /** 其他组件信息 */
- @SerializedName("Components")
- private PHostComponentSet components;
-
- /** 集群库存信息 */
- @SerializedName("Clusters")
- private List clusters;
-
- public String getType() {
- return type;
- }
-
- public void setType(String type) {
- this.type = type;
- }
-
- public PHostCPUSet getCPU() {
- return cpu;
- }
-
- public void setCPU(PHostCPUSet cpu) {
- this.cpu = cpu;
- }
-
- public Integer getMemory() {
- return memory;
- }
-
- public void setMemory(Integer memory) {
- this.memory = memory;
- }
-
- public PHostComponentSet getComponents() {
- return components;
- }
-
- public void setComponents(PHostComponentSet components) {
- this.components = components;
- }
-
- public List getClusters() {
- return clusters;
- }
-
- public void setClusters(List clusters) {
- this.clusters = clusters;
- }
- }
}
diff --git a/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostMachineTypeResponse.java b/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostMachineTypeResponse.java
index cac14dcc..ed2f177a 100644
--- a/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostMachineTypeResponse.java
+++ b/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostMachineTypeResponse.java
@@ -111,33 +111,6 @@ public void setStockStatus(String stockStatus) {
}
}
- public static class PHostComponentSet extends Response {
-
- /** 组件名称 */
- @SerializedName("Name")
- private String name;
-
- /** 组件数量 */
- @SerializedName("Count")
- private Integer count;
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public Integer getCount() {
- return count;
- }
-
- public void setCount(Integer count) {
- this.count = count;
- }
- }
-
public static class PHostDiskSet extends Response {
/** 单盘大小,单位GB */
@@ -287,4 +260,31 @@ public void setRaidSupported(String raidSupported) {
this.raidSupported = raidSupported;
}
}
+
+ public static class PHostComponentSet extends Response {
+
+ /** 组件名称 */
+ @SerializedName("Name")
+ private String name;
+
+ /** 组件数量 */
+ @SerializedName("Count")
+ private Integer count;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public Integer getCount() {
+ return count;
+ }
+
+ public void setCount(Integer count) {
+ this.count = count;
+ }
+ }
}
diff --git a/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostResponse.java b/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostResponse.java
index 91f68dbe..09c80a67 100644
--- a/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostResponse.java
+++ b/ucloud-sdk-java-uphost/src/main/java/cn/ucloud/uphost/models/DescribePHostResponse.java
@@ -45,156 +45,6 @@ public void setPHostSet(List pHostSet) {
this.pHostSet = pHostSet;
}
- public static class PHostDescDiskSet extends Response {
-
- /** 单盘大小,单位GB */
- @SerializedName("Space")
- private Integer space;
-
- /** 磁盘数量 */
- @SerializedName("Count")
- private Integer count;
-
- /** 磁盘属性 */
- @SerializedName("Type")
- private String type;
-
- /** 磁盘名称,sys/data */
- @SerializedName("Name")
- private String name;
-
- /** 磁盘IO性能,单位MB/s(待废弃) */
- @SerializedName("IOCap")
- private Integer ioCap;
-
- /** 裸金属机型参数:磁盘盘符 */
- @SerializedName("Drive")
- private String drive;
-
- /** 裸金属机型参数:磁盘ID */
- @SerializedName("DiskId")
- private String diskId;
-
- /** 裸金属机型参数:是否是启动盘。True/False */
- @SerializedName("IsBoot")
- private String isBoot;
-
- public Integer getSpace() {
- return space;
- }
-
- public void setSpace(Integer space) {
- this.space = space;
- }
-
- public Integer getCount() {
- return count;
- }
-
- public void setCount(Integer count) {
- this.count = count;
- }
-
- public String getType() {
- return type;
- }
-
- public void setType(String type) {
- this.type = type;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public Integer getIOCap() {
- return ioCap;
- }
-
- public void setIOCap(Integer ioCap) {
- this.ioCap = ioCap;
- }
-
- public String getDrive() {
- return drive;
- }
-
- public void setDrive(String drive) {
- this.drive = drive;
- }
-
- public String getDiskId() {
- return diskId;
- }
-
- public void setDiskId(String diskId) {
- this.diskId = diskId;
- }
-
- public String getIsBoot() {
- return isBoot;
- }
-
- public void setIsBoot(String isBoot) {
- this.isBoot = isBoot;
- }
- }
-
- public static class PHostCPUSet extends Response {
-
- /** CPU型号 */
- @SerializedName("Model")
- private String model;
-
- /** CPU主频 */
- @SerializedName("Frequence")
- private Double frequence;
-
- /** CPU个数 */
- @SerializedName("Count")
- private Integer count;
-
- /** CPU核数 */
- @SerializedName("CoreCount")
- private Integer coreCount;
-
- public String getModel() {
- return model;
- }
-
- public void setModel(String model) {
- this.model = model;
- }
-
- public Double getFrequence() {
- return frequence;
- }
-
- public void setFrequence(Double frequence) {
- this.frequence = frequence;
- }
-
- public Integer getCount() {
- return count;
- }
-
- public void setCount(Integer count) {
- this.count = count;
- }
-
- public Integer getCoreCount() {
- return coreCount;
- }
-
- public void setCoreCount(Integer coreCount) {
- this.coreCount = coreCount;
- }
- }
-
public static class PHostSet extends Response {
/** 可用区,参见 [可用区列表](../summary/regionlist.html) */
@@ -587,4 +437,154 @@ public void setVPCId(String vpcId) {
this.vpcId = vpcId;
}
}
+
+ public static class PHostDescDiskSet extends Response {
+
+ /** 单盘大小,单位GB */
+ @SerializedName("Space")
+ private Integer space;
+
+ /** 磁盘数量 */
+ @SerializedName("Count")
+ private Integer count;
+
+ /** 磁盘属性 */
+ @SerializedName("Type")
+ private String type;
+
+ /** 磁盘名称,sys/data */
+ @SerializedName("Name")
+ private String name;
+
+ /** 磁盘IO性能,单位MB/s(待废弃) */
+ @SerializedName("IOCap")
+ private Integer ioCap;
+
+ /** 裸金属机型参数:磁盘盘符 */
+ @SerializedName("Drive")
+ private String drive;
+
+ /** 裸金属机型参数:磁盘ID */
+ @SerializedName("DiskId")
+ private String diskId;
+
+ /** 裸金属机型参数:是否是启动盘。True/False */
+ @SerializedName("IsBoot")
+ private String isBoot;
+
+ public Integer getSpace() {
+ return space;
+ }
+
+ public void setSpace(Integer space) {
+ this.space = space;
+ }
+
+ public Integer getCount() {
+ return count;
+ }
+
+ public void setCount(Integer count) {
+ this.count = count;
+ }
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public Integer getIOCap() {
+ return ioCap;
+ }
+
+ public void setIOCap(Integer ioCap) {
+ this.ioCap = ioCap;
+ }
+
+ public String getDrive() {
+ return drive;
+ }
+
+ public void setDrive(String drive) {
+ this.drive = drive;
+ }
+
+ public String getDiskId() {
+ return diskId;
+ }
+
+ public void setDiskId(String diskId) {
+ this.diskId = diskId;
+ }
+
+ public String getIsBoot() {
+ return isBoot;
+ }
+
+ public void setIsBoot(String isBoot) {
+ this.isBoot = isBoot;
+ }
+ }
+
+ public static class PHostCPUSet extends Response {
+
+ /** CPU型号 */
+ @SerializedName("Model")
+ private String model;
+
+ /** CPU主频 */
+ @SerializedName("Frequence")
+ private Double frequence;
+
+ /** CPU个数 */
+ @SerializedName("Count")
+ private Integer count;
+
+ /** CPU核数 */
+ @SerializedName("CoreCount")
+ private Integer coreCount;
+
+ public String getModel() {
+ return model;
+ }
+
+ public void setModel(String model) {
+ this.model = model;
+ }
+
+ public Double getFrequence() {
+ return frequence;
+ }
+
+ public void setFrequence(Double frequence) {
+ this.frequence = frequence;
+ }
+
+ public Integer getCount() {
+ return count;
+ }
+
+ public void setCount(Integer count) {
+ this.count = count;
+ }
+
+ public Integer getCoreCount() {
+ return coreCount;
+ }
+
+ public void setCoreCount(Integer coreCount) {
+ this.coreCount = coreCount;
+ }
+ }
}
diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml
index 40f6caee..37e5fd37 100644
--- a/ucloud-sdk-java-usms/pom.xml
+++ b/ucloud-sdk-java-usms/pom.xml
@@ -5,18 +5,18 @@
ucloud-sdk-java
cn.ucloud
- 1.0.0-release
+ 1.0.0-SNAPSHOT
4.0.0
ucloud-sdk-java-usms
- 1.0.0-release
+ 1.0.0-SNAPSHOT
cn.ucloud
ucloud-sdk-java-common
- 1.0.0-release
+ 1.0.0-SNAPSHOT
diff --git a/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/GetUSMSSendReceiptResponse.java b/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/GetUSMSSendReceiptResponse.java
index 9310942d..d061c859 100644
--- a/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/GetUSMSSendReceiptResponse.java
+++ b/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/GetUSMSSendReceiptResponse.java
@@ -33,6 +33,33 @@ public void setData(List data) {
this.data = data;
}
+ public static class ReceiptPerSession extends Response {
+
+ /** 发送短信时返回的SessionNo */
+ @SerializedName("SessionNo")
+ private String sessionNo;
+
+ /** 每个手机号的短信回执信息集合 */
+ @SerializedName("ReceiptSet")
+ private List receiptSet;
+
+ public String getSessionNo() {
+ return sessionNo;
+ }
+
+ public void setSessionNo(String sessionNo) {
+ this.sessionNo = sessionNo;
+ }
+
+ public List getReceiptSet() {
+ return receiptSet;
+ }
+
+ public void setReceiptSet(List receiptSet) {
+ this.receiptSet = receiptSet;
+ }
+ }
+
public static class ReceiptPerPhone extends Response {
/** 手机号码 */
@@ -122,31 +149,4 @@ public void setUserId(String userId) {
this.userId = userId;
}
}
-
- public static class ReceiptPerSession extends Response {
-
- /** 发送短信时返回的SessionNo */
- @SerializedName("SessionNo")
- private String sessionNo;
-
- /** 每个手机号的短信回执信息集合 */
- @SerializedName("ReceiptSet")
- private List receiptSet;
-
- public String getSessionNo() {
- return sessionNo;
- }
-
- public void setSessionNo(String sessionNo) {
- this.sessionNo = sessionNo;
- }
-
- public List getReceiptSet() {
- return receiptSet;
- }
-
- public void setReceiptSet(List receiptSet) {
- this.receiptSet = receiptSet;
- }
- }
}
diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml
index f3fd9885..6212af56 100644
--- a/ucloud-sdk-java-uvms/pom.xml
+++ b/ucloud-sdk-java-uvms/pom.xml
@@ -5,18 +5,18 @@