-
Notifications
You must be signed in to change notification settings - Fork 30
/
main.go
49 lines (41 loc) · 1.43 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package main
import (
"context"
"log"
"github.com/spotinst/spotinst-sdk-go/service/organization"
"github.com/spotinst/spotinst-sdk-go/spotinst"
"github.com/spotinst/spotinst-sdk-go/spotinst/session"
"github.com/spotinst/spotinst-sdk-go/spotinst/util/stringutil"
)
func main() {
// All clients require a Session. The Session provides the client with
// shared configuration such as account and credentials.
// A Session should be shared where possible to take advantage of
// configuration and credential caching. See the session package for
// more information.
sess := session.New()
// Create a new instance of the service's client with a Session.
// Optional spotinst.Config values can also be provided as variadic
// arguments to the New function. This option allows you to provide
// service specific configuration.
svc := organization.New(sess)
// Create a new context.
ctx := context.Background()
// Create a new group.
out, err := svc.CreateUser(ctx, &organization.User{
Email: spotinst.String("your-username"),
FirstName: spotinst.String("test"),
LastName: spotinst.String("user"),
Password: spotinst.String("your-password"),
Role: spotinst.String("viewer"),
}, spotinst.Bool(true))
if err != nil {
log.Fatalf("spotinst: failed to create user: %v", err)
}
// Output.
if out.User != nil {
log.Printf("User %q: %s",
spotinst.StringValue(out.User.UserID),
stringutil.Stringify(out.User))
}
}