github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_executions_totals.go (about) 1 /* 2 * Testkube API 3 * 4 * Testkube provides a Kubernetes-native framework for test definition, execution and results 5 * 6 * API version: 1.0.0 7 * Contact: testkube@kubeshop.io 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package testkube 11 12 // various execution counters 13 type ExecutionsTotals struct { 14 // the total number of executions available 15 Results int32 `json:"results"` 16 // the total number of passed executions available 17 Passed int32 `json:"passed"` 18 // the total number of failed executions available 19 Failed int32 `json:"failed"` 20 // the total number of queued executions available 21 Queued int32 `json:"queued"` 22 // the total number of running executions available 23 Running int32 `json:"running"` 24 }