Kusto 限制除特定 table 之外的所有 table 和函数
Kusto restrict all table and function except specific table
现在 Kusto 为中间层应用程序提供 restrict
语句来限制对数据库和数据库的 table/function 的访问。根据文档 https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/restrictstatement?pivots=azuredataexplorer,没有选项可以从 restrict
语句中排除特定的 table。有没有办法在不列出我的客户允许查询的所有 tables/functions 的情况下执行此操作?
Restrict 不支持排除,但是如果您想限制对特定 table 的访问,您应该考虑在该 table 上启用 RestrictedViewAccess 政策。这意味着您将必须明确允许一组特定用户访问 table,而其他人将无法访问它。
现在 Kusto 为中间层应用程序提供 restrict
语句来限制对数据库和数据库的 table/function 的访问。根据文档 https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/restrictstatement?pivots=azuredataexplorer,没有选项可以从 restrict
语句中排除特定的 table。有没有办法在不列出我的客户允许查询的所有 tables/functions 的情况下执行此操作?
Restrict 不支持排除,但是如果您想限制对特定 table 的访问,您应该考虑在该 table 上启用 RestrictedViewAccess 政策。这意味着您将必须明确允许一组特定用户访问 table,而其他人将无法访问它。