Skip to content

Commit

Permalink
Rename schema prop name for cg body
Browse files Browse the repository at this point in the history
  • Loading branch information
avranju committed Jul 31, 2020
1 parent 8d4f84b commit 47753c4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"api-version": "2020-06-15",
"eventHubEndpointName": "events",
"subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0",
"name": {
"name": "test",
"consumerGroupBody": {
"properties": {
"name": "test"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,9 +620,16 @@
},
{
"name": "name",
"in": "body",
"in": "path",
"description": "The name of the consumer group to add.",
"required": true,
"type": "string"
},
{
"name": "consumerGroupBody",
"in": "body",
"description": "The consumer group to add.",
"required": true,
"schema": {
"$ref": "#/definitions/EventHubConsumerGroupBodyDescription"
}
Expand Down

0 comments on commit 47753c4

Please sign in to comment.