github.com/kubeshop/testkube@v1.17.23/pkg/cloud/data/config/config_models.go (about)

     1  package config
     2  
     3  import "github.com/kubeshop/testkube/pkg/api/v1/testkube"
     4  
     5  type GetUniqueClusterIdRequest struct{}
     6  
     7  type GetUniqueClusterIdResponse struct {
     8  	ClusterID string `json:"clusterId"`
     9  }
    10  
    11  type GetTelemetryEnabledRequest struct{}
    12  
    13  type GetTelemetryEnabledResponse struct {
    14  	Enabled bool `json:"enabled"`
    15  }
    16  
    17  type GetRequest struct{}
    18  
    19  type GetResponse struct {
    20  	Config testkube.Config `json:"config"`
    21  }
    22  
    23  type UpsertRequest struct {
    24  	Config testkube.Config `json:"config"`
    25  }
    26  
    27  type UpsertResponse struct {
    28  	Config testkube.Config `json:"config"`
    29  }