-
Notifications
You must be signed in to change notification settings - Fork 102
/
admin_opa_version.go
209 lines (174 loc) · 5.99 KB
/
admin_opa_version.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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tfe
import (
"context"
"fmt"
"net/url"
"time"
)
// Compile-time proof of interface implementation.
var _ AdminOPAVersions = (*adminOPAVersions)(nil)
// AdminOPAVersions describes all the admin OPA versions related methods that
// the Terraform Enterprise API supports.
// Note that admin OPA versions are only available in Terraform Enterprise.
//
// TFE API docs: https://developer.hashicorp.com/terraform/enterprise/api-docs/admin/opa-versions
type AdminOPAVersions interface {
// List all the OPA versions.
List(ctx context.Context, options *AdminOPAVersionsListOptions) (*AdminOPAVersionsList, error)
// Read a OPA version by its ID.
Read(ctx context.Context, id string) (*AdminOPAVersion, error)
// Create a OPA version.
Create(ctx context.Context, options AdminOPAVersionCreateOptions) (*AdminOPAVersion, error)
// Update a OPA version.
Update(ctx context.Context, id string, options AdminOPAVersionUpdateOptions) (*AdminOPAVersion, error)
// Delete a OPA version
Delete(ctx context.Context, id string) error
}
// adminOPAVersions implements AdminOPAVersions.
type adminOPAVersions struct {
client *Client
}
// AdminOPAVersion represents a OPA Version
type AdminOPAVersion struct {
ID string `jsonapi:"primary,opa-versions"`
Version string `jsonapi:"attr,version"`
URL string `jsonapi:"attr,url"`
SHA string `jsonapi:"attr,sha"`
Deprecated bool `jsonapi:"attr,deprecated"`
DeprecatedReason *string `jsonapi:"attr,deprecated-reason,omitempty"`
Official bool `jsonapi:"attr,official"`
Enabled bool `jsonapi:"attr,enabled"`
Beta bool `jsonapi:"attr,beta"`
Usage int `jsonapi:"attr,usage"`
CreatedAt time.Time `jsonapi:"attr,created-at,iso8601"`
}
// AdminOPAVersionsListOptions represents the options for listing
// OPA versions.
type AdminOPAVersionsListOptions struct {
ListOptions
// Optional: A query string to find an exact version
Filter string `url:"filter[version],omitempty"`
// Optional: A search query string to find all versions that match version substring
Search string `url:"search[version],omitempty"`
}
// AdminOPAVersionCreateOptions for creating an OPA version.
type AdminOPAVersionCreateOptions struct {
Type string `jsonapi:"primary,opa-versions"`
Version string `jsonapi:"attr,version"` // Required
URL string `jsonapi:"attr,url"` // Required
SHA string `jsonapi:"attr,sha"` // Required
Official *bool `jsonapi:"attr,official,omitempty"`
Deprecated *bool `jsonapi:"attr,deprecated,omitempty"`
DeprecatedReason *string `jsonapi:"attr,deprecated-reason,omitempty"`
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
Beta *bool `jsonapi:"attr,beta,omitempty"`
}
// AdminOPAVersionUpdateOptions for updating OPA version.
type AdminOPAVersionUpdateOptions struct {
Type string `jsonapi:"primary,opa-versions"`
Version *string `jsonapi:"attr,version,omitempty"`
URL *string `jsonapi:"attr,url,omitempty"`
SHA *string `jsonapi:"attr,sha,omitempty"`
Official *bool `jsonapi:"attr,official,omitempty"`
Deprecated *bool `jsonapi:"attr,deprecated,omitempty"`
DeprecatedReason *string `jsonapi:"attr,deprecated-reason,omitempty"`
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
Beta *bool `jsonapi:"attr,beta,omitempty"`
}
// AdminOPAVersionsList represents a list of OPA versions.
type AdminOPAVersionsList struct {
*Pagination
Items []*AdminOPAVersion
}
// List all the OPA versions.
func (a *adminOPAVersions) List(ctx context.Context, options *AdminOPAVersionsListOptions) (*AdminOPAVersionsList, error) {
req, err := a.client.NewRequest("GET", "admin/opa-versions", options)
if err != nil {
return nil, err
}
ol := &AdminOPAVersionsList{}
err = req.Do(ctx, ol)
if err != nil {
return nil, err
}
return ol, nil
}
// Read a OPA version by its ID.
func (a *adminOPAVersions) Read(ctx context.Context, id string) (*AdminOPAVersion, error) {
if !validStringID(&id) {
return nil, ErrInvalidOPAVersionID
}
u := fmt.Sprintf("admin/opa-versions/%s", url.PathEscape(id))
req, err := a.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
ov := &AdminOPAVersion{}
err = req.Do(ctx, ov)
if err != nil {
return nil, err
}
return ov, nil
}
// Create a new OPA version.
func (a *adminOPAVersions) Create(ctx context.Context, options AdminOPAVersionCreateOptions) (*AdminOPAVersion, error) {
if err := options.valid(); err != nil {
return nil, err
}
req, err := a.client.NewRequest("POST", "admin/opa-versions", &options)
if err != nil {
return nil, err
}
ov := &AdminOPAVersion{}
err = req.Do(ctx, ov)
if err != nil {
return nil, err
}
return ov, nil
}
// Update an existing OPA version.
func (a *adminOPAVersions) Update(ctx context.Context, id string, options AdminOPAVersionUpdateOptions) (*AdminOPAVersion, error) {
if !validStringID(&id) {
return nil, ErrInvalidOPAVersionID
}
u := fmt.Sprintf("admin/opa-versions/%s", url.PathEscape(id))
req, err := a.client.NewRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
ov := &AdminOPAVersion{}
err = req.Do(ctx, ov)
if err != nil {
return nil, err
}
return ov, nil
}
// Delete a OPA version.
func (a *adminOPAVersions) Delete(ctx context.Context, id string) error {
if !validStringID(&id) {
return ErrInvalidOPAVersionID
}
u := fmt.Sprintf("admin/opa-versions/%s", url.PathEscape(id))
req, err := a.client.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
func (o AdminOPAVersionCreateOptions) valid() error {
if (o == AdminOPAVersionCreateOptions{}) {
return ErrRequiredOPAVerCreateOps
}
if o.Version == "" {
return ErrRequiredVersion
}
if o.URL == "" {
return ErrRequiredURL
}
if o.SHA == "" {
return ErrRequiredSha
}
return nil
}