JobService Class

Basic job service configuration for backward compatibility. Use JupyterLabJobService, SshJobService, TensorBoardJobService or VsCodeJobService specific to your job type instead of JobService.

Inheritance
azure.ai.ml.entities._job.job_service.JobServiceBase
JobService

Constructor

JobService(*, endpoint: str | None = None, type: Literal['jupyter_lab', 'ssh', 'tensor_board', 'vs_code'] | None = None, nodes: Literal['all'] | None = None, status: str | None = None, port: int | None = None, properties: Dict[str, str] | None = None, **kwargs)

Parameters

endpoint
str
Required

Url for endpoint.

type
str
Required

Endpoint type. Accepts "jupyter_lab", "ssh", "tensor_board", "vs_code"

port
int
Required

Port for endpoint.

nodes
str
Required

Indicates whether the service has to run in all nodes.

properties
dict[str, str]
Required

Additional properties to set on the endpoint.

status
str
Required

Status of endpoint.

kwargs
dict
Required

A dictionary of additional configuration parameters.