Skip to content

Commit e7facf2

Browse files
authored
Copying generated files (#302)
Copying rest of generated files from generator changes in #301
1 parent b1602d9 commit e7facf2

File tree

144 files changed

+4185
-180
lines changed

Some content is hidden

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

144 files changed

+4185
-180
lines changed

s3-native-client/src/generated/java/com/amazonaws/s3/model/AbortMultipartUploadRequest.java

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import java.lang.String;
88
import java.util.Objects;
99
import software.amazon.aws.sdk.crt.annotations.Generated;
10+
import software.amazon.awssdk.crt.http.HttpHeader;
1011

1112
@Generated("software.amazon.smithy.crt.java.StructureGenerator")
1213
public class AbortMultipartUploadRequest {
@@ -34,12 +35,18 @@ public class AbortMultipartUploadRequest {
3435
*/
3536
String expectedBucketOwner;
3637

38+
HttpHeader[] customHeaders;
39+
40+
String customQueryParameters;
41+
3742
AbortMultipartUploadRequest() {
3843
this.bucket = "";
3944
this.key = "";
4045
this.uploadId = "";
4146
this.requestPayer = null;
4247
this.expectedBucketOwner = "";
48+
this.customHeaders = null;
49+
this.customQueryParameters = "";
4350
}
4451

4552
protected AbortMultipartUploadRequest(BuilderImpl builder) {
@@ -48,6 +55,8 @@ protected AbortMultipartUploadRequest(BuilderImpl builder) {
4855
this.uploadId = builder.uploadId;
4956
this.requestPayer = builder.requestPayer;
5057
this.expectedBucketOwner = builder.expectedBucketOwner;
58+
this.customHeaders = builder.customHeaders;
59+
this.customQueryParameters = builder.customQueryParameters;
5160
}
5261

5362
public Builder toBuilder() {
@@ -89,6 +98,14 @@ public String expectedBucketOwner() {
8998
return expectedBucketOwner;
9099
}
91100

101+
public HttpHeader[] customHeaders() {
102+
return customHeaders;
103+
}
104+
105+
public String customQueryParameters() {
106+
return customQueryParameters;
107+
}
108+
92109
public interface Builder {
93110
Builder bucket(String bucket);
94111

@@ -100,6 +117,10 @@ public interface Builder {
100117

101118
Builder expectedBucketOwner(String expectedBucketOwner);
102119

120+
Builder customHeaders(HttpHeader[] customHeaders);
121+
122+
Builder customQueryParameters(String customQueryParameters);
123+
103124
AbortMultipartUploadRequest build();
104125
}
105126

@@ -128,6 +149,10 @@ protected static class BuilderImpl implements Builder {
128149
*/
129150
String expectedBucketOwner;
130151

152+
HttpHeader[] customHeaders;
153+
154+
String customQueryParameters;
155+
131156
protected BuilderImpl() {
132157
}
133158

@@ -137,6 +162,8 @@ private BuilderImpl(AbortMultipartUploadRequest model) {
137162
uploadId(model.uploadId);
138163
requestPayer(model.requestPayer);
139164
expectedBucketOwner(model.expectedBucketOwner);
165+
customHeaders(model.customHeaders);
166+
customQueryParameters(model.customQueryParameters);
140167
}
141168

142169
public AbortMultipartUploadRequest build() {
@@ -168,6 +195,16 @@ public final Builder expectedBucketOwner(String expectedBucketOwner) {
168195
return this;
169196
}
170197

198+
public final Builder customHeaders(HttpHeader[] customHeaders) {
199+
this.customHeaders = customHeaders;
200+
return this;
201+
}
202+
203+
public final Builder customQueryParameters(String customQueryParameters) {
204+
this.customQueryParameters = customQueryParameters;
205+
return this;
206+
}
207+
171208
@Override
172209
public int hashCode() {
173210
return Objects.hash(BuilderImpl.class);
@@ -198,5 +235,13 @@ public RequestPayer requestPayer() {
198235
public String expectedBucketOwner() {
199236
return expectedBucketOwner;
200237
}
238+
239+
public HttpHeader[] customHeaders() {
240+
return customHeaders;
241+
}
242+
243+
public String customQueryParameters() {
244+
return customQueryParameters;
245+
}
201246
}
202247
}

s3-native-client/src/generated/java/com/amazonaws/s3/model/AnalyticsS3ExportFileFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum AnalyticsS3ExportFileFormat {
13-
CSV("software.amazon.smithy.crt.codegen.Field@2e4ea8fe"),
13+
CSV("software.amazon.smithy.crt.codegen.Field@3f313503"),
1414

1515
UNKNOWN_TO_SDK_VERSION(null);
1616

s3-native-client/src/generated/java/com/amazonaws/s3/model/ArchiveStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum ArchiveStatus {
13-
ARCHIVE_ACCESS("software.amazon.smithy.crt.codegen.Field@476832d5"),
13+
ARCHIVE_ACCESS("software.amazon.smithy.crt.codegen.Field@726c3b47"),
1414

15-
DEEP_ARCHIVE_ACCESS("software.amazon.smithy.crt.codegen.Field@476832d5"),
15+
DEEP_ARCHIVE_ACCESS("software.amazon.smithy.crt.codegen.Field@726c3b47"),
1616

1717
UNKNOWN_TO_SDK_VERSION(null);
1818

s3-native-client/src/generated/java/com/amazonaws/s3/model/BucketAccelerateStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum BucketAccelerateStatus {
13-
ENABLED("software.amazon.smithy.crt.codegen.Field@19a1823a"),
13+
ENABLED("software.amazon.smithy.crt.codegen.Field@69196cd6"),
1414

15-
SUSPENDED("software.amazon.smithy.crt.codegen.Field@19a1823a"),
15+
SUSPENDED("software.amazon.smithy.crt.codegen.Field@69196cd6"),
1616

1717
UNKNOWN_TO_SDK_VERSION(null);
1818

s3-native-client/src/generated/java/com/amazonaws/s3/model/BucketCannedACL.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum BucketCannedACL {
13-
PRIVATE("software.amazon.smithy.crt.codegen.Field@7d7254e3"),
13+
PRIVATE("software.amazon.smithy.crt.codegen.Field@64d043b4"),
1414

15-
PUBLIC_READ("software.amazon.smithy.crt.codegen.Field@7d7254e3"),
15+
PUBLIC_READ("software.amazon.smithy.crt.codegen.Field@64d043b4"),
1616

17-
PUBLIC_READ_WRITE("software.amazon.smithy.crt.codegen.Field@7d7254e3"),
17+
PUBLIC_READ_WRITE("software.amazon.smithy.crt.codegen.Field@64d043b4"),
1818

19-
AUTHENTICATED_READ("software.amazon.smithy.crt.codegen.Field@7d7254e3"),
19+
AUTHENTICATED_READ("software.amazon.smithy.crt.codegen.Field@64d043b4"),
2020

2121
UNKNOWN_TO_SDK_VERSION(null);
2222

s3-native-client/src/generated/java/com/amazonaws/s3/model/BucketLocationConstraint.java

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,55 +10,55 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum BucketLocationConstraint {
13-
AF_SOUTH_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
13+
AF_SOUTH_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
1414

15-
AP_EAST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
15+
AP_EAST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
1616

17-
AP_NORTHEAST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
17+
AP_NORTHEAST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
1818

19-
AP_NORTHEAST_2("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
19+
AP_NORTHEAST_2("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
2020

21-
AP_NORTHEAST_3("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
21+
AP_NORTHEAST_3("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
2222

23-
AP_SOUTH_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
23+
AP_SOUTH_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
2424

25-
AP_SOUTHEAST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
25+
AP_SOUTHEAST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
2626

27-
AP_SOUTHEAST_2("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
27+
AP_SOUTHEAST_2("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
2828

29-
CA_CENTRAL_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
29+
CA_CENTRAL_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
3030

31-
CN_NORTH_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
31+
CN_NORTH_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
3232

33-
CN_NORTHWEST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
33+
CN_NORTHWEST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
3434

35-
EU("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
35+
EU("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
3636

37-
EU_CENTRAL_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
37+
EU_CENTRAL_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
3838

39-
EU_NORTH_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
39+
EU_NORTH_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
4040

41-
EU_SOUTH_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
41+
EU_SOUTH_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
4242

43-
EU_WEST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
43+
EU_WEST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
4444

45-
EU_WEST_2("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
45+
EU_WEST_2("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
4646

47-
EU_WEST_3("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
47+
EU_WEST_3("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
4848

49-
ME_SOUTH_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
49+
ME_SOUTH_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
5050

51-
SA_EAST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
51+
SA_EAST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
5252

53-
US_EAST_2("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
53+
US_EAST_2("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
5454

55-
US_GOV_EAST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
55+
US_GOV_EAST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
5656

57-
US_GOV_WEST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
57+
US_GOV_WEST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
5858

59-
US_WEST_1("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
59+
US_WEST_1("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
6060

61-
US_WEST_2("software.amazon.smithy.crt.codegen.Field@70bfb6a9"),
61+
US_WEST_2("software.amazon.smithy.crt.codegen.Field@6d3b1a95"),
6262

6363
UNKNOWN_TO_SDK_VERSION(null);
6464

s3-native-client/src/generated/java/com/amazonaws/s3/model/BucketLogsPermission.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum BucketLogsPermission {
13-
FULL_CONTROL("software.amazon.smithy.crt.codegen.Field@a384d08"),
13+
FULL_CONTROL("software.amazon.smithy.crt.codegen.Field@fdf963b"),
1414

15-
READ("software.amazon.smithy.crt.codegen.Field@a384d08"),
15+
READ("software.amazon.smithy.crt.codegen.Field@fdf963b"),
1616

17-
WRITE("software.amazon.smithy.crt.codegen.Field@a384d08"),
17+
WRITE("software.amazon.smithy.crt.codegen.Field@fdf963b"),
1818

1919
UNKNOWN_TO_SDK_VERSION(null);
2020

s3-native-client/src/generated/java/com/amazonaws/s3/model/BucketVersioningStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
@Generated("software.amazon.smithy.crt.java.EnumGenerator")
1212
public enum BucketVersioningStatus {
13-
ENABLED("software.amazon.smithy.crt.codegen.Field@34678c45"),
13+
ENABLED("software.amazon.smithy.crt.codegen.Field@4a8cb9f9"),
1414

15-
SUSPENDED("software.amazon.smithy.crt.codegen.Field@34678c45"),
15+
SUSPENDED("software.amazon.smithy.crt.codegen.Field@4a8cb9f9"),
1616

1717
UNKNOWN_TO_SDK_VERSION(null);
1818

s3-native-client/src/generated/java/com/amazonaws/s3/model/CompleteMultipartUploadRequest.java

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import java.lang.String;
88
import java.util.Objects;
99
import software.amazon.aws.sdk.crt.annotations.Generated;
10+
import software.amazon.awssdk.crt.http.HttpHeader;
1011

1112
@Generated("software.amazon.smithy.crt.java.StructureGenerator")
1213
public class CompleteMultipartUploadRequest {
@@ -37,13 +38,19 @@ public class CompleteMultipartUploadRequest {
3738
*/
3839
String expectedBucketOwner;
3940

41+
HttpHeader[] customHeaders;
42+
43+
String customQueryParameters;
44+
4045
CompleteMultipartUploadRequest() {
4146
this.bucket = "";
4247
this.key = "";
4348
this.multipartUpload = null;
4449
this.uploadId = "";
4550
this.requestPayer = null;
4651
this.expectedBucketOwner = "";
52+
this.customHeaders = null;
53+
this.customQueryParameters = "";
4754
}
4855

4956
protected CompleteMultipartUploadRequest(BuilderImpl builder) {
@@ -53,6 +60,8 @@ protected CompleteMultipartUploadRequest(BuilderImpl builder) {
5360
this.uploadId = builder.uploadId;
5461
this.requestPayer = builder.requestPayer;
5562
this.expectedBucketOwner = builder.expectedBucketOwner;
63+
this.customHeaders = builder.customHeaders;
64+
this.customQueryParameters = builder.customQueryParameters;
5665
}
5766

5867
public Builder toBuilder() {
@@ -98,6 +107,14 @@ public String expectedBucketOwner() {
98107
return expectedBucketOwner;
99108
}
100109

110+
public HttpHeader[] customHeaders() {
111+
return customHeaders;
112+
}
113+
114+
public String customQueryParameters() {
115+
return customQueryParameters;
116+
}
117+
101118
public interface Builder {
102119
Builder bucket(String bucket);
103120

@@ -111,6 +128,10 @@ public interface Builder {
111128

112129
Builder expectedBucketOwner(String expectedBucketOwner);
113130

131+
Builder customHeaders(HttpHeader[] customHeaders);
132+
133+
Builder customQueryParameters(String customQueryParameters);
134+
114135
CompleteMultipartUploadRequest build();
115136
}
116137

@@ -142,6 +163,10 @@ protected static class BuilderImpl implements Builder {
142163
*/
143164
String expectedBucketOwner;
144165

166+
HttpHeader[] customHeaders;
167+
168+
String customQueryParameters;
169+
145170
protected BuilderImpl() {
146171
}
147172

@@ -152,6 +177,8 @@ private BuilderImpl(CompleteMultipartUploadRequest model) {
152177
uploadId(model.uploadId);
153178
requestPayer(model.requestPayer);
154179
expectedBucketOwner(model.expectedBucketOwner);
180+
customHeaders(model.customHeaders);
181+
customQueryParameters(model.customQueryParameters);
155182
}
156183

157184
public CompleteMultipartUploadRequest build() {
@@ -188,6 +215,16 @@ public final Builder expectedBucketOwner(String expectedBucketOwner) {
188215
return this;
189216
}
190217

218+
public final Builder customHeaders(HttpHeader[] customHeaders) {
219+
this.customHeaders = customHeaders;
220+
return this;
221+
}
222+
223+
public final Builder customQueryParameters(String customQueryParameters) {
224+
this.customQueryParameters = customQueryParameters;
225+
return this;
226+
}
227+
191228
@Override
192229
public int hashCode() {
193230
return Objects.hash(BuilderImpl.class);
@@ -222,5 +259,13 @@ public RequestPayer requestPayer() {
222259
public String expectedBucketOwner() {
223260
return expectedBucketOwner;
224261
}
262+
263+
public HttpHeader[] customHeaders() {
264+
return customHeaders;
265+
}
266+
267+
public String customQueryParameters() {
268+
return customQueryParameters;
269+
}
225270
}
226271
}

0 commit comments

Comments
 (0)