-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathdata_source_tc_bi_project.go
395 lines (340 loc) · 11.9 KB
/
data_source_tc_bi_project.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
package bi
import (
"context"
"strconv"
tccommon "github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/common"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
bi "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/bi/v20220105"
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/internal/helper"
)
func DataSourceTencentCloudBiProject() *schema.Resource {
return &schema.Resource{
Read: dataSourceTencentCloudBiProjectRead,
Schema: map[string]*schema.Schema{
"page_no": {
Optional: true,
Type: schema.TypeInt,
Description: "Page number.",
},
"keyword": {
Optional: true,
Type: schema.TypeString,
Description: "Retrieve fuzzy fields.",
},
"all_page": {
Optional: true,
Type: schema.TypeBool,
Description: "Whether to display all, if true, ignore paging.",
},
"module_collection": {
Optional: true,
Type: schema.TypeString,
Description: "Role information, can be ignored.",
},
"extra": {
Computed: true,
Type: schema.TypeString,
Description: "Additional information(Note: This field may return null, indicating that no valid value can be obtained).",
},
"msg": {
Computed: true,
Type: schema.TypeString,
Description: "Interface information(Note: This field may return null, indicating that no valid value can be obtained).",
},
"list": {
Type: schema.TypeList,
Computed: true,
Description: "Array(Note: This field may return null, indicating that no valid value can be obtained).",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeInt,
Computed: true,
Description: "Project id.",
},
"logo": {
Type: schema.TypeString,
Computed: true,
Description: "Project logo(Note: This field may return null, indicating that no valid value can be obtained).",
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: "Project name(Note: This field may return null, indicating that no valid value can be obtained).",
},
"color_code": {
Type: schema.TypeString,
Computed: true,
Description: "Logo colour(Note: This field may return null, indicating that no valid value can be obtained).",
},
"created_user": {
Type: schema.TypeString,
Computed: true,
Description: "Created by(Note: This field may return null, indicating that no valid value can be obtained).",
},
"created_at": {
Type: schema.TypeString,
Computed: true,
Description: "Created at(Note: This field may return null, indicating that no valid value can be obtained).",
},
"member_count": {
Type: schema.TypeInt,
Computed: true,
Description: "Member count(Note: This field may return null, indicating that no valid value can be obtained).",
},
"page_count": {
Type: schema.TypeInt,
Computed: true,
Description: "Page count(Note: This field may return null, indicating that no valid value can be obtained).",
},
"last_modify_name": {
Type: schema.TypeString,
Computed: true,
Description: "Last modified report and presentation names(Note: This field may return null, indicating that no valid value can be obtained).",
},
"source": {
Type: schema.TypeString,
Computed: true,
Description: "Interface call source(Note: This field may return null, indicating that no valid value can be obtained).",
},
"apply": {
Type: schema.TypeBool,
Computed: true,
Description: "Apply(Note: This field may return null, indicating that no valid value can be obtained).",
},
"updated_user": {
Type: schema.TypeString,
Computed: true,
Description: "Updated by(Note: This field may return null, indicating that no valid value can be obtained).",
},
"updated_at": {
Type: schema.TypeString,
Computed: true,
Description: "Updated by(Note: This field may return null, indicating that no valid value can be obtained).",
},
"corp_id": {
Type: schema.TypeString,
Computed: true,
Description: "Enterprise id(Note: This field may return null, indicating that no valid value can be obtained).",
},
"mark": {
Type: schema.TypeString,
Computed: true,
Description: "Remark(Note: This field may return null, indicating that no valid value can be obtained).",
},
"seed": {
Type: schema.TypeString,
Computed: true,
Description: "Obfuscated field(Note: This field may return null, indicating that no valid value can be obtained).",
},
"auth_list": {
Type: schema.TypeSet,
Elem: &schema.Schema{
Type: schema.TypeString,
},
Computed: true,
Description: "List of permissions within the project(Note: This field may return null, indicating that no valid value can be obtained).",
},
"panel_scope": {
Type: schema.TypeString,
Computed: true,
Description: "Default kanban(Note: This field may return null, indicating that no valid value can be obtained).",
},
"is_external_manage": {
Type: schema.TypeBool,
Computed: true,
Description: "Determine whether it is hosted(Note: This field may return null, indicating that no valid value can be obtained).",
},
"manage_platform": {
Type: schema.TypeString,
Computed: true,
Description: "Hosting platform name(Note: This field may return null, indicating that no valid value can be obtained).",
},
"config_list": {
Type: schema.TypeList,
Computed: true,
Description: "Customized parameters, this parameter can be ignored(Note: This field may return null, indicating that no valid value can be obtained).",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"module_group": {
Type: schema.TypeString,
Computed: true,
Description: "Module group(Note: This field may return null, indicating that no valid value can be obtained).",
},
"components": {
Type: schema.TypeList,
Computed: true,
Description: "Components(Note: This field may return null, indicating that no valid value can be obtained).",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"module_id": {
Type: schema.TypeString,
Computed: true,
Description: "Module id(Note: This field may return null, indicating that no valid value can be obtained).",
},
"include_type": {
Type: schema.TypeString,
Computed: true,
Description: "Include type(Note: This field may return null, indicating that no valid value can be obtained).",
},
"params": {
Type: schema.TypeString,
Computed: true,
Description: "Extra parameters(Note: This field may return null, indicating that no valid value can be obtained).",
},
},
},
},
},
},
},
},
},
},
"result_output_file": {
Type: schema.TypeString,
Optional: true,
Description: "Used to save results.",
},
},
}
}
func dataSourceTencentCloudBiProjectRead(d *schema.ResourceData, meta interface{}) error {
defer tccommon.LogElapsed("data_source.tencentcloud_bi_project.read")()
defer tccommon.InconsistentCheck(d, meta)()
logId := tccommon.GetLogId(tccommon.ContextNil)
ctx := context.WithValue(context.TODO(), tccommon.LogIdKey, logId)
paramMap := make(map[string]interface{})
if v, ok := d.GetOkExists("page_no"); ok {
paramMap["PageNo"] = helper.IntUint64(v.(int))
}
if v, ok := d.GetOk("keyword"); ok {
paramMap["Keyword"] = helper.String(v.(string))
}
if v, ok := d.GetOkExists("all_page"); ok {
paramMap["AllPage"] = helper.Bool(v.(bool))
}
if v, ok := d.GetOk("module_collection"); ok {
paramMap["ModuleCollection"] = helper.String(v.(string))
}
service := BiService{client: meta.(tccommon.ProviderMeta).GetAPIV3Conn()}
var project []*bi.Project
err := resource.Retry(tccommon.ReadRetryTimeout, func() *resource.RetryError {
result, e := service.DescribeBiProjectByFilter(ctx, paramMap)
if e != nil {
return tccommon.RetryError(e)
}
project = result
return nil
})
if err != nil {
return err
}
ids := make([]string, 0, len(project))
listList := []interface{}{}
if project != nil {
for _, list := range project {
listMap := map[string]interface{}{}
if list.Id != nil {
listMap["id"] = list.Id
}
if list.Logo != nil {
listMap["logo"] = list.Logo
}
if list.Name != nil {
listMap["name"] = list.Name
}
if list.ColorCode != nil {
listMap["color_code"] = list.ColorCode
}
if list.CreatedUser != nil {
listMap["created_user"] = list.CreatedUser
}
if list.CreatedAt != nil {
listMap["created_at"] = list.CreatedAt
}
if list.MemberCount != nil {
listMap["member_count"] = list.MemberCount
}
if list.PageCount != nil {
listMap["page_count"] = list.PageCount
}
if list.LastModifyName != nil {
listMap["last_modify_name"] = list.LastModifyName
}
if list.Source != nil {
listMap["source"] = list.Source
}
if list.Apply != nil {
listMap["apply"] = list.Apply
}
if list.UpdatedUser != nil {
listMap["updated_user"] = list.UpdatedUser
}
if list.UpdatedAt != nil {
listMap["updated_at"] = list.UpdatedAt
}
if list.CorpId != nil {
listMap["corp_id"] = list.CorpId
}
if list.Mark != nil {
listMap["mark"] = list.Mark
}
if list.Seed != nil {
listMap["seed"] = list.Seed
}
if list.AuthList != nil {
listMap["auth_list"] = list.AuthList
}
if list.PanelScope != nil {
listMap["panel_scope"] = list.PanelScope
}
if list.IsExternalManage != nil {
listMap["is_external_manage"] = list.IsExternalManage
}
if list.ManagePlatform != nil {
listMap["manage_platform"] = list.ManagePlatform
}
if list.ConfigList != nil {
configListList := []interface{}{}
for _, configList := range list.ConfigList {
configListMap := map[string]interface{}{}
if configList.ModuleGroup != nil {
configListMap["module_group"] = configList.ModuleGroup
}
if configList.Components != nil {
componentsList := []interface{}{}
for _, components := range configList.Components {
componentsMap := map[string]interface{}{}
if components.ModuleId != nil {
componentsMap["module_id"] = components.ModuleId
}
if components.IncludeType != nil {
componentsMap["include_type"] = components.IncludeType
}
if components.Params != nil {
componentsMap["params"] = components.Params
}
componentsList = append(componentsList, componentsMap)
}
configListMap["components"] = componentsList
}
configListList = append(configListList, configListMap)
}
listMap["config_list"] = configListList
}
listList = append(listList, listMap)
ids = append(ids, strconv.FormatUint(*list.Id, 10))
}
_ = d.Set("list", listList)
}
d.SetId(helper.DataResourceIdsHash(ids))
output, ok := d.GetOk("result_output_file")
if ok && output.(string) != "" {
if e := tccommon.WriteToFile(output.(string), listList); e != nil {
return e
}
}
return nil
}