forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_obmcs_core_drg.go
95 lines (80 loc) · 2.04 KB
/
data_source_obmcs_core_drg.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
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"time"
"github.com/MustWin/baremetal-sdk-go"
"github.com/hashicorp/terraform/helper/schema"
"github.com/oracle/terraform-provider-baremetal/options"
"github.com/oracle/terraform-provider-baremetal/client"
"github.com/oracle/terraform-provider-baremetal/crud"
)
func DrgDatasource() *schema.Resource {
return &schema.Resource{
Read: readDrgs,
Schema: map[string]*schema.Schema{
"compartment_id": {
Type: schema.TypeString,
Required: true,
},
"limit": {
Type: schema.TypeInt,
Optional: true,
},
"page": {
Type: schema.TypeString,
Optional: true,
},
"drgs": {
Type: schema.TypeList,
Computed: true,
Elem: DrgResource(),
},
},
}
}
func readDrgs(d *schema.ResourceData, m interface{}) (e error) {
client := m.(client.BareMetalClient)
sync := &DrgDatasourceCrud{}
sync.D = d
sync.Client = client
return crud.ReadResource(sync)
}
type DrgDatasourceCrud struct {
crud.BaseCrud
Res *baremetal.ListDrgs
}
func (s *DrgDatasourceCrud) Get() (e error) {
compartmentID := s.D.Get("compartment_id").(string)
opts := &baremetal.ListOptions{}
options.SetListOptions(s.D, opts)
s.Res = &baremetal.ListDrgs{Drgs: []baremetal.Drg{}}
for {
var list *baremetal.ListDrgs
if list, e = s.Client.ListDrgs(compartmentID, opts); e != nil {
break
}
s.Res.Drgs = append(s.Res.Drgs, list.Drgs...)
if hasNextPage := options.SetNextPageOption(list.NextPage, &opts.PageListOptions); !hasNextPage {
break
}
}
return
}
func (s *DrgDatasourceCrud) SetData() {
if s.Res != nil {
s.D.SetId(time.Now().UTC().String())
resources := []map[string]string{}
for _, v := range s.Res.Drgs {
res := map[string]string{
"compartment_id": v.CompartmentID,
"display_name": v.DisplayName,
"id": v.ID,
"state": v.State,
"time_created": v.TimeCreated.String(),
}
resources = append(resources, res)
}
s.D.Set("drgs", resources)
}
return
}