An open API service indexing awesome lists of open source software.

https://github.com/mobingilabs/fujitsu-k5-sdk

A Simple PHP SDK Library for Mobingi-ALM K5 Support
https://github.com/mobingilabs/fujitsu-k5-sdk

fujitsu-k5-cloud k5 openstack sdk-php

Last synced: 13 days ago
JSON representation

A Simple PHP SDK Library for Mobingi-ALM K5 Support

Awesome Lists containing this project

README

          

# k5-php-sdk
A PHP SDK Library for Fujitsu K5 Cloud http://jp.fujitsu.com/solutions/cloud/k5/index.html

An online API documentation can be found [here](https://docs.mobingi.com/official/fujitsu-api/v2)

__This project is still under development.__

#### Installation

`composer require mobingilabs/fujitsu-k5-sdk:dev-development`

For stable releases please check [releases](https://github.com/mobingilabs/fujitsu-k5-sdk/releases) section.

#### Sample usage:

```php
getNetworks('jp-east-1');

//Get details of a specific network
//Replace '53bdc6d8-fff8-46e2-b88e-bd9adb633609' with your own network id
echo $networkClient->getNetworksDetail('jp-east-1', '53bdc6d8-fff8-46e2-b88e-bd9adb633609');

```

See `/Examples` folder for more sample codes.