Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pkg/runbooks/runbook.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ type Runbook struct {
PublishedRunbookSnapshotID string `json:"PublishedRunbookSnapshotId,omitempty"`
RunRetentionPolicy *RunbookRetentionPolicy `json:"RunRetentionPolicy,omitempty"`
RunbookProcessID string `json:"RunbookProcessId,omitempty"`
RunbookTags []string `json:"RunbookTags,omitempty"`
SpaceID string `json:"SpaceId,omitempty"`
ForcePackageDownload bool `json:"ForcePackageDownload"`

Expand Down
1 change: 1 addition & 0 deletions pkg/tagsets/tag_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const (
TagSetScopeTenant TagSetScope = "Tenant"
TagSetScopeEnvironment TagSetScope = "Environment"
TagSetScopeProject TagSetScope = "Project"
TagSetScopeRunbook TagSetScope = "Runbook"
)

type TagSetType string
Expand Down
Loading