-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_generated_terraformed.go
executable file
·88 lines (74 loc) · 2.58 KB
/
zz_generated_terraformed.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
/*
Copyright 2022 Upbound Inc.
*/
// Code generated by upjet. DO NOT EDIT.
package v1beta1
import (
"github.com/pkg/errors"
"github.com/upbound/upjet/pkg/resource"
"github.com/upbound/upjet/pkg/resource/json"
)
// GetTerraformResourceType returns Terraform resource type for this EventIntegration
func (mg *EventIntegration) GetTerraformResourceType() string {
return "aws_appintegrations_event_integration"
}
// GetConnectionDetailsMapping for this EventIntegration
func (tr *EventIntegration) GetConnectionDetailsMapping() map[string]string {
return nil
}
// GetObservation of this EventIntegration
func (tr *EventIntegration) GetObservation() (map[string]any, error) {
o, err := json.TFParser.Marshal(tr.Status.AtProvider)
if err != nil {
return nil, err
}
base := map[string]any{}
return base, json.TFParser.Unmarshal(o, &base)
}
// SetObservation for this EventIntegration
func (tr *EventIntegration) SetObservation(obs map[string]any) error {
p, err := json.TFParser.Marshal(obs)
if err != nil {
return err
}
return json.TFParser.Unmarshal(p, &tr.Status.AtProvider)
}
// GetID returns ID of underlying Terraform resource of this EventIntegration
func (tr *EventIntegration) GetID() string {
if tr.Status.AtProvider.ID == nil {
return ""
}
return *tr.Status.AtProvider.ID
}
// GetParameters of this EventIntegration
func (tr *EventIntegration) GetParameters() (map[string]any, error) {
p, err := json.TFParser.Marshal(tr.Spec.ForProvider)
if err != nil {
return nil, err
}
base := map[string]any{}
return base, json.TFParser.Unmarshal(p, &base)
}
// SetParameters for this EventIntegration
func (tr *EventIntegration) SetParameters(params map[string]any) error {
p, err := json.TFParser.Marshal(params)
if err != nil {
return err
}
return json.TFParser.Unmarshal(p, &tr.Spec.ForProvider)
}
// LateInitialize this EventIntegration using its observed tfState.
// returns True if there are any spec changes for the resource.
func (tr *EventIntegration) LateInitialize(attrs []byte) (bool, error) {
params := &EventIntegrationParameters{}
if err := json.TFParser.Unmarshal(attrs, params); err != nil {
return false, errors.Wrap(err, "failed to unmarshal Terraform state parameters for late-initialization")
}
opts := []resource.GenericLateInitializerOption{resource.WithZeroValueJSONOmitEmptyFilter(resource.CNameWildcard)}
li := resource.NewGenericLateInitializer(opts...)
return li.LateInitialize(&tr.Spec.ForProvider, params)
}
// GetTerraformSchemaVersion returns the associated Terraform schema version
func (tr *EventIntegration) GetTerraformSchemaVersion() int {
return 0
}