Exemplo n.º 1
0
    def _get_client(self):
        hostname = self.config['hostname']
        username = self.config['username']
        password = self.config['password']
        tenant = self.config['tenant']

        client = catalog.ConsumerClient(hostname, username, password, tenant)
        return client
Exemplo n.º 2
0
#!/usr/bin/python

import getpass
import json

from globalconfig import passwd, url, usr
from vraapiclient import catalog

client = catalog.ConsumerClient(url, usr, passwd)

resourceId = '171d8ab9-1b5b-44e8-ac20-b559da4c1ef3'

#Print table
client.getResourceNetworking(id=resourceId, show='table')

#Get JSON Object
resourceNetworking = client.getResourceNetworking(id=resourceId)

#Print networking values
for i in resource:
    print([i['key'], i['value']['value']])

#Use json.dumps() to get json string
resourceNetworkingJSONString = json.dumps(resource)
print resourceNetworkingJSONString