Clusters
Applications
Models
Artifacts
- GETGet Artifact
- DELDelete Artifact
- GETList Artifacts
- GETGet Artifact Version
- DELDelete Artifact Version
- GETList Artifact Versions
- PUTApply Artifact Version
- POSTDelete Artifact Version
- POSTGet Signed Urls For Artifact Version
- POSTCreate Multi Part Upload
- POSTStage Artifact Version
- POSTList Files For Artifact Version
- POSTMark Stage Failure
Prompts
Secret Groups
Model Deployments
Users
Personal Access Tokens
Virtual Accounts
Audit Logs
Apply
Create or Update Resources
Applies a given manifest to create or update resources of specific types, such as provider-account, cluster, workspace, or ml-repo.
PUT
/
api
/
svc
/
v1
/
apply
Copy
Ask AI
curl --request PUT \
--url https://{controlPlaneURL}/api/svc/v1/apply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"manifest": {
"type": "ml-repo",
"name": "<string>",
"description": "<string>",
"storage_integration_fqn": "<string>",
"collaborators": [
{
"subject": "<string>",
"role_id": "<string>"
}
]
},
"dryRun": true
}'
Copy
Ask AI
{
"existingManifest": {
"type": "ml-repo",
"name": "<string>",
"description": "<string>",
"storage_integration_fqn": "<string>",
"collaborators": [
{
"subject": "<string>",
"role_id": "<string>"
}
]
},
"action": "CREATE"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200 - application/json
The resource has been successfully created or updated.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request PUT \
--url https://{controlPlaneURL}/api/svc/v1/apply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"manifest": {
"type": "ml-repo",
"name": "<string>",
"description": "<string>",
"storage_integration_fqn": "<string>",
"collaborators": [
{
"subject": "<string>",
"role_id": "<string>"
}
]
},
"dryRun": true
}'
Copy
Ask AI
{
"existingManifest": {
"type": "ml-repo",
"name": "<string>",
"description": "<string>",
"storage_integration_fqn": "<string>",
"collaborators": [
{
"subject": "<string>",
"role_id": "<string>"
}
]
},
"action": "CREATE"
}
Assistant
Responses are generated using AI and may contain mistakes.