You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to make an object from every location (datacenter).
So that I can check all the servers available in each location(datacenter).
Doesn't creating multiple objects in a script create a problem(such as blocking ,....) for my arubacloud account?
As follows: c1 = CloudInterface(dc=1) c2 = CloudInterface(dc=2) c3 = CloudInterface(dc=3) c4 = CloudInterface(dc=4) c5 = CloudInterface(dc=5) c6 = CloudInterface(dc=6) c1.login(username='******', password='******', load=True) c2.login(username='******', password='******', load=True) c3.login(username='******', password='******', load=True) c4.login(username='******', password='******', load=True) c5.login(username='******', password='******', load=True)
The text was updated successfully, but these errors were encountered:
I want to make an object from every location (datacenter).
So that I can check all the servers available in each location(datacenter).
Doesn't creating multiple objects in a script create a problem(such as blocking ,....) for my arubacloud account?
As follows:
c1 = CloudInterface(dc=1)
c2 = CloudInterface(dc=2)
c3 = CloudInterface(dc=3)
c4 = CloudInterface(dc=4)
c5 = CloudInterface(dc=5)
c6 = CloudInterface(dc=6)
c1.login(username='******', password='******', load=True)
c2.login(username='******', password='******', load=True)
c3.login(username='******', password='******', load=True)
c4.login(username='******', password='******', load=True)
c5.login(username='******', password='******', load=True)
The text was updated successfully, but these errors were encountered: