Giter VIP home page Giter VIP logo

go-vmmanager-api's Introduction

Ispsystems Vmmanager v6 JSON-RPC API in Golang

This is the Ispsystems Vmmanager v6 JSON-RPC API wrapper in Go. See a documentation for more information.

How to use

package main

import (
    vmm "github.com/gadost/go-vmmanager-api"
    "github.com/gadost/go-vmmanager-api/types"
    "fmt"
)

func main() {
    // Define auth params
    auth := &vmm.Auth{
        AuthByEmailAndPassword: vmm.AuthByEmailAndPassword{
            Email:    "[email protected]",
            Password: "superPassworD",
        },
    }

    // Connect to VMmanager6
    conn := vmm.New("domain.com").Auth(auth)
    
    // Get Cluster list
    resp, err := conn.ClusterList()
    fmt.Println(resp.LastNotify)

    //Migrate host
    s := &types.HostMigrateRequest{
        Plain: false,
        Node:  0,
    }

    resp2, err := conn.HostMigrate(1,s)
    if err != nil {
        fmt.Println(resp2.Task)
    }
}

Extended token lifetime

// Standart token lifetime = 1h inactivity . If you need extended tokenlife time:
expiresAt := time.Now().Add(30*time.Day)
conn := vmm.New("domain.com").Auth(auth).WithExtendedTokenLifetime(expiresAt, "extended token desc")

Errors handling

resp, err := conn.Hosts(1,s)
/* related API errors: resp contains field Error 
type Error struct {
    Code int    `json:"code,omitempty"`
    Msg  string `json:"msg,omitempty"`
}
*/
fmt.Println(resp.Error.Msg)

// Http errors : err
fmt.Println(err)

Implemented

  • Auth
  • Backup
  • Cluster
  • Disk
  • Form
  • Host
  • Image
  • Import
  • License
  • Network
  • Node
  • Script
  • OS
  • Platform Backups
  • Preset
  • Recipe
  • Repository
  • Snapshot
  • Schedule
  • Storage
  • Settings
  • Tag
  • Task
  • VXLan
  • User
  • VMmmanager

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.