github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_debug_info.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  // Testkube debug info
    13  type DebugInfo struct {
    14  	ClientVersion  string              `json:"clientVersion,omitempty"`
    15  	ServerVersion  string              `json:"serverVersion,omitempty"`
    16  	ClusterVersion string              `json:"clusterVersion,omitempty"`
    17  	ApiLogs        []string            `json:"apiLogs,omitempty"`
    18  	OperatorLogs   []string            `json:"operatorLogs,omitempty"`
    19  	ExecutionLogs  map[string][]string `json:"executionLogs,omitempty"`
    20  }