github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_artifact_update_request.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  // artifact request update body
    13  type ArtifactUpdateRequest struct {
    14  	// artifact storage class name for container executor
    15  	StorageClassName *string `json:"storageClassName,omitempty"`
    16  	// artifact volume mount path for container executor
    17  	VolumeMountPath *string `json:"volumeMountPath,omitempty"`
    18  	// artifact directories for scraping
    19  	Dirs *[]string `json:"dirs,omitempty"`
    20  	// regexp to filter scraped artifacts, single or comma separated
    21  	Masks *[]string `json:"masks,omitempty"`
    22  	// artifact bucket storage
    23  	StorageBucket *string `json:"storageBucket,omitempty"`
    24  	// don't use a separate folder for execution artifacts
    25  	OmitFolderPerExecution *bool `json:"omitFolderPerExecution,omitempty"`
    26  	// whether to share volume between pods
    27  	SharedBetweenPods *bool `json:"sharedBetweenPods,omitempty"`
    28  	// whether to use default storage class name
    29  	UseDefaultStorageClassName *bool `json:"useDefaultStorageClassName,omitempty"`
    30  }