-
Notifications
You must be signed in to change notification settings - Fork 42
/
impl.go
executable file
·291 lines (255 loc) · 12.1 KB
/
impl.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package sharing
import (
"context"
"fmt"
"net/http"
"github.com/databricks/databricks-sdk-go/client"
"github.com/databricks/databricks-sdk-go/service/catalog"
)
// unexported type that holds implementations of just CleanRooms API methods
type cleanRoomsImpl struct {
client *client.DatabricksClient
}
func (a *cleanRoomsImpl) Create(ctx context.Context, request CreateCleanRoom) (*CleanRoomInfo, error) {
var cleanRoomInfo CleanRoomInfo
path := "/api/2.1/unity-catalog/clean-rooms"
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPost, path, headers, request, &cleanRoomInfo)
return &cleanRoomInfo, err
}
func (a *cleanRoomsImpl) Delete(ctx context.Context, request DeleteCleanRoomRequest) error {
var deleteResponse DeleteResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/clean-rooms/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodDelete, path, headers, request, &deleteResponse)
return err
}
func (a *cleanRoomsImpl) Get(ctx context.Context, request GetCleanRoomRequest) (*CleanRoomInfo, error) {
var cleanRoomInfo CleanRoomInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/clean-rooms/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &cleanRoomInfo)
return &cleanRoomInfo, err
}
func (a *cleanRoomsImpl) List(ctx context.Context, request ListCleanRoomsRequest) (*ListCleanRoomsResponse, error) {
var listCleanRoomsResponse ListCleanRoomsResponse
path := "/api/2.1/unity-catalog/clean-rooms"
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &listCleanRoomsResponse)
return &listCleanRoomsResponse, err
}
func (a *cleanRoomsImpl) Update(ctx context.Context, request UpdateCleanRoom) (*CleanRoomInfo, error) {
var cleanRoomInfo CleanRoomInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/clean-rooms/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPatch, path, headers, request, &cleanRoomInfo)
return &cleanRoomInfo, err
}
// unexported type that holds implementations of just Providers API methods
type providersImpl struct {
client *client.DatabricksClient
}
func (a *providersImpl) Create(ctx context.Context, request CreateProvider) (*ProviderInfo, error) {
var providerInfo ProviderInfo
path := "/api/2.1/unity-catalog/providers"
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPost, path, headers, request, &providerInfo)
return &providerInfo, err
}
func (a *providersImpl) Delete(ctx context.Context, request DeleteProviderRequest) error {
var deleteResponse DeleteResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/providers/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodDelete, path, headers, request, &deleteResponse)
return err
}
func (a *providersImpl) Get(ctx context.Context, request GetProviderRequest) (*ProviderInfo, error) {
var providerInfo ProviderInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/providers/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &providerInfo)
return &providerInfo, err
}
func (a *providersImpl) List(ctx context.Context, request ListProvidersRequest) (*ListProvidersResponse, error) {
var listProvidersResponse ListProvidersResponse
path := "/api/2.1/unity-catalog/providers"
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &listProvidersResponse)
return &listProvidersResponse, err
}
func (a *providersImpl) ListShares(ctx context.Context, request ListSharesRequest) (*ListProviderSharesResponse, error) {
var listProviderSharesResponse ListProviderSharesResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/providers/%v/shares", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &listProviderSharesResponse)
return &listProviderSharesResponse, err
}
func (a *providersImpl) Update(ctx context.Context, request UpdateProvider) (*ProviderInfo, error) {
var providerInfo ProviderInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/providers/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPatch, path, headers, request, &providerInfo)
return &providerInfo, err
}
// unexported type that holds implementations of just RecipientActivation API methods
type recipientActivationImpl struct {
client *client.DatabricksClient
}
func (a *recipientActivationImpl) GetActivationUrlInfo(ctx context.Context, request GetActivationUrlInfoRequest) error {
var getActivationUrlInfoResponse GetActivationUrlInfoResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/public/data_sharing_activation_info/%v", request.ActivationUrl)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &getActivationUrlInfoResponse)
return err
}
func (a *recipientActivationImpl) RetrieveToken(ctx context.Context, request RetrieveTokenRequest) (*RetrieveTokenResponse, error) {
var retrieveTokenResponse RetrieveTokenResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/public/data_sharing_activation/%v", request.ActivationUrl)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &retrieveTokenResponse)
return &retrieveTokenResponse, err
}
// unexported type that holds implementations of just Recipients API methods
type recipientsImpl struct {
client *client.DatabricksClient
}
func (a *recipientsImpl) Create(ctx context.Context, request CreateRecipient) (*RecipientInfo, error) {
var recipientInfo RecipientInfo
path := "/api/2.1/unity-catalog/recipients"
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPost, path, headers, request, &recipientInfo)
return &recipientInfo, err
}
func (a *recipientsImpl) Delete(ctx context.Context, request DeleteRecipientRequest) error {
var deleteResponse DeleteResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/recipients/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodDelete, path, headers, request, &deleteResponse)
return err
}
func (a *recipientsImpl) Get(ctx context.Context, request GetRecipientRequest) (*RecipientInfo, error) {
var recipientInfo RecipientInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/recipients/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &recipientInfo)
return &recipientInfo, err
}
func (a *recipientsImpl) List(ctx context.Context, request ListRecipientsRequest) (*ListRecipientsResponse, error) {
var listRecipientsResponse ListRecipientsResponse
path := "/api/2.1/unity-catalog/recipients"
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &listRecipientsResponse)
return &listRecipientsResponse, err
}
func (a *recipientsImpl) RotateToken(ctx context.Context, request RotateRecipientToken) (*RecipientInfo, error) {
var recipientInfo RecipientInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/recipients/%v/rotate-token", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPost, path, headers, request, &recipientInfo)
return &recipientInfo, err
}
func (a *recipientsImpl) SharePermissions(ctx context.Context, request SharePermissionsRequest) (*GetRecipientSharePermissionsResponse, error) {
var getRecipientSharePermissionsResponse GetRecipientSharePermissionsResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/recipients/%v/share-permissions", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &getRecipientSharePermissionsResponse)
return &getRecipientSharePermissionsResponse, err
}
func (a *recipientsImpl) Update(ctx context.Context, request UpdateRecipient) error {
var updateResponse UpdateResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/recipients/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPatch, path, headers, request, &updateResponse)
return err
}
// unexported type that holds implementations of just Shares API methods
type sharesImpl struct {
client *client.DatabricksClient
}
func (a *sharesImpl) Create(ctx context.Context, request CreateShare) (*ShareInfo, error) {
var shareInfo ShareInfo
path := "/api/2.1/unity-catalog/shares"
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPost, path, headers, request, &shareInfo)
return &shareInfo, err
}
func (a *sharesImpl) Delete(ctx context.Context, request DeleteShareRequest) error {
var deleteResponse DeleteResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/shares/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodDelete, path, headers, request, &deleteResponse)
return err
}
func (a *sharesImpl) Get(ctx context.Context, request GetShareRequest) (*ShareInfo, error) {
var shareInfo ShareInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/shares/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &shareInfo)
return &shareInfo, err
}
func (a *sharesImpl) List(ctx context.Context) (*ListSharesResponse, error) {
var listSharesResponse ListSharesResponse
path := "/api/2.1/unity-catalog/shares"
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, nil, &listSharesResponse)
return &listSharesResponse, err
}
func (a *sharesImpl) SharePermissions(ctx context.Context, request SharePermissionsRequest) (*catalog.PermissionsList, error) {
var permissionsList catalog.PermissionsList
path := fmt.Sprintf("/api/2.1/unity-catalog/shares/%v/permissions", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
err := a.client.Do(ctx, http.MethodGet, path, headers, request, &permissionsList)
return &permissionsList, err
}
func (a *sharesImpl) Update(ctx context.Context, request UpdateShare) (*ShareInfo, error) {
var shareInfo ShareInfo
path := fmt.Sprintf("/api/2.1/unity-catalog/shares/%v", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPatch, path, headers, request, &shareInfo)
return &shareInfo, err
}
func (a *sharesImpl) UpdatePermissions(ctx context.Context, request UpdateSharePermissions) error {
var updatePermissionsResponse UpdatePermissionsResponse
path := fmt.Sprintf("/api/2.1/unity-catalog/shares/%v/permissions", request.Name)
headers := make(map[string]string)
headers["Accept"] = "application/json"
headers["Content-Type"] = "application/json"
err := a.client.Do(ctx, http.MethodPatch, path, headers, request, &updatePermissionsResponse)
return err
}