Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
liuweiwei-xyz committed Apr 11, 2024
2 parents ce6b9b1 + 27f05cb commit bdc081b
Show file tree
Hide file tree
Showing 12 changed files with 570 additions and 18 deletions.
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.105",
"meta_commit": "f7927704d6dfd9ec000f87310c49ba7de4026a52"
}
"meta_commit": "be2a5313d76213964db820ef5c812485e2db1281"
}
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 bdc081b

Please sign in to comment.