-
Notifications
You must be signed in to change notification settings - Fork 670
/
data_source_ibm_pi_sap_profiles.go
108 lines (96 loc) · 2.97 KB
/
data_source_ibm_pi_sap_profiles.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 power
import (
"context"
"log"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/IBM-Cloud/power-go-client/clients/instance"
"github.com/IBM-Cloud/power-go-client/helpers"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/conns"
)
const (
PISAPProfiles = "profiles"
PISAPProfileCertified = "certified"
PISAPProfileCores = "cores"
PISAPProfileMemory = "memory"
PISAPProfileID = "profile_id"
PISAPProfileType = "type"
)
func DataSourceIBMPISAPProfiles() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceIBMPISAPProfilesRead,
Schema: map[string]*schema.Schema{
helpers.PICloudInstanceId: {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.NoZeroValues,
},
// Computed Attributes
PISAPProfiles: {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
PISAPProfileCertified: {
Type: schema.TypeBool,
Computed: true,
Description: "Has certification been performed on profile",
},
PISAPProfileCores: {
Type: schema.TypeInt,
Computed: true,
Description: "Amount of cores",
},
PISAPProfileMemory: {
Type: schema.TypeInt,
Computed: true,
Description: "Amount of memory (in GB)",
},
PISAPProfileID: {
Type: schema.TypeString,
Computed: true,
Description: "SAP Profile ID",
},
PISAPProfileType: {
Type: schema.TypeString,
Computed: true,
Description: "Type of profile",
},
},
},
},
},
}
}
func dataSourceIBMPISAPProfilesRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
sess, err := meta.(conns.ClientSession).IBMPISession()
if err != nil {
return diag.FromErr(err)
}
cloudInstanceID := d.Get(helpers.PICloudInstanceId).(string)
client := instance.NewIBMPISAPInstanceClient(ctx, sess, cloudInstanceID)
sapProfiles, err := client.GetAllSAPProfiles(cloudInstanceID)
if err != nil {
log.Printf("[DEBUG] get all sap profiles failed %v", err)
return diag.FromErr(err)
}
result := make([]map[string]interface{}, 0, len(sapProfiles.Profiles))
for _, sapProfile := range sapProfiles.Profiles {
profile := map[string]interface{}{
PISAPProfileCertified: *sapProfile.Certified,
PISAPProfileCores: *sapProfile.Cores,
PISAPProfileMemory: *sapProfile.Memory,
PISAPProfileID: *sapProfile.ProfileID,
PISAPProfileType: *sapProfile.Type,
}
result = append(result, profile)
}
var genID, _ = uuid.GenerateUUID()
d.SetId(genID)
d.Set(PISAPProfiles, result)
return nil
}