-
Notifications
You must be signed in to change notification settings - Fork 0
/
files.gen
executable file
·529 lines (529 loc) · 22.8 KB
/
files.gen
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
miscellaneous.go
addons.go
billing.go
cloudproviders.go
domains.go
integrations.go
northflank.go
go.mod
go.sum
tests/helpers.go
pkg/models/sdkerrors/sdkerror.go
pkg/types/bigint.go
pkg/types/date.go
pkg/types/datetime.go
pkg/types/decimal.go
pkg/types/pointers.go
pkg/utils/contenttype.go
pkg/utils/form.go
pkg/utils/headers.go
pkg/utils/json.go
pkg/utils/pathparams.go
pkg/utils/queryparams.go
pkg/utils/requestbody.go
pkg/utils/retries.go
pkg/utils/security.go
pkg/utils/utils.go
/pkg/models/operations/getdnsid.go
/pkg/models/operations/gethealthcheck.go
/pkg/models/operations/listaddontypes.go
/pkg/models/operations/getpastinvoices.go
/pkg/models/operations/getinvoicedetails.go
/pkg/models/operations/createintegration.go
/pkg/models/operations/createcluster.go
/pkg/models/operations/deletecluster.go
/pkg/models/operations/deleteintegration.go
/pkg/models/operations/getcloudproviders.go
/pkg/models/operations/getcluster.go
/pkg/models/operations/getintegration.go
/pkg/models/operations/getclusters.go
/pkg/models/operations/getintegrations.go
/pkg/models/operations/updatecluster.go
/pkg/models/operations/updateintegration.go
/pkg/models/operations/addsubdomain.go
/pkg/models/operations/assignsubdomain.go
/pkg/models/operations/createdomain.go
/pkg/models/operations/deletedomain.go
/pkg/models/operations/deletecdn.go
/pkg/models/operations/deletesubdomain.go
/pkg/models/operations/enablecdn.go
/pkg/models/operations/getdomain.go
/pkg/models/operations/getsubdomain.go
/pkg/models/operations/listdomains.go
/pkg/models/operations/unassignsubdomain.go
/pkg/models/operations/verifysubdomain.go
/pkg/models/operations/verifydomain.go
/pkg/models/operations/addregistry.go
/pkg/models/operations/createlogsink.go
/pkg/models/operations/deletelogsink.go
/pkg/models/operations/deleteregistry.go
/pkg/models/operations/generatevcstoken.go
/pkg/models/operations/getlogsink.go
/pkg/models/operations/getbranches.go
/pkg/models/operations/getregistry.go
/pkg/models/operations/getrepositories.go
/pkg/models/operations/getlogsinks.go
/pkg/models/operations/getregistries.go
/pkg/models/operations/getvcsproviders.go
/pkg/models/operations/pauselogsink.go
/pkg/models/operations/resumelogsink.go
/pkg/models/operations/updatelogsink.go
/pkg/models/operations/updateregistry.go
/pkg/models/shared/dnsidresult.go
/pkg/models/shared/addontypesresult.go
/pkg/models/shared/pastinvoicesresult.go
/pkg/models/shared/invoicedetailsresult.go
/pkg/models/shared/createintegrationresult.go
/pkg/models/shared/createintegrationrequest.go
/pkg/models/shared/createclusterresult.go
/pkg/models/shared/createclusterrequest.go
/pkg/models/shared/successresult.go
/pkg/models/shared/cloudprovidersresult.go
/pkg/models/shared/clusterdetailsresult.go
/pkg/models/shared/getintegrationresult.go
/pkg/models/shared/clustersresult.go
/pkg/models/shared/listintegrationsresult.go
/pkg/models/shared/updateclusterresult.go
/pkg/models/shared/updateclusterrequest.go
/pkg/models/shared/updateintegrationresult.go
/pkg/models/shared/updateintegrationrequest.go
/pkg/models/shared/addsubdomainresult.go
/pkg/models/shared/addsubdomainrequest.go
/pkg/models/shared/assignsubdomainrequest.go
/pkg/models/shared/createdomainresult.go
/pkg/models/shared/createdomainrequest.go
/pkg/models/shared/cdnrequest.go
/pkg/models/shared/getdomainresult.go
/pkg/models/shared/getsubdomainresult.go
/pkg/models/shared/listdomainsresult.go
/pkg/models/shared/registriesresult.go
/pkg/models/shared/addregistrytype1.go
/pkg/models/shared/addregistrytype2.go
/pkg/models/shared/addregistrytype3.go
/pkg/models/shared/createlogsinkresult.go
/pkg/models/shared/lokilogsink.go
/pkg/models/shared/datadoglogsink.go
/pkg/models/shared/papertraillogsink.go
/pkg/models/shared/awslogsink.go
/pkg/models/shared/httplogsink.go
/pkg/models/shared/dnalogsink.go
/pkg/models/shared/logtaillogsink.go
/pkg/models/shared/honeycomblogsink.go
/pkg/models/shared/logiologsink.go
/pkg/models/shared/vcstokenresult.go
/pkg/models/shared/logsinkdetails.go
/pkg/models/shared/branchesresult.go
/pkg/models/shared/registryresult.go
/pkg/models/shared/repositoriesresult.go
/pkg/models/shared/getlogsinksresult.go
/pkg/models/shared/vcsprovidersresult.go
/pkg/models/shared/logsinkrequest.go
/pkg/models/shared/updateregistrytype1.go
/pkg/models/shared/updateregistrytype2.go
/pkg/models/shared/updateregistrytype3.go
/pkg/models/shared/updateregistrytype4.go
/pkg/models/shared/security.go
/pkg/models/shared/schemebasicauth.go
/pkg/models/sdkerrors/apierrorresult.go
docs/pkg/models/operations/getdnsidresponse.md
docs/pkg/models/operations/gethealthcheckresponse.md
docs/pkg/models/operations/listaddontypesresponse.md
docs/pkg/models/operations/getpastinvoicesrequest.md
docs/pkg/models/operations/getpastinvoicesresponse.md
docs/pkg/models/operations/getinvoicedetailsrequest.md
docs/pkg/models/operations/getinvoicedetailsresponse.md
docs/pkg/models/operations/createintegrationresponse.md
docs/pkg/models/operations/createclusterresponse.md
docs/pkg/models/operations/deleteclusterrequest.md
docs/pkg/models/operations/deleteclusterresponse.md
docs/pkg/models/operations/deleteintegrationrequest.md
docs/pkg/models/operations/deleteintegrationresponse.md
docs/pkg/models/operations/getcloudprovidersresponse.md
docs/pkg/models/operations/getclusterrequest.md
docs/pkg/models/operations/getclusterresponse.md
docs/pkg/models/operations/getintegrationrequest.md
docs/pkg/models/operations/getintegrationresponse.md
docs/pkg/models/operations/getclustersrequest.md
docs/pkg/models/operations/getclustersresponse.md
docs/pkg/models/operations/getintegrationsrequest.md
docs/pkg/models/operations/getintegrationsresponse.md
docs/pkg/models/operations/updateclusterrequest.md
docs/pkg/models/operations/updateclusterresponse.md
docs/pkg/models/operations/updateintegrationrequest.md
docs/pkg/models/operations/updateintegrationresponse.md
docs/pkg/models/operations/addsubdomainrequest.md
docs/pkg/models/operations/addsubdomainresponse.md
docs/pkg/models/operations/assignsubdomainrequest.md
docs/pkg/models/operations/assignsubdomainresponse.md
docs/pkg/models/operations/createdomainresponse.md
docs/pkg/models/operations/deletedomainrequest.md
docs/pkg/models/operations/deletedomainresponse.md
docs/pkg/models/operations/deletecdnrequest.md
docs/pkg/models/operations/deletecdnresponse.md
docs/pkg/models/operations/deletesubdomainrequest.md
docs/pkg/models/operations/deletesubdomainresponse.md
docs/pkg/models/operations/enablecdnrequest.md
docs/pkg/models/operations/enablecdnresponse.md
docs/pkg/models/operations/getdomainrequest.md
docs/pkg/models/operations/getdomainresponse.md
docs/pkg/models/operations/getsubdomainrequest.md
docs/pkg/models/operations/getsubdomainresponse.md
docs/pkg/models/operations/listdomainsrequest.md
docs/pkg/models/operations/listdomainsresponse.md
docs/pkg/models/operations/unassignsubdomainrequest.md
docs/pkg/models/operations/unassignsubdomainresponse.md
docs/pkg/models/operations/verifysubdomainrequest.md
docs/pkg/models/operations/verifysubdomainresponse.md
docs/pkg/models/operations/verifydomainrequest.md
docs/pkg/models/operations/verifydomainresponse.md
docs/pkg/models/operations/addregistryrequestbody.md
docs/pkg/models/operations/addregistryresponse.md
docs/pkg/models/operations/createlogsinkrequestbody.md
docs/pkg/models/operations/createlogsinkresponse.md
docs/pkg/models/operations/deletelogsinkrequest.md
docs/pkg/models/operations/deletelogsinkresponse.md
docs/pkg/models/operations/deleteregistryrequest.md
docs/pkg/models/operations/deleteregistryresponse.md
docs/pkg/models/operations/generatevcstokenrequest.md
docs/pkg/models/operations/generatevcstokenresponse.md
docs/pkg/models/operations/getlogsinkrequest.md
docs/pkg/models/operations/getlogsinkresponse.md
docs/pkg/models/operations/getbranchesrequest.md
docs/pkg/models/operations/getbranchesresponse.md
docs/pkg/models/operations/getregistryrequest.md
docs/pkg/models/operations/getregistryresponse.md
docs/pkg/models/operations/vcsservice.md
docs/pkg/models/operations/getrepositoriesrequest.md
docs/pkg/models/operations/getrepositoriesresponse.md
docs/pkg/models/operations/getlogsinksrequest.md
docs/pkg/models/operations/getlogsinksresponse.md
docs/pkg/models/operations/getregistriesrequest.md
docs/pkg/models/operations/getregistriesresponse.md
docs/pkg/models/operations/getvcsprovidersresponse.md
docs/pkg/models/operations/pauselogsinkrequest.md
docs/pkg/models/operations/pauselogsinkresponse.md
docs/pkg/models/operations/resumelogsinkrequest.md
docs/pkg/models/operations/resumelogsinkresponse.md
docs/pkg/models/operations/updatelogsinkrequest.md
docs/pkg/models/operations/updatelogsinkresponse.md
docs/pkg/models/operations/updateregistryrequestbody.md
docs/pkg/models/operations/updateregistryrequest.md
docs/pkg/models/operations/updateregistryresponse.md
docs/pkg/models/shared/dnsidresultdata.md
docs/pkg/models/shared/dnsidresult.md
docs/pkg/models/shared/features.md
docs/pkg/models/shared/replicas.md
docs/pkg/models/shared/storage.md
docs/pkg/models/shared/resources.md
docs/pkg/models/shared/addontypes.md
docs/pkg/models/shared/addontypesresultdata.md
docs/pkg/models/shared/addontypesresult.md
docs/pkg/models/shared/pastinvoicesresultperiod.md
docs/pkg/models/shared/invoices.md
docs/pkg/models/shared/pastinvoicesresultdata.md
docs/pkg/models/shared/pastinvoicesresultpagination.md
docs/pkg/models/shared/pastinvoicesresult.md
docs/pkg/models/shared/period.md
docs/pkg/models/shared/nfobjecttype.md
docs/pkg/models/shared/invoicedetailsresultprice.md
docs/pkg/models/shared/items.md
docs/pkg/models/shared/invoicedetailsresultschemasprice.md
docs/pkg/models/shared/addon.md
docs/pkg/models/shared/invoicedetailsresultschemasdataprice.md
docs/pkg/models/shared/job.md
docs/pkg/models/shared/invoicedetailsresultschemasdataprojectsprice.md
docs/pkg/models/shared/service.md
docs/pkg/models/shared/objecttypetotals.md
docs/pkg/models/shared/price.md
docs/pkg/models/shared/projects.md
docs/pkg/models/shared/tax.md
docs/pkg/models/shared/invoicedetailsresultdata.md
docs/pkg/models/shared/invoicedetailsresult.md
docs/pkg/models/shared/createintegrationresultcredentials.md
docs/pkg/models/shared/createintegrationresultdata.md
docs/pkg/models/shared/createintegrationresult.md
docs/pkg/models/shared/credentials.md
docs/pkg/models/shared/createintegrationrequestgcp.md
docs/pkg/models/shared/createintegrationrequestprovider.md
docs/pkg/models/shared/createintegrationrequest.md
docs/pkg/models/shared/createclusterresultautoscaling.md
docs/pkg/models/shared/createclusterresultlabels.md
docs/pkg/models/shared/createclusterresultnodepools.md
docs/pkg/models/shared/createclusterresultstate.md
docs/pkg/models/shared/createclusterresultstatus.md
docs/pkg/models/shared/createclusterresultdata.md
docs/pkg/models/shared/createclusterresult.md
docs/pkg/models/shared/gcp.md
docs/pkg/models/shared/integration.md
docs/pkg/models/shared/autoscaling.md
docs/pkg/models/shared/labels.md
docs/pkg/models/shared/nodepools.md
docs/pkg/models/shared/createclusterrequestprovider.md
docs/pkg/models/shared/mode.md
docs/pkg/models/shared/builds.md
docs/pkg/models/shared/createclusterrequest2.md
docs/pkg/models/shared/createclusterrequest1.md
docs/pkg/models/shared/loki.md
docs/pkg/models/shared/createclusterrequestmode.md
docs/pkg/models/shared/logging.md
docs/pkg/models/shared/createclusterrequestschemasmode.md
docs/pkg/models/shared/registry.md
docs/pkg/models/shared/settings.md
docs/pkg/models/shared/createclusterrequest.md
docs/pkg/models/shared/successresultdata.md
docs/pkg/models/shared/successresult.md
docs/pkg/models/shared/flags.md
docs/pkg/models/shared/providers.md
docs/pkg/models/shared/cloudprovidersresultdata.md
docs/pkg/models/shared/cloudprovidersresult.md
docs/pkg/models/shared/clusterdetailsresultautoscaling.md
docs/pkg/models/shared/clusterdetailsresultlabels.md
docs/pkg/models/shared/clusterdetailsresultnodepools.md
docs/pkg/models/shared/state.md
docs/pkg/models/shared/status.md
docs/pkg/models/shared/clusterdetailsresultdata.md
docs/pkg/models/shared/clusterdetailsresult.md
docs/pkg/models/shared/getintegrationresultcredentials.md
docs/pkg/models/shared/getintegrationresultdata.md
docs/pkg/models/shared/getintegrationresult.md
docs/pkg/models/shared/clustersresultautoscaling.md
docs/pkg/models/shared/clustersresultlabels.md
docs/pkg/models/shared/clustersresultnodepools.md
docs/pkg/models/shared/clustersresultstate.md
docs/pkg/models/shared/clustersresultstatus.md
docs/pkg/models/shared/clusters.md
docs/pkg/models/shared/clustersresultdata.md
docs/pkg/models/shared/clustersresultpagination.md
docs/pkg/models/shared/clustersresult.md
docs/pkg/models/shared/integrations.md
docs/pkg/models/shared/listintegrationsresultdata.md
docs/pkg/models/shared/listintegrationsresultpagination.md
docs/pkg/models/shared/listintegrationsresult.md
docs/pkg/models/shared/updateclusterresultautoscaling.md
docs/pkg/models/shared/updateclusterresultlabels.md
docs/pkg/models/shared/updateclusterresultnodepools.md
docs/pkg/models/shared/updateclusterresultstate.md
docs/pkg/models/shared/updateclusterresultstatus.md
docs/pkg/models/shared/updateclusterresultdata.md
docs/pkg/models/shared/updateclusterresult.md
docs/pkg/models/shared/updateclusterrequestautoscaling.md
docs/pkg/models/shared/updateclusterrequestlabels.md
docs/pkg/models/shared/updateclusterrequestnodepools.md
docs/pkg/models/shared/updateclusterrequestmode.md
docs/pkg/models/shared/updateclusterrequestbuilds.md
docs/pkg/models/shared/updateclusterrequest2.md
docs/pkg/models/shared/updateclusterrequest1.md
docs/pkg/models/shared/updateclusterrequestloki.md
docs/pkg/models/shared/updateclusterrequestschemasmode.md
docs/pkg/models/shared/updateclusterrequestlogging.md
docs/pkg/models/shared/updateclusterrequestschemassettingsmode.md
docs/pkg/models/shared/updateclusterrequestregistry.md
docs/pkg/models/shared/updateclusterrequestsettings.md
docs/pkg/models/shared/updateclusterrequest.md
docs/pkg/models/shared/updateintegrationresultcredentials.md
docs/pkg/models/shared/updateintegrationresultdata.md
docs/pkg/models/shared/updateintegrationresult.md
docs/pkg/models/shared/updateintegrationrequestcredentials.md
docs/pkg/models/shared/updateintegrationrequest.md
docs/pkg/models/shared/data.md
docs/pkg/models/shared/addsubdomainresult.md
docs/pkg/models/shared/cloudfront.md
docs/pkg/models/shared/cdn.md
docs/pkg/models/shared/addsubdomainrequest.md
docs/pkg/models/shared/assignsubdomainrequest.md
docs/pkg/models/shared/createdomainresultstatus.md
docs/pkg/models/shared/createdomainresultdata.md
docs/pkg/models/shared/createdomainresult.md
docs/pkg/models/shared/createdomainrequest.md
docs/pkg/models/shared/cdnrequest.md
docs/pkg/models/shared/getdomainresultstatus.md
docs/pkg/models/shared/subdomains.md
docs/pkg/models/shared/getdomainresultdata.md
docs/pkg/models/shared/getdomainresult.md
docs/pkg/models/shared/getsubdomainresultdata.md
docs/pkg/models/shared/getsubdomainresult.md
docs/pkg/models/shared/listdomainsresultstatus.md
docs/pkg/models/shared/domains.md
docs/pkg/models/shared/listdomainsresultdata.md
docs/pkg/models/shared/listdomainsresultpagination.md
docs/pkg/models/shared/listdomainsresult.md
docs/pkg/models/shared/registriesresultprovider.md
docs/pkg/models/shared/registriesresultrestrictions.md
docs/pkg/models/shared/registriesresultcredentials.md
docs/pkg/models/shared/registriesresultdata.md
docs/pkg/models/shared/registriesresultpagination.md
docs/pkg/models/shared/registriesresult.md
docs/pkg/models/shared/provider.md
docs/pkg/models/shared/restrictions.md
docs/pkg/models/shared/addregistrytype1.md
docs/pkg/models/shared/keyfile.md
docs/pkg/models/shared/addregistrytype2provider.md
docs/pkg/models/shared/addregistrytype2restrictions.md
docs/pkg/models/shared/addregistrytype2.md
docs/pkg/models/shared/auths.md
docs/pkg/models/shared/addregistrytype3provider.md
docs/pkg/models/shared/addregistrytype3restrictions.md
docs/pkg/models/shared/addregistrytype3.md
docs/pkg/models/shared/createlogsinkresultdata.md
docs/pkg/models/shared/createlogsinkresult.md
docs/pkg/models/shared/strategy.md
docs/pkg/models/shared/lokilogsinkauth.md
docs/pkg/models/shared/lokilogsinkcodec.md
docs/pkg/models/shared/lokilogsinkencoding.md
docs/pkg/models/shared/lokilogsinksinkdata.md
docs/pkg/models/shared/lokilogsinksinktype.md
docs/pkg/models/shared/lokilogsink.md
docs/pkg/models/shared/datadoglogsinkregion.md
docs/pkg/models/shared/datadoglogsinksinkdata.md
docs/pkg/models/shared/datadoglogsinksinktype.md
docs/pkg/models/shared/datadoglogsink.md
docs/pkg/models/shared/papertraillogsinkauthenticationstrategy.md
docs/pkg/models/shared/papertraillogsink2.md
docs/pkg/models/shared/authenticationstrategy.md
docs/pkg/models/shared/papertraillogsink1.md
docs/pkg/models/shared/papertraillogsinksinkdata.md
docs/pkg/models/shared/papertraillogsinksinktype.md
docs/pkg/models/shared/papertraillogsink.md
docs/pkg/models/shared/auth.md
docs/pkg/models/shared/compression.md
docs/pkg/models/shared/region.md
docs/pkg/models/shared/sinkdata.md
docs/pkg/models/shared/sinktype.md
docs/pkg/models/shared/awslogsink.md
docs/pkg/models/shared/httplogsinkschemasstrategy.md
docs/pkg/models/shared/httplogsink3.md
docs/pkg/models/shared/httplogsinkstrategy.md
docs/pkg/models/shared/httplogsink2.md
docs/pkg/models/shared/httplogsinkschemassinkdatastrategy.md
docs/pkg/models/shared/httplogsink1.md
docs/pkg/models/shared/httplogsinkauth.md
docs/pkg/models/shared/codec.md
docs/pkg/models/shared/encoding.md
docs/pkg/models/shared/httplogsinksinkdata.md
docs/pkg/models/shared/httplogsinksinktype.md
docs/pkg/models/shared/httplogsink.md
docs/pkg/models/shared/dnalogsinksinkdata.md
docs/pkg/models/shared/dnalogsinksinktype.md
docs/pkg/models/shared/dnalogsink.md
docs/pkg/models/shared/logtaillogsinksinkdata.md
docs/pkg/models/shared/logtaillogsinksinktype.md
docs/pkg/models/shared/logtaillogsink.md
docs/pkg/models/shared/honeycomblogsinksinkdata.md
docs/pkg/models/shared/honeycomblogsinksinktype.md
docs/pkg/models/shared/honeycomblogsink.md
docs/pkg/models/shared/logiologsinkregion.md
docs/pkg/models/shared/logiologsinksinkdata.md
docs/pkg/models/shared/logiologsinksinktype.md
docs/pkg/models/shared/logiologsink.md
docs/pkg/models/shared/vcsservice.md
docs/pkg/models/shared/vcstokenresultdata.md
docs/pkg/models/shared/vcstokenresult.md
docs/pkg/models/shared/logsinkdetails8.md
docs/pkg/models/shared/logsinkdetails7.md
docs/pkg/models/shared/logsinkdetails6.md
docs/pkg/models/shared/logsinkdetailsschemasdataauth.md
docs/pkg/models/shared/logsinkdetailscompression.md
docs/pkg/models/shared/logsinkdetailsschemasregion.md
docs/pkg/models/shared/logsinkdetails5.md
docs/pkg/models/shared/logsinkdetailsschemasdatasinkdatastrategy.md
docs/pkg/models/shared/logsinkdetailsschemas3.md
docs/pkg/models/shared/logsinkdetailsschemasdatastrategy.md
docs/pkg/models/shared/logsinkdetailsschemasdata2.md
docs/pkg/models/shared/logsinkdetailsschemasstrategy.md
docs/pkg/models/shared/logsinkdetailsschemasdata1.md
docs/pkg/models/shared/logsinkdetailsschemasauth.md
docs/pkg/models/shared/logsinkdetailsschemascodec.md
docs/pkg/models/shared/logsinkdetailsschemasencoding.md
docs/pkg/models/shared/logsinkdetails4.md
docs/pkg/models/shared/logsinkdetailsauthenticationstrategy.md
docs/pkg/models/shared/logsinkdetailsschemas2.md
docs/pkg/models/shared/logsinkdetailsschemasauthenticationstrategy.md
docs/pkg/models/shared/logsinkdetailsschemas1.md
docs/pkg/models/shared/logsinkdetails3.md
docs/pkg/models/shared/logsinkdetailsregion.md
docs/pkg/models/shared/logsinkdetails2.md
docs/pkg/models/shared/logsinkdetailsstrategy.md
docs/pkg/models/shared/logsinkdetailsauth.md
docs/pkg/models/shared/logsinkdetailscodec.md
docs/pkg/models/shared/logsinkdetailsencoding.md
docs/pkg/models/shared/logsinkdetails1.md
docs/pkg/models/shared/logsinkdetailssinkdata.md
docs/pkg/models/shared/logsinkdetailssinktype.md
docs/pkg/models/shared/logsinkdetailsdata.md
docs/pkg/models/shared/logsinkdetails.md
docs/pkg/models/shared/branchesresultdata.md
docs/pkg/models/shared/pagination.md
docs/pkg/models/shared/branchesresult.md
docs/pkg/models/shared/registryresultauths.md
docs/pkg/models/shared/registryresultprovider.md
docs/pkg/models/shared/registryresultrestrictions.md
docs/pkg/models/shared/registryresultdata.md
docs/pkg/models/shared/registryresult.md
docs/pkg/models/shared/owner.md
docs/pkg/models/shared/repositoriesresultvcsservice.md
docs/pkg/models/shared/repos.md
docs/pkg/models/shared/repositoriesresultdata.md
docs/pkg/models/shared/repositoriesresultpagination.md
docs/pkg/models/shared/repositoriesresult.md
docs/pkg/models/shared/getlogsinksresultsinktype.md
docs/pkg/models/shared/logsinks.md
docs/pkg/models/shared/getlogsinksresultdata.md
docs/pkg/models/shared/getlogsinksresultpagination.md
docs/pkg/models/shared/getlogsinksresult.md
docs/pkg/models/shared/vcsprovidersresultvcsservice.md
docs/pkg/models/shared/vcstype.md
docs/pkg/models/shared/vcsaccountlinks.md
docs/pkg/models/shared/vcsprovidersresultdata.md
docs/pkg/models/shared/vcsprovidersresult.md
docs/pkg/models/shared/eight.md
docs/pkg/models/shared/seven.md
docs/pkg/models/shared/six.md
docs/pkg/models/shared/logsinkrequestschemassinkdataauth.md
docs/pkg/models/shared/logsinkrequestcompression.md
docs/pkg/models/shared/logsinkrequestschemasregion.md
docs/pkg/models/shared/five.md
docs/pkg/models/shared/logsinkrequestschemassinkdata4strategy.md
docs/pkg/models/shared/logsinkrequest3.md
docs/pkg/models/shared/logsinkrequestschemassinkdatastrategy.md
docs/pkg/models/shared/logsinkrequestschemas2.md
docs/pkg/models/shared/logsinkrequestschemasstrategy.md
docs/pkg/models/shared/logsinkrequestschemas1.md
docs/pkg/models/shared/logsinkrequestschemasauth.md
docs/pkg/models/shared/logsinkrequestcodec.md
docs/pkg/models/shared/logsinkrequestencoding.md
docs/pkg/models/shared/four.md
docs/pkg/models/shared/logsinkrequestauthenticationstrategy.md
docs/pkg/models/shared/logsinkrequest2.md
docs/pkg/models/shared/logsinkrequestschemasauthenticationstrategy.md
docs/pkg/models/shared/logsinkrequest1.md
docs/pkg/models/shared/three.md
docs/pkg/models/shared/logsinkrequestregion.md
docs/pkg/models/shared/two.md
docs/pkg/models/shared/logsinkrequeststrategy.md
docs/pkg/models/shared/logsinkrequestauth.md
docs/pkg/models/shared/one.md
docs/pkg/models/shared/logsinkrequestsinkdata.md
docs/pkg/models/shared/logsinkrequest.md
docs/pkg/models/shared/updateregistrytype1restrictions.md
docs/pkg/models/shared/updateregistrytype1.md
docs/pkg/models/shared/updateregistrytype2restrictions.md
docs/pkg/models/shared/updateregistrytype2.md
docs/pkg/models/shared/updateregistrytype3keyfile.md
docs/pkg/models/shared/updateregistrytype3restrictions.md
docs/pkg/models/shared/updateregistrytype3.md
docs/pkg/models/shared/updateregistrytype4auths.md
docs/pkg/models/shared/updateregistrytype4restrictions.md
docs/pkg/models/shared/updateregistrytype4.md
docs/pkg/models/shared/security.md
docs/pkg/models/shared/schemebasicauth.md
docs/pkg/models/sdkerrors/data.md
docs/pkg/models/sdkerrors/apierrorresult.md
docs/sdks/northflank/README.md
docs/sdks/miscellaneous/README.md
docs/sdks/addons/README.md
docs/sdks/billing/README.md
docs/sdks/cloudproviders/README.md
docs/sdks/domains/README.md
docs/sdks/integrations/README.md
USAGE.md
.gitattributes