You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new scope internal_organization_config_update was introduced to the organization configuration management API to allow for modifying existing organization discovery configs.
Due to the current limitations when reading and persisting new scopes to the DB, the users who are migrating to IS 7.1 should add the below configuration to the deployment.toml file
[[api_resources]]
name = "Organization Discovery Configuration Management API"
identifier = "/api/server/v1/organization-configs/discovery"
requiresAuthorization = true
description = "API representation of the Organization Config Management API"
type = "TENANT"
[[api_resources.scopes]]
displayName = "View Organization Configs"
name = "internal_organization_config_view"
description = "View discovery configurations of the organization (root)"
[[api_resources.scopes]]
displayName = "Add Organization Configs"
name = "internal_organization_config_add"
description = "Add new discovery configurations of the organization (root)"
[[api_resources.scopes]]
displayName = "Update Organization Configs"
name = "internal_organization_config_update"
description = "Update discovery configurations of the organization (root)"
[[api_resources.scopes]]
displayName = "Delete Organization Configs"
name = "internal_organization_config_delete"
description = "Delete discovery configurations of the organization (root)"
Description
A new scope
internal_organization_config_update
was introduced to the organization configuration management API to allow for modifying existing organization discovery configs.Due to the current limitations when reading and persisting new scopes to the DB, the users who are migrating to IS 7.1 should add the below configuration to the
deployment.toml
fileRelated issue
The text was updated successfully, but these errors were encountered: