For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTCreate repository configuration
        • DELDelete repository configuration
        • GETGet repository configurations
        • GETList all prebuilts
        • PATCHUpdate repository configuration
LogoLogo
Open sourceSupportFAQsDocs Home
ReferencePrebuilts Repository

Update repository configuration

PATCH
http://localhost:3000/prebuilts-repository/configs/:name
PATCH
/prebuilts-repository/configs/:name
$curl -X PATCH http://localhost:3000/prebuilts-repository/configs/name \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "status": "OK",
3 "message": "A sample success message",
4 "data": {
5 "versionStatus": "latest"
6 }
7}
Updates an existing repository configuration.
Was this page helpful?
Previous

Create a new profile

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Path parameters

namestringRequired
The name of the repository configuration

Request

request body
updatesobjectOptional

Response

The result of the update process
statusenum
The status of the API request.
Allowed values:
messagestring
Message containing either confirmation of the operation or the reason for the failure of the operation.
dataobject
This is the schema for a Repository Configuration used to fetch Prebuilts

Errors

500
Internal Server Error