github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_test_trigger_key_map.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  type TestTriggerKeyMap struct {
    13  	// list of supported values for resources
    14  	Resources []string `json:"resources"`
    15  	// list of supported values for actions
    16  	Actions []string `json:"actions"`
    17  	// list of supported values for executions
    18  	Executions []string `json:"executions"`
    19  	// mapping between resources and supported events
    20  	Events map[string][]string `json:"events"`
    21  	// list of supported values for conditions
    22  	Conditions []string `json:"conditions,omitempty"`
    23  	// list of supported values for concurrency policies
    24  	ConcurrencyPolicies []string `json:"concurrencyPolicies"`
    25  }