Skip to content

Commit b4e19bf

Browse files
authored
Merge pull request #6 from volcengine/for_alb
For alb
2 parents 1cc3f7a + 4fe58c2 commit b4e19bf

File tree

154 files changed

+29277
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+29277
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.volcengine</groupId>
5353
<artifactId>volcengine-java-sdk-bom</artifactId>
54-
<version>0.1.5</version>
54+
<version>0.1.6</version>
5555
<type>pom</type>
5656
<scope>import</scope>
5757
</dependency>
@@ -67,12 +67,12 @@
6767
<dependency>
6868
<groupId>com.volcengine</groupId>
6969
<artifactId>volcengine-java-sdk-vpc</artifactId>
70-
<version>0.1.5</version>
70+
<version>0.1.6</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>com.volcengine</groupId>
7474
<artifactId>volcengine-java-sdk-ecs</artifactId>
75-
<version>0.1.5</version>
75+
<version>0.1.6</version>
7676
</dependency>
7777
</dependencies>
7878
```

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.volcengine</groupId>
55
<artifactId>volcengine-java-sdk</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.1.5</version>
7+
<version>0.1.6</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<java.source.version>1.7</java.source.version>
@@ -128,5 +128,6 @@
128128
<module>volcengine-java-sdk-autoscaling</module>
129129
<module>volcengine-java-sdk-vke</module>
130130
<module>volcengine-java-sdk-rdsmysql</module>
131+
<module>volcengine-java-sdk-alb</module>
131132
</modules>
132133
</project>

volcengine-java-sdk-alb/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<artifactId>volcengine-java-sdk</artifactId>
5+
<groupId>com.volcengine</groupId>
6+
<version>0.1.6</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-alb</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.volcengine</groupId>
14+
<artifactId>volcengine-java-sdk-core</artifactId>
15+
<version>${project.version}</version>
16+
</dependency>
17+
</dependencies>
18+
</project>

volcengine-java-sdk-alb/src/main/java/com/volcengine/alb/AlbApi.java

Lines changed: 6104 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
/*
2+
* alb
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.alb.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import javax.validation.constraints.*;
25+
import javax.validation.Valid;
26+
/**
27+
* AccessLogForDescribeLoadBalancerAttributesOutput
28+
*/
29+
30+
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2022-07-18T11:53:48.716788+08:00[Asia/Shanghai]")
31+
public class AccessLogForDescribeLoadBalancerAttributesOutput {
32+
@SerializedName("BucketName")
33+
private String bucketName = null;
34+
35+
@SerializedName("Enabled")
36+
private Boolean enabled = null;
37+
38+
public AccessLogForDescribeLoadBalancerAttributesOutput bucketName(String bucketName) {
39+
this.bucketName = bucketName;
40+
return this;
41+
}
42+
43+
/**
44+
* Get bucketName
45+
* @return bucketName
46+
**/
47+
@Schema(description = "")
48+
public String getBucketName() {
49+
return bucketName;
50+
}
51+
52+
public void setBucketName(String bucketName) {
53+
this.bucketName = bucketName;
54+
}
55+
56+
public AccessLogForDescribeLoadBalancerAttributesOutput enabled(Boolean enabled) {
57+
this.enabled = enabled;
58+
return this;
59+
}
60+
61+
/**
62+
* Get enabled
63+
* @return enabled
64+
**/
65+
@Schema(description = "")
66+
public Boolean isEnabled() {
67+
return enabled;
68+
}
69+
70+
public void setEnabled(Boolean enabled) {
71+
this.enabled = enabled;
72+
}
73+
74+
75+
@Override
76+
public boolean equals(java.lang.Object o) {
77+
if (this == o) {
78+
return true;
79+
}
80+
if (o == null || getClass() != o.getClass()) {
81+
return false;
82+
}
83+
AccessLogForDescribeLoadBalancerAttributesOutput accessLogForDescribeLoadBalancerAttributesOutput = (AccessLogForDescribeLoadBalancerAttributesOutput) o;
84+
return Objects.equals(this.bucketName, accessLogForDescribeLoadBalancerAttributesOutput.bucketName) &&
85+
Objects.equals(this.enabled, accessLogForDescribeLoadBalancerAttributesOutput.enabled);
86+
}
87+
88+
@Override
89+
public int hashCode() {
90+
return Objects.hash(bucketName, enabled);
91+
}
92+
93+
94+
@Override
95+
public String toString() {
96+
StringBuilder sb = new StringBuilder();
97+
sb.append("class AccessLogForDescribeLoadBalancerAttributesOutput {\n");
98+
99+
sb.append(" bucketName: ").append(toIndentedString(bucketName)).append("\n");
100+
sb.append(" enabled: ").append(toIndentedString(enabled)).append("\n");
101+
sb.append("}");
102+
return sb.toString();
103+
}
104+
105+
/**
106+
* Convert the given object to string with each line indented by 4 spaces
107+
* (except the first line).
108+
*/
109+
private String toIndentedString(java.lang.Object o) {
110+
if (o == null) {
111+
return "null";
112+
}
113+
return o.toString().replace("\n", "\n ");
114+
}
115+
116+
}
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* alb
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.alb.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import javax.validation.constraints.*;
25+
import javax.validation.Valid;
26+
/**
27+
* AclEntryForAddAclEntriesInput
28+
*/
29+
30+
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2022-07-18T11:53:48.716788+08:00[Asia/Shanghai]")
31+
public class AclEntryForAddAclEntriesInput {
32+
@SerializedName("Description")
33+
private String description = null;
34+
35+
@SerializedName("Entry")
36+
private String entry = null;
37+
38+
public AclEntryForAddAclEntriesInput description(String description) {
39+
this.description = description;
40+
return this;
41+
}
42+
43+
/**
44+
* Get description
45+
* @return description
46+
**/
47+
@Schema(description = "")
48+
public String getDescription() {
49+
return description;
50+
}
51+
52+
public void setDescription(String description) {
53+
this.description = description;
54+
}
55+
56+
public AclEntryForAddAclEntriesInput entry(String entry) {
57+
this.entry = entry;
58+
return this;
59+
}
60+
61+
/**
62+
* Get entry
63+
* @return entry
64+
**/
65+
@NotNull
66+
@Schema(required = true, description = "")
67+
public String getEntry() {
68+
return entry;
69+
}
70+
71+
public void setEntry(String entry) {
72+
this.entry = entry;
73+
}
74+
75+
76+
@Override
77+
public boolean equals(java.lang.Object o) {
78+
if (this == o) {
79+
return true;
80+
}
81+
if (o == null || getClass() != o.getClass()) {
82+
return false;
83+
}
84+
AclEntryForAddAclEntriesInput aclEntryForAddAclEntriesInput = (AclEntryForAddAclEntriesInput) o;
85+
return Objects.equals(this.description, aclEntryForAddAclEntriesInput.description) &&
86+
Objects.equals(this.entry, aclEntryForAddAclEntriesInput.entry);
87+
}
88+
89+
@Override
90+
public int hashCode() {
91+
return Objects.hash(description, entry);
92+
}
93+
94+
95+
@Override
96+
public String toString() {
97+
StringBuilder sb = new StringBuilder();
98+
sb.append("class AclEntryForAddAclEntriesInput {\n");
99+
100+
sb.append(" description: ").append(toIndentedString(description)).append("\n");
101+
sb.append(" entry: ").append(toIndentedString(entry)).append("\n");
102+
sb.append("}");
103+
return sb.toString();
104+
}
105+
106+
/**
107+
* Convert the given object to string with each line indented by 4 spaces
108+
* (except the first line).
109+
*/
110+
private String toIndentedString(java.lang.Object o) {
111+
if (o == null) {
112+
return "null";
113+
}
114+
return o.toString().replace("\n", "\n ");
115+
}
116+
117+
}

0 commit comments

Comments
 (0)