@@ -36,50 +36,61 @@ service Weather {
36
36
]
37
37
}
38
38
39
+ @readonly
39
40
@http (method : " GET" , uri : " /OnlyHttpApiKeyAuth" )
40
41
@auth ([httpApiKeyAuth ])
41
42
operation OnlyHttpApiKeyAuth {}
42
43
44
+ @readonly
43
45
@http (method : " GET" , uri : " /OnlyHttpBearerAuth" )
44
46
@auth ([httpBearerAuth ])
45
47
operation OnlyHttpBearerAuth {}
46
48
49
+ @readonly
47
50
@http (method : " GET" , uri : " /OnlySigv4Auth" )
48
51
@auth ([sigv4 ])
49
52
operation OnlySigv4Auth {}
50
53
54
+ @readonly
51
55
@http (method : " GET" , uri : " /OnlyHttpApiKeyAndBearerAuth" )
52
56
@auth ([httpApiKeyAuth , httpBearerAuth ])
53
57
operation OnlyHttpApiKeyAndBearerAuth {}
54
58
59
+ @readonly
55
60
@http (method : " GET" , uri : " /OnlyHttpApiKeyAndBearerAuthReversed" )
56
61
@auth ([httpBearerAuth , httpApiKeyAuth ])
57
62
operation OnlyHttpApiKeyAndBearerAuthReversed {}
58
63
64
+ @readonly
59
65
@http (method : " GET" , uri : " /OnlyHttpApiKeyAuthOptional" )
60
66
@auth ([httpApiKeyAuth ])
61
67
@optionalAuth
62
68
operation OnlyHttpApiKeyAuthOptional {}
63
69
70
+ @readonly
64
71
@http (method : " GET" , uri : " /OnlyHttpBearerAuthOptional" )
65
72
@auth ([httpBearerAuth ])
66
73
@optionalAuth
67
74
operation OnlyHttpBearerAuthOptional {}
68
75
76
+ @readonly
69
77
@http (method : " GET" , uri : " /OnlySigv4AuthOptional" )
70
78
@auth ([sigv4 ])
71
79
@optionalAuth
72
80
operation OnlySigv4AuthOptional {}
73
81
82
+ @readonly
74
83
@http (method : " GET" , uri : " /OnlyCustomAuth" )
75
84
@auth ([customAuth ])
76
85
operation OnlyCustomAuth {}
77
86
87
+ @readonly
78
88
@http (method : " GET" , uri : " /OnlyCustomAuthOptional" )
79
89
@auth ([customAuth ])
80
90
@optionalAuth
81
91
operation OnlyCustomAuthOptional {}
82
92
93
+ @readonly
83
94
@http (method : " GET" , uri : " /SameAsService" )
84
95
operation SameAsService {
85
96
output := {
0 commit comments