You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen-client/src/main/kotlin/software/amazon/smithy/rust/codegen/client/smithy/generators/client/FluentClientGenerator.kt
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -264,7 +264,10 @@ class FluentClientGenerator(
264
264
) {
265
265
val outputType = symbolProvider.toSymbol(operation.outputShape(model))
266
266
val errorType = operation.errorSymbol(symbolProvider)
267
-
267
+
val operationFnName = clientOperationFnName(
268
+
operation,
269
+
symbolProvider,
270
+
)
268
271
// Have to use fully-qualified result here or else it could conflict with an op named Result
0 commit comments