# vagrantcloud.v1 **Repository Path**: mirrors_larryli/vagrantcloud.v1 ## Basic Information - **Project Name**: vagrantcloud.v1 - **Description**: Golang Vagrant Cloud API - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-12 - **Last Updated**: 2026-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Vagrant Cloud API ================= [![GoDoc](https://godoc.org/github.com/larryli/vagrantcloud.v1?status.png)](https://godoc.org/github.com/larryli/vagrantcloud.v1) This is the documentation and guide for the Vagrant Cloud API. You can use it to create and update boxes, versions and providers. import "github.com/larryli/vagrantcloud.v1" api := vagrantcloud.New("--replace-your-access-token--") box := api.Box("yourname", "boxname") if box.New() == nil { version := box.Version(0) version.Version = "0.0.1" if version.New() == nil { provider := version.Provider(vagrantcloud.ProviderVirtualbox) provider.OriginalUrl = "http://your.box.url" if provider.New() == nil { version.Release() } } }