Exemplo n.º 1
0
def create_group(
    id,
    name,
    x1,
    y1,
    x2,
    y2,
    topology,
    group_type,
    inventory_group_id=0,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(
                                 dict(
                                     id=id,
                                     name=name,
                                     x1=x1,
                                     y1=y1,
                                     x2=x2,
                                     y2=y2,
                                     topology=topology,
                                     group_type=group_type,
                                     inventory_group_id=inventory_group_id,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 2
0
def update_group(
    group_id,
    id=None,
    name=None,
    x1=None,
    y1=None,
    x2=None,
    y2=None,
    topology=None,
    group_type=None,
    inventory_group_id=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        id=id,
        name=name,
        x1=x1,
        y1=y1,
        x2=x2,
        y2=y2,
        topology=topology,
        group_type=group_type,
        inventory_group_id=inventory_group_id,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" + str(group_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 3
0
def update_topology(
    topology_id,
    name=None,
    scale=None,
    panX=None,
    panY=None,
    device_id_seq=None,
    link_id_seq=None,
    group_id_seq=None,
    stream_id_seq=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        name=name,
        scale=scale,
        panX=panX,
        panY=panY,
        device_id_seq=device_id_seq,
        link_id_seq=link_id_seq,
        group_id_seq=group_id_seq,
        stream_id_seq=stream_id_seq,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" + str(topology_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 4
0
def update_link(
    link_id,
    from_device=None,
    to_device=None,
    from_interface=None,
    to_interface=None,
    id=None,
    name=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        from_device=from_device,
        to_device=to_device,
        from_interface=from_interface,
        to_interface=to_interface,
        id=id,
        name=name,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" + str(link_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 5
0
def create_topology(
    name,
    scale,
    panX,
    panY,
    device_id_seq=0,
    link_id_seq=0,
    group_id_seq=0,
    stream_id_seq=0,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(
                                 dict(
                                     name=name,
                                     scale=scale,
                                     panX=panX,
                                     panY=panY,
                                     device_id_seq=device_id_seq,
                                     link_id_seq=link_id_seq,
                                     group_id_seq=group_id_seq,
                                     stream_id_seq=stream_id_seq,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 6
0
def create_device(
    topology,
    name,
    x,
    y,
    id,
    device_type,
    interface_id_seq=0,
    process_id_seq=0,
    host_id=0,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(
                                 dict(
                                     topology=topology,
                                     name=name,
                                     x=x,
                                     y=y,
                                     id=id,
                                     device_type=device_type,
                                     interface_id_seq=interface_id_seq,
                                     process_id_seq=process_id_seq,
                                     host_id=host_id,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 7
0
def update_device(
    device_id,
    topology=None,
    name=None,
    x=None,
    y=None,
    id=None,
    device_type=None,
    interface_id_seq=None,
    process_id_seq=None,
    host_id=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        topology=topology,
        name=name,
        x=x,
        y=y,
        id=id,
        device_type=device_type,
        interface_id_seq=interface_id_seq,
        process_id_seq=process_id_seq,
        host_id=host_id,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" + str(device_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 8
0
def delete_topologyinventory(topology_inventory_id):
    response = requests.delete(util.get_url() +
                               "/api/v2/canvas/topologyinventory/" +
                               str(topology_inventory_id),
                               verify=util.get_verify(),
                               auth=util.get_auth())
    return response
Exemplo n.º 9
0
def create_toolbox(name, ):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(dict(name=name, )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 10
0
def update_toolbox(
    toolbox_id,
    name=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(name=name, )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" + str(toolbox_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 11
0
def create_toolboxitem(
    toolbox,
    data,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "/api/v2/canvas/toolboxitem/",
                             data=json.dumps(dict(
                                 toolbox=toolbox,
                                 data=data,
                             )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 12
0
def create_groupdevice(
    group,
    device,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(dict(
                                 group=group,
                                 device=device,
                             )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 13
0
def create_topologyinventory(
    topology,
    inventory_id,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(
                                 dict(
                                     topology=topology,
                                     inventory_id=inventory_id,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 14
0
def create_interface(
    device,
    name,
    id,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(
                                 dict(
                                     device=device,
                                     name=name,
                                     id=id,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 15
0
def update_groupdevice(
    group_device_id,
    group=None,
    device=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        group=group,
        device=device,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" + str(group_device_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 16
0
def update_toolboxitem(
    toolbox_item_id,
    toolbox=None,
    data=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        toolbox=toolbox,
        data=data,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "/api/v2/canvas/toolboxitem/" +
                              str(toolbox_item_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 17
0
def update_topologyinventory(
    topology_inventory_id,
    topology=None,
    inventory_id=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        topology=topology,
        inventory_id=inventory_id,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "" +
                              str(topology_inventory_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 18
0
def create_process(
    device,
    name,
    process_type,
    id=0,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "/api/v2/canvas/process/",
                             data=json.dumps(
                                 dict(
                                     device=device,
                                     name=name,
                                     process_type=process_type,
                                     id=id,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 19
0
def create_stream(
    from_device,
    to_device,
    label,
    id=0,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "",
                             data=json.dumps(
                                 dict(
                                     from_device=from_device,
                                     to_device=to_device,
                                     label=label,
                                     id=id,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 20
0
def update_interface(
    interface_id,
    device=None,
    name=None,
    id=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        device=device,
        name=name,
        id=id,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "/api/v2/canvas/interface/" +
                              str(interface_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 21
0
def update_stream(
    stream_id,
    from_device=None,
    to_device=None,
    label=None,
    id=None,
):
    headers = {'content-type': 'application/json'}
    data = dict(
        from_device=from_device,
        to_device=to_device,
        label=label,
        id=id,
    )
    data = {x: y for x, y in data.items() if y is not None}
    response = requests.patch(util.get_url() + "/api/v2/canvas/stream/" +
                              str(stream_id) + "/",
                              data=json.dumps(data),
                              verify=util.get_verify(),
                              auth=util.get_auth(),
                              headers=headers)
    return response
Exemplo n.º 22
0
def create_link(
    from_device,
    to_device,
    from_interface,
    to_interface,
    id,
    name,
):
    headers = {'content-type': 'application/json'}
    response = requests.post(util.get_url() + "/api/v2/canvas/link/",
                             data=json.dumps(
                                 dict(
                                     from_device=from_device,
                                     to_device=to_device,
                                     from_interface=from_interface,
                                     to_interface=to_interface,
                                     id=id,
                                     name=name,
                                 )),
                             verify=util.get_verify(),
                             auth=util.get_auth(),
                             headers=headers)
    return response.json()
Exemplo n.º 23
0
def get_topologyinventory(topology_inventory_id):
    response = requests.get(util.get_url() + "" + str(topology_inventory_id),
                            verify=util.get_verify(),
                            auth=util.get_auth())
    return response.json()
Exemplo n.º 24
0
def list_topologyinventory(**kwargs):
    response = util.unpaginate(util.get_url(), '', util.get_verify(),
                               util.get_auth(), kwargs)
    return response
Exemplo n.º 25
0
def delete_toolboxitem(toolbox_item_id):
    response = requests.delete(util.get_url() + "" + str(toolbox_item_id),
                               verify=util.get_verify(),
                               auth=util.get_auth())
    return response
Exemplo n.º 26
0
def get_toolboxitem(toolbox_item_id):
    response = requests.get(util.get_url() + "" + str(toolbox_item_id),
                            verify=util.get_verify(),
                            auth=util.get_auth())
    return response.json()
Exemplo n.º 27
0
def list_toolboxitem(**kwargs):
    response = util.unpaginate(util.get_url(), '', util.get_verify(),
                               util.get_auth(), kwargs)
    return response
Exemplo n.º 28
0
def delete_process(process_id):
    response = requests.delete(util.get_url() + "" + str(process_id),
                               verify=util.get_verify(),
                               auth=util.get_auth())
    return response
Exemplo n.º 29
0
def get_process(process_id):
    response = requests.get(util.get_url() + "" + str(process_id),
                            verify=util.get_verify(),
                            auth=util.get_auth())
    return response.json()
Exemplo n.º 30
0
def list_process(**kwargs):
    response = util.unpaginate(util.get_url(), '', util.get_verify(),
                               util.get_auth(), kwargs)
    return response