-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add readme file * Long overdue readme file for the client * set httpRequestTimeout & httpPoolConnections while creating TransportConfig Currently NewTransportConfig takes an "httpRequestTimeout int" but it is not used to fill in the returned "cfg TransportConfig", which is wrong. Fixing the issue in this patch.
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Infoblox Go Client | ||
|
||
An Infoblox Client library for Go. | ||
|
||
This library is compatible with Go 1.2+ | ||
|
||
- [Prerequisites](#Prerequisites) | ||
- [Installation](#Installation) | ||
- [Usage](#Usage) | ||
|
||
## Prerequisites | ||
* Infoblox GRID with 2.5 or above WAPI support | ||
* Go 1.2 or above | ||
|
||
## Installation | ||
go get github.com/infobloxopen/infoblox-go-client | ||
|
||
## Usage | ||
|
||
The following is a very simple example for the client usage: | ||
|
||
package main | ||
import ( | ||
"fmt" | ||
ibclient "github.com/infobloxopen/infoblox-go-client" | ||
) | ||
|
||
func main() { | ||
hostConfig := ibclient.HostConfig{ | ||
Host: "<NIOS grid IP>", | ||
Version: "<WAPI version>", | ||
Port: "PORT", | ||
Username: "username", | ||
Password: "password", | ||
} | ||
transportConfig := ibclient.NewTransportConfig("false", 20, 10) | ||
requestBuilder := &ibclient.WapiRequestBuilder{} | ||
requestor := &ibclient.WapiHttpRequestor{} | ||
conn, err := ibclient.NewConnector(hostConfig, transportConfig, requestBuilder, requestor) | ||
if err != nil { | ||
fmt.Println(err) | ||
} | ||
objMgr := ibclient.NewObjectManager(conn, "myclient", "") | ||
//Fetches grid information | ||
fmt.Println(objMgr.GetLicense()) | ||
} | ||
|
||
## Supported NIOS operations | ||
|
||
* CreateNetworkView | ||
* CreateDefaultNetviews | ||
* CreateNetwork | ||
* CreateNetworkContainer | ||
* GetNetworkView | ||
* GetNetwork | ||
* GetNetworkContainer | ||
* AllocateNetwork | ||
* UpdateFixedAddress | ||
* GetFixedAddress | ||
* ReleaseIP | ||
* DeleteNetwork | ||
* GetEADefinition | ||
* CreateEADefinition | ||
* UpdateNetworkViewEA | ||
* GetCapacityReport | ||
* GetAllMembers | ||
* GetUpgradeStatus (2.7 or above) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters