-
Notifications
You must be signed in to change notification settings - Fork 563
/
Copy pathmodels.go
70 lines (58 loc) · 2.15 KB
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package spec
import (
"github.com/diggerhq/digger/libs/scheduler"
)
type ReporterSpec struct {
ReporterType string `json:"reporter_type"`
ReportingStrategy string `json:"reporting_strategy"`
ReportTerraformOutput bool `json:"report_terraform_output"`
}
type CommentUpdaterSpec struct {
CommentUpdaterType string `json:"comment_updater_type"`
}
type LockSpec struct {
LockType string `json:"lock_type"`
LockProvider string `json:"lock_provider"`
}
type BackendSpec struct {
BackendType string `json:"backend_type"`
BackendHostname string `json:"backend_hostname"`
BackendOrganisationName string `json:"backend_organisation_hostname"`
BackendJobToken string `json:"backend_job_token"`
}
type VcsSpec struct {
Actor string `json:"actor"`
RepoFullname string `json:"repo_full_name"`
RepoName string `json:"repo_name"`
RepoOwner string `json:"repo_owner"`
VcsType string `json:"vcs_type"`
WorkflowFile string `json:"workflow_file"`
GithubEnterpriseHostname string `json:"github_enterprise_hostname"`
}
type PolicySpec struct {
PolicyType string `json:"policy_type"`
}
type VariableSpec struct {
Name string `json:"name"`
Value string `json:"value"`
IsSecret bool `json:"is_secret"`
IsInterpolated bool `json:"is_interpolated"`
Stage string `json:"stage"`
}
type SpecType string
const SpecTypeManualJob SpecType = "manual_job"
type Spec struct {
// TODO: replace these three to be nested into one of the other specs
SpecType SpecType `json:"spec_type"`
JobId string `json:"job_id"`
CommentId string `json:"comment_id"`
RunName string `json:"run_name"`
Job scheduler.JobJson `json:"job"`
Reporter ReporterSpec `json:"reporter"`
CommentUpdater CommentUpdaterSpec `json:"comment_updater"`
Lock LockSpec `json:"lock"`
Backend BackendSpec `json:"backend"`
VCS VcsSpec `json:"vcs"`
Policy PolicySpec `json:"policy_provider"`
Variables []VariableSpec `json:"variables"`
}