Skip to content

Commit 5ff1e81

Browse files
authored
chore: resolve smithy build warnings (#5909)
1 parent c996c48 commit 5ff1e81

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

codegen/generic-client-test-codegen/model/weather.smithy

+11
Original file line numberDiff line numberDiff line change
@@ -36,50 +36,61 @@ service Weather {
3636
]
3737
}
3838

39+
@readonly
3940
@http(method: "GET", uri: "/OnlyHttpApiKeyAuth")
4041
@auth([httpApiKeyAuth])
4142
operation OnlyHttpApiKeyAuth {}
4243

44+
@readonly
4345
@http(method: "GET", uri: "/OnlyHttpBearerAuth")
4446
@auth([httpBearerAuth])
4547
operation OnlyHttpBearerAuth {}
4648

49+
@readonly
4750
@http(method: "GET", uri: "/OnlySigv4Auth")
4851
@auth([sigv4])
4952
operation OnlySigv4Auth {}
5053

54+
@readonly
5155
@http(method: "GET", uri: "/OnlyHttpApiKeyAndBearerAuth")
5256
@auth([httpApiKeyAuth, httpBearerAuth])
5357
operation OnlyHttpApiKeyAndBearerAuth {}
5458

59+
@readonly
5560
@http(method: "GET", uri: "/OnlyHttpApiKeyAndBearerAuthReversed")
5661
@auth([httpBearerAuth, httpApiKeyAuth])
5762
operation OnlyHttpApiKeyAndBearerAuthReversed {}
5863

64+
@readonly
5965
@http(method: "GET", uri: "/OnlyHttpApiKeyAuthOptional")
6066
@auth([httpApiKeyAuth])
6167
@optionalAuth
6268
operation OnlyHttpApiKeyAuthOptional {}
6369

70+
@readonly
6471
@http(method: "GET", uri: "/OnlyHttpBearerAuthOptional")
6572
@auth([httpBearerAuth])
6673
@optionalAuth
6774
operation OnlyHttpBearerAuthOptional {}
6875

76+
@readonly
6977
@http(method: "GET", uri: "/OnlySigv4AuthOptional")
7078
@auth([sigv4])
7179
@optionalAuth
7280
operation OnlySigv4AuthOptional {}
7381

82+
@readonly
7483
@http(method: "GET", uri: "/OnlyCustomAuth")
7584
@auth([customAuth])
7685
operation OnlyCustomAuth {}
7786

87+
@readonly
7888
@http(method: "GET", uri: "/OnlyCustomAuthOptional")
7989
@auth([customAuth])
8090
@optionalAuth
8191
operation OnlyCustomAuthOptional {}
8292

93+
@readonly
8394
@http(method: "GET", uri: "/SameAsService")
8495
operation SameAsService {
8596
output := {

0 commit comments

Comments
 (0)