Skip to content

Commit

Permalink
feat(parallel): add runParallel to GO check and group constructs [s…
Browse files Browse the repository at this point in the history
…c-18211] (#118)
  • Loading branch information
shiini2 authored Dec 15, 2023
1 parent 9ddd61d commit 8b8e529
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ type Check struct {
Activated bool `json:"activated"`
Muted bool `json:"muted"`
ShouldFail bool `json:"shouldFail"`
RunParallel bool `json:"runParallel"`
Locations []string `json:"locations,omitempty"`
DegradedResponseTime int `json:"degradedResponseTime"`
MaxResponseTime int `json:"maxResponseTime"`
Expand Down Expand Up @@ -487,6 +488,7 @@ type MultiStepCheck struct {
Activated bool `json:"activated"`
Muted bool `json:"muted"`
ShouldFail bool `json:"shouldFail"`
RunParallel bool `json:"runParallel"`
Locations []string `json:"locations,omitempty"`
Script string `json:"script,omitempty"`
EnvironmentVariables []EnvironmentVariable `json:"environmentVariables"`
Expand Down Expand Up @@ -645,6 +647,7 @@ type Group struct {
Name string `json:"name"`
Activated bool `json:"activated"`
Muted bool `json:"muted"`
RunParallel bool `json:"runParallel"`
Tags []string `json:"tags"`
Locations []string `json:"locations"`
Concurrency int `json:"concurrency"`
Expand Down

0 comments on commit 8b8e529

Please sign in to comment.