forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_sentinel_version.go
209 lines (174 loc) · 6.35 KB
/
admin_sentinel_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 _ AdminSentinelVersions = (*adminSentinelVersions)(nil)
// AdminSentinelVersions describes all the admin Sentinel versions related methods that
// the Terraform Enterprise API supports.
// Note that admin Sentinel versions are only available in Terraform Enterprise.
//
// TFE API docs: https://developer.hashicorp.com/terraform/enterprise/api-docs/admin/sentinel-versions
type AdminSentinelVersions interface {
// List all the Sentinel versions.
List(ctx context.Context, options *AdminSentinelVersionsListOptions) (*AdminSentinelVersionsList, error)
// Read a Sentinel version by its ID.
Read(ctx context.Context, id string) (*AdminSentinelVersion, error)
// Create a Sentinel version.
Create(ctx context.Context, options AdminSentinelVersionCreateOptions) (*AdminSentinelVersion, error)
// Update a Sentinel version.
Update(ctx context.Context, id string, options AdminSentinelVersionUpdateOptions) (*AdminSentinelVersion, error)
// Delete a Sentinel version
Delete(ctx context.Context, id string) error
}
// adminSentinelVersions implements AdminSentinelVersions.
type adminSentinelVersions struct {
client *Client
}
// AdminSentinelVersion represents a Sentinel Version
type AdminSentinelVersion struct {
ID string `jsonapi:"primary,sentinel-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"`
}
// AdminSentinelVersionsListOptions represents the options for listing
// Sentinel versions.
type AdminSentinelVersionsListOptions 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"`
}
// AdminSentinelVersionCreateOptions for creating an Sentinel version.
type AdminSentinelVersionCreateOptions struct {
Type string `jsonapi:"primary,sentinel-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"`
}
// AdminSentinelVersionUpdateOptions for updating Sentinel version.
type AdminSentinelVersionUpdateOptions struct {
Type string `jsonapi:"primary,sentinel-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"`
}
// AdminSentinelVersionsList represents a list of Sentinel versions.
type AdminSentinelVersionsList struct {
*Pagination
Items []*AdminSentinelVersion
}
// List all the Sentinel versions.
func (a *adminSentinelVersions) List(ctx context.Context, options *AdminSentinelVersionsListOptions) (*AdminSentinelVersionsList, error) {
req, err := a.client.NewRequest("GET", "admin/sentinel-versions", options)
if err != nil {
return nil, err
}
sl := &AdminSentinelVersionsList{}
err = req.Do(ctx, sl)
if err != nil {
return nil, err
}
return sl, nil
}
// Read a Sentinel version by its ID.
func (a *adminSentinelVersions) Read(ctx context.Context, id string) (*AdminSentinelVersion, error) {
if !validStringID(&id) {
return nil, ErrInvalidSentinelVersionID
}
u := fmt.Sprintf("admin/sentinel-versions/%s", url.QueryEscape(id))
req, err := a.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
sv := &AdminSentinelVersion{}
err = req.Do(ctx, sv)
if err != nil {
return nil, err
}
return sv, nil
}
// Create a new Sentinel version.
func (a *adminSentinelVersions) Create(ctx context.Context, options AdminSentinelVersionCreateOptions) (*AdminSentinelVersion, error) {
if err := options.valid(); err != nil {
return nil, err
}
req, err := a.client.NewRequest("POST", "admin/sentinel-versions", &options)
if err != nil {
return nil, err
}
sv := &AdminSentinelVersion{}
err = req.Do(ctx, sv)
if err != nil {
return nil, err
}
return sv, nil
}
// Update an existing Sentinel version.
func (a *adminSentinelVersions) Update(ctx context.Context, id string, options AdminSentinelVersionUpdateOptions) (*AdminSentinelVersion, error) {
if !validStringID(&id) {
return nil, ErrInvalidSentinelVersionID
}
u := fmt.Sprintf("admin/sentinel-versions/%s", url.QueryEscape(id))
req, err := a.client.NewRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
sv := &AdminSentinelVersion{}
err = req.Do(ctx, sv)
if err != nil {
return nil, err
}
return sv, nil
}
// Delete a Sentinel version.
func (a *adminSentinelVersions) Delete(ctx context.Context, id string) error {
if !validStringID(&id) {
return ErrInvalidSentinelVersionID
}
u := fmt.Sprintf("admin/sentinel-versions/%s", url.QueryEscape(id))
req, err := a.client.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
func (o AdminSentinelVersionCreateOptions) valid() error {
if (o == AdminSentinelVersionCreateOptions{}) {
return ErrRequiredSentinelVerCreateOps
}
if o.Version == "" {
return ErrRequiredVersion
}
if o.URL == "" {
return ErrRequiredURL
}
if o.SHA == "" {
return ErrRequiredSha
}
return nil
}