This is an unofficial Go SDK for Ksyun Services
- kec: 云服务器
- slb: 负载均衡
- eip: 弹性IP
- vpc: 虚拟私有网络
- common: Common libary of ksyun Go SDK (Borrowed from AliyunGo)
- util: Utility helpers
package main import ( "fmt" "github.com/hdksky/ksyungo/kec" ) const ACCESS_KEY_ID = "<YOUR_ID>" const ACCESS_KEY_SECRET = "<****>" func main() { client := kec.NewClient(ACCESS_KEY_ID, ACCESS_KEY_SECRET,"cn-beijing-6") fmt.Print(client.DescribeInstances(&DescribeInstancesArgs{})) }
go get:
go get github.com/hdksky/ksyungo
This project is licensed under the Apache License, Version 2.0.