Skip to content
Merged
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
4 changes: 2 additions & 2 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5867,7 +5867,7 @@
"function_job_collections"
],
"summary": "Function Job Collection List Function Jobs",
"description": "Get the function jobs in function job collection",
"description": "Get the function jobs in function job collection\n\nNew in *version 0.8.0*",
"operationId": "function_job_collection_list_function_jobs",
"parameters": [
{
Expand Down Expand Up @@ -5943,7 +5943,7 @@
"function_job_collections"
],
"summary": "Function Job Collection Status",
"description": "Get function job collection status",
"description": "Get function job collection status\n\nNew in *version 0.8.0*",
"operationId": "function_job_collection_status",
"security": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ async def delete_function_job_collection(
responses={**_COMMON_FUNCTION_JOB_COLLECTION_ERROR_RESPONSES},
description=create_route_description(
base="Get the function jobs in function job collection",
changelog=[FMSG_CHANGELOG_NEW_IN_VERSION.format(FIRST_RELEASE_VERSION)],
),
)
async def function_job_collection_list_function_jobs(
Expand All @@ -144,6 +145,7 @@ async def function_job_collection_list_function_jobs(
responses={**_COMMON_FUNCTION_JOB_COLLECTION_ERROR_RESPONSES},
description=create_route_description(
base="Get function job collection status",
changelog=[FMSG_CHANGELOG_NEW_IN_VERSION.format(FIRST_RELEASE_VERSION)],
),
)
async def function_job_collection_status(
Expand Down
Loading