How to configure tenants for artifact-related use cases
In order to enable use cases like software management, backup & restore and diagnostic data upload the tenant must be configured accordingly.
A tenant configuration can be created via Postman request 'Software Management Service / Operation / Tenant Configuration / Persist configuration for tenant'.
The following sample shows a configuration which allows the tenant to use the backup & restore functionality and to see/install software from the Managed Artifact Repository and also stable software from some Private Artifact Repository.
[
{
"repositoryUrl": "<MANAGED-ARTIFACT-REPOSITORY-URL>",
"repositoryType": "MANAGED_REPO",
"artifactTypes": [
"software",
"backup"
],
"riskLevels": [
"stable",
"candidate"
]
},
{
"repositoryUrl": "<PRIVATE-ARTIFACT-REPOSITORY-URL>",
"repositoryType": "PRIVATE_REPO_1",
"artifactTypes": [
"software"
],
"riskLevels": [
"stable"
]
}
]