Source code for laceworksdk.api.v2.entities

# -*- coding: utf-8 -*-
"""Lacework Entities API wrapper."""

from laceworksdk.api.search_endpoint import SearchEndpoint


[docs] class EntitiesAPI: """A class used to represent the `Entities API endpoint <https://docs.lacework.net/api/v2/docs/#tag/Entities>`_ The Entities API endpoint is simply a parent for different types of entities that can be queried. Attributes: ---------- applications: A ApplicationsAPI instance. command_lines: A CommandLinesAPI instance. containers: A ContainersAPI instance. files: A FilesAPI instance. images: A ImagesAPI instance. internal_ip_addresses: A InternalIPAddressesAPI instance. k8s_pods: A K8sPodsAPI instance. machines: A MachinesAPI instance. machine_details: A MachineDetailsAPI instance. network_interfaces: A NetworkInterfacesAPI instance. new_file_hashes: A NewFileHashesAPI instance. packages: A PackagesAPI instance. processes: A ProcessesAPI instance. users: A UsersAPI instance. """ def __init__(self, session): """Initializes the EntitiesAPI object. Args: session (HttpSession): An instance of the HttpSession class Returns: EntitiesAPI: An instance of this class """ super().__init__() self._base_path = "Entities" self.applications = self.ApplicationsAPI(session, self._base_path) self.command_lines = self.CommandLinesAPI(session, self._base_path) self.containers = self.ContainersAPI(session, self._base_path) self.files = self.FilesAPI(session, self._base_path) self.images = self.ImagesAPI(session, self._base_path) self.internal_ip_addresses = self.InternalIPAddressesAPI( session, self._base_path ) self.k8s_pods = self.K8sPodsAPI(session, self._base_path) self.machines = self.MachinesAPI(session, self._base_path) self.machine_details = self.MachineDetailsAPI(session, self._base_path) self.network_interfaces = self.NetworkInterfacesAPI(session, self._base_path) self.new_file_hashes = self.NewFileHashesAPI(session, self._base_path) self.packages = self.PackagesAPI(session, self._base_path) self.processes = self.ProcessesAPI(session, self._base_path) self.users = self.UsersAPI(session, self._base_path)
[docs] class ApplicationsAPI(SearchEndpoint): """A class used to represent the Applications API endpoint. Methods: ------- search(json=None) A method to search Applications objects. """ RESOURCE = "Applications"
[docs] class CommandLinesAPI(SearchEndpoint): """A class used to represent the Command Lines API endpoint. Methods: ------- search(json=None) A method to search CommandLines objects. """ RESOURCE = "CommandLines"
[docs] class ContainersAPI(SearchEndpoint): """A class used to represent the Containers API endpoint. Methods: ------- search(json=None) A method to search Containers objects. """ RESOURCE = "Containers"
[docs] class FilesAPI(SearchEndpoint): """A class used to represent the Files API endpoint. Methods: ------- search(json=None) A method to search Files objects. """ RESOURCE = "Files"
[docs] class ImagesAPI(SearchEndpoint): """A class used to represent the Images API endpoint. Methods: ------- search(json=None) A method to search Images objects. """ RESOURCE = "Images"
[docs] class InternalIPAddressesAPI(SearchEndpoint): """A class used to represent the Internal IP Addresses API endpoint. Methods: ------- search(json=None) A method to search InternalIPAddresses objects. """ RESOURCE = "InternalIPAddresses"
[docs] class K8sPodsAPI(SearchEndpoint): """A class used to represent the K8s Pods API endpoint. Methods: ------- search(json=None) A method to search K8sPods objects. """ RESOURCE = "K8sPods"
[docs] class MachinesAPI(SearchEndpoint): """A class used to represent the Machines API endpoint. Methods: ------- search(json=None) A method to search Machines objects. """ RESOURCE = "Machines"
[docs] class MachineDetailsAPI(SearchEndpoint): """A class used to represent the Machine Details API endpoint. Methods: ------- search(json=None) A method to search MachineDetails objects. """ RESOURCE = "MachineDetails"
[docs] class NetworkInterfacesAPI(SearchEndpoint): """A class used to represent the Network Interfaces API endpoint. Methods: ------- search(json=None) A method to search NetworkInterfaces objects. """ RESOURCE = "NetworkInterfaces"
[docs] class NewFileHashesAPI(SearchEndpoint): """A class used to represent the New File Hashes API endpoint. Methods: ------- search(json=None) A method to search NewFileHashes objects. """ RESOURCE = "NewFileHashes"
[docs] class PackagesAPI(SearchEndpoint): """A class used to represent the Packages API endpoint. Methods: ------- search(json=None) A method to search Packages objects. """ RESOURCE = "Packages"
[docs] class ProcessesAPI(SearchEndpoint): """A class used to represent the Processes API endpoint. Methods: ------- search(json=None) A method to search Processes objects. """ RESOURCE = "Processes"
[docs] class UsersAPI(SearchEndpoint): """A class used to represent the Users API endpoint. Methods: ------- search(json=None) A method to search Users objects. """ RESOURCE = "Users"