-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package pp | ||
|
||
// RedactionLevel is the type of redaction levels. | ||
type RedactionLevel int | ||
|
||
const ( | ||
RedactNone RedactionLevel = iota // revealing everything | ||
RedactToken // concealing tokens or token-like information | ||
RedactPrivate // concealing all information that cannot be easily owned by other people, including token-like information, domain names, IP addresses, zone IDs, and record IDs | ||
RedactDefault RedactionLevel = RedactToken | ||
) |