-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaccounturlendpoint.go
More file actions
427 lines (380 loc) · 16.1 KB
/
accounturlendpoint.go
File metadata and controls
427 lines (380 loc) · 16.1 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package imagekit
import (
"context"
"encoding/json"
"errors"
"fmt"
"net/http"
"slices"
"github.com/imagekit-developer/imagekit-go/v2/internal/apijson"
shimjson "github.com/imagekit-developer/imagekit-go/v2/internal/encoding/json"
"github.com/imagekit-developer/imagekit-go/v2/internal/requestconfig"
"github.com/imagekit-developer/imagekit-go/v2/option"
"github.com/imagekit-developer/imagekit-go/v2/packages/param"
"github.com/imagekit-developer/imagekit-go/v2/packages/respjson"
"github.com/imagekit-developer/imagekit-go/v2/shared/constant"
)
// AccountURLEndpointService contains methods and other services that help with
// interacting with the ImageKit API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewAccountURLEndpointService] method instead.
type AccountURLEndpointService struct {
Options []option.RequestOption
}
// NewAccountURLEndpointService generates a new service that applies the given
// options to each request. These options are applied after the parent client's
// options (if there is one), and before any request-specific options.
func NewAccountURLEndpointService(opts ...option.RequestOption) (r AccountURLEndpointService) {
r = AccountURLEndpointService{}
r.Options = opts
return
}
// **Note:** This API is currently in beta.
// Creates a new URL‑endpoint and returns the resulting object.
func (r *AccountURLEndpointService) New(ctx context.Context, body AccountURLEndpointNewParams, opts ...option.RequestOption) (res *URLEndpointResponse, err error) {
opts = slices.Concat(r.Options, opts)
path := "v1/accounts/url-endpoints"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return res, err
}
// **Note:** This API is currently in beta.
// Updates the URL‑endpoint identified by `id` and returns the updated object.
func (r *AccountURLEndpointService) Update(ctx context.Context, id string, body AccountURLEndpointUpdateParams, opts ...option.RequestOption) (res *URLEndpointResponse, err error) {
opts = slices.Concat(r.Options, opts)
if id == "" {
err = errors.New("missing required id parameter")
return nil, err
}
path := fmt.Sprintf("v1/accounts/url-endpoints/%s", id)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPut, path, body, &res, opts...)
return res, err
}
// **Note:** This API is currently in beta.
// Returns an array of all URL‑endpoints configured including the default
// URL-endpoint generated by ImageKit during account creation.
func (r *AccountURLEndpointService) List(ctx context.Context, opts ...option.RequestOption) (res *[]URLEndpointResponse, err error) {
opts = slices.Concat(r.Options, opts)
path := "v1/accounts/url-endpoints"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return res, err
}
// **Note:** This API is currently in beta.
// Deletes the URL‑endpoint identified by `id`. You cannot delete the default
// URL‑endpoint created by ImageKit during account creation.
func (r *AccountURLEndpointService) Delete(ctx context.Context, id string, opts ...option.RequestOption) (err error) {
opts = slices.Concat(r.Options, opts)
opts = append([]option.RequestOption{option.WithHeader("Accept", "*/*")}, opts...)
if id == "" {
err = errors.New("missing required id parameter")
return err
}
path := fmt.Sprintf("v1/accounts/url-endpoints/%s", id)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodDelete, path, nil, nil, opts...)
return err
}
// **Note:** This API is currently in beta.
// Retrieves the URL‑endpoint identified by `id`.
func (r *AccountURLEndpointService) Get(ctx context.Context, id string, opts ...option.RequestOption) (res *URLEndpointResponse, err error) {
opts = slices.Concat(r.Options, opts)
if id == "" {
err = errors.New("missing required id parameter")
return nil, err
}
path := fmt.Sprintf("v1/accounts/url-endpoints/%s", id)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return res, err
}
// Schema for URL endpoint resource.
//
// The property Description is required.
type URLEndpointRequestParam struct {
// Description of the URL endpoint.
Description string `json:"description" api:"required"`
// Path segment appended to your base URL to form the endpoint (letters, digits,
// and hyphens only — or empty for the default endpoint).
URLPrefix param.Opt[string] `json:"urlPrefix,omitzero"`
// Ordered list of origin IDs to try when the file isn’t in the Media Library;
// ImageKit checks them in the sequence provided. Origin must be created before it
// can be used in a URL endpoint.
Origins []string `json:"origins,omitzero"`
// Configuration for third-party URL rewriting.
URLRewriter URLEndpointRequestURLRewriterUnionParam `json:"urlRewriter,omitzero"`
paramObj
}
func (r URLEndpointRequestParam) MarshalJSON() (data []byte, err error) {
type shadow URLEndpointRequestParam
return param.MarshalObject(r, (*shadow)(&r))
}
func (r *URLEndpointRequestParam) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
// Only one field can be non-zero.
//
// Use [param.IsOmitted] to confirm if a field is set.
type URLEndpointRequestURLRewriterUnionParam struct {
OfCloudinary *URLEndpointRequestURLRewriterCloudinaryParam `json:",omitzero,inline"`
OfImgix *URLEndpointRequestURLRewriterImgixParam `json:",omitzero,inline"`
OfAkamai *URLEndpointRequestURLRewriterAkamaiParam `json:",omitzero,inline"`
paramUnion
}
func (u URLEndpointRequestURLRewriterUnionParam) MarshalJSON() ([]byte, error) {
return param.MarshalUnion(u, u.OfCloudinary, u.OfImgix, u.OfAkamai)
}
func (u *URLEndpointRequestURLRewriterUnionParam) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, u)
}
func (u *URLEndpointRequestURLRewriterUnionParam) asAny() any {
if !param.IsOmitted(u.OfCloudinary) {
return u.OfCloudinary
} else if !param.IsOmitted(u.OfImgix) {
return u.OfImgix
} else if !param.IsOmitted(u.OfAkamai) {
return u.OfAkamai
}
return nil
}
// Returns a pointer to the underlying variant's property, if present.
func (u URLEndpointRequestURLRewriterUnionParam) GetPreserveAssetDeliveryTypes() *bool {
if vt := u.OfCloudinary; vt != nil && vt.PreserveAssetDeliveryTypes.Valid() {
return &vt.PreserveAssetDeliveryTypes.Value
}
return nil
}
// Returns a pointer to the underlying variant's property, if present.
func (u URLEndpointRequestURLRewriterUnionParam) GetType() *string {
if vt := u.OfCloudinary; vt != nil {
return (*string)(&vt.Type)
} else if vt := u.OfImgix; vt != nil {
return (*string)(&vt.Type)
} else if vt := u.OfAkamai; vt != nil {
return (*string)(&vt.Type)
}
return nil
}
func init() {
apijson.RegisterUnion[URLEndpointRequestURLRewriterUnionParam](
"type",
apijson.Discriminator[URLEndpointRequestURLRewriterCloudinaryParam]("CLOUDINARY"),
apijson.Discriminator[URLEndpointRequestURLRewriterImgixParam]("IMGIX"),
apijson.Discriminator[URLEndpointRequestURLRewriterAkamaiParam]("AKAMAI"),
)
}
// The property Type is required.
type URLEndpointRequestURLRewriterCloudinaryParam struct {
// Whether to preserve `<asset_type>/<delivery_type>` in the rewritten URL.
PreserveAssetDeliveryTypes param.Opt[bool] `json:"preserveAssetDeliveryTypes,omitzero"`
// This field can be elided, and will marshal its zero value as "CLOUDINARY".
Type constant.Cloudinary `json:"type" default:"CLOUDINARY"`
paramObj
}
func (r URLEndpointRequestURLRewriterCloudinaryParam) MarshalJSON() (data []byte, err error) {
type shadow URLEndpointRequestURLRewriterCloudinaryParam
return param.MarshalObject(r, (*shadow)(&r))
}
func (r *URLEndpointRequestURLRewriterCloudinaryParam) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
func NewURLEndpointRequestURLRewriterImgixParam() URLEndpointRequestURLRewriterImgixParam {
return URLEndpointRequestURLRewriterImgixParam{
Type: "IMGIX",
}
}
// This struct has a constant value, construct it with
// [NewURLEndpointRequestURLRewriterImgixParam].
type URLEndpointRequestURLRewriterImgixParam struct {
Type constant.Imgix `json:"type" default:"IMGIX"`
paramObj
}
func (r URLEndpointRequestURLRewriterImgixParam) MarshalJSON() (data []byte, err error) {
type shadow URLEndpointRequestURLRewriterImgixParam
return param.MarshalObject(r, (*shadow)(&r))
}
func (r *URLEndpointRequestURLRewriterImgixParam) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
func NewURLEndpointRequestURLRewriterAkamaiParam() URLEndpointRequestURLRewriterAkamaiParam {
return URLEndpointRequestURLRewriterAkamaiParam{
Type: "AKAMAI",
}
}
// This struct has a constant value, construct it with
// [NewURLEndpointRequestURLRewriterAkamaiParam].
type URLEndpointRequestURLRewriterAkamaiParam struct {
Type constant.Akamai `json:"type" default:"AKAMAI"`
paramObj
}
func (r URLEndpointRequestURLRewriterAkamaiParam) MarshalJSON() (data []byte, err error) {
type shadow URLEndpointRequestURLRewriterAkamaiParam
return param.MarshalObject(r, (*shadow)(&r))
}
func (r *URLEndpointRequestURLRewriterAkamaiParam) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
// URL‑endpoint object as returned by the API.
type URLEndpointResponse struct {
// Unique identifier for the URL-endpoint. This is generated by ImageKit when you
// create a new URL-endpoint. For the default URL-endpoint, this is always
// `default`.
ID string `json:"id" api:"required"`
// Description of the URL endpoint.
Description string `json:"description" api:"required"`
// Ordered list of origin IDs to try when the file isn’t in the Media Library;
// ImageKit checks them in the sequence provided. Origin must be created before it
// can be used in a URL endpoint.
Origins []string `json:"origins" api:"required"`
// Path segment appended to your base URL to form the endpoint (letters, digits,
// and hyphens only — or empty for the default endpoint).
URLPrefix string `json:"urlPrefix" api:"required"`
// Configuration for third-party URL rewriting.
URLRewriter URLEndpointResponseURLRewriterUnion `json:"urlRewriter"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
ID respjson.Field
Description respjson.Field
Origins respjson.Field
URLPrefix respjson.Field
URLRewriter respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r URLEndpointResponse) RawJSON() string { return r.JSON.raw }
func (r *URLEndpointResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
// URLEndpointResponseURLRewriterUnion contains all possible properties and values
// from [URLEndpointResponseURLRewriterCloudinary],
// [URLEndpointResponseURLRewriterImgix], [URLEndpointResponseURLRewriterAkamai].
//
// Use the [URLEndpointResponseURLRewriterUnion.AsAny] method to switch on the
// variant.
//
// Use the methods beginning with 'As' to cast the union to one of its variants.
type URLEndpointResponseURLRewriterUnion struct {
// This field is from variant [URLEndpointResponseURLRewriterCloudinary].
PreserveAssetDeliveryTypes bool `json:"preserveAssetDeliveryTypes"`
// Any of "CLOUDINARY", "IMGIX", "AKAMAI".
Type string `json:"type"`
JSON struct {
PreserveAssetDeliveryTypes respjson.Field
Type respjson.Field
raw string
} `json:"-"`
}
// anyURLEndpointResponseURLRewriter is implemented by each variant of
// [URLEndpointResponseURLRewriterUnion] to add type safety for the return type of
// [URLEndpointResponseURLRewriterUnion.AsAny]
type anyURLEndpointResponseURLRewriter interface {
implURLEndpointResponseURLRewriterUnion()
}
func (URLEndpointResponseURLRewriterCloudinary) implURLEndpointResponseURLRewriterUnion() {}
func (URLEndpointResponseURLRewriterImgix) implURLEndpointResponseURLRewriterUnion() {}
func (URLEndpointResponseURLRewriterAkamai) implURLEndpointResponseURLRewriterUnion() {}
// Use the following switch statement to find the correct variant
//
// switch variant := URLEndpointResponseURLRewriterUnion.AsAny().(type) {
// case imagekit.URLEndpointResponseURLRewriterCloudinary:
// case imagekit.URLEndpointResponseURLRewriterImgix:
// case imagekit.URLEndpointResponseURLRewriterAkamai:
// default:
// fmt.Errorf("no variant present")
// }
func (u URLEndpointResponseURLRewriterUnion) AsAny() anyURLEndpointResponseURLRewriter {
switch u.Type {
case "CLOUDINARY":
return u.AsCloudinary()
case "IMGIX":
return u.AsImgix()
case "AKAMAI":
return u.AsAkamai()
}
return nil
}
func (u URLEndpointResponseURLRewriterUnion) AsCloudinary() (v URLEndpointResponseURLRewriterCloudinary) {
apijson.UnmarshalRoot(json.RawMessage(u.JSON.raw), &v)
return
}
func (u URLEndpointResponseURLRewriterUnion) AsImgix() (v URLEndpointResponseURLRewriterImgix) {
apijson.UnmarshalRoot(json.RawMessage(u.JSON.raw), &v)
return
}
func (u URLEndpointResponseURLRewriterUnion) AsAkamai() (v URLEndpointResponseURLRewriterAkamai) {
apijson.UnmarshalRoot(json.RawMessage(u.JSON.raw), &v)
return
}
// Returns the unmodified JSON received from the API
func (u URLEndpointResponseURLRewriterUnion) RawJSON() string { return u.JSON.raw }
func (r *URLEndpointResponseURLRewriterUnion) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type URLEndpointResponseURLRewriterCloudinary struct {
// Whether to preserve `<asset_type>/<delivery_type>` in the rewritten URL.
PreserveAssetDeliveryTypes bool `json:"preserveAssetDeliveryTypes" api:"required"`
Type constant.Cloudinary `json:"type" default:"CLOUDINARY"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
PreserveAssetDeliveryTypes respjson.Field
Type respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r URLEndpointResponseURLRewriterCloudinary) RawJSON() string { return r.JSON.raw }
func (r *URLEndpointResponseURLRewriterCloudinary) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type URLEndpointResponseURLRewriterImgix struct {
Type constant.Imgix `json:"type" default:"IMGIX"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
Type respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r URLEndpointResponseURLRewriterImgix) RawJSON() string { return r.JSON.raw }
func (r *URLEndpointResponseURLRewriterImgix) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type URLEndpointResponseURLRewriterAkamai struct {
Type constant.Akamai `json:"type" default:"AKAMAI"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
Type respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r URLEndpointResponseURLRewriterAkamai) RawJSON() string { return r.JSON.raw }
func (r *URLEndpointResponseURLRewriterAkamai) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type AccountURLEndpointNewParams struct {
// Schema for URL endpoint resource.
URLEndpointRequest URLEndpointRequestParam
paramObj
}
func (r AccountURLEndpointNewParams) MarshalJSON() (data []byte, err error) {
return shimjson.Marshal(r.URLEndpointRequest)
}
func (r *AccountURLEndpointNewParams) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type AccountURLEndpointUpdateParams struct {
// Schema for URL endpoint resource.
URLEndpointRequest URLEndpointRequestParam
paramObj
}
func (r AccountURLEndpointUpdateParams) MarshalJSON() (data []byte, err error) {
return shimjson.Marshal(r.URLEndpointRequest)
}
func (r *AccountURLEndpointUpdateParams) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}