Skip to content
Open
Show file tree
Hide file tree
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: 0 additions & 13 deletions app/Http/Controllers/Api/ApplicationsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,6 @@ private function create_application(Request $request, $type)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1754,7 +1753,6 @@ public function application_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand Down Expand Up @@ -1856,7 +1854,6 @@ public function logs_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(name: 'delete_configurations', in: 'query', required: false, description: 'Delete configurations.', schema: new OA\Schema(type: 'boolean', default: true)),
Expand Down Expand Up @@ -1943,7 +1940,6 @@ public function delete_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2354,7 +2350,6 @@ public function update_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2440,7 +2435,6 @@ public function envs(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2630,7 +2624,6 @@ public function update_env_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2840,7 +2833,6 @@ public function create_bulk_envs(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -3006,7 +2998,6 @@ public function create_env(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand All @@ -3016,7 +3007,6 @@ public function create_env(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -3099,7 +3089,6 @@ public function delete_env_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand Down Expand Up @@ -3215,7 +3204,6 @@ public function action_deploy(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -3292,7 +3280,6 @@ public function action_stop(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down
18 changes: 4 additions & 14 deletions app/Http/Controllers/Api/DatabasesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public function databases(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -182,7 +181,6 @@ public function database_backup_details_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -245,7 +243,6 @@ public function database_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -614,7 +611,6 @@ public function update_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -832,7 +828,6 @@ public function create_backup(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand All @@ -842,7 +837,6 @@ public function create_backup(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2104,7 +2098,6 @@ public function create_database(Request $request, NewDatabaseTypes $type)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(name: 'delete_configurations', in: 'query', required: false, description: 'Delete configurations.', schema: new OA\Schema(type: 'boolean', default: true)),
Expand Down Expand Up @@ -2193,7 +2186,7 @@ public function delete_by_uuid(Request $request)
in: 'path',
required: true,
description: 'UUID of the backup configuration to delete',
schema: new OA\Schema(type: 'string', format: 'uuid')
schema: new OA\Schema(type: 'string')
),
new OA\Parameter(
name: 'delete_s3',
Expand Down Expand Up @@ -2310,14 +2303,14 @@ public function delete_backup_by_uuid(Request $request)
in: 'path',
required: true,
description: 'UUID of the backup configuration',
schema: new OA\Schema(type: 'string', format: 'uuid')
schema: new OA\Schema(type: 'string')
),
new OA\Parameter(
name: 'execution_uuid',
in: 'path',
required: true,
description: 'UUID of the backup execution to delete',
schema: new OA\Schema(type: 'string', format: 'uuid')
schema: new OA\Schema(type: 'string')
),
new OA\Parameter(
name: 'delete_s3',
Expand Down Expand Up @@ -2430,7 +2423,7 @@ public function delete_execution_by_uuid(Request $request)
in: 'path',
required: true,
description: 'UUID of the backup configuration',
schema: new OA\Schema(type: 'string', format: 'uuid')
schema: new OA\Schema(type: 'string')
),
],
responses: [
Expand Down Expand Up @@ -2527,7 +2520,6 @@ public function list_backup_executions(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2608,7 +2600,6 @@ public function action_deploy(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -2689,7 +2680,6 @@ public function action_stop(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down
1 change: 0 additions & 1 deletion app/Http/Controllers/Api/DeployController.php
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,6 @@ public function deploy_resource($resource, bool $force = false, int $pr = 0): ar
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand Down
2 changes: 0 additions & 2 deletions app/Http/Controllers/Api/ProjectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,6 @@ public function create_project(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -406,7 +405,6 @@ public function update_project(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down
1 change: 0 additions & 1 deletion app/Http/Controllers/Api/ServersController.php
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,6 @@ public function update_server(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down
10 changes: 0 additions & 10 deletions app/Http/Controllers/Api/ServicesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,6 @@ public function delete_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -871,7 +870,6 @@ public function update_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -952,7 +950,6 @@ public function envs(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1069,7 +1066,6 @@ public function update_env_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1200,7 +1196,6 @@ public function create_bulk_envs(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1315,7 +1310,6 @@ public function create_env(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand All @@ -1325,7 +1319,6 @@ public function create_env(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1404,7 +1397,6 @@ public function delete_env_by_uuid(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1485,7 +1477,6 @@ public function action_deploy(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
],
Expand Down Expand Up @@ -1566,7 +1557,6 @@ public function action_stop(Request $request)
required: true,
schema: new OA\Schema(
type: 'string',
format: 'uuid',
)
),
new OA\Parameter(
Expand Down
Loading