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:
Josh Hunt
2024-04-03 11:59:50 +00:00
committed by GitHub
parent b885da09da
commit e08b5bd456
4 changed files with 60 additions and 39 deletions
+6
View File
@@ -58,6 +58,12 @@ type CloudMigrationRunList struct {
}
// swagger:parameters createMigration
type CloudMigrationRequestParams struct {
// required: true
// in: body
Body CloudMigrationRequest `json:"body"`
}
type CloudMigrationRequest struct {
AuthToken string `json:"authToken"`
}