Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions smithy-aws-protocol-tests/model/restXml/document-maps.smithy
Original file line number Diff line number Diff line change
Expand Up @@ -653,10 +653,11 @@ apply NestedXmlMaps @httpResponseTests([
/// Nested Xml Maps with key/values with @xmlName
@http(uri: "/NestedXmlMapWithXmlName", method: "POST")
operation NestedXmlMapWithXmlName {
input: NestedXmlMapWithXmlNameInputOutput
output: NestedXmlMapWithXmlNameInputOutput
input := with [NestedXmlMapWithXmlNameInputOutput] {}
output := with [NestedXmlMapWithXmlNameInputOutput] {}
}

@mixin
structure NestedXmlMapWithXmlNameInputOutput {
nestedXmlMapWithXmlNameMap: NestedXmlMapWithXmlNameMap
}
Expand Down Expand Up @@ -684,7 +685,7 @@ apply NestedXmlMapWithXmlName @httpRequestTests([
method: "POST",
uri: "/NestedXmlMapWithXmlName",
body: """
<NestedXmlMapWithXmlNameInputOutput>
<NestedXmlMapWithXmlNameRequest>
<nestedXmlMapWithXmlNameMap>
<entry>
<OuterKey>foo</OuterKey>
Expand Down Expand Up @@ -713,7 +714,7 @@ apply NestedXmlMapWithXmlName @httpRequestTests([
</value>
</entry>
</nestedXmlMapWithXmlNameMap>
</NestedXmlMapWithXmlNameInputOutput>
</NestedXmlMapWithXmlNameRequest>
""",
bodyMediaType: "application/xml",
headers: {
Expand Down Expand Up @@ -741,7 +742,7 @@ apply NestedXmlMapWithXmlName @httpResponseTests([
protocol: restXml,
code: 200,
body: """
<NestedXmlMapWithXmlNameInputOutput>
<NestedXmlMapWithXmlNameResponse>
<nestedXmlMapWithXmlNameMap>
<entry>
<OuterKey>foo</OuterKey>
Expand Down Expand Up @@ -770,7 +771,7 @@ apply NestedXmlMapWithXmlName @httpResponseTests([
</value>
</entry>
</nestedXmlMapWithXmlNameMap>
</NestedXmlMapWithXmlNameInputOutput>
</NestedXmlMapWithXmlNameResponse>
"""
bodyMediaType: "application/xml",
headers: {
Expand Down
Loading