2017 © Pedro Peláez
 

library nuagevsd

PHP SDK for Nuage Networks VSD API

image

fdmsantos/nuagevsd

PHP SDK for Nuage Networks VSD API

  • Friday, January 19, 2018
  • by fdmsantos
  • Repository
  • 0 Watchers
  • 1 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PHP Nuage Networks SDK

fdmsantos/nuagevsd is an SDK which allows PHP developers to easily connect to Nuage Networks VSD API in a simple and idiomatic way., (*1)

Requirements

  • PHP 7.0

How to install

composer require fdmsantos/nuagevsd

How to Use

require 'vendor/autoload.php';
use Vsd\Vsd;

$vsd = new Vsd([
    'baseUri'      => '{base_uri}',
    'organization' => '{organization}',
    'user'         => '{user}',
    'password'     => '{password}',
]);

// Create Enterprise
$enterprise = $vsd->enterprises()->create([
    'name'        => '{name}',
    'description' => '{description}',
]);

// Delete Enterprise
$enterprise->delete();

// List Enterprises
foreach ($vsd->enterprises()->list() as $enterprise) {
    print $enterprise->name."\n";
}

Please see samples folder to more examples., (*2)

The Versions

19/01 2018

dev-master

9999999-dev

PHP SDK for Nuage Networks VSD API

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Fabio Santos

api php sdk vsd nuage