forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_obmcs_identity_compartments.go
96 lines (79 loc) · 2.16 KB
/
data_source_obmcs_identity_compartments.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
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"time"
"github.com/hashicorp/terraform/helper/schema"
"github.com/oracle/bmcs-go-sdk"
"github.com/oracle/terraform-provider-oci/crud"
"github.com/oracle/terraform-provider-oci/options"
)
func CompartmentDatasource() *schema.Resource {
return &schema.Resource{
Read: readCompartments,
Schema: map[string]*schema.Schema{
"filter": dataSourceFiltersSchema(),
"compartment_id": {
Type: schema.TypeString,
Required: true,
},
"compartments": {
Type: schema.TypeList,
Computed: true,
Elem: CompartmentResource(),
},
},
}
}
func readCompartments(d *schema.ResourceData, m interface{}) (e error) {
client := m.(*OracleClients)
sync := &CompartmentDatasourceCrud{}
sync.D = d
sync.Client = client.client
return crud.ReadResource(sync)
}
type CompartmentDatasourceCrud struct {
crud.BaseCrud
Res *baremetal.ListCompartments
}
func (s *CompartmentDatasourceCrud) Get() (e error) {
opts := &baremetal.ListOptions{}
options.SetListOptions(s.D, opts)
s.Res = &baremetal.ListCompartments{Compartments: []baremetal.Compartment{}}
for {
var list *baremetal.ListCompartments
if list, e = s.Client.ListCompartments(opts); e != nil {
break
}
s.Res.Compartments = append(s.Res.Compartments, list.Compartments...)
if hasNexPage := options.SetNextPageOption(list.NextPage, &opts.PageListOptions); !hasNexPage {
break
}
}
return
}
func (s *CompartmentDatasourceCrud) SetData() {
if s.Res == nil {
return
}
s.D.SetId(time.Now().UTC().String())
resources := []map[string]interface{}{}
for _, v := range s.Res.Compartments {
res := map[string]interface{}{
"compartment_id": v.CompartmentID,
"description": v.Description,
"id": v.ID,
"inactive_state": v.InactiveStatus,
"name": v.Name,
"state": v.State,
"time_created": v.TimeCreated.String(),
}
resources = append(resources, res)
}
if f, fOk := s.D.GetOk("filter"); fOk {
resources = ApplyFilters(f.(*schema.Set), resources)
}
if err := s.D.Set("compartments", resources); err != nil {
panic(err)
}
return
}