File tree Expand file tree Collapse file tree 5 files changed +89
-89
lines changed
aws-protocoltests-json/src/models
aws-protocoltests-json-10/src/models
aws-protocoltests-query/src/models
aws-protocoltests-restjson/src/models
aws-protocoltests-restxml/src/models Expand file tree Collapse file tree 5 files changed +89
-89
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,27 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
3
3
4
4
import { JSONRPC10ServiceException as __BaseException } from "./JSONRPC10ServiceException" ;
5
5
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
+
6
27
export interface ComplexNestedErrorData {
7
28
Foo ?: string ;
8
29
}
@@ -141,27 +162,6 @@ export class InvalidGreeting extends __BaseException {
141
162
}
142
163
}
143
164
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
-
165
165
/**
166
166
* A union with a representative set of types for members.
167
167
*/
Original file line number Diff line number Diff line change @@ -7,6 +7,27 @@ import { DocumentType as __DocumentType } from "@aws-sdk/types";
7
7
8
8
import { JsonProtocolServiceException as __BaseException } from "./JsonProtocolServiceException" ;
9
9
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
+
10
31
export interface ComplexNestedErrorData {
11
32
Foo ?: string ;
12
33
}
@@ -163,14 +184,6 @@ export class InvalidGreeting extends __BaseException {
163
184
}
164
185
}
165
186
166
- export enum FooEnum {
167
- BAR = "Bar" ,
168
- BAZ = "Baz" ,
169
- FOO = "Foo" ,
170
- ONE = "1" ,
171
- ZERO = "0" ,
172
- }
173
-
174
187
export interface JsonEnumsInputOutput {
175
188
fooEnum1 ?: FooEnum | string ;
176
189
fooEnum2 ?: FooEnum | string ;
@@ -189,19 +202,6 @@ export namespace JsonEnumsInputOutput {
189
202
} ) ;
190
203
}
191
204
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
-
205
205
/**
206
206
* A union with a representative set of types for members.
207
207
*/
Original file line number Diff line number Diff line change @@ -3,6 +3,27 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
3
3
4
4
import { QueryProtocolServiceException as __BaseException } from "./QueryProtocolServiceException" ;
5
5
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
+
6
27
export interface EmptyInputAndEmptyOutputInput { }
7
28
8
29
export namespace EmptyInputAndEmptyOutputInput {
@@ -38,14 +59,6 @@ export namespace HostLabelInput {
38
59
} ) ;
39
60
}
40
61
41
- export enum FooEnum {
42
- BAR = "Bar" ,
43
- BAZ = "Baz" ,
44
- FOO = "Foo" ,
45
- ONE = "1" ,
46
- ZERO = "0" ,
47
- }
48
-
49
62
export interface FlattenedXmlMapOutput {
50
63
myMap ?: { [ key : string ] : FooEnum | string } ;
51
64
}
@@ -221,19 +234,6 @@ export namespace QueryIdempotencyTokenAutoFillInput {
221
234
} ) ;
222
235
}
223
236
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
-
237
237
export interface NestedStructWithList {
238
238
ListArg ?: string [ ] ;
239
239
}
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ import { Readable } from "stream";
8
8
9
9
import { RestJsonProtocolServiceException as __BaseException } from "./RestJsonProtocolServiceException" ;
10
10
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
+
11
24
export enum FooEnum {
12
25
BAR = "Bar" ,
13
26
BAZ = "Baz" ,
@@ -112,19 +125,6 @@ export namespace ConstantQueryStringInput {
112
125
} ) ;
113
126
}
114
127
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
-
128
128
export interface DocumentTypeInputOutput {
129
129
stringValue ?: string ;
130
130
documentValue ?: __DocumentType ;
Original file line number Diff line number Diff line change @@ -3,6 +3,19 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
3
3
4
4
import { RestXmlProtocolServiceException as __BaseException } from "./RestXmlProtocolServiceException" ;
5
5
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
+
6
19
export enum FooEnum {
7
20
BAR = "Bar" ,
8
21
BAZ = "Baz" ,
@@ -749,19 +762,6 @@ export namespace XmlListsInputOutput {
749
762
} ) ;
750
763
}
751
764
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
-
765
765
export interface XmlMapsInputOutput {
766
766
myMap ?: { [ key : string ] : GreetingStruct } ;
767
767
}
You can’t perform that action at this time.
0 commit comments