forked from hashicorp/terraform-provider-google-beta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresource_chronicle_watchlist.go
741 lines (651 loc) · 25.5 KB
/
resource_chronicle_watchlist.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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
// ----------------------------------------------------------------------------
//
// *** AUTO GENERATED CODE *** Type: MMv1 ***
//
// ----------------------------------------------------------------------------
//
// 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 chronicle
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-beta/google-beta/tpgresource"
transport_tpg "github.com/hashicorp/terraform-provider-google-beta/google-beta/transport"
)
func ResourceChronicleWatchlist() *schema.Resource {
return &schema.Resource{
Create: resourceChronicleWatchlistCreate,
Read: resourceChronicleWatchlistRead,
Update: resourceChronicleWatchlistUpdate,
Delete: resourceChronicleWatchlistDelete,
Importer: &schema.ResourceImporter{
State: resourceChronicleWatchlistImport,
},
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.DefaultProviderProject,
),
Schema: map[string]*schema.Schema{
"display_name": {
Type: schema.TypeString,
Required: true,
Description: `Required. Display name of the watchlist.
Note that it must be at least one character and less than 63 characters
(https://google.aip.dev/148).`,
},
"entity_population_mechanism": {
Type: schema.TypeList,
Required: true,
Description: `Mechanism to populate entities in the watchlist.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"manual": {
Type: schema.TypeList,
Computed: true,
Optional: true,
Description: `Entities are added manually.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{},
},
},
},
},
},
"instance": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The unique identifier for the Chronicle instance, which is the same as the customer ID.`,
},
"location": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".`,
},
"description": {
Type: schema.TypeString,
Optional: true,
Description: `Optional. Description of the watchlist.`,
},
"multiplying_factor": {
Type: schema.TypeFloat,
Optional: true,
Description: `Optional. Weight applied to the risk score for entities
in this watchlist.
The default is 1.0 if it is not specified.`,
},
"watchlist_id": {
Type: schema.TypeString,
Computed: true,
Optional: true,
ForceNew: true,
Description: `Optional. The ID to use for the watchlist,
which will become the final component of the watchlist's resource name.
This value should be 4-63 characters, and valid characters
are /a-z-/.`,
},
"watchlist_user_preferences": {
Type: schema.TypeList,
Computed: true,
Optional: true,
Description: `A collection of user preferences for watchlist UI configuration.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"pinned": {
Type: schema.TypeBool,
Optional: true,
Description: `Optional. Whether the watchlist is pinned on the dashboard.`,
},
},
},
},
"create_time": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. Time the watchlist was created.`,
},
"entity_count": {
Type: schema.TypeList,
Computed: true,
Description: `Count of different types of entities in the watchlist.`,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"asset": {
Type: schema.TypeInt,
Computed: true,
Description: `Output only. Count of asset type entities in the watchlist.`,
},
"user": {
Type: schema.TypeInt,
Computed: true,
Description: `Output only. Count of user type entities in the watchlist.`,
},
},
},
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: `Identifier. Resource name of the watchlist. This unique identifier is generated using values provided for the URL parameters.
Format:
projects/{project}/locations/{location}/instances/{instance}/watchlists/{watchlist}`,
},
"update_time": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. Time the watchlist was last updated.`,
},
"project": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
},
},
UseJSONNumber: true,
}
}
func resourceChronicleWatchlistCreate(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{})
multiplyingFactorProp, err := expandChronicleWatchlistMultiplyingFactor(d.Get("multiplying_factor"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("multiplying_factor"); !tpgresource.IsEmptyValue(reflect.ValueOf(multiplyingFactorProp)) && (ok || !reflect.DeepEqual(v, multiplyingFactorProp)) {
obj["multiplyingFactor"] = multiplyingFactorProp
}
displayNameProp, err := expandChronicleWatchlistDisplayName(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
}
descriptionProp, err := expandChronicleWatchlistDescription(d.Get("description"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("description"); !tpgresource.IsEmptyValue(reflect.ValueOf(descriptionProp)) && (ok || !reflect.DeepEqual(v, descriptionProp)) {
obj["description"] = descriptionProp
}
entityPopulationMechanismProp, err := expandChronicleWatchlistEntityPopulationMechanism(d.Get("entity_population_mechanism"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("entity_population_mechanism"); !tpgresource.IsEmptyValue(reflect.ValueOf(entityPopulationMechanismProp)) && (ok || !reflect.DeepEqual(v, entityPopulationMechanismProp)) {
obj["entityPopulationMechanism"] = entityPopulationMechanismProp
}
watchlistUserPreferencesProp, err := expandChronicleWatchlistWatchlistUserPreferences(d.Get("watchlist_user_preferences"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("watchlist_user_preferences"); !tpgresource.IsEmptyValue(reflect.ValueOf(watchlistUserPreferencesProp)) && (ok || !reflect.DeepEqual(v, watchlistUserPreferencesProp)) {
obj["watchlistUserPreferences"] = watchlistUserPreferencesProp
}
watchlistIdProp, err := expandChronicleWatchlistWatchlistId(d.Get("watchlist_id"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("watchlist_id"); !tpgresource.IsEmptyValue(reflect.ValueOf(watchlistIdProp)) && (ok || !reflect.DeepEqual(v, watchlistIdProp)) {
obj["watchlistId"] = watchlistIdProp
}
obj, err = resourceChronicleWatchlistEncoder(d, meta, obj)
if err != nil {
return err
}
url, err := tpgresource.ReplaceVars(d, config, "{{ChronicleBasePath}}projects/{{project}}/locations/{{location}}/instances/{{instance}}/watchlists?watchlistId={{watchlist_id}}")
if err != nil {
return err
}
log.Printf("[DEBUG] Creating new Watchlist: %#v", obj)
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for Watchlist: %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 Watchlist: %s", err)
}
if err := d.Set("name", flattenChronicleWatchlistName(res["name"], d, config)); err != nil {
return fmt.Errorf(`Error setting computed identity field "name": %s`, err)
}
// Store the ID now
id, err := tpgresource.ReplaceVars(d, config, "projects/{{project}}/locations/{{location}}/instances/{{instance}}/watchlists/{{watchlist_id}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
if tpgresource.IsEmptyValue(reflect.ValueOf(d.Get("watchlist_id"))) {
// watchlist id is set by API when unset and required to GET the connection
// it is set by reading the "name" field rather than a field in the response
if err := d.Set("watchlist_id", flattenChronicleWatchlistWatchlistId("", d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist ID: %s", err)
}
}
log.Printf("[DEBUG] Finished creating Watchlist %q: %#v", d.Id(), res)
return resourceChronicleWatchlistRead(d, meta)
}
func resourceChronicleWatchlistRead(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, "{{ChronicleBasePath}}projects/{{project}}/locations/{{location}}/instances/{{instance}}/watchlists/{{watchlist_id}}")
if err != nil {
return err
}
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for Watchlist: %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("ChronicleWatchlist %q", d.Id()))
}
if err := d.Set("project", project); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("name", flattenChronicleWatchlistName(res["name"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("multiplying_factor", flattenChronicleWatchlistMultiplyingFactor(res["multiplyingFactor"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("create_time", flattenChronicleWatchlistCreateTime(res["createTime"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("update_time", flattenChronicleWatchlistUpdateTime(res["updateTime"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("display_name", flattenChronicleWatchlistDisplayName(res["displayName"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("description", flattenChronicleWatchlistDescription(res["description"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("entity_population_mechanism", flattenChronicleWatchlistEntityPopulationMechanism(res["entityPopulationMechanism"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("entity_count", flattenChronicleWatchlistEntityCount(res["entityCount"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("watchlist_user_preferences", flattenChronicleWatchlistWatchlistUserPreferences(res["watchlistUserPreferences"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
if err := d.Set("watchlist_id", flattenChronicleWatchlistWatchlistId(res["watchlistId"], d, config)); err != nil {
return fmt.Errorf("Error reading Watchlist: %s", err)
}
return nil
}
func resourceChronicleWatchlistUpdate(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 Watchlist: %s", err)
}
billingProject = project
obj := make(map[string]interface{})
multiplyingFactorProp, err := expandChronicleWatchlistMultiplyingFactor(d.Get("multiplying_factor"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("multiplying_factor"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, multiplyingFactorProp)) {
obj["multiplyingFactor"] = multiplyingFactorProp
}
displayNameProp, err := expandChronicleWatchlistDisplayName(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
}
descriptionProp, err := expandChronicleWatchlistDescription(d.Get("description"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("description"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, descriptionProp)) {
obj["description"] = descriptionProp
}
entityPopulationMechanismProp, err := expandChronicleWatchlistEntityPopulationMechanism(d.Get("entity_population_mechanism"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("entity_population_mechanism"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, entityPopulationMechanismProp)) {
obj["entityPopulationMechanism"] = entityPopulationMechanismProp
}
watchlistUserPreferencesProp, err := expandChronicleWatchlistWatchlistUserPreferences(d.Get("watchlist_user_preferences"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("watchlist_user_preferences"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, watchlistUserPreferencesProp)) {
obj["watchlistUserPreferences"] = watchlistUserPreferencesProp
}
obj, err = resourceChronicleWatchlistEncoder(d, meta, obj)
if err != nil {
return err
}
url, err := tpgresource.ReplaceVars(d, config, "{{ChronicleBasePath}}projects/{{project}}/locations/{{location}}/instances/{{instance}}/watchlists/{{watchlist_id}}")
if err != nil {
return err
}
log.Printf("[DEBUG] Updating Watchlist %q: %#v", d.Id(), obj)
headers := make(http.Header)
updateMask := []string{}
if d.HasChange("multiplying_factor") {
updateMask = append(updateMask, "multiplyingFactor")
}
if d.HasChange("display_name") {
updateMask = append(updateMask, "displayName")
}
if d.HasChange("description") {
updateMask = append(updateMask, "description")
}
if d.HasChange("entity_population_mechanism") {
updateMask = append(updateMask, "entityPopulationMechanism")
}
if d.HasChange("watchlist_user_preferences") {
updateMask = append(updateMask, "watchlistUserPreferences")
}
// 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 Watchlist %q: %s", d.Id(), err)
} else {
log.Printf("[DEBUG] Finished updating Watchlist %q: %#v", d.Id(), res)
}
}
return resourceChronicleWatchlistRead(d, meta)
}
func resourceChronicleWatchlistDelete(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 Watchlist: %s", err)
}
billingProject = project
url, err := tpgresource.ReplaceVars(d, config, "{{ChronicleBasePath}}projects/{{project}}/locations/{{location}}/instances/{{instance}}/watchlists/{{watchlist_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 Watchlist %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, "Watchlist")
}
log.Printf("[DEBUG] Finished deleting Watchlist %q: %#v", d.Id(), res)
return nil
}
func resourceChronicleWatchlistImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) {
config := meta.(*transport_tpg.Config)
if err := tpgresource.ParseImportId([]string{
"^projects/(?P<project>[^/]+)/locations/(?P<location>[^/]+)/instances/(?P<instance>[^/]+)/watchlists/(?P<watchlist_id>[^/]+)$",
"^(?P<project>[^/]+)/(?P<location>[^/]+)/(?P<instance>[^/]+)/(?P<watchlist_id>[^/]+)$",
"^(?P<location>[^/]+)/(?P<instance>[^/]+)/(?P<watchlist_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}}/instances/{{instance}}/watchlists/{{watchlist_id}}")
if err != nil {
return nil, fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
return []*schema.ResourceData{d}, nil
}
func flattenChronicleWatchlistName(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistMultiplyingFactor(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistCreateTime(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistUpdateTime(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistDisplayName(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistDescription(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistEntityPopulationMechanism(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["manual"] =
flattenChronicleWatchlistEntityPopulationMechanismManual(original["manual"], d, config)
return []interface{}{transformed}
}
func flattenChronicleWatchlistEntityPopulationMechanismManual(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
if v == nil {
return nil
}
transformed := make(map[string]interface{})
return []interface{}{transformed}
}
func flattenChronicleWatchlistEntityCount(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["user"] =
flattenChronicleWatchlistEntityCountUser(original["user"], d, config)
transformed["asset"] =
flattenChronicleWatchlistEntityCountAsset(original["asset"], d, config)
return []interface{}{transformed}
}
func flattenChronicleWatchlistEntityCountUser(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
// Handles the string fixed64 format
if strVal, ok := v.(string); ok {
if intVal, err := tpgresource.StringToFixed64(strVal); err == nil {
return intVal
}
}
// number values are represented as float64
if floatVal, ok := v.(float64); ok {
intVal := int(floatVal)
return intVal
}
return v // let terraform core handle it otherwise
}
func flattenChronicleWatchlistEntityCountAsset(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
// Handles the string fixed64 format
if strVal, ok := v.(string); ok {
if intVal, err := tpgresource.StringToFixed64(strVal); err == nil {
return intVal
}
}
// number values are represented as float64
if floatVal, ok := v.(float64); ok {
intVal := int(floatVal)
return intVal
}
return v // let terraform core handle it otherwise
}
func flattenChronicleWatchlistWatchlistUserPreferences(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["pinned"] =
flattenChronicleWatchlistWatchlistUserPreferencesPinned(original["pinned"], d, config)
return []interface{}{transformed}
}
func flattenChronicleWatchlistWatchlistUserPreferencesPinned(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleWatchlistWatchlistId(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
parts := strings.Split(d.Get("name").(string), "/")
return parts[len(parts)-1]
}
func expandChronicleWatchlistMultiplyingFactor(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleWatchlistDisplayName(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleWatchlistDescription(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleWatchlistEntityPopulationMechanism(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{})
transformedManual, err := expandChronicleWatchlistEntityPopulationMechanismManual(original["manual"], d, config)
if err != nil {
return nil, err
} else {
transformed["manual"] = transformedManual
}
return transformed, nil
}
func expandChronicleWatchlistEntityPopulationMechanismManual(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
l := v.([]interface{})
if len(l) == 0 {
return nil, nil
}
if l[0] == nil {
transformed := make(map[string]interface{})
return transformed, nil
}
transformed := make(map[string]interface{})
return transformed, nil
}
func expandChronicleWatchlistWatchlistUserPreferences(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{})
transformedPinned, err := expandChronicleWatchlistWatchlistUserPreferencesPinned(original["pinned"], d, config)
if err != nil {
return nil, err
} else if val := reflect.ValueOf(transformedPinned); val.IsValid() && !tpgresource.IsEmptyValue(val) {
transformed["pinned"] = transformedPinned
}
return transformed, nil
}
func expandChronicleWatchlistWatchlistUserPreferencesPinned(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleWatchlistWatchlistId(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func resourceChronicleWatchlistEncoder(d *schema.ResourceData, meta interface{}, obj map[string]interface{}) (map[string]interface{}, error) {
// watchlist_id is needed to qualify the URL but cannot be sent in the body
delete(obj, "watchlistId")
return obj, nil
}