Skip to content

Commit 2ae9f50

Browse files
authored
chore(clients): regenerate based on smithy-typescript#547 (#3633)
1 parent 03ed2d2 commit 2ae9f50

File tree

5 files changed

+89
-89
lines changed

5 files changed

+89
-89
lines changed

private/aws-protocoltests-json-10/src/models/models_0.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
33

44
import { JSONRPC10ServiceException as __BaseException } from "./JSONRPC10ServiceException";
55

6+
export interface GreetingStruct {
7+
hi?: string;
8+
}
9+
10+
export namespace GreetingStruct {
11+
/**
12+
* @internal
13+
*/
14+
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
15+
...obj,
16+
});
17+
}
18+
19+
export enum FooEnum {
20+
BAR = "Bar",
21+
BAZ = "Baz",
22+
FOO = "Foo",
23+
ONE = "1",
24+
ZERO = "0",
25+
}
26+
627
export interface ComplexNestedErrorData {
728
Foo?: string;
829
}
@@ -141,27 +162,6 @@ export class InvalidGreeting extends __BaseException {
141162
}
142163
}
143164

144-
export enum FooEnum {
145-
BAR = "Bar",
146-
BAZ = "Baz",
147-
FOO = "Foo",
148-
ONE = "1",
149-
ZERO = "0",
150-
}
151-
152-
export interface GreetingStruct {
153-
hi?: string;
154-
}
155-
156-
export namespace GreetingStruct {
157-
/**
158-
* @internal
159-
*/
160-
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
161-
...obj,
162-
});
163-
}
164-
165165
/**
166166
* A union with a representative set of types for members.
167167
*/

private/aws-protocoltests-json/src/models/models_0.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ import { DocumentType as __DocumentType } from "@aws-sdk/types";
77

88
import { JsonProtocolServiceException as __BaseException } from "./JsonProtocolServiceException";
99

10+
export interface GreetingStruct {
11+
hi?: string;
12+
}
13+
14+
export namespace GreetingStruct {
15+
/**
16+
* @internal
17+
*/
18+
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
19+
...obj,
20+
});
21+
}
22+
23+
export enum FooEnum {
24+
BAR = "Bar",
25+
BAZ = "Baz",
26+
FOO = "Foo",
27+
ONE = "1",
28+
ZERO = "0",
29+
}
30+
1031
export interface ComplexNestedErrorData {
1132
Foo?: string;
1233
}
@@ -163,14 +184,6 @@ export class InvalidGreeting extends __BaseException {
163184
}
164185
}
165186

166-
export enum FooEnum {
167-
BAR = "Bar",
168-
BAZ = "Baz",
169-
FOO = "Foo",
170-
ONE = "1",
171-
ZERO = "0",
172-
}
173-
174187
export interface JsonEnumsInputOutput {
175188
fooEnum1?: FooEnum | string;
176189
fooEnum2?: FooEnum | string;
@@ -189,19 +202,6 @@ export namespace JsonEnumsInputOutput {
189202
});
190203
}
191204

192-
export interface GreetingStruct {
193-
hi?: string;
194-
}
195-
196-
export namespace GreetingStruct {
197-
/**
198-
* @internal
199-
*/
200-
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
201-
...obj,
202-
});
203-
}
204-
205205
/**
206206
* A union with a representative set of types for members.
207207
*/

private/aws-protocoltests-query/src/models/models_0.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
33

44
import { QueryProtocolServiceException as __BaseException } from "./QueryProtocolServiceException";
55

6+
export interface GreetingStruct {
7+
hi?: string;
8+
}
9+
10+
export namespace GreetingStruct {
11+
/**
12+
* @internal
13+
*/
14+
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
15+
...obj,
16+
});
17+
}
18+
19+
export enum FooEnum {
20+
BAR = "Bar",
21+
BAZ = "Baz",
22+
FOO = "Foo",
23+
ONE = "1",
24+
ZERO = "0",
25+
}
26+
627
export interface EmptyInputAndEmptyOutputInput {}
728

829
export namespace EmptyInputAndEmptyOutputInput {
@@ -38,14 +59,6 @@ export namespace HostLabelInput {
3859
});
3960
}
4061

41-
export enum FooEnum {
42-
BAR = "Bar",
43-
BAZ = "Baz",
44-
FOO = "Foo",
45-
ONE = "1",
46-
ZERO = "0",
47-
}
48-
4962
export interface FlattenedXmlMapOutput {
5063
myMap?: { [key: string]: FooEnum | string };
5164
}
@@ -221,19 +234,6 @@ export namespace QueryIdempotencyTokenAutoFillInput {
221234
});
222235
}
223236

224-
export interface GreetingStruct {
225-
hi?: string;
226-
}
227-
228-
export namespace GreetingStruct {
229-
/**
230-
* @internal
231-
*/
232-
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
233-
...obj,
234-
});
235-
}
236-
237237
export interface NestedStructWithList {
238238
ListArg?: string[];
239239
}

private/aws-protocoltests-restjson/src/models/models_0.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ import { Readable } from "stream";
88

99
import { RestJsonProtocolServiceException as __BaseException } from "./RestJsonProtocolServiceException";
1010

11+
export interface GreetingStruct {
12+
hi?: string;
13+
}
14+
15+
export namespace GreetingStruct {
16+
/**
17+
* @internal
18+
*/
19+
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
20+
...obj,
21+
});
22+
}
23+
1124
export enum FooEnum {
1225
BAR = "Bar",
1326
BAZ = "Baz",
@@ -112,19 +125,6 @@ export namespace ConstantQueryStringInput {
112125
});
113126
}
114127

115-
export interface GreetingStruct {
116-
hi?: string;
117-
}
118-
119-
export namespace GreetingStruct {
120-
/**
121-
* @internal
122-
*/
123-
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
124-
...obj,
125-
});
126-
}
127-
128128
export interface DocumentTypeInputOutput {
129129
stringValue?: string;
130130
documentValue?: __DocumentType;

private/aws-protocoltests-restxml/src/models/models_0.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
33

44
import { RestXmlProtocolServiceException as __BaseException } from "./RestXmlProtocolServiceException";
55

6+
export interface GreetingStruct {
7+
hi?: string;
8+
}
9+
10+
export namespace GreetingStruct {
11+
/**
12+
* @internal
13+
*/
14+
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
15+
...obj,
16+
});
17+
}
18+
619
export enum FooEnum {
720
BAR = "Bar",
821
BAZ = "Baz",
@@ -749,19 +762,6 @@ export namespace XmlListsInputOutput {
749762
});
750763
}
751764

752-
export interface GreetingStruct {
753-
hi?: string;
754-
}
755-
756-
export namespace GreetingStruct {
757-
/**
758-
* @internal
759-
*/
760-
export const filterSensitiveLog = (obj: GreetingStruct): any => ({
761-
...obj,
762-
});
763-
}
764-
765765
export interface XmlMapsInputOutput {
766766
myMap?: { [key: string]: GreetingStruct };
767767
}

0 commit comments

Comments
 (0)