Skip to content

Commit

Permalink
Merge branch 'mainrelease' into 'master'
Browse files Browse the repository at this point in the history
Mainrelease

See merge request iaasng/volcengine-java-sdk!143
  • Loading branch information
修杰 committed Apr 11, 2024
2 parents 93f2ce4 + 6ed7e14 commit b667143
Show file tree
Hide file tree
Showing 133 changed files with 11,323 additions and 325 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>volcengine-java-sdk-bom</artifactId>
<version>0.1.104</version>
<version>0.1.105</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -70,12 +70,12 @@
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>volcengine-java-sdk-vpc</artifactId>
<version>0.1.104</version>
<version>0.1.105</version>
</dependency>
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>volcengine-java-sdk-ecs</artifactId>
<version>0.1.104</version>
<version>0.1.105</version>
</dependency>
</dependencies>
```
Expand Down
4 changes: 2 additions & 2 deletions meta.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"lasted": "0.1.104",
"meta_commit": "8ff49b704a7c10574720fbd5b8e4724682a152b6"
"lasted": "0.1.105",
"meta_commit": "8f86397ab7fcd8bc8b8558b00adb516aac0cc89f"
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.volcengine</groupId>
<artifactId>volcengine-java-sdk</artifactId>
<packaging>pom</packaging>
<version>0.1.104</version>
<version>0.1.105</version>
<name>volcengine-java-sdk</name>
<url>https://open.volcengineapi.com</url>
<description>The Java SDK For Volcengine</description>
Expand Down
2 changes: 1 addition & 1 deletion volcengine-java-sdk-alb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>volcengine-java-sdk</artifactId>
<groupId>com.volcengine</groupId>
<version>0.1.104</version>
<version>0.1.105</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,15 @@ public class CreateListenerRequest {
@SerializedName("CACertificateId")
private String caCertificateId = null;

@SerializedName("CertCenterCertificateId")
private String certCenterCertificateId = null;

@SerializedName("CertificateId")
private String certificateId = null;

@SerializedName("CertificateSource")
private String certificateSource = null;

@SerializedName("Description")
private String description = null;

Expand Down Expand Up @@ -74,6 +80,9 @@ public class CreateListenerRequest {
@SerializedName("Protocol")
private String protocol = null;

@SerializedName("ProxyProtocolDisabled")
private String proxyProtocolDisabled = null;

@SerializedName("ServerGroupId")
private String serverGroupId = null;

Expand Down Expand Up @@ -157,6 +166,24 @@ public void setCaCertificateId(String caCertificateId) {
this.caCertificateId = caCertificateId;
}

public CreateListenerRequest certCenterCertificateId(String certCenterCertificateId) {
this.certCenterCertificateId = certCenterCertificateId;
return this;
}

/**
* Get certCenterCertificateId
* @return certCenterCertificateId
**/
@Schema(description = "")
public String getCertCenterCertificateId() {
return certCenterCertificateId;
}

public void setCertCenterCertificateId(String certCenterCertificateId) {
this.certCenterCertificateId = certCenterCertificateId;
}

public CreateListenerRequest certificateId(String certificateId) {
this.certificateId = certificateId;
return this;
Expand All @@ -175,6 +202,24 @@ public void setCertificateId(String certificateId) {
this.certificateId = certificateId;
}

public CreateListenerRequest certificateSource(String certificateSource) {
this.certificateSource = certificateSource;
return this;
}

/**
* Get certificateSource
* @return certificateSource
**/
@Schema(description = "")
public String getCertificateSource() {
return certificateSource;
}

public void setCertificateSource(String certificateSource) {
this.certificateSource = certificateSource;
}

public CreateListenerRequest description(String description) {
this.description = description;
return this;
Expand Down Expand Up @@ -349,6 +394,24 @@ public void setProtocol(String protocol) {
this.protocol = protocol;
}

public CreateListenerRequest proxyProtocolDisabled(String proxyProtocolDisabled) {
this.proxyProtocolDisabled = proxyProtocolDisabled;
return this;
}

/**
* Get proxyProtocolDisabled
* @return proxyProtocolDisabled
**/
@Schema(description = "")
public String getProxyProtocolDisabled() {
return proxyProtocolDisabled;
}

public void setProxyProtocolDisabled(String proxyProtocolDisabled) {
this.proxyProtocolDisabled = proxyProtocolDisabled;
}

public CreateListenerRequest serverGroupId(String serverGroupId) {
this.serverGroupId = serverGroupId;
return this;
Expand Down Expand Up @@ -382,7 +445,9 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.aclStatus, createListenerRequest.aclStatus) &&
Objects.equals(this.aclType, createListenerRequest.aclType) &&
Objects.equals(this.caCertificateId, createListenerRequest.caCertificateId) &&
Objects.equals(this.certCenterCertificateId, createListenerRequest.certCenterCertificateId) &&
Objects.equals(this.certificateId, createListenerRequest.certificateId) &&
Objects.equals(this.certificateSource, createListenerRequest.certificateSource) &&
Objects.equals(this.description, createListenerRequest.description) &&
Objects.equals(this.domainExtensions, createListenerRequest.domainExtensions) &&
Objects.equals(this.enableHttp2, createListenerRequest.enableHttp2) &&
Expand All @@ -392,12 +457,13 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.loadBalancerId, createListenerRequest.loadBalancerId) &&
Objects.equals(this.port, createListenerRequest.port) &&
Objects.equals(this.protocol, createListenerRequest.protocol) &&
Objects.equals(this.proxyProtocolDisabled, createListenerRequest.proxyProtocolDisabled) &&
Objects.equals(this.serverGroupId, createListenerRequest.serverGroupId);
}

@Override
public int hashCode() {
return Objects.hash(aclIds, aclStatus, aclType, caCertificateId, certificateId, description, domainExtensions, enableHttp2, enableQuic, enabled, listenerName, loadBalancerId, port, protocol, serverGroupId);
return Objects.hash(aclIds, aclStatus, aclType, caCertificateId, certCenterCertificateId, certificateId, certificateSource, description, domainExtensions, enableHttp2, enableQuic, enabled, listenerName, loadBalancerId, port, protocol, proxyProtocolDisabled, serverGroupId);
}


Expand All @@ -410,7 +476,9 @@ public String toString() {
sb.append(" aclStatus: ").append(toIndentedString(aclStatus)).append("\n");
sb.append(" aclType: ").append(toIndentedString(aclType)).append("\n");
sb.append(" caCertificateId: ").append(toIndentedString(caCertificateId)).append("\n");
sb.append(" certCenterCertificateId: ").append(toIndentedString(certCenterCertificateId)).append("\n");
sb.append(" certificateId: ").append(toIndentedString(certificateId)).append("\n");
sb.append(" certificateSource: ").append(toIndentedString(certificateSource)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" domainExtensions: ").append(toIndentedString(domainExtensions)).append("\n");
sb.append(" enableHttp2: ").append(toIndentedString(enableHttp2)).append("\n");
Expand All @@ -420,6 +488,7 @@ public String toString() {
sb.append(" loadBalancerId: ").append(toIndentedString(loadBalancerId)).append("\n");
sb.append(" port: ").append(toIndentedString(port)).append("\n");
sb.append(" protocol: ").append(toIndentedString(protocol)).append("\n");
sb.append(" proxyProtocolDisabled: ").append(toIndentedString(proxyProtocolDisabled)).append("\n");
sb.append(" serverGroupId: ").append(toIndentedString(serverGroupId)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,15 @@ public class DescribeListenerAttributesResponse extends com.volcengine.model.Abs
@SerializedName("CACertificateId")
private String caCertificateId = null;

@SerializedName("CertCenterCertificateId")
private String certCenterCertificateId = null;

@SerializedName("CertificateId")
private String certificateId = null;

@SerializedName("CertificateSource")
private String certificateSource = null;

@SerializedName("CreateTime")
private String createTime = null;

Expand Down Expand Up @@ -87,6 +93,9 @@ public class DescribeListenerAttributesResponse extends com.volcengine.model.Abs
@SerializedName("Protocol")
private String protocol = null;

@SerializedName("ProxyProtocolDisabled")
private String proxyProtocolDisabled = null;

@SerializedName("RequestId")
private String requestId = null;

Expand Down Expand Up @@ -182,6 +191,24 @@ public void setCaCertificateId(String caCertificateId) {
this.caCertificateId = caCertificateId;
}

public DescribeListenerAttributesResponse certCenterCertificateId(String certCenterCertificateId) {
this.certCenterCertificateId = certCenterCertificateId;
return this;
}

/**
* Get certCenterCertificateId
* @return certCenterCertificateId
**/
@Schema(description = "")
public String getCertCenterCertificateId() {
return certCenterCertificateId;
}

public void setCertCenterCertificateId(String certCenterCertificateId) {
this.certCenterCertificateId = certCenterCertificateId;
}

public DescribeListenerAttributesResponse certificateId(String certificateId) {
this.certificateId = certificateId;
return this;
Expand All @@ -200,6 +227,24 @@ public void setCertificateId(String certificateId) {
this.certificateId = certificateId;
}

public DescribeListenerAttributesResponse certificateSource(String certificateSource) {
this.certificateSource = certificateSource;
return this;
}

/**
* Get certificateSource
* @return certificateSource
**/
@Schema(description = "")
public String getCertificateSource() {
return certificateSource;
}

public void setCertificateSource(String certificateSource) {
this.certificateSource = certificateSource;
}

public DescribeListenerAttributesResponse createTime(String createTime) {
this.createTime = createTime;
return this;
Expand Down Expand Up @@ -443,6 +488,24 @@ public void setProtocol(String protocol) {
this.protocol = protocol;
}

public DescribeListenerAttributesResponse proxyProtocolDisabled(String proxyProtocolDisabled) {
this.proxyProtocolDisabled = proxyProtocolDisabled;
return this;
}

/**
* Get proxyProtocolDisabled
* @return proxyProtocolDisabled
**/
@Schema(description = "")
public String getProxyProtocolDisabled() {
return proxyProtocolDisabled;
}

public void setProxyProtocolDisabled(String proxyProtocolDisabled) {
this.proxyProtocolDisabled = proxyProtocolDisabled;
}

public DescribeListenerAttributesResponse requestId(String requestId) {
this.requestId = requestId;
return this;
Expand Down Expand Up @@ -556,7 +619,9 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.aclStatus, describeListenerAttributesResponse.aclStatus) &&
Objects.equals(this.aclType, describeListenerAttributesResponse.aclType) &&
Objects.equals(this.caCertificateId, describeListenerAttributesResponse.caCertificateId) &&
Objects.equals(this.certCenterCertificateId, describeListenerAttributesResponse.certCenterCertificateId) &&
Objects.equals(this.certificateId, describeListenerAttributesResponse.certificateId) &&
Objects.equals(this.certificateSource, describeListenerAttributesResponse.certificateSource) &&
Objects.equals(this.createTime, describeListenerAttributesResponse.createTime) &&
Objects.equals(this.customizedCfgId, describeListenerAttributesResponse.customizedCfgId) &&
Objects.equals(this.description, describeListenerAttributesResponse.description) &&
Expand All @@ -570,6 +635,7 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.port, describeListenerAttributesResponse.port) &&
Objects.equals(this.projectName, describeListenerAttributesResponse.projectName) &&
Objects.equals(this.protocol, describeListenerAttributesResponse.protocol) &&
Objects.equals(this.proxyProtocolDisabled, describeListenerAttributesResponse.proxyProtocolDisabled) &&
Objects.equals(this.requestId, describeListenerAttributesResponse.requestId) &&
Objects.equals(this.serverGroupId, describeListenerAttributesResponse.serverGroupId) &&
Objects.equals(this.serverGroups, describeListenerAttributesResponse.serverGroups) &&
Expand All @@ -579,7 +645,7 @@ public boolean equals(java.lang.Object o) {

@Override
public int hashCode() {
return Objects.hash(aclIds, aclStatus, aclType, caCertificateId, certificateId, createTime, customizedCfgId, description, domainExtensions, enableHttp2, enableQuic, enabled, listenerId, listenerName, loadBalancerId, port, projectName, protocol, requestId, serverGroupId, serverGroups, status, updateTime);
return Objects.hash(aclIds, aclStatus, aclType, caCertificateId, certCenterCertificateId, certificateId, certificateSource, createTime, customizedCfgId, description, domainExtensions, enableHttp2, enableQuic, enabled, listenerId, listenerName, loadBalancerId, port, projectName, protocol, proxyProtocolDisabled, requestId, serverGroupId, serverGroups, status, updateTime);
}


Expand All @@ -592,7 +658,9 @@ public String toString() {
sb.append(" aclStatus: ").append(toIndentedString(aclStatus)).append("\n");
sb.append(" aclType: ").append(toIndentedString(aclType)).append("\n");
sb.append(" caCertificateId: ").append(toIndentedString(caCertificateId)).append("\n");
sb.append(" certCenterCertificateId: ").append(toIndentedString(certCenterCertificateId)).append("\n");
sb.append(" certificateId: ").append(toIndentedString(certificateId)).append("\n");
sb.append(" certificateSource: ").append(toIndentedString(certificateSource)).append("\n");
sb.append(" createTime: ").append(toIndentedString(createTime)).append("\n");
sb.append(" customizedCfgId: ").append(toIndentedString(customizedCfgId)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
Expand All @@ -606,6 +674,7 @@ public String toString() {
sb.append(" port: ").append(toIndentedString(port)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
sb.append(" protocol: ").append(toIndentedString(protocol)).append("\n");
sb.append(" proxyProtocolDisabled: ").append(toIndentedString(proxyProtocolDisabled)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" serverGroupId: ").append(toIndentedString(serverGroupId)).append("\n");
sb.append(" serverGroups: ").append(toIndentedString(serverGroups)).append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ public class DescribeListenersRequest {
@SerializedName("ProjectName")
private String projectName = null;

@SerializedName("Protocol")
private String protocol = null;

public DescribeListenersRequest listenerIds(List<String> listenerIds) {
this.listenerIds = listenerIds;
return this;
Expand Down Expand Up @@ -165,6 +168,24 @@ public void setProjectName(String projectName) {
this.projectName = projectName;
}

public DescribeListenersRequest protocol(String protocol) {
this.protocol = protocol;
return this;
}

/**
* Get protocol
* @return protocol
**/
@Schema(description = "")
public String getProtocol() {
return protocol;
}

public void setProtocol(String protocol) {
this.protocol = protocol;
}


@Override
public boolean equals(java.lang.Object o) {
Expand All @@ -180,12 +201,13 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.loadBalancerId, describeListenersRequest.loadBalancerId) &&
Objects.equals(this.pageNumber, describeListenersRequest.pageNumber) &&
Objects.equals(this.pageSize, describeListenersRequest.pageSize) &&
Objects.equals(this.projectName, describeListenersRequest.projectName);
Objects.equals(this.projectName, describeListenersRequest.projectName) &&
Objects.equals(this.protocol, describeListenersRequest.protocol);
}

@Override
public int hashCode() {
return Objects.hash(listenerIds, listenerName, loadBalancerId, pageNumber, pageSize, projectName);
return Objects.hash(listenerIds, listenerName, loadBalancerId, pageNumber, pageSize, projectName, protocol);
}


Expand All @@ -200,6 +222,7 @@ public String toString() {
sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
sb.append(" protocol: ").append(toIndentedString(protocol)).append("\n");
sb.append("}");
return sb.toString();
}
Expand Down
Loading

0 comments on commit b667143

Please sign in to comment.