def delete_training_job()

in src/hyperpod_cli/clients/kubernetes_client.py [0:0]


    def delete_training_job(self, job_name: str, namespace: str):
        return client.CustomObjectsApi().delete_namespaced_custom_object(
            group=PYTORCH_CUSTOM_OBJECT_GROUP,
            version=PYTORCH_CUSTOM_OBJECT_VERSION,
            namespace=namespace,
            plural=PYTORCH_CUSTOM_OBJECT_PLURAL,
            name=job_name,
        )