mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
E2C: Fix Swagger spec for createMigration post body (#85525)
* E2C: Fix Swagger spec for CreateCloudMigration post body * actually, don't rename that type
This commit is contained in:
@@ -3532,6 +3532,14 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"CloudMigrationRequest": {
|
||||
"properties": {
|
||||
"authToken": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"CloudMigrationResponse": {
|
||||
"properties": {
|
||||
"created": {
|
||||
@@ -14799,15 +14807,17 @@
|
||||
},
|
||||
"post": {
|
||||
"operationId": "createMigration",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "query",
|
||||
"name": "authToken",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/CloudMigrationRequest"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
},
|
||||
"required": true,
|
||||
"x-originalParamName": "body"
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"$ref": "#/components/responses/cloudMigrationResponse"
|
||||
|
||||
Reference in New Issue
Block a user