Skip to content

ashish234/api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

mkdir araalinetworks
git clone https://github.com/araalinetworks/api.git
cd api/python

# install/upgrade
python araalictl.py

# to authorize your copy (signup link below)
./araalictl authorize

Links

Accept policies

ap = AppPolicy(zone, app)
for link in ap.iterlinks():
  if something or link.lstate != "DEFINED_POLICY":
    link.accept() # based on some side information
  if something: # based on some side information
    link.snooze()
ap.review() # review what will get committed
ap.commit()

Relocate Policies

ap2 = ap.relocate(new_zone, new_app)
for link in ap2.iterlinks():
  # accept is the default thing on relocation for all accepted policies in ap, rest is snoozed by default
  link.snooze() # snooze the ones you dont like
  link.accept() # if you want to accept a snoozed on in original
  # relocate either client or server for the link's that need change
  link.client.relocate(...)
  link.server.relocate(...)
ap2.review() # reivew what we will be committing
ap2.commit()

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%