github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_secret_volume_source_items.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  // Maps a string key to a path within a volume.
    13  type SecretVolumeSourceItems struct {
    14  	// key is the key to project.
    15  	Key  string        `json:"key"`
    16  	Mode *BoxedInteger `json:"mode,omitempty"`
    17  	// path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.
    18  	Path string `json:"path"`
    19  }