Ejemplo n.º 1
0
def delete(agent_id):
    try:
        AgentState.get(agent_id).delete()
    except Exception:
        print("Agent might not exist")
Ejemplo n.º 2
0
def get_all():
    return AgentState.scan()
Ejemplo n.º 3
0
def exists():
    return AgentState.exists()
Ejemplo n.º 4
0
def query(agent_id):
    try:
        return AgentState.get(agent_id)
    except Exception:
        return None
Ejemplo n.º 5
0
def init(agent_id):
    if query(agent_id) is None:
        agent_state = AgentState(agent_id)
        agent_state.save()
        return agent_state
Ejemplo n.º 6
0
def delete_table():
    AgentState.delete_table()
Ejemplo n.º 7
0
def create_table():
    AgentState.create_table(read_capacity_units=10, write_capacity_units=10)