Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apptrust/model/promote_app_version_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package model
const (
PromotionTypeCopy = "copy"
PromotionTypeMove = "move"
PromotionTypeKeep = "keep"

// This value cannot be set via the --promotion-type flag in the CLI.
// It is sent to the promotion_type field in the REST API only when the --dry-run flag is used.
Expand All @@ -12,6 +13,7 @@ const (
var PromotionTypeValues = []string{
PromotionTypeCopy,
PromotionTypeMove,
PromotionTypeKeep,
}

type CommonPromoteAppVersion struct {
Expand Down
Loading