Git Product home page Git Product logo

python_sdk's Introduction

python_sdk

Python script as a wrapper for Aviatrix API

Installation

pip install aviatrix-sdk

Usage examples:

Login to controller:

from aviatrix import Aviatrix

controller_ip = 'x.x.x.x'
username = 'admin'
password = 'password'

controller = Aviatrix(controller_ip)
controller.login(username,password)

Create an AWS account:

from aviatrix import Aviatrix

controller_ip = 'x.x.x.x'
username = 'admin'
password = 'password'
admin_email = '[email protected]'
aviatrixroleapp = 'arn:aws:iam::XXXXXXXXXXX:role/aviatrix-role-app'
aviatrixroleec2 = 'arn:aws:iam::XXXXXXXXXXX:role/aviatrix-role-ec2'

controller = Aviatrix(controller_ip)
controller.login(username,password)
controller.setup_account_profile("<<AWS Account Name>>",
                                 password,
                                 admin_email,
                                 "1",
                                 account,
                                 aviatrixroleapp,
                                 aviatrixroleec2)

Create a GW

from aviatrix import Aviatrix

controller_ip = 'x.x.x.x'
username = 'admin'
password = 'password'
gateway_name = 'GatewayName'
vpcid = 'vpc-XXXXXX'
region = 'us-east-1'
gwsize = 't2.micro'
subnet = '10.x.x.x/24'

controller = Aviatrix(controller_ip)
controller.login(username,password)
controller.create_gateway("AWSAccount",
                                "1",
                                gateway_name,
                                vpcid,
                                region_spoke,
                                gwsize_spoke,
                                subnet_spoke)

Getting the CID

from aviatrix import Aviatrix

controller_ip = 'x.x.x.x'
username = 'admin'
password = 'password'
gateway_name =

controller = Aviatrix(controller_ip)
controller.login(username,password)
controller.CID

python_sdk's People

Contributors

jorgebonilla avatar sxw97g avatar

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.