-
Notifications
You must be signed in to change notification settings - Fork 5
/
incident_role_resource.go
197 lines (172 loc) · 6.95 KB
/
incident_role_resource.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
package provider
import (
"context"
"fmt"
"github.com/hashicorp/terraform-plugin-framework/path"
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
"github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-log/tflog"
"github.com/incident-io/terraform-provider-incident/internal/apischema"
"github.com/incident-io/terraform-provider-incident/internal/client"
)
var (
_ resource.Resource = &IncidentRoleResource{}
_ resource.ResourceWithImportState = &IncidentRoleResource{}
)
type IncidentRoleResource struct {
client *client.ClientWithResponses
}
type IncidentRoleResourceModel struct {
ID types.String `tfsdk:"id"`
Name types.String `tfsdk:"name"`
Description types.String `tfsdk:"description"`
Instructions types.String `tfsdk:"instructions"`
Shortform types.String `tfsdk:"shortform"`
Required types.Bool `tfsdk:"required"`
}
func NewIncidentRoleResource() resource.Resource {
return &IncidentRoleResource{}
}
func (r *IncidentRoleResource) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
resp.TypeName = req.ProviderTypeName + "_incident_role"
}
func (r *IncidentRoleResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
MarkdownDescription: apischema.TagDocstring("Incident Roles V1"),
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Computed: true,
MarkdownDescription: apischema.Docstring("IncidentRoleV1ResponseBody", "id"),
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
},
"name": schema.StringAttribute{
MarkdownDescription: apischema.Docstring("IncidentRolesV1CreateRequestBody", "name"),
Required: true,
},
"description": schema.StringAttribute{
MarkdownDescription: apischema.Docstring("IncidentRolesV1CreateRequestBody", "description"),
Required: true,
},
"instructions": schema.StringAttribute{
MarkdownDescription: apischema.Docstring("IncidentRolesV1CreateRequestBody", "instructions"),
Required: true,
},
"shortform": schema.StringAttribute{
MarkdownDescription: apischema.Docstring("IncidentRolesV1CreateRequestBody", "shortform"),
Required: true,
},
"required": schema.BoolAttribute{
MarkdownDescription: apischema.Docstring("IncidentRolesV1CreateRequestBody", "required"),
Required: true,
},
},
}
}
func (r *IncidentRoleResource) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) {
if req.ProviderData == nil {
return
}
client, ok := req.ProviderData.(*client.ClientWithResponses)
if !ok {
resp.Diagnostics.AddError(
"Unexpected Resource Configure Type",
fmt.Sprintf("Expected *client.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)
return
}
r.client = client
}
func (r *IncidentRoleResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) {
var data *IncidentRoleResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
result, err := r.client.IncidentRolesV1CreateWithResponse(ctx, client.IncidentRolesV1CreateJSONRequestBody{
Name: data.Name.ValueString(),
Description: data.Description.ValueString(),
Instructions: data.Instructions.ValueString(),
Shortform: data.Shortform.ValueString(),
Required: data.Required.ValueBool(),
})
if err == nil && result.StatusCode() >= 400 {
err = fmt.Errorf(string(result.Body))
}
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to create incident role, got error: %s", err))
return
}
tflog.Trace(ctx, fmt.Sprintf("created an incident role resource with id=%s", result.JSON201.IncidentRole.Id))
data = r.buildModel(result.JSON201.IncidentRole)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *IncidentRoleResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
var data *IncidentRoleResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
result, err := r.client.IncidentRolesV1ShowWithResponse(ctx, data.ID.ValueString())
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to read incident role, got error: %s", err))
return
}
data = r.buildModel(result.JSON200.IncidentRole)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *IncidentRoleResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) {
var data *IncidentRoleResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
result, err := r.client.IncidentRolesV1UpdateWithResponse(ctx, data.ID.ValueString(), client.IncidentRolesV1UpdateJSONRequestBody{
Name: data.Name.ValueString(),
Description: data.Description.ValueString(),
Instructions: data.Instructions.ValueString(),
Shortform: data.Shortform.ValueString(),
Required: data.Required.ValueBool(),
})
if err == nil && result.StatusCode() >= 400 {
err = fmt.Errorf(string(result.Body))
}
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to update incident role, got error: %s", err))
return
}
data = r.buildModel(result.JSON200.IncidentRole)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *IncidentRoleResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) {
var data *IncidentRoleResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
result, err := r.client.IncidentRolesV1DeleteWithResponse(ctx, data.ID.ValueString())
if err == nil && result.StatusCode() >= 400 {
err = fmt.Errorf(string(result.Body))
}
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to delete incident role, got error: %s", err))
return
}
}
func (r *IncidentRoleResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
resource.ImportStatePassthroughID(ctx, path.Root("id"), req, resp)
}
func (r *IncidentRoleResource) buildModel(role client.IncidentRoleV1) *IncidentRoleResourceModel {
return &IncidentRoleResourceModel{
ID: types.StringValue(role.Id),
Name: types.StringValue(role.Name),
Description: types.StringValue(role.Description),
Instructions: types.StringValue(role.Instructions),
Shortform: types.StringValue(role.Shortform),
Required: types.BoolValue(role.Required),
}
}