Пример #1
0
def get_computer_isolation(connector_guid: str):
    """A function to get the AMP isolation status of a computer"""

    # Return HTTP 501 if not configured
    if not os.getenv("AMP_API_CLIENT_ID") or not os.getenv("AMP_API_KEY"):
        raise HTTPException(status_code=501, detail="Module not configured")

    # Create an AMP API Client
    client = amp_client.AmpClient(client_id=os.getenv("AMP_API_CLIENT_ID"),
                                  api_key=os.getenv("AMP_API_KEY"))

    # Get the AMP Isolation status
    response = client.get_isolation(guid=connector_guid)

    if response:
        # Return a JSON formatted response
        return response
    else:
        # If AMP returns nothing, return a 204
        return Response(status_code=204)
Пример #2
0
def get_groups():
    """A function to get all groups from AMP"""

    # Return HTTP 501 if not configured
    if not os.getenv("AMP_API_CLIENT_ID") or not os.getenv("AMP_API_KEY"):
        raise HTTPException(status_code=501, detail="Module not configured")

    # Create an AMP API Client
    client = amp_client.AmpClient(client_id=os.getenv("AMP_API_CLIENT_ID"),
                                  api_key=os.getenv("AMP_API_KEY"))

    # Get the groups that exist in AMP
    response = client.get_groups()

    if response:
        # Return a JSON formatted response
        return response
    else:
        # If AMP returns nothing, return a 204
        return Response(status_code=204)
Пример #3
0
def get_computer(ip_address: str):
    """A function to retrieve AMP computer data and return it as JSON"""

    # Return HTTP 501 if not configured
    if not os.getenv("AMP_API_CLIENT_ID") or not os.getenv("AMP_API_KEY"):
        raise HTTPException(status_code=501, detail="Module not configured")

    # Create an AMP API Client
    client = amp_client.AmpClient(client_id=os.getenv("AMP_API_CLIENT_ID"),
                                  api_key=os.getenv("AMP_API_KEY"))

    # Get the computers that have been at the internal IP
    response = client.get_computers(internal_ip=ip_address)

    if response:
        # Return a JSON formatted response
        return response
    else:
        # If AMP returns nothing, return a 204
        return Response(status_code=204)
Пример #4
0
def set_computer_group(connector_guid: str, group_data: AmpGroup):
    """A function to set the Group for a specific AMP computer"""

    # Return HTTP 501 if not configured
    if not os.getenv("AMP_API_CLIENT_ID") or not os.getenv("AMP_API_KEY"):
        raise HTTPException(status_code=501, detail="Module not configured")

    # Create an AMP API Client
    client = amp_client.AmpClient(client_id=os.getenv("AMP_API_CLIENT_ID"),
                                  api_key=os.getenv("AMP_API_KEY"))

    # Patch the computer to change the group
    response = client.patch_computer(connector_guid=connector_guid,
                                     data=group_data.dict())

    if response:
        # Return a JSON formatted response
        return response
    else:
        # If AMP returns nothing, return a 204
        return Response(status_code=204)