forked from IBM-Cloud/terraform-provider-ibm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata_source_ibm_pi_sap_profiles.go
131 lines (120 loc) · 3.74 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package power
import (
"context"
"log"
"github.com/IBM-Cloud/power-go-client/clients/instance"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/conns"
"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"
)
func DataSourceIBMPISAPProfiles() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceIBMPISAPProfilesRead,
Schema: map[string]*schema.Schema{
// Arguments
Arg_CloudInstanceID: {
Description: "The GUID of the service instance associated with an account.",
Required: true,
Type: schema.TypeString,
ValidateFunc: validation.NoZeroValues,
},
// Attributes
Attr_Profiles: {
Computed: true,
Description: "List of all the SAP Profiles.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Attr_Certified: {
Computed: true,
Description: "Has certification been performed on profile.",
Type: schema.TypeBool,
},
Attr_Cores: {
Computed: true,
Description: "Amount of cores.",
Type: schema.TypeInt,
},
Attr_FullSystemProfile: {
Computed: true,
Description: "Requires full system for deployment.",
Type: schema.TypeBool,
},
Attr_Memory: {
Computed: true,
Description: "Amount of memory (in GB).",
Type: schema.TypeInt,
},
Attr_ProfileID: {
Computed: true,
Description: "SAP Profile ID.",
Type: schema.TypeString,
},
Attr_SAPS: {
Computed: true,
Description: "SAP Application Performance Standard",
Type: schema.TypeInt,
},
Attr_SupportedSystems: {
Computed: true,
Description: "List of supported systems.",
Type: schema.TypeList,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
Attr_Type: {
Computed: true,
Description: "Type of profile.",
Type: schema.TypeString,
},
Attr_WorkloadType: {
Computed: true,
Description: "Workload Type.",
Elem: &schema.Schema{
Type: schema.TypeString,
},
Type: schema.TypeList,
},
},
},
Type: schema.TypeList,
},
},
}
}
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(Arg_CloudInstanceID).(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{}{
Attr_Certified: *sapProfile.Certified,
Attr_Cores: *sapProfile.Cores,
Attr_FullSystemProfile: sapProfile.FullSystemProfile,
Attr_Memory: *sapProfile.Memory,
Attr_ProfileID: *sapProfile.ProfileID,
Attr_SAPS: sapProfile.Saps,
Attr_SupportedSystems: sapProfile.SupportedSystems,
Attr_Type: *sapProfile.Type,
Attr_WorkloadType: sapProfile.WorkloadTypes,
}
result = append(result, profile)
}
var genID, _ = uuid.GenerateUUID()
d.SetId(genID)
d.Set(Attr_Profiles, result)
return nil
}