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
if (!op.input.isPresent ||!op.output.isPresent) throwCodegenException("model should have been preprocessed to ensure operations always have an input or output shape: $op.id")
76
+
77
+
val operationName = op.camelCaseName()
78
+
val inputShape = opIndex.getInput(op).get()
79
+
val inputSymbolName = symbolProvider.toSymbol(inputShape).name
80
+
val inputParam ="input: $inputSymbolName"
81
+
82
+
val outputType = getOperationOutputShapeName(symbolProvider, opIndex, op)
Copy file name to clipboardExpand all lines: smithy-swift-codegen/src/main/kotlin/software/amazon/smithy/swift/codegen/integration/HttpProtocolClientGenerator.kt
+39Lines changed: 39 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,13 @@ open class HttpProtocolClientGenerator(
0 commit comments