This commit is contained in:
Ruslan Gabitov 2014-10-06 13:57:06 -07:00
Родитель 2edf9b064a
Коммит 84da83b56a
1 изменённых файлов: 65 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,65 @@
# Azure SDK for Golang
This project provides a Golang package that makes it easy to consume and manage Microsoft Azure Services.
# Installation
- Install Golang: https://golang.org/doc/install
- Get Azure SDK package:
```sh
go get github.com/MSOpenTech/azure-sdk-for-go
```
- Install:
```sh
go install github.com/MSOpenTech/azure-sdk-for-go
```
# Usage
Create linux VM:
```C
package main
import (
"fmt"
"os"
azure "github.com/MSOpenTech/azure-sdk-for-go"
"github.com/MSOpenTech/azure-sdk-for-go/clients/vmClient"
)
func main() {
dnsName := "test-vm-from-go"
location := "West US"
vmSize := "Small"
vmImage := "b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB"
userName := "testuser"
userPassword := "Test123"
sshCert := ""
err := azure.ImportPublishSettings(SUBSCRIPTION_ID, SUBSCRIPTION_CERTIFICATE)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
vmConfig, err := vmClient.CreateAzureVMConfiguration(dnsName, vmSize, vmImage, location)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
vmConfig, err = vmClient.AddAzureLinuxProvisioningConfig(vmConfig, userName, userPassword, sshCert)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
err = vmClient.CreateAzureVM(vmConfig, dnsName, location)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
```