rightscale

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.

Use rightscale to interface with rightscale.com for cloud pricing, management, and optimisation

Installation

Install from github with devtools

if(!require(devtools)) install.packages(devtools)
devtools::install_github("locakedata/rightscale")

Examples

Here some basic examples

if(!require(rightscale)) devtools::load_all()
library(rightscale)

authenticate("fa4d643a3b2b95ac59ec0ad6381e86267abbe278")
clouds<-list_clouds()
tibble::glimpse(clouds)
acloud<-get_cloud(1)
tibble::glimpse(acloud)
anothercloud<-get_cloud(name="EC2 us-east-1")
tibble::glimpse(anothercloud)
prices<-list_prices()
tibble::glimpse(prices)
aprice<-get_price(547725001)
tibble::glimpse(aprice)

Tests

devtools::test()


lockedata/rightscale documentation built on May 19, 2019, 8:23 a.m.