Skip to content

Commit

Permalink
Add missing readonly traits on HTTP GET tests
Browse files Browse the repository at this point in the history
  • Loading branch information
srchase authored and kstich committed Aug 17, 2022
1 parent be0ba61 commit 237dbcb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ structure HttpResponseCodeOutput {
Status: Integer
}

@readonly
@http(method: "GET", uri: "/responseCodeRequired", code: 200)
operation ResponseCodeRequired {
output: ResponseCodeRequiredOutput,
Expand All @@ -31,6 +32,7 @@ structure ResponseCodeRequiredOutput {
responseCode: Integer,
}

@readonly
@http(method: "GET", uri: "/responseCodeHttpFallback", code: 201)
operation ResponseCodeHttpFallback {
input: ResponseCodeHttpFallbackInputOutput,
Expand Down

0 comments on commit 237dbcb

Please sign in to comment.