Skip to content

Commit

Permalink
Syncing API
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored and github-actions[bot] committed Nov 16, 2024
1 parent caab9e1 commit 8aed11b
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7936,7 +7936,7 @@
"Purge": {
"properties": {
"finished_before": {
"default": "2024-10-13",
"default": "2024-10-16",
"description": "Purge tasks completed earlier than this timestamp. Format '%Y-%m-%d[T%H:%M:%S]'",
"format": "date-time",
"type": "string"
Expand Down
80 changes: 80 additions & 0 deletions packages/common/config/apis/hcc-insights/repositories/content.json
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,10 @@
"description": "Timestamp of last introspection that had updates",
"type": "string"
},
"latest_snapshot_url": {
"description": "Latest URL for the snapshot distribution",
"type": "string"
},
"metadata_verification": {
"description": "Verify packages",
"type": "boolean"
Expand Down Expand Up @@ -779,6 +783,10 @@
"description": "Timestamp of last introspection that had updates",
"type": "string"
},
"latest_snapshot_url": {
"description": "Latest URL for the snapshot distribution",
"type": "string"
},
"metadata_verification": {
"description": "Verify packages",
"type": "boolean"
Expand Down Expand Up @@ -3207,6 +3215,78 @@
]
}
},
"/repositories/{uuid}/config.repo": {
"get": {
"operationId": "getLatestRepoConfigurationFile",
"parameters": [
{
"description": "Repository ID.",
"in": "path",
"name": "uuid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
},
"description": "OK"
},
"400": {
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/errors.ErrorResponse"
}
}
},
"description": "Bad Request"
},
"401": {
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/errors.ErrorResponse"
}
}
},
"description": "Unauthorized"
},
"404": {
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/errors.ErrorResponse"
}
}
},
"description": "Not Found"
},
"500": {
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/errors.ErrorResponse"
}
}
},
"description": "Internal Server Error"
}
},
"summary": "Get latest configuration file for a repository",
"tags": [
"repositories"
]
}
},
"/repositories/{uuid}/environments": {
"get": {
"description": "List environments in a repository.",
Expand Down

0 comments on commit 8aed11b

Please sign in to comment.