ray/dashboard/modules/job
Archit Kulkarni 50e2bef9d0
[Jobs] Hide dashboard from Job Submission import path (#22223)
For public SDK APIs, change the import path from 

```python
from ray.dashboard.modules.job.common import JobStatus, JobStatusInfo
from ray.dashboard.modules.job.sdk import JobSubmissionClient
```

to 
```python
from ray.job_submission import JobStatus, JobSubmissionClient
```

`JobStatus`, `JobStatusInfo` and `JobSubmissionClient` were the only names referenced in the SDK doc so far, but we can add more later as they appear.
2022-02-09 13:55:32 -06:00
..
tests [Jobs] Hide dashboard from Job Submission import path (#22223) 2022-02-09 13:55:32 -06:00
__init__.py Job module without submission (#13081) 2020-12-31 11:12:17 +08:00
cli.py [Jobs] Hide dashboard from Job Submission import path (#22223) 2022-02-09 13:55:32 -06:00
common.py [jobs] Monitor jobs in the background to avoid requiring clients to poll (#22180) 2022-02-07 15:25:25 -06:00
job_head.py [CI] Format Python code with Black (#21975) 2022-01-29 18:41:57 -08:00
job_manager.py [Jobs] Hide dashboard from Job Submission import path (#22223) 2022-02-09 13:55:32 -06:00
sdk.py [jobs] Support ray client format of connection string address for external module (#22116) 2022-02-04 13:35:10 -06:00
utils.py [Jobs] Add log streaming for jobs (#20976) 2021-12-14 17:01:53 -08:00