@@ -32,10 +32,12 @@ type CreateResourceRequest struct {
32
32
// This configuration may contain unknown values if a user uses
33
33
// interpolation or other functionality that would prevent Terraform
34
34
// from knowing the value at request time.
35
- Config Config
35
+ // TODO uncomment when implemented
36
+ // Config Config
36
37
37
38
// Plan is the planned state for the resource.
38
- Plan Plan
39
+ // TODO uncomment when implemented
40
+ // Plan Plan
39
41
}
40
42
41
43
// ReadResourceRequest represents a request for the provider to read a
@@ -48,7 +50,8 @@ type ReadResourceRequest struct {
48
50
49
51
// State is the current state of the resource prior to the Read
50
52
// operation.
51
- State State
53
+ // TODO uncomment when implemented
54
+ // State State
52
55
}
53
56
54
57
// UpdateResourceRequest represents a request for the provider to update a
@@ -60,14 +63,17 @@ type UpdateResourceRequest struct {
60
63
// This configuration may contain unknown values if a user uses
61
64
// interpolation or other functionality that would prevent Terraform
62
65
// from knowing the value at request time.
63
- Config Config
66
+ // TODO uncomment when implemented
67
+ // Config Config
64
68
65
69
// Plan is the planned state for the resource.
66
- Plan Plan
70
+ // TODO uncomment when implemented
71
+ // Plan Plan
67
72
68
73
// State is the current state of the resource prior to the Update
69
74
// operation.
70
- State State
75
+ // TODO uncomment when implemented
76
+ // State State
71
77
}
72
78
73
79
// DeleteResourceRequest represents a request for the provider to delete a
@@ -79,5 +85,6 @@ type DeleteResourceRequest struct {
79
85
// This configuration may contain unknown values if a user uses
80
86
// interpolation or other functionality that would prevent Terraform
81
87
// from knowing the value at request time.
82
- Config Config
88
+ // TODO uncomment when implemented
89
+ // Config Config
83
90
}
0 commit comments