(kind userconfig.Kind, apiName string)
| 42 | } |
| 43 | |
| 44 | func DeleteAllInProgressFilesByAPI(kind userconfig.Kind, apiName string) error { |
| 45 | err := config.AWS.DeleteS3Prefix(config.ClusterConfig.Bucket, allInProgressForAPIKey(kind, apiName), true) |
| 46 | if err != nil { |
| 47 | return err |
| 48 | } |
| 49 | return nil |
| 50 | } |
| 51 | |
| 52 | func listAllInProgressJobKeysByAPI(kind userconfig.Kind, apiName *string) ([]spec.JobKey, error) { |
| 53 | _, ok := _jobKinds[kind] |
no test coverage detected