innkeeperclient

package
v0.0.155 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 14, 2016 License: GPL-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	//StatusReady - ready status
	StatusReady = "ready"
	//StatusRunning - status running
	StatusRunning = "running"
	//StatusSuccess - success status
	StatusSuccess = "success"

	//RouteProvisionHost - route to provision host endpoint
	RouteProvisionHost = "api/v1/Provision"
	//RouteGetStatus - route to getstatus endpoint
	RouteGetStatus = "api/v1/StatusDetails"
	//RouteDeProvisionHost - deprovision endpoint
	RouteDeProvisionHost = "api/v1/Deprovision"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Data added in v0.0.127

type Data struct {
	Credentials interface{}            `json:"credentials"`
	Status      string                 `json:"status"`
	Storage     map[string]interface{} `json:"storage"`
	Hosts       map[string]interface{} `json:"hosts"`
	Network     map[string]interface{} `json:"network"`
}

Data --

type GetStatusResponse added in v0.0.125

type GetStatusResponse struct {
	Data    Data   `json:"data"`
	Message string `json:"message"`
	Status  string `json:"status"`
}

GetStatusResponse -- a status response object

type GetTenantsResponse

type GetTenantsResponse struct {
	Data    []TenantData `json:"data"`
	Message string       `json:"message"`
	Status  string       `json:"status"`
}

GetTenantsResponse --

type IkClient

type IkClient struct {
	URI      string
	User     string
	Password string
	Log      logger
}

IkClient api struct

func (*IkClient) Call added in v0.0.130

func (s *IkClient) Call(path string, query interface{}, jsonResp interface{}) (err error)

Call -- generic call to the inkeeper endpoint

func (*IkClient) DeProvisionHost added in v0.0.138

func (s *IkClient) DeProvisionHost(requestID string) (resp *GetStatusResponse, err error)

DeProvisionHost - make a deprovision call to innkeeper for a given requestID

func (*IkClient) GetStatus added in v0.0.125

func (s *IkClient) GetStatus(requestID string) (resp *GetStatusResponse, err error)

GetStatus --

func (*IkClient) GetTenants

func (s *IkClient) GetTenants() (info GetTenantsResponse, err error)

GetTenants -- /api/v1/GetTenants get current tenants

func (*IkClient) ProvisionHost

func (s *IkClient) ProvisionHost(sku string, tenantid string) (info *ProvisionHostResponse, err error)

ProvisionHost -- given info provision a host in inkeeper "http://pez-app.core.pao.pez.pivotal.io:5555/api/v1/ProvisionHost?geo_loc=PAO&sku=4D.lowmem.R7&os=esxi60u2&count=1&feature=&tenantid=pez-stage"

type InnkeeperClient

type InnkeeperClient interface {
	ProvisionHost(sku string, tenantid string) (result *ProvisionHostResponse, err error)
	GetStatus(requestID string) (resp *GetStatusResponse, err error)
	GetTenants() (result GetTenantsResponse, err error)
	DeProvisionHost(requestID string) (resp *GetStatusResponse, err error)
}

InnkeeperClient api client

func New

func New(uri string, user string, password string) InnkeeperClient

New - create a new api client

type ProvisionHostResponse

type ProvisionHostResponse struct {
	Data    []RequestData `json:"data"`
	Message string        `json:"message"`
	Status  string        `json:"status"`
}

ProvisionHostResponse --

type RequestData added in v0.0.125

type RequestData struct {
	RequestID string `json:"requestid"`
}

RequestData - a request data object

type TenantData added in v0.0.125

type TenantData struct {
	Slotid   int    `json:"slotid"`
	Tenantid string `json:"tenantid"`
}

TenantData - a tenant data object

Directories

Path Synopsis
cli
ik

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL