Skip to content

Commit 3bb333e

Browse files
committed
fix: add an operation in NotSame.smithy test model
1 parent ca841f7 commit 3bb333e

File tree

1 file changed

+13
-0
lines changed
  • codegen/smithy-aws-typescript-codegen/src/test/resources/software/amazon/smithy/aws/typescript/codegen

1 file changed

+13
-0
lines changed

codegen/smithy-aws-typescript-codegen/src/test/resources/software/amazon/smithy/aws/typescript/codegen/NotSame.smithy

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,17 @@ use aws.protocols#restJson1
66
@restJson1
77
service OriginalName {
88
version: "2019-10-15",
9+
operations: [GetFoo]
910
}
11+
12+
operation GetFoo {
13+
input: GetFooInput,
14+
output: GetFooOutput,
15+
errors: [GetFooError]
16+
}
17+
18+
structure GetFooInput {}
19+
structure GetFooOutput {}
20+
21+
@error("client")
22+
structure GetFooError {}

0 commit comments

Comments
 (0)