Community
    • Categories
    • Recent
    • Popular
    • Users
    • Search
    • Register
    • Login
    1. Home
    2. Aaron Ruddick
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    Aaron Ruddick

    @Aaron Ruddick

    0
    Reputation
    24
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Aaron Ruddick Unfollow Follow

    Latest posts made by Aaron Ruddick

    • RE: New major release 1.13.

      @Claudia-Isenberg

      Hi Claudia,

      The download doesn't seem to be completing. It gets about half way:
      00d585d5-946a-4d4c-8c75-8973cf9976f0-image.png

      posted in General
      Aaron RuddickA
      Aaron Ruddick
    • Python API - Create server object with relations?

      Hi,

      I am new to the product and trying to test it out and pull down some of my data via Salt.

      Is there a way to combine the two requests below? So I can create the object and give it a version in the same request:

      test2 = api.request("cmdb.object.create",{
      "type": "C__OBJTYPE__APPLICATION",
      "title": software,

                      "apikey": "xxxxx"
                  })
      

      test3 = api.request("cmdb.category.create", {
      "category": "C__CATG__VERSION",
      "objID": test2[id],
      "data": {
      "title": version
      },
      "apikey": "xxxxxx"
      })

      #######################

      test2 = api.request("cmdb.object.create",{
      "type": "C__OBJTYPE__APPLICATION",
      "title": software,

                      "apikey": "xxxxx",
                      "categories":{
                            "version": {.....}
                            "Other stuff": {.....}
                         }
                  })
      

      Thank you!!!

      posted in Entwicklung
      Aaron RuddickA
      Aaron Ruddick