diskSet) {
+ this.diskSet = diskSet;
+ }
+
+ public String getNodeId() {
+ return nodeId;
+ }
+
+ public void setNodeId(String nodeId) {
+ this.nodeId = nodeId;
+ }
+
+ public String getOsName() {
+ return osName;
+ }
+
+ public void setOsName(String osName) {
+ this.osName = osName;
+ }
+
+ public Integer getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Integer createTime) {
+ this.createTime = createTime;
+ }
+
+ public Integer getExpireTime() {
+ return expireTime;
+ }
+
+ public void setExpireTime(Integer expireTime) {
+ this.expireTime = expireTime;
+ }
+
+ public String getState() {
+ return state;
+ }
+
+ public void setState(String state) {
+ this.state = state;
+ }
+
+ public String getNodeType() {
+ return nodeType;
+ }
+
+ public void setNodeType(String nodeType) {
+ this.nodeType = nodeType;
+ }
+ }
}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java
index 87ebb095..8f9b4bb0 100644
--- a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java
@@ -45,6 +45,21 @@ public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
+ public static class KubeProxy extends Response {
+
+ /** KubeProxy模式,枚举值为[ipvs,iptables] */
+ @SerializedName("Mode")
+ private String mode;
+
+ public String getMode() {
+ return mode;
+ }
+
+ public void setMode(String mode) {
+ this.mode = mode;
+ }
+ }
+
public static class UHostIPSet extends Response {
/** 国际: Internation,BGP: Bgp,内网: Private */
@@ -377,19 +392,4 @@ public void setGPU(Integer gpu) {
this.gpu = gpu;
}
}
-
- public static class KubeProxy extends Response {
-
- /** KubeProxy模式,枚举值为[ipvs,iptables] */
- @SerializedName("Mode")
- private String mode;
-
- public String getMode() {
- return mode;
- }
-
- public void setMode(String mode) {
- this.mode = mode;
- }
- }
}
diff --git a/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBResponse.java b/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBResponse.java
index 0b711f6d..14256830 100644
--- a/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBResponse.java
+++ b/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeULBResponse.java
@@ -159,281 +159,153 @@ public void setPrivateIP(String privateIP) {
}
}
- public static class ULBVServerSet extends Response {
-
- /**
- * 健康检查类型,枚举值:Port -> 端口检查;Path -> 路径检查;Ping -> Ping探测, Customize -> UDP检查
- *
- * 请求代理型默认值为Port,其中TCP协议仅支持Port,其他协议支持Port和Path;
- * 报文转发型TCP协议仅支持Port,UDP协议支持Ping、Port和Customize
- */
- @SerializedName("MonitorType")
- private String monitorType;
-
- /** 负载均衡实例的Id */
- @SerializedName("ULBId")
- private String ulbId;
-
- /** 根据MonitorType确认; 当MonitorType为Port时,此字段无意义。当MonitorType为Path时,代表HTTP检查域名 */
- @SerializedName("Domain")
- private String domain;
-
- /** 根据MonitorType确认; 当MonitorType为Port时,此字段无意义。当MonitorType为Path时,代表HTTP检查路径 */
- @SerializedName("Path")
- private String path;
-
- /** 根据MonitorType确认; 当MonitorType为Customize时,此字段有意义,代表UDP检查发出的请求报文 */
- @SerializedName("RequestMsg")
- private String requestMsg;
-
- /** 根据MonitorType确认; 当MonitorType为Customize时,此字段有意义,代表UDP检查请求应收到的响应报文 */
- @SerializedName("ResponseMsg")
- private String responseMsg;
-
- /** VServer实例的Id */
- @SerializedName("VServerId")
- private String vServerId;
-
- /** VServer实例的名字 */
- @SerializedName("VServerName")
- private String vServerName;
-
- /** VServer实例的协议。 枚举值为:HTTP,TCP,UDP,HTTPS。 */
- @SerializedName("Protocol")
- private String protocol;
-
- /** VServer服务端口 */
- @SerializedName("FrontendPort")
- private Integer frontendPort;
-
- /**
- * VServer负载均衡的模式,枚举值:Roundrobin -> 轮询;Source -> 源地址;ConsistentHash -> 一致性哈希;SourcePort ->
- * 源地址(计算端口);ConsistentHashPort -> 一致性哈希(计算端口)。
- */
- @SerializedName("Method")
- private String method;
-
- /** VServer会话保持方式。枚举值为: None -> 关闭会话保持; ServerInsert -> 自动生成; UserDefined -> 用户自定义。 */
- @SerializedName("PersistenceType")
- private String persistenceType;
-
- /** 根据PersistenceType确定: None或ServerInsert,此字段为空; UserDefined,此字段展示用户自定义会话string。 */
- @SerializedName("PersistenceInfo")
- private String persistenceInfo;
-
- /** 空闲连接的回收时间,单位:秒。 */
- @SerializedName("ClientTimeout")
- private Integer clientTimeout;
-
- /** VServer的运行状态。枚举值: 0 -> rs全部运行正常;1 -> rs全部运行异常;2 -> rs部分运行异常。 */
- @SerializedName("Status")
- private Integer status;
-
- /** VServer绑定的SSL证书信息,具体结构见下方 ULBSSLSet。 */
- @SerializedName("SSLSet")
- private List sslSet;
-
- /** 后端资源信息列表,具体结构见下方 ULBBackendSet */
- @SerializedName("BackendSet")
- private List backendSet;
-
- /** 监听器类型,枚举值为: RequestProxy -> 请求代理;PacketsTransmit -> 报文转发 */
- @SerializedName("ListenType")
- private String listenType;
-
- /** 内容转发信息列表,具体结构见下方 ULBPolicySet */
- @SerializedName("PolicySet")
- private List policySet;
-
- public String getMonitorType() {
- return monitorType;
- }
-
- public void setMonitorType(String monitorType) {
- this.monitorType = monitorType;
- }
-
- public String getULBId() {
- return ulbId;
- }
-
- public void setULBId(String ulbId) {
- this.ulbId = ulbId;
- }
-
- public String getDomain() {
- return domain;
- }
-
- public void setDomain(String domain) {
- this.domain = domain;
- }
-
- public String getPath() {
- return path;
- }
+ public static class LoggerSet extends Response {
- public void setPath(String path) {
- this.path = path;
- }
+ /** ulb日志上传的bucket */
+ @SerializedName("BucketName")
+ private String bucketName;
- public String getRequestMsg() {
- return requestMsg;
- }
+ /** 上传到bucket使用的token的tokenid */
+ @SerializedName("TokenID")
+ private String tokenID;
- public void setRequestMsg(String requestMsg) {
- this.requestMsg = requestMsg;
- }
+ /** bucket的token名称 */
+ @SerializedName("TokenName")
+ private String tokenName;
- public String getResponseMsg() {
- return responseMsg;
+ public String getBucketName() {
+ return bucketName;
}
- public void setResponseMsg(String responseMsg) {
- this.responseMsg = responseMsg;
+ public void setBucketName(String bucketName) {
+ this.bucketName = bucketName;
}
- public String getVServerId() {
- return vServerId;
+ public String getTokenID() {
+ return tokenID;
}
- public void setVServerId(String vServerId) {
- this.vServerId = vServerId;
+ public void setTokenID(String tokenID) {
+ this.tokenID = tokenID;
}
- public String getVServerName() {
- return vServerName;
+ public String getTokenName() {
+ return tokenName;
}
- public void setVServerName(String vServerName) {
- this.vServerName = vServerName;
+ public void setTokenName(String tokenName) {
+ this.tokenName = tokenName;
}
+ }
- public String getProtocol() {
- return protocol;
- }
+ public static class ULBPolicySet extends Response {
- public void setProtocol(String protocol) {
- this.protocol = protocol;
- }
+ /** 内容转发规则中域名的匹配方式。枚举值:Regular,正则;Wildcard,泛域名 */
+ @SerializedName("DomainMatchMode")
+ private String domainMatchMode;
- public Integer getFrontendPort() {
- return frontendPort;
- }
+ /** 内容转发Id,默认内容转发类型下为空。 */
+ @SerializedName("PolicyId")
+ private String policyId;
- public void setFrontendPort(Integer frontendPort) {
- this.frontendPort = frontendPort;
- }
+ /** 内容类型,枚举值:Custom -> 客户自定义;Default -> 默认内容转发 */
+ @SerializedName("PolicyType")
+ private String policyType;
- public String getMethod() {
- return method;
- }
+ /** 内容转发匹配字段的类型,枚举值:Domain -> 域名;Path -> 路径; 默认内容转发类型下为空 */
+ @SerializedName("Type")
+ private String type;
- public void setMethod(String method) {
- this.method = method;
- }
+ /** 内容转发匹配字段;默认内容转发类型下为空。 */
+ @SerializedName("Match")
+ private String match;
- public String getPersistenceType() {
- return persistenceType;
- }
+ /** 内容转发优先级,范围[1,9999],数字越大优先级越高。默认内容转发规则下为0。 */
+ @SerializedName("PolicyPriority")
+ private Integer policyPriority;
- public void setPersistenceType(String persistenceType) {
- this.persistenceType = persistenceType;
- }
+ /** 所属VServerId */
+ @SerializedName("VServerId")
+ private String vServerId;
- public String getPersistenceInfo() {
- return persistenceInfo;
- }
+ /** 默认内容转发类型下返回当前rs总数 */
+ @SerializedName("TotalCount")
+ private Integer totalCount;
- public void setPersistenceInfo(String persistenceInfo) {
- this.persistenceInfo = persistenceInfo;
- }
+ /** 内容转发下rs的详细信息,参考PolicyBackendSet */
+ @SerializedName("BackendSet")
+ private List backendSet;
- public Integer getClientTimeout() {
- return clientTimeout;
+ public String getDomainMatchMode() {
+ return domainMatchMode;
}
- public void setClientTimeout(Integer clientTimeout) {
- this.clientTimeout = clientTimeout;
+ public void setDomainMatchMode(String domainMatchMode) {
+ this.domainMatchMode = domainMatchMode;
}
- public Integer getStatus() {
- return status;
+ public String getPolicyId() {
+ return policyId;
}
- public void setStatus(Integer status) {
- this.status = status;
+ public void setPolicyId(String policyId) {
+ this.policyId = policyId;
}
- public List getSSLSet() {
- return sslSet;
+ public String getPolicyType() {
+ return policyType;
}
- public void setSSLSet(List sslSet) {
- this.sslSet = sslSet;
+ public void setPolicyType(String policyType) {
+ this.policyType = policyType;
}
- public List getBackendSet() {
- return backendSet;
+ public String getType() {
+ return type;
}
- public void setBackendSet(List backendSet) {
- this.backendSet = backendSet;
+ public void setType(String type) {
+ this.type = type;
}
- public String getListenType() {
- return listenType;
+ public String getMatch() {
+ return match;
}
- public void setListenType(String listenType) {
- this.listenType = listenType;
+ public void setMatch(String match) {
+ this.match = match;
}
- public List getPolicySet() {
- return policySet;
+ public Integer getPolicyPriority() {
+ return policyPriority;
}
- public void setPolicySet(List policySet) {
- this.policySet = policySet;
+ public void setPolicyPriority(Integer policyPriority) {
+ this.policyPriority = policyPriority;
}
- }
- public static class LoggerSet extends Response {
-
- /** ulb日志上传的bucket */
- @SerializedName("BucketName")
- private String bucketName;
-
- /** 上传到bucket使用的token的tokenid */
- @SerializedName("TokenID")
- private String tokenID;
-
- /** bucket的token名称 */
- @SerializedName("TokenName")
- private String tokenName;
-
- public String getBucketName() {
- return bucketName;
+ public String getVServerId() {
+ return vServerId;
}
- public void setBucketName(String bucketName) {
- this.bucketName = bucketName;
+ public void setVServerId(String vServerId) {
+ this.vServerId = vServerId;
}
- public String getTokenID() {
- return tokenID;
+ public Integer getTotalCount() {
+ return totalCount;
}
- public void setTokenID(String tokenID) {
- this.tokenID = tokenID;
+ public void setTotalCount(Integer totalCount) {
+ this.totalCount = totalCount;
}
- public String getTokenName() {
- return tokenName;
+ public List getBackendSet() {
+ return backendSet;
}
- public void setTokenName(String tokenName) {
- this.tokenName = tokenName;
+ public void setBackendSet(List backendSet) {
+ this.backendSet = backendSet;
}
}
@@ -668,91 +540,23 @@ public void setLogSet(LoggerSet logSet) {
}
}
- public static class ULBPolicySet extends Response {
-
- /** 内容转发规则中域名的匹配方式。枚举值:Regular,正则;Wildcard,泛域名 */
- @SerializedName("DomainMatchMode")
- private String domainMatchMode;
-
- /** 内容转发Id,默认内容转发类型下为空。 */
- @SerializedName("PolicyId")
- private String policyId;
-
- /** 内容类型,枚举值:Custom -> 客户自定义;Default -> 默认内容转发 */
- @SerializedName("PolicyType")
- private String policyType;
-
- /** 内容转发匹配字段的类型,枚举值:Domain -> 域名;Path -> 路径; 默认内容转发类型下为空 */
- @SerializedName("Type")
- private String type;
-
- /** 内容转发匹配字段;默认内容转发类型下为空。 */
- @SerializedName("Match")
- private String match;
-
- /** 内容转发优先级,范围[1,9999],数字越大优先级越高。默认内容转发规则下为0。 */
- @SerializedName("PolicyPriority")
- private Integer policyPriority;
+ public static class SSLBindedTargetSet extends Response {
- /** 所属VServerId */
+ /** SSL证书绑定到的VServer的资源ID */
@SerializedName("VServerId")
private String vServerId;
- /** 默认内容转发类型下返回当前rs总数 */
- @SerializedName("TotalCount")
- private Integer totalCount;
-
- /** 内容转发下rs的详细信息,参考PolicyBackendSet */
- @SerializedName("BackendSet")
- private List backendSet;
-
- public String getDomainMatchMode() {
- return domainMatchMode;
- }
-
- public void setDomainMatchMode(String domainMatchMode) {
- this.domainMatchMode = domainMatchMode;
- }
-
- public String getPolicyId() {
- return policyId;
- }
-
- public void setPolicyId(String policyId) {
- this.policyId = policyId;
- }
-
- public String getPolicyType() {
- return policyType;
- }
-
- public void setPolicyType(String policyType) {
- this.policyType = policyType;
- }
-
- public String getType() {
- return type;
- }
-
- public void setType(String type) {
- this.type = type;
- }
-
- public String getMatch() {
- return match;
- }
-
- public void setMatch(String match) {
- this.match = match;
- }
+ /** 对应的VServer的名字 */
+ @SerializedName("VServerName")
+ private String vServerName;
- public Integer getPolicyPriority() {
- return policyPriority;
- }
+ /** VServer 所属的ULB实例的资源ID */
+ @SerializedName("ULBId")
+ private String ulbId;
- public void setPolicyPriority(Integer policyPriority) {
- this.policyPriority = policyPriority;
- }
+ /** ULB实例的名称 */
+ @SerializedName("ULBName")
+ private String ulbName;
public String getVServerId() {
return vServerId;
@@ -762,20 +566,28 @@ public void setVServerId(String vServerId) {
this.vServerId = vServerId;
}
- public Integer getTotalCount() {
- return totalCount;
+ public String getVServerName() {
+ return vServerName;
}
- public void setTotalCount(Integer totalCount) {
- this.totalCount = totalCount;
+ public void setVServerName(String vServerName) {
+ this.vServerName = vServerName;
}
- public List getBackendSet() {
- return backendSet;
+ public String getULBId() {
+ return ulbId;
}
- public void setBackendSet(List backendSet) {
- this.backendSet = backendSet;
+ public void setULBId(String ulbId) {
+ this.ulbId = ulbId;
+ }
+
+ public String getULBName() {
+ return ulbName;
+ }
+
+ public void setULBName(String ulbName) {
+ this.ulbName = ulbName;
}
}
@@ -842,117 +654,242 @@ public void setBandwidth(Integer bandwidth) {
}
}
- public static class FirewallSet extends Response {
+ public static class ULBVServerSet extends Response {
+
+ /**
+ * 健康检查类型,枚举值:Port -> 端口检查;Path -> 路径检查;Ping -> Ping探测, Customize -> UDP检查
+ *
+ * 请求代理型默认值为Port,其中TCP协议仅支持Port,其他协议支持Port和Path;
+ * 报文转发型TCP协议仅支持Port,UDP协议支持Ping、Port和Customize
+ */
+ @SerializedName("MonitorType")
+ private String monitorType;
+
+ /** 负载均衡实例的Id */
+ @SerializedName("ULBId")
+ private String ulbId;
+
+ /** 根据MonitorType确认; 当MonitorType为Port时,此字段无意义。当MonitorType为Path时,代表HTTP检查域名 */
+ @SerializedName("Domain")
+ private String domain;
+
+ /** 根据MonitorType确认; 当MonitorType为Port时,此字段无意义。当MonitorType为Path时,代表HTTP检查路径 */
+ @SerializedName("Path")
+ private String path;
+
+ /** 根据MonitorType确认; 当MonitorType为Customize时,此字段有意义,代表UDP检查发出的请求报文 */
+ @SerializedName("RequestMsg")
+ private String requestMsg;
+
+ /** 根据MonitorType确认; 当MonitorType为Customize时,此字段有意义,代表UDP检查请求应收到的响应报文 */
+ @SerializedName("ResponseMsg")
+ private String responseMsg;
+
+ /** VServer实例的Id */
+ @SerializedName("VServerId")
+ private String vServerId;
+
+ /** VServer实例的名字 */
+ @SerializedName("VServerName")
+ private String vServerName;
+
+ /** VServer实例的协议。 枚举值为:HTTP,TCP,UDP,HTTPS。 */
+ @SerializedName("Protocol")
+ private String protocol;
+
+ /** VServer服务端口 */
+ @SerializedName("FrontendPort")
+ private Integer frontendPort;
+
+ /**
+ * VServer负载均衡的模式,枚举值:Roundrobin -> 轮询;Source -> 源地址;ConsistentHash -> 一致性哈希;SourcePort ->
+ * 源地址(计算端口);ConsistentHashPort -> 一致性哈希(计算端口)。
+ */
+ @SerializedName("Method")
+ private String method;
+
+ /** VServer会话保持方式。枚举值为: None -> 关闭会话保持; ServerInsert -> 自动生成; UserDefined -> 用户自定义。 */
+ @SerializedName("PersistenceType")
+ private String persistenceType;
+
+ /** 根据PersistenceType确定: None或ServerInsert,此字段为空; UserDefined,此字段展示用户自定义会话string。 */
+ @SerializedName("PersistenceInfo")
+ private String persistenceInfo;
+
+ /** 空闲连接的回收时间,单位:秒。 */
+ @SerializedName("ClientTimeout")
+ private Integer clientTimeout;
+
+ /** VServer的运行状态。枚举值: 0 -> rs全部运行正常;1 -> rs全部运行异常;2 -> rs部分运行异常。 */
+ @SerializedName("Status")
+ private Integer status;
+
+ /** VServer绑定的SSL证书信息,具体结构见下方 ULBSSLSet。 */
+ @SerializedName("SSLSet")
+ private List sslSet;
+
+ /** 后端资源信息列表,具体结构见下方 ULBBackendSet */
+ @SerializedName("BackendSet")
+ private List backendSet;
+
+ /** 监听器类型,枚举值为: RequestProxy -> 请求代理;PacketsTransmit -> 报文转发 */
+ @SerializedName("ListenType")
+ private String listenType;
+
+ /** 内容转发信息列表,具体结构见下方 ULBPolicySet */
+ @SerializedName("PolicySet")
+ private List policySet;
+
+ public String getMonitorType() {
+ return monitorType;
+ }
+
+ public void setMonitorType(String monitorType) {
+ this.monitorType = monitorType;
+ }
+
+ public String getULBId() {
+ return ulbId;
+ }
+
+ public void setULBId(String ulbId) {
+ this.ulbId = ulbId;
+ }
+
+ public String getDomain() {
+ return domain;
+ }
+
+ public void setDomain(String domain) {
+ this.domain = domain;
+ }
+
+ public String getPath() {
+ return path;
+ }
+
+ public void setPath(String path) {
+ this.path = path;
+ }
+
+ public String getRequestMsg() {
+ return requestMsg;
+ }
+
+ public void setRequestMsg(String requestMsg) {
+ this.requestMsg = requestMsg;
+ }
- /** 防火墙名称 */
- @SerializedName("FirewallName")
- private String firewallName;
+ public String getResponseMsg() {
+ return responseMsg;
+ }
- /** 防火墙ID */
- @SerializedName("FirewallId")
- private String firewallId;
+ public void setResponseMsg(String responseMsg) {
+ this.responseMsg = responseMsg;
+ }
- public String getFirewallName() {
- return firewallName;
+ public String getVServerId() {
+ return vServerId;
}
- public void setFirewallName(String firewallName) {
- this.firewallName = firewallName;
+ public void setVServerId(String vServerId) {
+ this.vServerId = vServerId;
}
- public String getFirewallId() {
- return firewallId;
+ public String getVServerName() {
+ return vServerName;
}
- public void setFirewallId(String firewallId) {
- this.firewallId = firewallId;
+ public void setVServerName(String vServerName) {
+ this.vServerName = vServerName;
}
- }
- public static class ULBSSLSet extends Response {
+ public String getProtocol() {
+ return protocol;
+ }
- /** SSL证书的Id */
- @SerializedName("SSLId")
- private String sslId;
+ public void setProtocol(String protocol) {
+ this.protocol = protocol;
+ }
- /** SSL证书的名字 */
- @SerializedName("SSLName")
- private String sslName;
+ public Integer getFrontendPort() {
+ return frontendPort;
+ }
- /** SSL证书类型,暂时只有 Pem 一种类型 */
- @SerializedName("SSLType")
- private String sslType;
+ public void setFrontendPort(Integer frontendPort) {
+ this.frontendPort = frontendPort;
+ }
- /** SSL证书的内容 */
- @SerializedName("SSLContent")
- private String sslContent;
+ public String getMethod() {
+ return method;
+ }
- /** SSL证书的创建时间 */
- @SerializedName("CreateTime")
- private Integer createTime;
+ public void setMethod(String method) {
+ this.method = method;
+ }
- /** SSL证书的HASH值 */
- @SerializedName("HashValue")
- private String hashValue;
+ public String getPersistenceType() {
+ return persistenceType;
+ }
- /** SSL证书绑定到的对象 */
- @SerializedName("BindedTargetSet")
- private List bindedTargetSet;
+ public void setPersistenceType(String persistenceType) {
+ this.persistenceType = persistenceType;
+ }
- public String getSSLId() {
- return sslId;
+ public String getPersistenceInfo() {
+ return persistenceInfo;
}
- public void setSSLId(String sslId) {
- this.sslId = sslId;
+ public void setPersistenceInfo(String persistenceInfo) {
+ this.persistenceInfo = persistenceInfo;
}
- public String getSSLName() {
- return sslName;
+ public Integer getClientTimeout() {
+ return clientTimeout;
}
- public void setSSLName(String sslName) {
- this.sslName = sslName;
+ public void setClientTimeout(Integer clientTimeout) {
+ this.clientTimeout = clientTimeout;
}
- public String getSSLType() {
- return sslType;
+ public Integer getStatus() {
+ return status;
}
- public void setSSLType(String sslType) {
- this.sslType = sslType;
+ public void setStatus(Integer status) {
+ this.status = status;
}
- public String getSSLContent() {
- return sslContent;
+ public List getSSLSet() {
+ return sslSet;
}
- public void setSSLContent(String sslContent) {
- this.sslContent = sslContent;
+ public void setSSLSet(List sslSet) {
+ this.sslSet = sslSet;
}
- public Integer getCreateTime() {
- return createTime;
+ public List getBackendSet() {
+ return backendSet;
}
- public void setCreateTime(Integer createTime) {
- this.createTime = createTime;
+ public void setBackendSet(List backendSet) {
+ this.backendSet = backendSet;
}
- public String getHashValue() {
- return hashValue;
+ public String getListenType() {
+ return listenType;
}
- public void setHashValue(String hashValue) {
- this.hashValue = hashValue;
+ public void setListenType(String listenType) {
+ this.listenType = listenType;
}
- public List getBindedTargetSet() {
- return bindedTargetSet;
+ public List getPolicySet() {
+ return policySet;
}
- public void setBindedTargetSet(List bindedTargetSet) {
- this.bindedTargetSet = bindedTargetSet;
+ public void setPolicySet(List policySet) {
+ this.policySet = policySet;
}
}
@@ -1119,54 +1056,117 @@ public void setIsBackup(Integer isBackup) {
}
}
- public static class SSLBindedTargetSet extends Response {
+ public static class ULBSSLSet extends Response {
- /** SSL证书绑定到的VServer的资源ID */
- @SerializedName("VServerId")
- private String vServerId;
+ /** SSL证书的Id */
+ @SerializedName("SSLId")
+ private String sslId;
- /** 对应的VServer的名字 */
- @SerializedName("VServerName")
- private String vServerName;
+ /** SSL证书的名字 */
+ @SerializedName("SSLName")
+ private String sslName;
- /** VServer 所属的ULB实例的资源ID */
- @SerializedName("ULBId")
- private String ulbId;
+ /** SSL证书类型,暂时只有 Pem 一种类型 */
+ @SerializedName("SSLType")
+ private String sslType;
- /** ULB实例的名称 */
- @SerializedName("ULBName")
- private String ulbName;
+ /** SSL证书的内容 */
+ @SerializedName("SSLContent")
+ private String sslContent;
- public String getVServerId() {
- return vServerId;
+ /** SSL证书的创建时间 */
+ @SerializedName("CreateTime")
+ private Integer createTime;
+
+ /** SSL证书的HASH值 */
+ @SerializedName("HashValue")
+ private String hashValue;
+
+ /** SSL证书绑定到的对象 */
+ @SerializedName("BindedTargetSet")
+ private List bindedTargetSet;
+
+ public String getSSLId() {
+ return sslId;
}
- public void setVServerId(String vServerId) {
- this.vServerId = vServerId;
+ public void setSSLId(String sslId) {
+ this.sslId = sslId;
}
- public String getVServerName() {
- return vServerName;
+ public String getSSLName() {
+ return sslName;
}
- public void setVServerName(String vServerName) {
- this.vServerName = vServerName;
+ public void setSSLName(String sslName) {
+ this.sslName = sslName;
}
- public String getULBId() {
- return ulbId;
+ public String getSSLType() {
+ return sslType;
}
- public void setULBId(String ulbId) {
- this.ulbId = ulbId;
+ public void setSSLType(String sslType) {
+ this.sslType = sslType;
}
- public String getULBName() {
- return ulbName;
+ public String getSSLContent() {
+ return sslContent;
}
- public void setULBName(String ulbName) {
- this.ulbName = ulbName;
+ public void setSSLContent(String sslContent) {
+ this.sslContent = sslContent;
+ }
+
+ public Integer getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Integer createTime) {
+ this.createTime = createTime;
+ }
+
+ public String getHashValue() {
+ return hashValue;
+ }
+
+ public void setHashValue(String hashValue) {
+ this.hashValue = hashValue;
+ }
+
+ public List getBindedTargetSet() {
+ return bindedTargetSet;
+ }
+
+ public void setBindedTargetSet(List bindedTargetSet) {
+ this.bindedTargetSet = bindedTargetSet;
+ }
+ }
+
+ 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-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 05f37d2a..c4e8cd5a 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,96 +45,6 @@ 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 */
- @SerializedName("OperatorName")
- private String operatorName;
-
- /** 弹性IP地址 */
- @SerializedName("EIP")
- private String eip;
-
- /** 弹性IP的ID */
- @SerializedName("EIPId")
- private String eipId;
-
- /** 弹性IP的带宽类型,枚举值:1 表示是共享带宽,0 普通带宽类型(暂未对外开放) */
- @SerializedName("BandwidthType")
- private Integer bandwidthType;
-
- /** 弹性IP的带宽值(暂未对外开放) */
- @SerializedName("Bandwidth")
- private Integer bandwidth;
-
- public String getOperatorName() {
- return operatorName;
- }
-
- public void setOperatorName(String operatorName) {
- this.operatorName = operatorName;
- }
-
- public String getEIP() {
- return eip;
- }
-
- public void setEIP(String eip) {
- this.eip = eip;
- }
-
- public String getEIPId() {
- return eipId;
- }
-
- public void setEIPId(String eipId) {
- this.eipId = eipId;
- }
-
- public Integer getBandwidthType() {
- return bandwidthType;
- }
-
- public void setBandwidthType(Integer bandwidthType) {
- this.bandwidthType = bandwidthType;
- }
-
- public Integer getBandwidth() {
- return bandwidth;
- }
-
- public void setBandwidth(Integer bandwidth) {
- this.bandwidth = bandwidth;
- }
- }
-
public static class ULBSimpleSet extends Response {
/** ULB 监听器类型,枚举值:RequestProxy,请求代理; PacketsTransmit ,报文转发;Comprehensive,兼容型;Pending,未定型 */
@@ -404,4 +314,94 @@ 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;
+ }
+ }
+
+ public static class ULBIPSet extends Response {
+
+ /** 弹性IP的运营商信息,枚举值为: Bgp:BGP IP International:国际IP */
+ @SerializedName("OperatorName")
+ private String operatorName;
+
+ /** 弹性IP地址 */
+ @SerializedName("EIP")
+ private String eip;
+
+ /** 弹性IP的ID */
+ @SerializedName("EIPId")
+ private String eipId;
+
+ /** 弹性IP的带宽类型,枚举值:1 表示是共享带宽,0 普通带宽类型(暂未对外开放) */
+ @SerializedName("BandwidthType")
+ private Integer bandwidthType;
+
+ /** 弹性IP的带宽值(暂未对外开放) */
+ @SerializedName("Bandwidth")
+ private Integer bandwidth;
+
+ public String getOperatorName() {
+ return operatorName;
+ }
+
+ public void setOperatorName(String operatorName) {
+ this.operatorName = operatorName;
+ }
+
+ public String getEIP() {
+ return eip;
+ }
+
+ public void setEIP(String eip) {
+ this.eip = eip;
+ }
+
+ public String getEIPId() {
+ return eipId;
+ }
+
+ public void setEIPId(String eipId) {
+ this.eipId = eipId;
+ }
+
+ public Integer getBandwidthType() {
+ return bandwidthType;
+ }
+
+ public void setBandwidthType(Integer bandwidthType) {
+ this.bandwidthType = bandwidthType;
+ }
+
+ public Integer getBandwidth() {
+ return bandwidth;
+ }
+
+ public void setBandwidth(Integer bandwidth) {
+ this.bandwidth = bandwidth;
+ }
+ }
}
diff --git a/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeVServerResponse.java b/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeVServerResponse.java
index 0f654ab9..1686fe6d 100644
--- a/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeVServerResponse.java
+++ b/ucloud-sdk-java-ulb/src/main/java/cn/ucloud/ulb/models/DescribeVServerResponse.java
@@ -45,6 +45,120 @@ public void setDataSet(List dataSet) {
this.dataSet = dataSet;
}
+ public static class PolicyBackendSet extends Response {
+
+ /** 所添加的后端资源在ULB中的对象ID,(为ULB系统中使用,与资源自身ID无关 */
+ @SerializedName("BackendId")
+ private String backendId;
+
+ /**
+ * 所添加的后端资源的类型,枚举值:UHost -> 云主机;UPM -> 物理云主机; UDHost -> 私有专区主机;UDocker ->
+ * 容器;UHybrid->混合云主机;CUBE->Cube;UNI -> 虚拟网卡
+ */
+ @SerializedName("ResourceType")
+ private String resourceType;
+
+ /** 后端资源的实例名称 */
+ @SerializedName("ResourceName")
+ private String resourceName;
+
+ /** 如果资源绑定了弹性网卡,则展示弹性网卡的资源ID */
+ @SerializedName("SubResourceId")
+ private String subResourceId;
+
+ /** 如果资源绑定了弹性网卡,则展示弹性网卡的资源名称 */
+ @SerializedName("SubResourceName")
+ private String subResourceName;
+
+ /** "UNI"或者为空 */
+ @SerializedName("SubResourceType")
+ private String subResourceType;
+
+ /** 后端资源的对象ID */
+ @SerializedName("ObjectId")
+ private String objectId;
+
+ /** 所添加的后端资源服务端口 */
+ @SerializedName("Port")
+ private Integer port;
+
+ /** 后端资源的内网IP */
+ @SerializedName("PrivateIP")
+ private String privateIP;
+
+ public String getBackendId() {
+ return backendId;
+ }
+
+ public void setBackendId(String backendId) {
+ this.backendId = backendId;
+ }
+
+ public String getResourceType() {
+ return resourceType;
+ }
+
+ public void setResourceType(String resourceType) {
+ this.resourceType = resourceType;
+ }
+
+ public String getResourceName() {
+ return resourceName;
+ }
+
+ public void setResourceName(String resourceName) {
+ this.resourceName = resourceName;
+ }
+
+ public String getSubResourceId() {
+ return subResourceId;
+ }
+
+ public void setSubResourceId(String subResourceId) {
+ this.subResourceId = subResourceId;
+ }
+
+ public String getSubResourceName() {
+ return subResourceName;
+ }
+
+ 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 void setObjectId(String objectId) {
+ this.objectId = objectId;
+ }
+
+ public Integer getPort() {
+ return port;
+ }
+
+ public void setPort(Integer port) {
+ this.port = port;
+ }
+
+ public String getPrivateIP() {
+ return privateIP;
+ }
+
+ public void setPrivateIP(String privateIP) {
+ this.privateIP = privateIP;
+ }
+ }
+
public static class ULBVServerSet extends Response {
/**
@@ -371,6 +485,57 @@ public void setBindedTargetSet(List bindedTargetSet) {
}
}
+ 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 setVServerId(String vServerId) {
+ this.vServerId = vServerId;
+ }
+
+ public String getVServerName() {
+ return vServerName;
+ }
+
+ public void setVServerName(String vServerName) {
+ this.vServerName = vServerName;
+ }
+
+ public String getULBId() {
+ return ulbId;
+ }
+
+ public void setULBId(String ulbId) {
+ this.ulbId = ulbId;
+ }
+
+ public String getULBName() {
+ return ulbName;
+ }
+
+ public void setULBName(String ulbName) {
+ this.ulbName = ulbName;
+ }
+ }
+
public static class ULBPolicySet extends Response {
/** 内容转发规则中域名的匹配方式。枚举值:Regular,正则;Wildcard,泛域名 */
@@ -482,171 +647,6 @@ public void setBackendSet(List backendSet) {
}
}
- 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 setVServerId(String vServerId) {
- this.vServerId = vServerId;
- }
-
- public String getVServerName() {
- return vServerName;
- }
-
- public void setVServerName(String vServerName) {
- this.vServerName = vServerName;
- }
-
- public String getULBId() {
- return ulbId;
- }
-
- public void setULBId(String ulbId) {
- this.ulbId = ulbId;
- }
-
- public String getULBName() {
- return ulbName;
- }
-
- public void setULBName(String ulbName) {
- this.ulbName = ulbName;
- }
- }
-
- public static class PolicyBackendSet extends Response {
-
- /** 所添加的后端资源在ULB中的对象ID,(为ULB系统中使用,与资源自身ID无关 */
- @SerializedName("BackendId")
- private String backendId;
-
- /**
- * 所添加的后端资源的类型,枚举值:UHost -> 云主机;UPM -> 物理云主机; UDHost -> 私有专区主机;UDocker ->
- * 容器;UHybrid->混合云主机;CUBE->Cube;UNI -> 虚拟网卡
- */
- @SerializedName("ResourceType")
- private String resourceType;
-
- /** 后端资源的实例名称 */
- @SerializedName("ResourceName")
- private String resourceName;
-
- /** 如果资源绑定了弹性网卡,则展示弹性网卡的资源ID */
- @SerializedName("SubResourceId")
- private String subResourceId;
-
- /** 如果资源绑定了弹性网卡,则展示弹性网卡的资源名称 */
- @SerializedName("SubResourceName")
- private String subResourceName;
-
- /** "UNI"或者为空 */
- @SerializedName("SubResourceType")
- private String subResourceType;
-
- /** 后端资源的对象ID */
- @SerializedName("ObjectId")
- private String objectId;
-
- /** 所添加的后端资源服务端口 */
- @SerializedName("Port")
- private Integer port;
-
- /** 后端资源的内网IP */
- @SerializedName("PrivateIP")
- private String privateIP;
-
- public String getBackendId() {
- return backendId;
- }
-
- public void setBackendId(String backendId) {
- this.backendId = backendId;
- }
-
- public String getResourceType() {
- return resourceType;
- }
-
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
-
- public String getResourceName() {
- return resourceName;
- }
-
- public void setResourceName(String resourceName) {
- this.resourceName = resourceName;
- }
-
- public String getSubResourceId() {
- return subResourceId;
- }
-
- public void setSubResourceId(String subResourceId) {
- this.subResourceId = subResourceId;
- }
-
- public String getSubResourceName() {
- return subResourceName;
- }
-
- 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 void setObjectId(String objectId) {
- this.objectId = objectId;
- }
-
- public Integer getPort() {
- return port;
- }
-
- public void setPort(Integer port) {
- this.port = port;
- }
-
- public String getPrivateIP() {
- return privateIP;
- }
-
- public void setPrivateIP(String privateIP) {
- this.privateIP = privateIP;
- }
- }
-
public static class ULBBackendSet extends Response {
/** 后端资源实例的Id */
diff --git a/ucloud-sdk-java-unet/src/main/java/cn/ucloud/unet/models/DescribeShareBandwidthResponse.java b/ucloud-sdk-java-unet/src/main/java/cn/ucloud/unet/models/DescribeShareBandwidthResponse.java
index 5e811b82..34cb219d 100644
--- a/ucloud-sdk-java-unet/src/main/java/cn/ucloud/unet/models/DescribeShareBandwidthResponse.java
+++ b/ucloud-sdk-java-unet/src/main/java/cn/ucloud/unet/models/DescribeShareBandwidthResponse.java
@@ -45,6 +45,33 @@ public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
+ public static class EIPAddrSet extends Response {
+
+ /** 运营商信息, 枚举值为: BGP: BGP; International: 国际. */
+ @SerializedName("OperatorName")
+ private String operatorName;
+
+ /** 弹性IP地址 */
+ @SerializedName("IP")
+ private String ip;
+
+ public String getOperatorName() {
+ return operatorName;
+ }
+
+ public void setOperatorName(String operatorName) {
+ this.operatorName = operatorName;
+ }
+
+ public String getIP() {
+ return ip;
+ }
+
+ public void setIP(String ip) {
+ this.ip = ip;
+ }
+ }
+
public static class UnetShareBandwidthSet extends Response {
/** 共享带宽类型 */
@@ -182,31 +209,4 @@ public void setEIPId(String eipId) {
this.eipId = eipId;
}
}
-
- public static class EIPAddrSet extends Response {
-
- /** 运营商信息, 枚举值为: BGP: BGP; International: 国际. */
- @SerializedName("OperatorName")
- private String operatorName;
-
- /** 弹性IP地址 */
- @SerializedName("IP")
- private String ip;
-
- public String getOperatorName() {
- return operatorName;
- }
-
- public void setOperatorName(String operatorName) {
- this.operatorName = operatorName;
- }
-
- public String getIP() {
- return ip;
- }
-
- public void setIP(String ip) {
- this.ip = ip;
- }
- }
}
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 e35ef5c8..30129e8f 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,105 +45,6 @@ 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个字符。 */
@@ -351,4 +252,103 @@ 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/DescribeUPhoneJobResponse.java b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneJobResponse.java
index 53fef35b..eb5fab4c 100644
--- a/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneJobResponse.java
+++ b/ucloud-sdk-java-uphone/src/main/java/cn/ucloud/uphone/models/DescribeUPhoneJobResponse.java
@@ -45,58 +45,46 @@ public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
- public static class Job extends Response {
-
- /** Job的唯一标识Id */
- @SerializedName("JobId")
- private String jobId;
+ public static class Task extends Response {
- /** Job创建时间,格式为Unix时间戳。 */
- @SerializedName("CreateTime")
- private Integer createTime;
+ /** Task的唯一标识 */
+ @SerializedName("TaskId")
+ private String taskId;
- /** Job处理开始时间,格式为Unix时间戳。 */
+ /** 任务处理开始时间,格式为Unix时间戳。 */
@SerializedName("BeginTime")
private Integer beginTime;
- /** Job处理结束时间,格式为Unix时间戳。 */
+ /** 任务处理结束时间,格式为Unix时间戳。 */
@SerializedName("EndTime")
private Integer endTime;
- /** 任务状态 等待中:PENDING 运行中:RUNNING 成功:SUCCESS 部分成功:PARTIAL_SUCCESS 失败:FAILED */
+ /** 任务状态 等待中:PENDING 运行中:RUNNING 成功:SUCCESS 失败:FAILED */
@SerializedName("State")
private String state;
- /** Job类型,仅支持INSTALL_APP、UNINSTALL_APP、RUN_ASYNC_COMMAND。 */
- @SerializedName("JobType")
- private String jobType;
+ /** Task错误信息 */
+ @SerializedName("ErrorMsg")
+ private String errorMsg;
- /** Task信息,详情见数据结构Task(如果State为PENDING,此字段为空) */
- @SerializedName("Tasks")
- private List tasks;
+ /** 异步任务执行结果 */
+ @SerializedName("ExecuteMsg")
+ private String executeMsg;
- /** 安装/卸载Job相关的应用版本唯一标识 */
+ /** 云手机的唯一标识,云手机相关任务包含此字段。 */
+ @SerializedName("UPhoneId")
+ private String uPhoneId;
+
+ /** 安装/卸载任务相关的应用版本唯一标识ID */
@SerializedName("AppVersionId")
private String appVersionId;
- /** 此Job相关的云手机唯一标识 */
- @SerializedName("UPhoneIds")
- private List uPhoneIds;
-
- public String getJobId() {
- return jobId;
- }
-
- public void setJobId(String jobId) {
- this.jobId = jobId;
- }
-
- public Integer getCreateTime() {
- return createTime;
+ public String getTaskId() {
+ return taskId;
}
- public void setCreateTime(Integer createTime) {
- this.createTime = createTime;
+ public void setTaskId(String taskId) {
+ this.taskId = taskId;
}
public Integer getBeginTime() {
@@ -123,79 +111,91 @@ public void setState(String state) {
this.state = state;
}
- public String getJobType() {
- return jobType;
+ public String getErrorMsg() {
+ return errorMsg;
}
- public void setJobType(String jobType) {
- this.jobType = jobType;
+ public void setErrorMsg(String errorMsg) {
+ this.errorMsg = errorMsg;
}
- public List getTasks() {
- return tasks;
+ public String getExecuteMsg() {
+ return executeMsg;
}
- public void setTasks(List tasks) {
- this.tasks = tasks;
+ public void setExecuteMsg(String executeMsg) {
+ this.executeMsg = executeMsg;
}
- public String getAppVersionId() {
- return appVersionId;
+ public String getUPhoneId() {
+ return uPhoneId;
}
- public void setAppVersionId(String appVersionId) {
- this.appVersionId = appVersionId;
+ public void setUPhoneId(String uPhoneId) {
+ this.uPhoneId = uPhoneId;
}
- public List getUPhoneIds() {
- return uPhoneIds;
+ public String getAppVersionId() {
+ return appVersionId;
}
- public void setUPhoneIds(List uPhoneIds) {
- this.uPhoneIds = uPhoneIds;
+ public void setAppVersionId(String appVersionId) {
+ this.appVersionId = appVersionId;
}
}
- public static class Task extends Response {
+ public static class Job extends Response {
- /** Task的唯一标识 */
- @SerializedName("TaskId")
- private String taskId;
+ /** Job的唯一标识Id */
+ @SerializedName("JobId")
+ private String jobId;
- /** 任务处理开始时间,格式为Unix时间戳。 */
+ /** Job创建时间,格式为Unix时间戳。 */
+ @SerializedName("CreateTime")
+ private Integer createTime;
+
+ /** Job处理开始时间,格式为Unix时间戳。 */
@SerializedName("BeginTime")
private Integer beginTime;
- /** 任务处理结束时间,格式为Unix时间戳。 */
+ /** Job处理结束时间,格式为Unix时间戳。 */
@SerializedName("EndTime")
private Integer endTime;
- /** 任务状态 等待中:PENDING 运行中:RUNNING 成功:SUCCESS 失败:FAILED */
+ /** 任务状态 等待中:PENDING 运行中:RUNNING 成功:SUCCESS 部分成功:PARTIAL_SUCCESS 失败:FAILED */
@SerializedName("State")
private String state;
- /** Task错误信息 */
- @SerializedName("ErrorMsg")
- private String errorMsg;
-
- /** 异步任务执行结果 */
- @SerializedName("ExecuteMsg")
- private String executeMsg;
+ /** Job类型,仅支持INSTALL_APP、UNINSTALL_APP、RUN_ASYNC_COMMAND。 */
+ @SerializedName("JobType")
+ private String jobType;
- /** 云手机的唯一标识,云手机相关任务包含此字段。 */
- @SerializedName("UPhoneId")
- private String uPhoneId;
+ /** Task信息,详情见数据结构Task(如果State为PENDING,此字段为空) */
+ @SerializedName("Tasks")
+ private List tasks;
- /** 安装/卸载任务相关的应用版本唯一标识ID */
+ /** 安装/卸载Job相关的应用版本唯一标识 */
@SerializedName("AppVersionId")
private String appVersionId;
- public String getTaskId() {
- return taskId;
+ /** 此Job相关的云手机唯一标识 */
+ @SerializedName("UPhoneIds")
+ private List uPhoneIds;
+
+ public String getJobId() {
+ return jobId;
}
- public void setTaskId(String taskId) {
- this.taskId = taskId;
+ public void setJobId(String jobId) {
+ this.jobId = jobId;
+ }
+
+ public Integer getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Integer createTime) {
+ this.createTime = createTime;
}
public Integer getBeginTime() {
@@ -222,28 +222,20 @@ public void setState(String state) {
this.state = state;
}
- public String getErrorMsg() {
- return errorMsg;
- }
-
- public void setErrorMsg(String errorMsg) {
- this.errorMsg = errorMsg;
- }
-
- public String getExecuteMsg() {
- return executeMsg;
+ public String getJobType() {
+ return jobType;
}
- public void setExecuteMsg(String executeMsg) {
- this.executeMsg = executeMsg;
+ public void setJobType(String jobType) {
+ this.jobType = jobType;
}
- public String getUPhoneId() {
- return uPhoneId;
+ public List getTasks() {
+ return tasks;
}
- public void setUPhoneId(String uPhoneId) {
- this.uPhoneId = uPhoneId;
+ public void setTasks(List tasks) {
+ this.tasks = tasks;
}
public String getAppVersionId() {
@@ -253,5 +245,13 @@ public String getAppVersionId() {
public void setAppVersionId(String appVersionId) {
this.appVersionId = appVersionId;
}
+
+ public List getUPhoneIds() {
+ return uPhoneIds;
+ }
+
+ public void setUPhoneIds(List uPhoneIds) {
+ this.uPhoneIds = uPhoneIds;
+ }
}
}
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 195e8c85..c04d101f 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
@@ -45,6 +45,51 @@ public void setServers(List servers) {
this.servers = servers;
}
+ 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 IpSet extends Response {
/** IP地址 */
@@ -222,51 +267,6 @@ 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 {
/** 云手机服务器的唯一标识。 */
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 d57a4eb5..8c19c74c 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,57 @@ public void setMachineTypes(List machineTypes) {
this.machineTypes = machineTypes;
}
+ 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 PHostCloudMachineTypeSet extends Response {
/** 物理云主机机型别名,全网唯一。 */
@@ -149,55 +200,4 @@ public void setCount(Integer count) {
this.count = count;
}
}
-
- 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-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 ed2f177a..be6ba04d 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
@@ -33,38 +33,34 @@ public void setMachineTypes(List machineTypes) {
this.machineTypes = machineTypes;
}
- public static class PHostCPUSet extends Response {
-
- /** CPU型号 */
- @SerializedName("Model")
- private String model;
+ public static class PHostDiskSet extends Response {
- /** CPU主频 */
- @SerializedName("Frequence")
- private Double frequence;
+ /** 单盘大小,单位GB */
+ @SerializedName("Space")
+ private Integer space;
- /** CPU个数 */
+ /** 磁盘数量 */
@SerializedName("Count")
private Integer count;
- /** CPU核数 */
- @SerializedName("CoreCount")
- private Integer coreCount;
+ /** 磁盘属性 */
+ @SerializedName("Type")
+ private String type;
- public String getModel() {
- return model;
- }
+ /** 磁盘名称,sys/data */
+ @SerializedName("Name")
+ private String name;
- public void setModel(String model) {
- this.model = model;
- }
+ /** 磁盘IO性能,单位MB/s(待废弃) */
+ @SerializedName("IOCap")
+ private Integer ioCap;
- public Double getFrequence() {
- return frequence;
+ public Integer getSpace() {
+ return space;
}
- public void setFrequence(Double frequence) {
- this.frequence = frequence;
+ public void setSpace(Integer space) {
+ this.space = space;
}
public Integer getCount() {
@@ -75,12 +71,28 @@ public void setCount(Integer count) {
this.count = count;
}
- public Integer getCoreCount() {
- return coreCount;
+ public String getType() {
+ return type;
}
- public void setCoreCount(Integer coreCount) {
- this.coreCount = coreCount;
+ 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;
}
}
@@ -111,34 +123,38 @@ public void setStockStatus(String stockStatus) {
}
}
- public static class PHostDiskSet extends Response {
+ public static class PHostCPUSet extends Response {
- /** 单盘大小,单位GB */
- @SerializedName("Space")
- private Integer space;
+ /** CPU型号 */
+ @SerializedName("Model")
+ private String model;
- /** 磁盘数量 */
+ /** CPU主频 */
+ @SerializedName("Frequence")
+ private Double frequence;
+
+ /** CPU个数 */
@SerializedName("Count")
private Integer count;
- /** 磁盘属性 */
- @SerializedName("Type")
- private String type;
+ /** CPU核数 */
+ @SerializedName("CoreCount")
+ private Integer coreCount;
- /** 磁盘名称,sys/data */
- @SerializedName("Name")
- private String name;
+ public String getModel() {
+ return model;
+ }
- /** 磁盘IO性能,单位MB/s(待废弃) */
- @SerializedName("IOCap")
- private Integer ioCap;
+ public void setModel(String model) {
+ this.model = model;
+ }
- public Integer getSpace() {
- return space;
+ public Double getFrequence() {
+ return frequence;
}
- public void setSpace(Integer space) {
- this.space = space;
+ public void setFrequence(Double frequence) {
+ this.frequence = frequence;
}
public Integer getCount() {
@@ -149,28 +165,12 @@ 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 Integer getCoreCount() {
+ return coreCount;
}
- public void setIOCap(Integer ioCap) {
- this.ioCap = ioCap;
+ public void setCoreCount(Integer coreCount) {
+ this.coreCount = coreCount;
}
}
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 09c80a67..91f68dbe 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,6 +45,156 @@ 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) */
@@ -437,154 +587,4 @@ 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/src/main/java/cn/ucloud/usms/models/SendBatchUSMSMessageResponse.java b/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/SendBatchUSMSMessageResponse.java
index 389057bf..d07eec2d 100644
--- a/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/SendBatchUSMSMessageResponse.java
+++ b/ucloud-sdk-java-usms/src/main/java/cn/ucloud/usms/models/SendBatchUSMSMessageResponse.java
@@ -69,57 +69,6 @@ public void setFailContent(List