Skip to content

Commit

Permalink
Fixes ExampleId type and incorrect ArmTokenParameter name (Azure#12896)
Browse files Browse the repository at this point in the history
Co-authored-by: Younes <v-mayounes@microsoft.com>
  • Loading branch information
2 people authored and mkarmark committed Jul 20, 2021
1 parent a38e6df commit 3331b1c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7494,7 +7494,7 @@
"$ref": "#/parameters/BearerAuthPath"
},
{
"$ref": "#/parameters/ArmTokenParamter"
"$ref": "#/parameters/ArmTokenParameter"
},
{
"name": "azureAccountInfoObject",
Expand Down Expand Up @@ -7543,7 +7543,7 @@
"$ref": "#/parameters/BearerAuthPath"
},
{
"$ref": "#/parameters/ArmTokenParamter"
"$ref": "#/parameters/ArmTokenParameter"
}
],
"responses": {
Expand Down Expand Up @@ -7581,7 +7581,7 @@
"$ref": "#/parameters/BearerAuthPath"
},
{
"$ref": "#/parameters/ArmTokenParamter"
"$ref": "#/parameters/ArmTokenParameter"
},
{
"name": "azureAccountInfoObject",
Expand Down Expand Up @@ -7629,7 +7629,7 @@
"$ref": "#/parameters/BearerAuthPath"
},
{
"$ref": "#/parameters/ArmTokenParamter"
"$ref": "#/parameters/ArmTokenParameter"
}
],
"responses": {
Expand Down Expand Up @@ -9758,7 +9758,8 @@
},
"ExampleId": {
"description": "The newly created sample ID.",
"type": "integer"
"type": "integer",
"format": "int64"
}
}
},
Expand Down Expand Up @@ -10754,7 +10755,7 @@
"type": "string",
"x-ms-parameter-location": "method"
},
"ArmTokenParamter": {
"ArmTokenParameter": {
"in": "header",
"name": "ArmToken",
"required": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9272,7 +9272,8 @@
},
"ExampleId": {
"description": "The newly created sample ID.",
"type": "integer"
"type": "integer",
"format": "int64"
}
}
},
Expand Down

0 comments on commit 3331b1c

Please sign in to comment.