github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_download_artifact_options.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 // options to download artifacts from previous steps 13 type DownloadArtifactOptions struct { 14 AllPreviousSteps bool `json:"allPreviousSteps,omitempty"` 15 // previous step numbers starting from 1 16 PreviousStepNumbers []int32 `json:"previousStepNumbers,omitempty"` 17 // previous test names 18 PreviousTestNames []string `json:"previousTestNames,omitempty"` 19 }