github.com/kubeshop/testkube@v1.17.23/pkg/tcl/cloudtcl/data/testworkflow/output_models.go (about)

     1  // Copyright 2024 Testkube.
     2  //
     3  // Licensed as a Testkube Pro file under the Testkube Community
     4  // License (the "License"); you may not use this file except in compliance with
     5  // the License. You may obtain a copy of the License at
     6  //
     7  //	https://github.com/kubeshop/testkube/blob/main/licenses/TCL.txt
     8  
     9  package testworkflow
    10  
    11  type OutputPresignSaveLogRequest struct {
    12  	ID           string `json:"id"`
    13  	WorkflowName string `json:"workflowName"`
    14  }
    15  
    16  type OutputPresignSaveLogResponse struct {
    17  	URL string `json:"url"`
    18  }
    19  
    20  type OutputPresignReadLogRequest struct {
    21  	ID           string `json:"id"`
    22  	WorkflowName string `json:"workflowName"`
    23  }
    24  
    25  type OutputPresignReadLogResponse struct {
    26  	URL string `json:"url"`
    27  }
    28  
    29  type OutputHasLogRequest struct {
    30  	ID           string `json:"id"`
    31  	WorkflowName string `json:"workflowName"`
    32  }
    33  
    34  type OutputHasLogResponse struct {
    35  	Has bool `json:"has"`
    36  }