forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_resourcemanager_lien.go
338 lines (300 loc) · 10.5 KB
/
resource_resourcemanager_lien.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
// ----------------------------------------------------------------------------
//
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
//
// ----------------------------------------------------------------------------
//
// This file is automatically generated by Magic Modules and manual
// changes will be clobbered when the file is regenerated.
//
// Please read more about how to change this file in
// .github/CONTRIBUTING.md.
//
// ----------------------------------------------------------------------------
package google
import (
"fmt"
"log"
"reflect"
"strconv"
"strings"
"github.com/hashicorp/terraform/helper/schema"
)
func resourceResourceManagerLien() *schema.Resource {
return &schema.Resource{
Create: resourceResourceManagerLienCreate,
Read: resourceResourceManagerLienRead,
Delete: resourceResourceManagerLienDelete,
Importer: &schema.ResourceImporter{
State: resourceResourceManagerLienImport,
},
Schema: map[string]*schema.Schema{
"origin": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"parent": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"reason": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"restrictions": {
Type: schema.TypeList,
Required: true,
ForceNew: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"create_time": {
Type: schema.TypeString,
Computed: true,
},
"name": {
Type: schema.TypeString,
Computed: true,
},
},
}
}
func resourceResourceManagerLienCreate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
obj := make(map[string]interface{})
reasonProp, err := expandResourceManagerLienReason(d.Get("reason"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("reason"); !isEmptyValue(reflect.ValueOf(reasonProp)) && (ok || !reflect.DeepEqual(v, reasonProp)) {
obj["reason"] = reasonProp
}
originProp, err := expandResourceManagerLienOrigin(d.Get("origin"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("origin"); !isEmptyValue(reflect.ValueOf(originProp)) && (ok || !reflect.DeepEqual(v, originProp)) {
obj["origin"] = originProp
}
parentProp, err := expandResourceManagerLienParent(d.Get("parent"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("parent"); !isEmptyValue(reflect.ValueOf(parentProp)) && (ok || !reflect.DeepEqual(v, parentProp)) {
obj["parent"] = parentProp
}
restrictionsProp, err := expandResourceManagerLienRestrictions(d.Get("restrictions"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("restrictions"); !isEmptyValue(reflect.ValueOf(restrictionsProp)) && (ok || !reflect.DeepEqual(v, restrictionsProp)) {
obj["restrictions"] = restrictionsProp
}
url, err := replaceVars(d, config, "https://cloudresourcemanager.googleapis.com/v1/liens")
if err != nil {
return err
}
log.Printf("[DEBUG] Creating new Lien: %#v", obj)
res, err := Post(config, url, obj)
if err != nil {
return fmt.Errorf("Error creating Lien: %s", err)
}
// Store the ID now
id, err := replaceVars(d, config, "{{name}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
log.Printf("[DEBUG] Finished creating Lien %q: %#v", d.Id(), res)
// This resource is unusual - instead of returning an Operation from
// Create, it returns the created object itself. We don't parse
// any of the values there, preferring to centralize that logic in
// Read(). In this resource, Read is also unusual - it requires
// us to know the server-side generated name of the object we're
// trying to fetch, and the only way to know that is to capture
// it here. The following two lines do that.
d.SetId(flattenResourceManagerLienName(res["name"]).(string))
d.Set("name", flattenResourceManagerLienName(res["name"]))
return resourceResourceManagerLienRead(d, meta)
}
func resourceResourceManagerLienRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
url, err := replaceVars(d, config, "https://cloudresourcemanager.googleapis.com/v1/liens?parent={{parent}}")
if err != nil {
return err
}
res, err := Get(config, url)
if err != nil {
return handleNotFoundError(err, d, fmt.Sprintf("ResourceManagerLien %q", d.Id()))
}
// Extract the object we're interested in from the list response.
itemsList_ := res["liens"]
var itemsList []interface{}
if itemsList_ != nil {
itemsList = itemsList_.([]interface{})
}
listObj := make([]map[string]interface{}, len(itemsList))
for i, item := range itemsList {
listObj[i] = item.(map[string]interface{})
}
res = nil
for _, item := range listObj {
thisName := d.Get("name")
thatName := flattenResourceManagerLienName(item["name"])
log.Printf("[DEBUG] Checking equality of %#v, %#v", thatName, thisName)
if !reflect.DeepEqual(thatName, thisName) {
continue
}
res = item
break
}
if res == nil {
// Object isn't there any more - remove it from the state.
log.Printf("[DEBUG] Removing ResourceManagerLien because it couldn't be matched.")
d.SetId("")
return nil
}
res, err = resourceResourceManagerLienDecoder(d, meta, res)
if err != nil {
return err
}
if err := d.Set("name", flattenResourceManagerLienName(res["name"])); err != nil {
return fmt.Errorf("Error reading Lien: %s", err)
}
if err := d.Set("reason", flattenResourceManagerLienReason(res["reason"])); err != nil {
return fmt.Errorf("Error reading Lien: %s", err)
}
if err := d.Set("origin", flattenResourceManagerLienOrigin(res["origin"])); err != nil {
return fmt.Errorf("Error reading Lien: %s", err)
}
if err := d.Set("create_time", flattenResourceManagerLienCreateTime(res["createTime"])); err != nil {
return fmt.Errorf("Error reading Lien: %s", err)
}
if err := d.Set("parent", flattenResourceManagerLienParent(res["parent"])); err != nil {
return fmt.Errorf("Error reading Lien: %s", err)
}
if err := d.Set("restrictions", flattenResourceManagerLienRestrictions(res["restrictions"])); err != nil {
return fmt.Errorf("Error reading Lien: %s", err)
}
return nil
}
func resourceResourceManagerLienDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
url, err := replaceVars(d, config, "https://cloudresourcemanager.googleapis.com/v1/liens?parent={{parent}}")
if err != nil {
return err
}
url, err = replaceVars(d, config, "https://cloudresourcemanager.googleapis.com/v1/liens/{{name}}")
if err != nil {
return err
}
log.Printf("[DEBUG] Deleting Lien %q", d.Id())
res, err := Delete(config, url)
if err != nil {
return handleNotFoundError(err, d, "Lien")
}
log.Printf("[DEBUG] Finished deleting Lien %q: %#v", d.Id(), res)
return nil
}
func resourceResourceManagerLienImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) {
config := meta.(*Config)
parseImportId([]string{"(?P<parent>[^/]+)/(?P<name>[^/]+)"}, d, config)
// Replace import id for the resource id
id, err := replaceVars(d, config, "{{name}}")
if err != nil {
return nil, fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
parent, err := replaceVars(d, config, "projects/{{parent}}")
if err != nil {
return nil, err
}
d.Set("parent", parent)
return []*schema.ResourceData{d}, nil
}
func flattenResourceManagerLienName(v interface{}) interface{} {
return NameFromSelfLinkStateFunc(v)
}
func flattenResourceManagerLienReason(v interface{}) interface{} {
return v
}
func flattenResourceManagerLienOrigin(v interface{}) interface{} {
return v
}
func flattenResourceManagerLienCreateTime(v interface{}) interface{} {
return v
}
func flattenResourceManagerLienParent(v interface{}) interface{} {
return v
}
func flattenResourceManagerLienRestrictions(v interface{}) interface{} {
return v
}
func expandResourceManagerLienReason(v interface{}, d *schema.ResourceData, config *Config) (interface{}, error) {
return v, nil
}
func expandResourceManagerLienOrigin(v interface{}, d *schema.ResourceData, config *Config) (interface{}, error) {
return v, nil
}
func expandResourceManagerLienParent(v interface{}, d *schema.ResourceData, config *Config) (interface{}, error) {
return v, nil
}
func expandResourceManagerLienRestrictions(v interface{}, d *schema.ResourceData, config *Config) (interface{}, error) {
return v, nil
}
func resourceResourceManagerLienDecoder(d *schema.ResourceData, meta interface{}, res map[string]interface{}) (map[string]interface{}, error) {
// The problem we're trying to solve here is that this property is a Project,
// and there are a lot of ways to specify a Project, including the ID vs
// Number, which is something that we can't address in a diffsuppress.
// Since we can't enforce a particular method of entering the project,
// we're just going to have to use whatever the user entered, whether
// it's project/projectName, project/12345, projectName, or 12345.
// The normal behavior of this method would be 'return res' - and that's
// what we'll fall back to if any of our conditions aren't met. Those
// conditions are:
// 1) if the new or old values contain '/', the prefix of that is 'projects'.
// 2) if either is non-numeric, a project with that ID exists.
// 3) the project IDs represented by both the new and old values are the same.
config := meta.(*Config)
new := res["parent"].(string)
old := d.Get("parent").(string)
if strings.HasPrefix(new, "projects/") {
new = strings.Split(new, "/")[1]
}
if strings.HasPrefix(old, "projects/") {
old = strings.Split(old, "/")[1]
}
log.Printf("[DEBUG] Trying to figure out whether to use %s or %s", old, new)
// If there's still a '/' in there, the value must not be a project ID.
if strings.Contains(old, "/") || strings.Contains(new, "/") {
return res, nil
}
// If 'old' isn't entirely numeric, let's assume it's a project ID.
// If it's a project ID
var oldProjId int64
var newProjId int64
if oldVal, err := strconv.ParseInt(old, 10, 64); err == nil {
log.Printf("[DEBUG] The old value was a real number: %d", oldVal)
oldProjId = oldVal
} else {
pOld, err := config.clientResourceManager.Projects.Get(old).Do()
if err != nil {
return res, nil
}
oldProjId = pOld.ProjectNumber
}
if newVal, err := strconv.ParseInt(new, 10, 64); err == nil {
log.Printf("[DEBUG] The new value was a real number: %d", newVal)
newProjId = newVal
} else {
pNew, err := config.clientResourceManager.Projects.Get(new).Do()
if err != nil {
return res, nil
}
newProjId = pNew.ProjectNumber
}
if newProjId == oldProjId {
res["parent"] = d.Get("parent")
}
return res, nil
}