Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // GetRadixBatches Get status of all batches GetRadixBatches(ctx context.Context) ([]modelsv2.RadixBatch, error) // GetRadixBatchSingleJobs Get status of all single jobs GetRadixBatchSingleJobs(ctx context.Context) ([]modelsv2.RadixBatch, error) // GetRadixBatch Get a batch GetRadixBatch(ctx context.Context, batchName string) (*modelsv2.RadixBatch, error) // CreateRadixBatch Create a batch with parameters CreateRadixBatch(ctx context.Context, batchScheduleDescription *common.BatchScheduleDescription) (*modelsv2.RadixBatch, error) // CopyRadixBatch Copy a batch with deployment and optional parameters CopyRadixBatch(ctx context.Context, batchName, deploymentName string) (*modelsv2.RadixBatch, error) // CreateRadixBatchSingleJob Create a batch with single job parameters CreateRadixBatchSingleJob(ctx context.Context, jobScheduleDescription *common.JobScheduleDescription) (*modelsv2.RadixBatch, error) // CopyRadixBatchJob Copy a batch job parameter CopyRadixBatchJob(ctx context.Context, jobName, deploymentName string) (*modelsv2.RadixBatch, error) // DeleteRadixBatchJob Delete a single job DeleteRadixBatchJob(ctx context.Context, jobName string) error // StopRadixBatch Stop a batch StopRadixBatch(ctx context.Context, batchName string) error // StopRadixBatchJob Stop a batch job StopRadixBatchJob(ctx context.Context, batchName, jobName string) error // RestartRadixBatch Restart a batch RestartRadixBatch(ctx context.Context, batchName string) error // RestartRadixBatchJob Restart a batch job RestartRadixBatchJob(ctx context.Context, batchName, jobName string) error }
Click to show internal directories.
Click to hide internal directories.