-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat][broker]: support missing broker level fine-granted permissions
- Loading branch information
1 parent
387a96d
commit e78c8e1
Showing
4 changed files
with
109 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
pulsar-common/src/main/java/org/apache/pulsar/common/policies/data/BrokerOperation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.apache.pulsar.common.policies.data; | ||
|
||
public enum BrokerOperation { | ||
LIST_BROKERS, | ||
GET_BROKER, | ||
|
||
GET_LEADER_BROKER, | ||
LIST_OWNED_NAMESPACES, | ||
|
||
LIST_DYNAMIC_CONFIGURATIONS, | ||
UPDATE_DYNAMIC_CONFIGURATION, | ||
DELETE_DYNAMIC_CONFIGURATION, | ||
|
||
LIST_RUNTIME_CONFIGURATIONS, | ||
|
||
GET_INTERNAL_CONFIGURATION_DATA, | ||
|
||
CHECK_BACKLOG_QUOTA, | ||
HEALTH_CHECK, | ||
SHUTDOWN | ||
} |