mirror of
https://github.com/goharbor/harbor
synced 2025-04-21 17:14:12 +00:00
31 lines
989 B
Go
31 lines
989 B
Go
package replication
|
|
|
|
const (
|
|
//FilterItemKindProject : Kind of filter item is 'project'
|
|
FilterItemKindProject = "project"
|
|
//FilterItemKindRepository : Kind of filter item is 'repository'
|
|
FilterItemKindRepository = "repository"
|
|
//FilterItemKindTag : Kind of filter item is 'tag'
|
|
FilterItemKindTag = "tag"
|
|
|
|
//AdaptorKindHarbor : Kind of adaptor of Harbor
|
|
AdaptorKindHarbor = "Harbor"
|
|
|
|
//TriggerKindImmediate : Kind of trigger is 'Immediate'
|
|
TriggerKindImmediate = "immediate"
|
|
//TriggerKindSchedule : Kind of trigger is 'Schedule'
|
|
TriggerKindSchedule = "schedule"
|
|
//TriggerKindManual : Kind of trigger is 'Manual'
|
|
TriggerKindManual = "manual"
|
|
|
|
//TriggerScheduleDaily : type of scheduling is 'daily'
|
|
TriggerScheduleDaily = "daily"
|
|
//TriggerScheduleWeekly : type of scheduling is 'weekly'
|
|
TriggerScheduleWeekly = "weekly"
|
|
|
|
//OperationPush : operation for pushing images
|
|
OperationPush = "push"
|
|
//OperationDelete : operation for deleting images
|
|
OperationDelete = "delete"
|
|
)
|