Giter Site home page Giter Site logo

Comments (2)

Electronickss avatar Electronickss commented on July 17, 2024

Here is my current functions for updating
http://pastebin.com/0RgnyyC7

We have two types of asset groups, those we use to define scans, the keys of the original json dictionary, and all of our customers within that set, which are used to group information.

Edit: Switched from my entire code to the functions themselves

from pysecuritycenter.

Electronickss avatar Electronickss commented on July 17, 2024

After rereading through the ips_in_asset_groups example in sc5, I realized that I was not passing the id of the asset in with my patch request. When I passed in the the id of the asset I was trying to patch like this: 'asset/%s' % ident where ident is the id of the asset group, I was able to solve my issue.

My current functions look like this:

# Defining Asset Create Function
def assetCreateFunction(name, ip_list):
    sc.post('asset', json={
            'context': '',
            'createdTime': 0,
            'modifiedTime': 0,
            'canManage' : 'true',
            'type': 'static',
            'name': name,
            'definedIPs': ip_list,
            'description': name,
            'tags': name,
    }),


# Defining Asset Patch Function
def assetPatchFunction(name, ip_list, ident):
    sc.patch('asset/%s' % ident, json={
            'name': name,
            'definedIPs': ip_list,
    }),

This means I needed to configure a get request of the current assets. I built the response into a dictionary of dictionaries.

I call those functions with a try catch block, that fires if there is a KeyError (if the variable doesn't exist from the get request) it will fire the create function

Edit: Discovered after some troubleshooting that json={...} does indeed actually work better

from pysecuritycenter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.