-
Notifications
You must be signed in to change notification settings - Fork 670
/
data_source_ibm_is_operating_system.go
108 lines (96 loc) · 3.12 KB
/
data_source_ibm_is_operating_system.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package vpc
import (
"fmt"
"github.com/IBM/vpc-go-sdk/vpcv1"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
const (
isOperatingSystemName = "name"
isOperatingSystemArchitecture = "architecture"
isOperatingSystemDHOnly = "dedicated_host_only"
isOperatingSystemDisplayName = "display_name"
isOperatingSystemFamily = "family"
isOperatingSystemHref = "href"
isOperatingSystemVendor = "vendor"
isOperatingSystemVersion = "version"
)
func DataSourceIBMISOperatingSystem() *schema.Resource {
return &schema.Resource{
Read: dataSourceIBMISOperatingSystemRead,
Schema: map[string]*schema.Schema{
isOperatingSystemName: {
Type: schema.TypeString,
Required: true,
Description: "The globally unique name for this operating system",
},
isOperatingSystemArchitecture: {
Type: schema.TypeString,
Computed: true,
Description: "The operating system architecture",
},
isOperatingSystemVersion: {
Type: schema.TypeString,
Computed: true,
Description: "The major release version of this operating system",
},
isOperatingSystemDHOnly: {
Type: schema.TypeBool,
Computed: true,
Description: "Flag which shows images with this operating system can only be used on dedicated hosts or dedicated host groups",
},
isOperatingSystemDisplayName: {
Type: schema.TypeString,
Computed: true,
Description: "A unique, display-friendly name for the operating system",
},
isOperatingSystemFamily: {
Type: schema.TypeString,
Computed: true,
Description: "The name of the software family this operating system belongs to",
},
isOperatingSystemHref: {
Type: schema.TypeString,
Computed: true,
Description: "The URL for this operating system",
},
isOperatingSystemVendor: {
Type: schema.TypeString,
Computed: true,
Description: "The vendor of the operating system",
},
},
}
}
func dataSourceIBMISOperatingSystemRead(d *schema.ResourceData, meta interface{}) error {
name := d.Get(isOperatingSystemName).(string)
err := osGet(d, meta, name)
if err != nil {
return err
}
return nil
}
func osGet(d *schema.ResourceData, meta interface{}, name string) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
getOperatingSystemOptions := &vpcv1.GetOperatingSystemOptions{
Name: &name,
}
os, response, err := sess.GetOperatingSystem(getOperatingSystemOptions)
if err != nil || os == nil {
return fmt.Errorf("[ERROR] Error Getting Operating System Details %s , %s", err, response)
}
d.Set(isOperatingSystemName, *os.Name)
d.SetId(*os.Name)
d.Set(isOperatingSystemDHOnly, *os.DedicatedHostOnly)
d.Set(isOperatingSystemArchitecture, *os.Architecture)
d.Set(isOperatingSystemDisplayName, *os.DisplayName)
d.Set(isOperatingSystemFamily, *os.Family)
d.Set(isOperatingSystemHref, *os.Href)
d.Set(isOperatingSystemVendor, *os.Vendor)
d.Set(isOperatingSystemVersion, *os.Version)
return nil
}