Agentless Group

class Agentless(api)

Bases: _ClientGroupBase

assign_work(group, work)

Assigns work to the client group

Parameters
create(name, get_if_already_exists=True)
Parameters
  • name (str) – The name of the client group.

  • get_if_already_exists (bool) – If the objects already exists, just return it as is.

Returns

Config Object of the client group.

delete(group)

Deletes a client group

Parameters

group (Union[config.Object, str]) – Config Object or name of the client group.

get(name, raise_error_if_not_exists=True)
Parameters
  • name (str) – The name of the client group.

  • raise_error_if_not_exists (bool) – Raise an exception if the client group does not exist.

Returns

Config Object of the client group.

list()

Lists all client groups.

Returns

List of Config Object of the client groups.

remove_work(group, work)

Removes work from a client group

Parameters