github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_test_workflow_spec.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 type TestWorkflowSpec struct { 13 Use []TestWorkflowTemplateRef `json:"use,omitempty"` 14 Config map[string]TestWorkflowParameterSchema `json:"config,omitempty"` 15 Content *TestWorkflowContent `json:"content,omitempty"` 16 Container *TestWorkflowContainerConfig `json:"container,omitempty"` 17 Job *TestWorkflowJobConfig `json:"job,omitempty"` 18 Pod *TestWorkflowPodConfig `json:"pod,omitempty"` 19 Setup []TestWorkflowStep `json:"setup,omitempty"` 20 Steps []TestWorkflowStep `json:"steps,omitempty"` 21 After []TestWorkflowStep `json:"after,omitempty"` 22 Events []TestWorkflowEvent `json:"events,omitempty"` 23 }