We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a68c3ac commit b30ede9Copy full SHA for b30ede9
apptrust/model/promote_app_version_request.go
@@ -3,6 +3,7 @@ package model
3
const (
4
PromotionTypeCopy = "copy"
5
PromotionTypeMove = "move"
6
+ PromotionTypeKeep = "keep"
7
8
// This value cannot be set via the --promotion-type flag in the CLI.
9
// It is sent to the promotion_type field in the REST API only when the --dry-run flag is used.
@@ -12,6 +13,7 @@ const (
12
13
var PromotionTypeValues = []string{
14
PromotionTypeCopy,
15
PromotionTypeMove,
16
+ PromotionTypeKeep,
17
}
18
19
type CommonPromoteAppVersion struct {
0 commit comments