forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource_iam_projects_policy_binding.go
836 lines (733 loc) · 30.7 KB
/
resource_iam_projects_policy_binding.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
// ----------------------------------------------------------------------------
//
// *** AUTO GENERATED CODE *** Type: MMv1 ***
//
// ----------------------------------------------------------------------------
//
// This code is generated by Magic Modules using the following:
//
// Configuration: https://github.com/GoogleCloudPlatform/magic-modules/tree/main/mmv1/products/iam3/ProjectsPolicyBinding.yaml
// Template: https://github.com/GoogleCloudPlatform/magic-modules/tree/main/mmv1/templates/terraform/resource.go.tmpl
//
// DO NOT EDIT this file directly. Any changes made to this file will be
// overwritten during the next generation cycle.
//
// ----------------------------------------------------------------------------
package iam3
import (
"fmt"
"log"
"net/http"
"reflect"
"strings"
"time"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-provider-google/google/tpgresource"
transport_tpg "github.com/hashicorp/terraform-provider-google/google/transport"
)
func ResourceIAM3ProjectsPolicyBinding() *schema.Resource {
return &schema.Resource{
Create: resourceIAM3ProjectsPolicyBindingCreate,
Read: resourceIAM3ProjectsPolicyBindingRead,
Update: resourceIAM3ProjectsPolicyBindingUpdate,
Delete: resourceIAM3ProjectsPolicyBindingDelete,
Importer: &schema.ResourceImporter{
State: resourceIAM3ProjectsPolicyBindingImport,
},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(20 * time.Minute),
Update: schema.DefaultTimeout(20 * time.Minute),
Delete: schema.DefaultTimeout(20 * time.Minute),
},
CustomizeDiff: customdiff.All(
tpgresource.SetAnnotationsDiff,
tpgresource.DefaultProviderProject,
),
Schema: map[string]*schema.Schema{
"location": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The location of the Policy Binding`,
},
"policy": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `Required. Immutable. The resource name of the policy to be bound. The binding parent and policy must belong to the same Organization (or Project).`,
},
"policy_binding_id": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The Policy Binding ID.`,
},
"target": {
Type: schema.TypeList,
Required: true,
Description: `Target is the full resource name of the resource to which the policy will be bound. Immutable once set.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"principal_set": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Description: `Required. Immutable. Full Resource Name of the principal set used for principal access boundary policy bindings.
Examples for each one of the following supported principal set types:
* Project:
* '//cloudresourcemanager.googleapis.com/projects/PROJECT_NUMBER'
* '//cloudresourcemanager.googleapis.com/projects/PROJECT_ID'
* Workload Identity Pool: '//iam.googleapis.com/projects/PROJECT_NUMBER/locations/LOCATION/workloadIdentityPools/WORKLOAD_POOL_ID'
It must be parent by the policy binding's parent (the project).`,
},
},
},
},
"annotations": {
Type: schema.TypeMap,
Optional: true,
Description: `Optional. User defined annotations. See https://google.aip.dev/148#annotations for more details such as format and size limitations
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
Please refer to the field 'effective_annotations' for all of the annotations present on the resource.`,
Elem: &schema.Schema{Type: schema.TypeString},
},
"condition": {
Type: schema.TypeList,
Optional: true,
Description: `Represents a textual expression in the Common Expression Language
(CEL) syntax. CEL is a C-like expression language. The syntax and semantics of
CEL are documented at https://github.com/google/cel-spec.
Example (Comparison):
title: \"Summary size limit\"
description: \"Determines if a summary is less than 100 chars\"
expression: \"document.summary.size() < 100\"
Example
(Equality):
title: \"Requestor is owner\"
description: \"Determines if requestor is the document owner\"
expression: \"document.owner == request.auth.claims.email\" Example
(Logic):
title: \"Public documents\"
description: \"Determine whether the document should be publicly visible\"
expression: \"document.type != 'private' && document.type != 'internal'\"
Example (Data Manipulation):
title: \"Notification string\"
description: \"Create a notification string with a timestamp.\"
expression: \"'New message received at ' + string(document.create_time)\"
The exact variables and functions that may be referenced within an expression are
determined by the service that evaluates it. See the service documentation for
additional information.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"description": {
Type: schema.TypeString,
Optional: true,
Description: `Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.`,
},
"expression": {
Type: schema.TypeString,
Optional: true,
Description: `Textual representation of an expression in Common Expression Language syntax.`,
},
"location": {
Type: schema.TypeString,
Optional: true,
Description: `Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.`,
},
"title": {
Type: schema.TypeString,
Optional: true,
Description: `Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.`,
},
},
},
},
"display_name": {
Type: schema.TypeString,
Optional: true,
Description: `Optional. The description of the policy binding. Must be less than or equal to 63 characters.`,
},
"policy_kind": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Description: `Immutable. The kind of the policy to attach in this binding. This
field must be one of the following: - Left empty (will be automatically set
to the policy kind) - The input policy kind Possible values: POLICY_KIND_UNSPECIFIED PRINCIPAL_ACCESS_BOUNDARY ACCESS`,
},
"create_time": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. The time when the policy binding was created.`,
},
"effective_annotations": {
Type: schema.TypeMap,
Computed: true,
Description: `All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through Terraform, other clients and services.`,
Elem: &schema.Schema{Type: schema.TypeString},
},
"etag": {
Type: schema.TypeString,
Computed: true,
Description: `Optional. The etag for the policy binding. If this is provided on update, it must match the server's etag.`,
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: `The name of the policy binding in the format '{binding_parent/locations/{location}/policyBindings/{policy_binding_id}'`,
},
"policy_uid": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. The globally unique ID of the policy to be bound.`,
},
"uid": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. The globally unique ID of the policy binding. Assigned when the policy binding is created.`,
},
"update_time": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. The time when the policy binding was most recently updated.`,
},
"project": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
},
},
UseJSONNumber: true,
}
}
func resourceIAM3ProjectsPolicyBindingCreate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*transport_tpg.Config)
userAgent, err := tpgresource.GenerateUserAgentString(d, config.UserAgent)
if err != nil {
return err
}
obj := make(map[string]interface{})
etagProp, err := expandIAM3ProjectsPolicyBindingEtag(d.Get("etag"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("etag"); !tpgresource.IsEmptyValue(reflect.ValueOf(etagProp)) && (ok || !reflect.DeepEqual(v, etagProp)) {
obj["etag"] = etagProp
}
displayNameProp, err := expandIAM3ProjectsPolicyBindingDisplayName(d.Get("display_name"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("display_name"); !tpgresource.IsEmptyValue(reflect.ValueOf(displayNameProp)) && (ok || !reflect.DeepEqual(v, displayNameProp)) {
obj["displayName"] = displayNameProp
}
targetProp, err := expandIAM3ProjectsPolicyBindingTarget(d.Get("target"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("target"); !tpgresource.IsEmptyValue(reflect.ValueOf(targetProp)) && (ok || !reflect.DeepEqual(v, targetProp)) {
obj["target"] = targetProp
}
policyKindProp, err := expandIAM3ProjectsPolicyBindingPolicyKind(d.Get("policy_kind"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("policy_kind"); !tpgresource.IsEmptyValue(reflect.ValueOf(policyKindProp)) && (ok || !reflect.DeepEqual(v, policyKindProp)) {
obj["policyKind"] = policyKindProp
}
policyProp, err := expandIAM3ProjectsPolicyBindingPolicy(d.Get("policy"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("policy"); !tpgresource.IsEmptyValue(reflect.ValueOf(policyProp)) && (ok || !reflect.DeepEqual(v, policyProp)) {
obj["policy"] = policyProp
}
conditionProp, err := expandIAM3ProjectsPolicyBindingCondition(d.Get("condition"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("condition"); !tpgresource.IsEmptyValue(reflect.ValueOf(conditionProp)) && (ok || !reflect.DeepEqual(v, conditionProp)) {
obj["condition"] = conditionProp
}
annotationsProp, err := expandIAM3ProjectsPolicyBindingEffectiveAnnotations(d.Get("effective_annotations"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("effective_annotations"); !tpgresource.IsEmptyValue(reflect.ValueOf(annotationsProp)) && (ok || !reflect.DeepEqual(v, annotationsProp)) {
obj["annotations"] = annotationsProp
}
url, err := tpgresource.ReplaceVars(d, config, "{{IAM3BasePath}}projects/{{project}}/locations/{{location}}/policyBindings?policyBindingId={{policy_binding_id}}")
if err != nil {
return err
}
log.Printf("[DEBUG] Creating new ProjectsPolicyBinding: %#v", obj)
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for ProjectsPolicyBinding: %s", err)
}
billingProject = project
// err == nil indicates that the billing_project value was found
if bp, err := tpgresource.GetBillingProject(d, config); err == nil {
billingProject = bp
}
headers := make(http.Header)
res, err := transport_tpg.SendRequest(transport_tpg.SendRequestOptions{
Config: config,
Method: "POST",
Project: billingProject,
RawURL: url,
UserAgent: userAgent,
Body: obj,
Timeout: d.Timeout(schema.TimeoutCreate),
Headers: headers,
})
if err != nil {
return fmt.Errorf("Error creating ProjectsPolicyBinding: %s", err)
}
// Store the ID now
id, err := tpgresource.ReplaceVars(d, config, "projects/{{project}}/locations/{{location}}/policyBindings/{{policy_binding_id}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
// Use the resource in the operation response to populate
// identity fields and d.Id() before read
var opRes map[string]interface{}
err = IAM3OperationWaitTimeWithResponse(
config, res, &opRes, project, "Creating ProjectsPolicyBinding", userAgent,
d.Timeout(schema.TimeoutCreate))
if err != nil {
// The resource didn't actually create
d.SetId("")
return fmt.Errorf("Error waiting to create ProjectsPolicyBinding: %s", err)
}
if err := d.Set("name", flattenIAM3ProjectsPolicyBindingName(opRes["name"], d, config)); err != nil {
return err
}
// This may have caused the ID to update - update it if so.
id, err = tpgresource.ReplaceVars(d, config, "projects/{{project}}/locations/{{location}}/policyBindings/{{policy_binding_id}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
log.Printf("[DEBUG] Finished creating ProjectsPolicyBinding %q: %#v", d.Id(), res)
return resourceIAM3ProjectsPolicyBindingRead(d, meta)
}
func resourceIAM3ProjectsPolicyBindingRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*transport_tpg.Config)
userAgent, err := tpgresource.GenerateUserAgentString(d, config.UserAgent)
if err != nil {
return err
}
url, err := tpgresource.ReplaceVars(d, config, "{{IAM3BasePath}}projects/{{project}}/locations/{{location}}/policyBindings/{{policy_binding_id}}")
if err != nil {
return err
}
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for ProjectsPolicyBinding: %s", err)
}
billingProject = project
// err == nil indicates that the billing_project value was found
if bp, err := tpgresource.GetBillingProject(d, config); err == nil {
billingProject = bp
}
headers := make(http.Header)
res, err := transport_tpg.SendRequest(transport_tpg.SendRequestOptions{
Config: config,
Method: "GET",
Project: billingProject,
RawURL: url,
UserAgent: userAgent,
Headers: headers,
})
if err != nil {
return transport_tpg.HandleNotFoundError(err, d, fmt.Sprintf("IAM3ProjectsPolicyBinding %q", d.Id()))
}
if err := d.Set("project", project); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("name", flattenIAM3ProjectsPolicyBindingName(res["name"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("uid", flattenIAM3ProjectsPolicyBindingUid(res["uid"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("etag", flattenIAM3ProjectsPolicyBindingEtag(res["etag"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("display_name", flattenIAM3ProjectsPolicyBindingDisplayName(res["displayName"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("annotations", flattenIAM3ProjectsPolicyBindingAnnotations(res["annotations"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("target", flattenIAM3ProjectsPolicyBindingTarget(res["target"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("policy_kind", flattenIAM3ProjectsPolicyBindingPolicyKind(res["policyKind"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("policy", flattenIAM3ProjectsPolicyBindingPolicy(res["policy"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("policy_uid", flattenIAM3ProjectsPolicyBindingPolicyUid(res["policyUid"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("condition", flattenIAM3ProjectsPolicyBindingCondition(res["condition"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("create_time", flattenIAM3ProjectsPolicyBindingCreateTime(res["createTime"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("update_time", flattenIAM3ProjectsPolicyBindingUpdateTime(res["updateTime"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
if err := d.Set("effective_annotations", flattenIAM3ProjectsPolicyBindingEffectiveAnnotations(res["annotations"], d, config)); err != nil {
return fmt.Errorf("Error reading ProjectsPolicyBinding: %s", err)
}
return nil
}
func resourceIAM3ProjectsPolicyBindingUpdate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*transport_tpg.Config)
userAgent, err := tpgresource.GenerateUserAgentString(d, config.UserAgent)
if err != nil {
return err
}
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for ProjectsPolicyBinding: %s", err)
}
billingProject = project
obj := make(map[string]interface{})
etagProp, err := expandIAM3ProjectsPolicyBindingEtag(d.Get("etag"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("etag"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, etagProp)) {
obj["etag"] = etagProp
}
displayNameProp, err := expandIAM3ProjectsPolicyBindingDisplayName(d.Get("display_name"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("display_name"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, displayNameProp)) {
obj["displayName"] = displayNameProp
}
targetProp, err := expandIAM3ProjectsPolicyBindingTarget(d.Get("target"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("target"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, targetProp)) {
obj["target"] = targetProp
}
conditionProp, err := expandIAM3ProjectsPolicyBindingCondition(d.Get("condition"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("condition"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, conditionProp)) {
obj["condition"] = conditionProp
}
annotationsProp, err := expandIAM3ProjectsPolicyBindingEffectiveAnnotations(d.Get("effective_annotations"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("effective_annotations"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, annotationsProp)) {
obj["annotations"] = annotationsProp
}
url, err := tpgresource.ReplaceVars(d, config, "{{IAM3BasePath}}projects/{{project}}/locations/{{location}}/policyBindings/{{policy_binding_id}}")
if err != nil {
return err
}
log.Printf("[DEBUG] Updating ProjectsPolicyBinding %q: %#v", d.Id(), obj)
headers := make(http.Header)
updateMask := []string{}
if d.HasChange("etag") {
updateMask = append(updateMask, "etag")
}
if d.HasChange("display_name") {
updateMask = append(updateMask, "displayName")
}
if d.HasChange("target") {
updateMask = append(updateMask, "target")
}
if d.HasChange("condition") {
updateMask = append(updateMask, "condition")
}
if d.HasChange("effective_annotations") {
updateMask = append(updateMask, "annotations")
}
// updateMask is a URL parameter but not present in the schema, so ReplaceVars
// won't set it
url, err = transport_tpg.AddQueryParams(url, map[string]string{"updateMask": strings.Join(updateMask, ",")})
if err != nil {
return err
}
// err == nil indicates that the billing_project value was found
if bp, err := tpgresource.GetBillingProject(d, config); err == nil {
billingProject = bp
}
// if updateMask is empty we are not updating anything so skip the post
if len(updateMask) > 0 {
res, err := transport_tpg.SendRequest(transport_tpg.SendRequestOptions{
Config: config,
Method: "PATCH",
Project: billingProject,
RawURL: url,
UserAgent: userAgent,
Body: obj,
Timeout: d.Timeout(schema.TimeoutUpdate),
Headers: headers,
})
if err != nil {
return fmt.Errorf("Error updating ProjectsPolicyBinding %q: %s", d.Id(), err)
} else {
log.Printf("[DEBUG] Finished updating ProjectsPolicyBinding %q: %#v", d.Id(), res)
}
err = IAM3OperationWaitTime(
config, res, project, "Updating ProjectsPolicyBinding", userAgent,
d.Timeout(schema.TimeoutUpdate))
if err != nil {
return err
}
}
return resourceIAM3ProjectsPolicyBindingRead(d, meta)
}
func resourceIAM3ProjectsPolicyBindingDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*transport_tpg.Config)
userAgent, err := tpgresource.GenerateUserAgentString(d, config.UserAgent)
if err != nil {
return err
}
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for ProjectsPolicyBinding: %s", err)
}
billingProject = project
url, err := tpgresource.ReplaceVars(d, config, "{{IAM3BasePath}}projects/{{project}}/locations/{{location}}/policyBindings/{{policy_binding_id}}")
if err != nil {
return err
}
var obj map[string]interface{}
// err == nil indicates that the billing_project value was found
if bp, err := tpgresource.GetBillingProject(d, config); err == nil {
billingProject = bp
}
headers := make(http.Header)
log.Printf("[DEBUG] Deleting ProjectsPolicyBinding %q", d.Id())
res, err := transport_tpg.SendRequest(transport_tpg.SendRequestOptions{
Config: config,
Method: "DELETE",
Project: billingProject,
RawURL: url,
UserAgent: userAgent,
Body: obj,
Timeout: d.Timeout(schema.TimeoutDelete),
Headers: headers,
})
if err != nil {
return transport_tpg.HandleNotFoundError(err, d, "ProjectsPolicyBinding")
}
err = IAM3OperationWaitTime(
config, res, project, "Deleting ProjectsPolicyBinding", userAgent,
d.Timeout(schema.TimeoutDelete))
if err != nil {
return err
}
// This is useful if the resource in question doesn't have a perfectly consistent API
// That is, if the deletion of a dependent resource has not propagated.
time.Sleep(5 * time.Second)
log.Printf("[DEBUG] Finished deleting ProjectsPolicyBinding %q: %#v", d.Id(), res)
return nil
}
func resourceIAM3ProjectsPolicyBindingImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) {
config := meta.(*transport_tpg.Config)
if err := tpgresource.ParseImportId([]string{
"^projects/(?P<project>[^/]+)/locations/(?P<location>[^/]+)/policyBindings/(?P<policy_binding_id>[^/]+)$",
"^(?P<project>[^/]+)/(?P<location>[^/]+)/(?P<policy_binding_id>[^/]+)$",
"^(?P<location>[^/]+)/(?P<policy_binding_id>[^/]+)$",
}, d, config); err != nil {
return nil, err
}
// Replace import id for the resource id
id, err := tpgresource.ReplaceVars(d, config, "projects/{{project}}/locations/{{location}}/policyBindings/{{policy_binding_id}}")
if err != nil {
return nil, fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
return []*schema.ResourceData{d}, nil
}
func flattenIAM3ProjectsPolicyBindingName(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingUid(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingEtag(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingDisplayName(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingAnnotations(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
if v == nil {
return v
}
transformed := make(map[string]interface{})
if l, ok := d.GetOkExists("annotations"); ok {
for k := range l.(map[string]interface{}) {
transformed[k] = v.(map[string]interface{})[k]
}
}
return transformed
}
func flattenIAM3ProjectsPolicyBindingTarget(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
if v == nil {
return nil
}
original := v.(map[string]interface{})
if len(original) == 0 {
return nil
}
transformed := make(map[string]interface{})
transformed["principal_set"] =
flattenIAM3ProjectsPolicyBindingTargetPrincipalSet(original["principalSet"], d, config)
return []interface{}{transformed}
}
func flattenIAM3ProjectsPolicyBindingTargetPrincipalSet(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingPolicyKind(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingPolicy(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingPolicyUid(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingCondition(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
if v == nil {
return nil
}
original := v.(map[string]interface{})
if len(original) == 0 {
return nil
}
transformed := make(map[string]interface{})
transformed["expression"] =
flattenIAM3ProjectsPolicyBindingConditionExpression(original["expression"], d, config)
transformed["title"] =
flattenIAM3ProjectsPolicyBindingConditionTitle(original["title"], d, config)
transformed["description"] =
flattenIAM3ProjectsPolicyBindingConditionDescription(original["description"], d, config)
transformed["location"] =
flattenIAM3ProjectsPolicyBindingConditionLocation(original["location"], d, config)
return []interface{}{transformed}
}
func flattenIAM3ProjectsPolicyBindingConditionExpression(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingConditionTitle(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingConditionDescription(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingConditionLocation(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingCreateTime(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingUpdateTime(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenIAM3ProjectsPolicyBindingEffectiveAnnotations(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func expandIAM3ProjectsPolicyBindingEtag(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingDisplayName(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingTarget(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
l := v.([]interface{})
if len(l) == 0 || l[0] == nil {
return nil, nil
}
raw := l[0]
original := raw.(map[string]interface{})
transformed := make(map[string]interface{})
transformedPrincipalSet, err := expandIAM3ProjectsPolicyBindingTargetPrincipalSet(original["principal_set"], d, config)
if err != nil {
return nil, err
} else if val := reflect.ValueOf(transformedPrincipalSet); val.IsValid() && !tpgresource.IsEmptyValue(val) {
transformed["principalSet"] = transformedPrincipalSet
}
return transformed, nil
}
func expandIAM3ProjectsPolicyBindingTargetPrincipalSet(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingPolicyKind(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingPolicy(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingCondition(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
l := v.([]interface{})
if len(l) == 0 || l[0] == nil {
return nil, nil
}
raw := l[0]
original := raw.(map[string]interface{})
transformed := make(map[string]interface{})
transformedExpression, err := expandIAM3ProjectsPolicyBindingConditionExpression(original["expression"], d, config)
if err != nil {
return nil, err
} else if val := reflect.ValueOf(transformedExpression); val.IsValid() && !tpgresource.IsEmptyValue(val) {
transformed["expression"] = transformedExpression
}
transformedTitle, err := expandIAM3ProjectsPolicyBindingConditionTitle(original["title"], d, config)
if err != nil {
return nil, err
} else if val := reflect.ValueOf(transformedTitle); val.IsValid() && !tpgresource.IsEmptyValue(val) {
transformed["title"] = transformedTitle
}
transformedDescription, err := expandIAM3ProjectsPolicyBindingConditionDescription(original["description"], d, config)
if err != nil {
return nil, err
} else if val := reflect.ValueOf(transformedDescription); val.IsValid() && !tpgresource.IsEmptyValue(val) {
transformed["description"] = transformedDescription
}
transformedLocation, err := expandIAM3ProjectsPolicyBindingConditionLocation(original["location"], d, config)
if err != nil {
return nil, err
} else if val := reflect.ValueOf(transformedLocation); val.IsValid() && !tpgresource.IsEmptyValue(val) {
transformed["location"] = transformedLocation
}
return transformed, nil
}
func expandIAM3ProjectsPolicyBindingConditionExpression(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingConditionTitle(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingConditionDescription(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingConditionLocation(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandIAM3ProjectsPolicyBindingEffectiveAnnotations(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (map[string]string, error) {
if v == nil {
return map[string]string{}, nil
}
m := make(map[string]string)
for k, val := range v.(map[string]interface{}) {
m[k] = val.(string)
}
return m, nil
}