WorkspaceManagerAssignmentJobsOperations Class

Warning

DO NOT instantiate this class directly.

Instead, you should access the following operations through

SecurityInsightsMgmtClient's

<xref:workspace_manager_assignment_jobs> attribute.

Constructor

WorkspaceManagerAssignmentJobsOperations(*args, **kwargs)

Methods

create

Create a job for the specified workspace manager assignment.

delete

Deletes the specified job from the specified workspace manager assignment.

get

Gets a job.

list

Get all jobs for the specified workspace manager assignment.

create

Create a job for the specified workspace manager assignment.

create(resource_group_name: str, workspace_name: str, workspace_manager_assignment_name: str, **kwargs: Any) -> Job

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

workspace_name
Required
str

The name of the workspace. Required.

workspace_manager_assignment_name
Required
str

The name of the workspace manager assignment. Required.

Returns

Type Description
Job

Job. The Job is compatible with MutableMapping

Exceptions

Type Description

delete

Deletes the specified job from the specified workspace manager assignment.

delete(resource_group_name: str, workspace_name: str, workspace_manager_assignment_name: str, job_name: str, **kwargs: Any) -> None

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

workspace_name
Required
str

The name of the workspace. Required.

workspace_manager_assignment_name
Required
str

The name of the workspace manager assignment. Required.

job_name
Required
str

The job name. Required.

Returns

Type Description

None

Exceptions

Type Description

get

Gets a job.

get(resource_group_name: str, workspace_name: str, workspace_manager_assignment_name: str, job_name: str, **kwargs: Any) -> Job

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

workspace_name
Required
str

The name of the workspace. Required.

workspace_manager_assignment_name
Required
str

The name of the workspace manager assignment. Required.

job_name
Required
str

The job name. Required.

Returns

Type Description
Job

Job. The Job is compatible with MutableMapping

Exceptions

Type Description

list

Get all jobs for the specified workspace manager assignment.

list(resource_group_name: str, workspace_name: str, workspace_manager_assignment_name: str, *, orderby: str | None = None, top: int | None = None, skip_token: str | None = None, **kwargs: Any) -> ItemPaged[Job]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

workspace_name
Required
str

The name of the workspace. Required.

workspace_manager_assignment_name
Required
str

The name of the workspace manager assignment. Required.

Keyword-Only Parameters

Name Description
orderby
str

Sorts the results. Optional. Default value is None.

Default value: None
top
int

Returns only the first n results. Optional. Default value is None.

Default value: None
skip_token
str

Skiptoken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skiptoken parameter that specifies a starting point to use for subsequent calls. Optional. Default value is None.

Default value: None

Returns

Type Description

An iterator like instance of Job

Exceptions

Type Description