-
Notifications
You must be signed in to change notification settings - Fork 30
/
main.go
46 lines (40 loc) · 1.39 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
package main
import (
"context"
"github.com/spotinst/spotinst-sdk-go/service/ocean"
"github.com/spotinst/spotinst-sdk-go/service/ocean/providers/aws"
"github.com/spotinst/spotinst-sdk-go/spotinst"
"github.com/spotinst/spotinst-sdk-go/spotinst/session"
"github.com/spotinst/spotinst-sdk-go/spotinst/util/stringutil"
"log"
)
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 := ocean.New(sess)
// Create a new context.
ctx := context.Background()
// Lists nodes.
out, err := svc.CloudProviderAWS().ReadClusterNodes(ctx, &aws.ReadClusterNodeInput{
ClusterID: spotinst.String("o-12345"),
LaunchSpecId: spotinst.String("ols-12345"),
})
if err != nil {
log.Fatalf("spotinst: failed to list nodes: %v", err)
}
// Output all nodes, if any.
if len(out.ClusterNode) > 0 {
for _, node := range out.ClusterNode {
log.Printf("Node %s",
stringutil.Stringify(node))
}
}
}