forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_logging_folder_sink.go
91 lines (72 loc) · 2.65 KB
/
resource_logging_folder_sink.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
package google
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
)
func resourceLoggingFolderSink() *schema.Resource {
schm := &schema.Resource{
Create: resourceLoggingFolderSinkCreate,
Read: resourceLoggingFolderSinkRead,
Delete: resourceLoggingFolderSinkDelete,
Update: resourceLoggingFolderSinkUpdate,
Schema: resourceLoggingSinkSchema(),
}
schm.Schema["folder"] = &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
DiffSuppressFunc: optionalPrefixSuppress("folders/"),
}
schm.Schema["include_children"] = &schema.Schema{
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
Default: false,
}
return schm
}
func resourceLoggingFolderSinkCreate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
folder := parseFolderId(d.Get("folder"))
id, sink := expandResourceLoggingSink(d, "folders", folder)
sink.IncludeChildren = d.Get("include_children").(bool)
// The API will reject any requests that don't explicitly set 'uniqueWriterIdentity' to true.
_, err := config.clientLogging.Folders.Sinks.Create(id.parent(), sink).UniqueWriterIdentity(true).Do()
if err != nil {
return err
}
d.SetId(id.canonicalId())
return resourceLoggingFolderSinkRead(d, meta)
}
func resourceLoggingFolderSinkRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
sink, err := config.clientLogging.Folders.Sinks.Get(d.Id()).Do()
if err != nil {
return handleNotFoundError(err, d, fmt.Sprintf("Folder Logging Sink %s", d.Get("name").(string)))
}
flattenResourceLoggingSink(d, sink)
d.Set("include_children", sink.IncludeChildren)
return nil
}
func resourceLoggingFolderSinkUpdate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
sink := expandResourceLoggingSinkForUpdate(d)
// It seems the API might actually accept an update for include_children; this is not in the list of updatable
// properties though and might break in the future. Always include the value to prevent it changing.
sink.IncludeChildren = d.Get("include_children").(bool)
sink.ForceSendFields = append(sink.ForceSendFields, "IncludeChildren")
// The API will reject any requests that don't explicitly set 'uniqueWriterIdentity' to true.
_, err := config.clientLogging.Folders.Sinks.Patch(d.Id(), sink).UniqueWriterIdentity(true).Do()
if err != nil {
return err
}
return resourceLoggingFolderSinkRead(d, meta)
}
func resourceLoggingFolderSinkDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
_, err := config.clientLogging.Projects.Sinks.Delete(d.Id()).Do()
if err != nil {
return err
}
return nil
}