2023-11-07 17:20:54 +00:00
|
|
|
package chain
|
2023-10-17 14:10:48 +00:00
|
|
|
|
|
|
|
// Name represents the place in the request lifecycle where policy is applied.
|
|
|
|
type Name string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Ingress represents chains applied when crossing user/storage network boundary.
|
|
|
|
// It is not applied when talking between nodes.
|
|
|
|
Ingress Name = "ingress"
|
2023-12-11 11:31:41 +00:00
|
|
|
|
|
|
|
// S3 represents chains applied when crossing user/s3 network boundary.
|
|
|
|
S3 Name = "s3"
|
2023-10-17 14:10:48 +00:00
|
|
|
)
|