forked from hashicorp/terraform-provider-google-beta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresource_chronicle_rule_deployment.go
636 lines (558 loc) · 22.1 KB
/
resource_chronicle_rule_deployment.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
// 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/chronicle/RuleDeployment.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 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 chronicleRuleDeploymentNilRunFrequencyDiffSuppressFunc(_, old, new string, _ *schema.ResourceData) bool {
if new == "" {
return true
}
return false
}
func ResourceChronicleRuleDeployment() *schema.Resource {
return &schema.Resource{
Create: resourceChronicleRuleDeploymentCreate,
Read: resourceChronicleRuleDeploymentRead,
Update: resourceChronicleRuleDeploymentUpdate,
Delete: resourceChronicleRuleDeploymentDelete,
Importer: &schema.ResourceImporter{
State: resourceChronicleRuleDeploymentImport,
},
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{
"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".`,
},
"rule": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The Rule ID of the rule.`,
},
"alerting": {
Type: schema.TypeBool,
Optional: true,
Description: `Whether detections resulting from this deployment should be considered
alerts.`,
},
"archived": {
Type: schema.TypeBool,
Optional: true,
Description: `The archive state of the rule deployment.
Cannot be set to true unless enabled is set to false i.e.
archiving requires a two-step process: first, disable the rule by
setting 'enabled' to false, then set 'archive' to true.
If set to true, alerting will automatically be set to false.
If currently set to true, enabled, alerting, and run_frequency cannot be
updated.`,
},
"enabled": {
Type: schema.TypeBool,
Optional: true,
Description: `Whether the rule is currently deployed continuously against incoming data.`,
},
"run_frequency": {
Type: schema.TypeString,
Optional: true,
DiffSuppressFunc: chronicleRuleDeploymentNilRunFrequencyDiffSuppressFunc,
Description: `The run frequency of the rule deployment.
Possible values:
LIVE
HOURLY
DAILY`,
},
"archive_time": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. The timestamp when the rule deployment archive state was last set to true. If the rule deployment's current archive state is not set to true, the field will be empty.`,
},
"consumer_rules": {
Type: schema.TypeList,
Computed: true,
Description: `Output only. The names of the associated/chained consumer rules. Rules are considered
consumers of this rule if their rule text explicitly filters on this rule's ruleid.
Format:
projects/{project}/locations/{location}/instances/{instance}/rules/{rule}`,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"execution_state": {
Type: schema.TypeString,
Computed: true,
Description: `The execution state of the rule deployment.
Possible values:
DEFAULT
LIMITED
PAUSED`,
},
"last_alert_status_change_time": {
Type: schema.TypeString,
Computed: true,
Description: `Output only. The timestamp when the rule deployment alert state was lastly changed. This is filled regardless of the current alert state.E.g. if the current alert status is false, this timestamp will be the timestamp when the alert status was changed to false.`,
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: `The resource name of the rule deployment.
Note that RuleDeployment is a child of the overall Rule, not any individual
revision, so the resource ID segment for the Rule resource must not
reference a specific revision.
Format:
projects/{project}/locations/{location}/instances/{instance}/rules/{rule}/deployment`,
},
"producer_rules": {
Type: schema.TypeList,
Computed: true,
Description: `Output only. The names of the associated/chained producer rules. Rules are considered
producers for this rule if this rule explicitly filters on their ruleid.
Format:
projects/{project}/locations/{location}/instances/{instance}/rules/{rule}`,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"project": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
},
},
UseJSONNumber: true,
}
}
func resourceChronicleRuleDeploymentCreate(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}}/rules/{{rule}}/deployment")
if err != nil {
return err
}
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for RuleDeployment: %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("ChronicleRuleDeployment %q", d.Id()))
}
obj := make(map[string]interface{})
updateMask := []string{}
enabledProp, err := expandChronicleRuleDeploymentEnabled(d.Get("enabled"), d, config)
if err != nil {
return err
}
alertingProp, err := expandChronicleRuleDeploymentAlerting(d.Get("alerting"), d, config)
if err != nil {
return err
}
archivedProp, err := expandChronicleRuleDeploymentArchived(d.Get("archived"), d, config)
if err != nil {
return err
}
runFrequencyProp, err := expandChronicleRuleDeploymentRunFrequency(d.Get("run_frequency"), d, config)
if err != nil {
return err
}
if res != nil {
enabledValue, enabledExists := res["enabled"]
if enabledExists {
enabled := flattenChronicleRuleDeploymentEnabled(enabledValue, d, config)
if !reflect.DeepEqual(enabledProp, enabled) {
obj["enabled"] = enabledProp
updateMask = append(updateMask, "enabled")
}
} else {
// Handle the case where "enabled" is missing from the API response
if v, ok := d.GetOkExists("enabled"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["enabled"] = enabledProp
updateMask = append(updateMask, "enabled")
}
}
alertingValue, alertingExists := res["alerting"]
if alertingExists {
alerting := flattenChronicleRuleDeploymentAlerting(alertingValue, d, config)
if !reflect.DeepEqual(alertingProp, alerting) {
obj["alerting"] = alertingProp
updateMask = append(updateMask, "alerting")
}
} else {
// Handle the case where "alerting" is missing from the API response
if v, ok := d.GetOkExists("alerting"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["alerting"] = alertingProp
updateMask = append(updateMask, "alerting")
}
}
archivedValue, archivedExists := res["archived"]
if archivedExists {
archived := flattenChronicleRuleDeploymentArchived(archivedValue, d, config)
if !reflect.DeepEqual(archivedProp, archived) {
obj["archived"] = archivedProp
updateMask = append(updateMask, "archived")
}
} else {
// Handle the case where "archived" is missing from the API response
if v, ok := d.GetOkExists("archived"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["archived"] = archivedProp
updateMask = append(updateMask, "archived")
}
}
runFrequencyValue, runFrequencyExists := res["runFrequency"]
if runFrequencyExists {
runFrequency := flattenChronicleRuleDeploymentRunFrequency(runFrequencyValue, d, config)
_, ok := d.GetOkExists("run_frequency")
if !reflect.DeepEqual(runFrequencyProp, runFrequency) && ok {
obj["runFrequency"] = runFrequencyProp
updateMask = append(updateMask, "runFrequency")
}
} else {
// Handle the case where "run_frequency" is missing from the API response
if v, ok := d.GetOkExists("run_frequency"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["runFrequency"] = runFrequencyProp
updateMask = append(updateMask, "runFrequency")
}
}
} else {
if v, ok := d.GetOkExists("enabled"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["enabled"] = enabledProp
updateMask = append(updateMask, "enabled")
}
if v, ok := d.GetOkExists("alerting"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["alerting"] = alertingProp
updateMask = append(updateMask, "alerting")
}
if v, ok := d.GetOkExists("archived"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["archived"] = archivedProp
updateMask = append(updateMask, "archived")
}
if v, ok := d.GetOkExists("run_frequency"); ok && !tpgresource.IsEmptyValue(reflect.ValueOf(v)) {
obj["runFrequency"] = runFrequencyProp
updateMask = append(updateMask, "runFrequency")
}
}
url, err = transport_tpg.AddQueryParams(url, map[string]string{"updateMask": strings.Join(updateMask, ",")})
if err != nil {
return err
}
log.Printf("[DEBUG] Updating RuleDeployment %q: %#v", d.Id(), obj)
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 RuleDeployment %q: %s", d.Id(), err)
} else {
log.Printf("[DEBUG] Finished updating RuleDeployment %q: %#v", d.Id(), res)
}
if err := d.Set("name", flattenChronicleRuleDeploymentName(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}}/rules/{{rule}}/deployment")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
log.Printf("[DEBUG] Finished creating RuleDeployment %q: %#v", d.Id(), res)
return resourceChronicleRuleDeploymentRead(d, meta)
}
func resourceChronicleRuleDeploymentRead(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}}/rules/{{rule}}/deployment")
if err != nil {
return err
}
billingProject := ""
project, err := tpgresource.GetProject(d, config)
if err != nil {
return fmt.Errorf("Error fetching project for RuleDeployment: %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("ChronicleRuleDeployment %q", d.Id()))
}
if err := d.Set("project", project); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("name", flattenChronicleRuleDeploymentName(res["name"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("enabled", flattenChronicleRuleDeploymentEnabled(res["enabled"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("alerting", flattenChronicleRuleDeploymentAlerting(res["alerting"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("archived", flattenChronicleRuleDeploymentArchived(res["archived"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("archive_time", flattenChronicleRuleDeploymentArchiveTime(res["archiveTime"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("run_frequency", flattenChronicleRuleDeploymentRunFrequency(res["runFrequency"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("execution_state", flattenChronicleRuleDeploymentExecutionState(res["executionState"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("producer_rules", flattenChronicleRuleDeploymentProducerRules(res["producerRules"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("consumer_rules", flattenChronicleRuleDeploymentConsumerRules(res["consumerRules"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
if err := d.Set("last_alert_status_change_time", flattenChronicleRuleDeploymentLastAlertStatusChangeTime(res["lastAlertStatusChangeTime"], d, config)); err != nil {
return fmt.Errorf("Error reading RuleDeployment: %s", err)
}
return nil
}
func resourceChronicleRuleDeploymentUpdate(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 RuleDeployment: %s", err)
}
billingProject = project
obj := make(map[string]interface{})
enabledProp, err := expandChronicleRuleDeploymentEnabled(d.Get("enabled"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("enabled"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, enabledProp)) {
obj["enabled"] = enabledProp
}
alertingProp, err := expandChronicleRuleDeploymentAlerting(d.Get("alerting"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("alerting"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, alertingProp)) {
obj["alerting"] = alertingProp
}
archivedProp, err := expandChronicleRuleDeploymentArchived(d.Get("archived"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("archived"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, archivedProp)) {
obj["archived"] = archivedProp
}
runFrequencyProp, err := expandChronicleRuleDeploymentRunFrequency(d.Get("run_frequency"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("run_frequency"); !tpgresource.IsEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, runFrequencyProp)) {
obj["runFrequency"] = runFrequencyProp
}
url, err := tpgresource.ReplaceVars(d, config, "{{ChronicleBasePath}}projects/{{project}}/locations/{{location}}/instances/{{instance}}/rules/{{rule}}/deployment")
if err != nil {
return err
}
log.Printf("[DEBUG] Updating RuleDeployment %q: %#v", d.Id(), obj)
headers := make(http.Header)
updateMask := []string{}
if d.HasChange("enabled") {
updateMask = append(updateMask, "enabled")
}
if d.HasChange("alerting") {
updateMask = append(updateMask, "alerting")
}
if d.HasChange("archived") {
updateMask = append(updateMask, "archived")
}
if d.HasChange("run_frequency") {
updateMask = append(updateMask, "runFrequency")
}
// 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
}
// removeRunFrequencyFromUpdateMask removes 'runFrequency' from the updateMask in a URL.
removeRunFrequencyFromUpdateMask := func(url string) string {
// Remove "runFrequency" and handle commas.
url = strings.ReplaceAll(url, "%2CrunFrequency", "")
url = strings.ReplaceAll(url, "runFrequency%2C", "")
url = strings.ReplaceAll(url, "runFrequency", "")
// Remove extra commas.
url = strings.ReplaceAll(url, "%2C%2C", "%2C")
//Remove trailing commas.
url = strings.TrimSuffix(url, "%2C")
return url
}
// Remove "runFrequency" and handle commas if run_frequency not configured by user
if _, ok := d.GetOk("run_frequency"); !ok {
url = removeRunFrequencyFromUpdateMask(url)
}
// 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 RuleDeployment %q: %s", d.Id(), err)
} else {
log.Printf("[DEBUG] Finished updating RuleDeployment %q: %#v", d.Id(), res)
}
}
return resourceChronicleRuleDeploymentRead(d, meta)
}
func resourceChronicleRuleDeploymentDelete(d *schema.ResourceData, meta interface{}) error {
log.Printf("[WARNING] Chronicle RuleDeployment resources"+
" cannot be deleted from Google Cloud. The resource %s will be removed from Terraform"+
" state, but will still be present on Google Cloud.", d.Id())
d.SetId("")
return nil
}
func resourceChronicleRuleDeploymentImport(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>[^/]+)/rules/(?P<rule>[^/]+)/deployment$",
"^(?P<project>[^/]+)/(?P<location>[^/]+)/(?P<instance>[^/]+)/(?P<rule>[^/]+)$",
"^(?P<location>[^/]+)/(?P<instance>[^/]+)/(?P<rule>[^/]+)$",
}, 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}}/rules/{{rule}}/deployment")
if err != nil {
return nil, fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
return []*schema.ResourceData{d}, nil
}
func flattenChronicleRuleDeploymentName(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentEnabled(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentAlerting(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentArchived(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentArchiveTime(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentRunFrequency(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentExecutionState(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentProducerRules(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentConsumerRules(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func flattenChronicleRuleDeploymentLastAlertStatusChangeTime(v interface{}, d *schema.ResourceData, config *transport_tpg.Config) interface{} {
return v
}
func expandChronicleRuleDeploymentEnabled(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleRuleDeploymentAlerting(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleRuleDeploymentArchived(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}
func expandChronicleRuleDeploymentRunFrequency(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}