@cloudfleet/sdk 0.0.1-5cfe846 → 0.0.1-5f4550f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -2
- package/dist/@tanstack/react-query.gen.d.ts +1159 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1175 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +217 -0
- package/dist/client/client.gen.js.map +1 -0
- package/dist/client/index.d.ts +9 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +7 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.gen.d.ts +121 -0
- package/dist/client/types.gen.d.ts.map +1 -0
- package/dist/client/types.gen.js +3 -0
- package/dist/client/types.gen.js.map +1 -0
- package/dist/client/utils.gen.d.ts +38 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +229 -0
- package/dist/client/utils.gen.js.map +1 -0
- package/dist/client.gen.d.ts +4 -4
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +2 -4
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts +19 -0
- package/dist/core/auth.gen.d.ts.map +1 -0
- package/dist/core/auth.gen.js +15 -0
- package/dist/core/auth.gen.js.map +1 -0
- package/dist/core/bodySerializer.gen.d.ts +26 -0
- package/dist/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/core/bodySerializer.gen.js +58 -0
- package/dist/core/bodySerializer.gen.js.map +1 -0
- package/dist/core/params.gen.d.ts +44 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +101 -0
- package/dist/core/params.gen.js.map +1 -0
- package/dist/core/pathSerializer.gen.d.ts +34 -0
- package/dist/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/core/pathSerializer.gen.js +107 -0
- package/dist/core/pathSerializer.gen.js.map +1 -0
- package/dist/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/core/queryKeySerializer.gen.js +93 -0
- package/dist/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/core/serverSentEvents.gen.js +133 -0
- package/dist/core/serverSentEvents.gen.js.map +1 -0
- package/dist/core/types.gen.d.ts +79 -0
- package/dist/core/types.gen.d.ts.map +1 -0
- package/dist/core/types.gen.js +3 -0
- package/dist/core/types.gen.js.map +1 -0
- package/dist/core/utils.gen.d.ts +20 -0
- package/dist/core/utils.gen.d.ts.map +1 -0
- package/dist/core/utils.gen.js +88 -0
- package/dist/core/utils.gen.js.map +1 -0
- package/dist/schemas.gen.d.ts +1605 -568
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +3029 -711
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +300 -168
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +415 -336
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +20 -20
- package/dist/types.gen.d.ts +1825 -805
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +3796 -2753
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1413 -1002
- package/dist/zod.gen.js.map +1 -1
- package/package.json +28 -9
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
+
export type ClientOptions = {
|
|
2
|
+
baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
|
|
3
|
+
};
|
|
1
4
|
export type BillingContact = {
|
|
5
|
+
/**
|
|
6
|
+
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
7
|
+
*/
|
|
8
|
+
type: 'business' | 'personal';
|
|
2
9
|
/**
|
|
3
10
|
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
4
11
|
*/
|
|
@@ -36,13 +43,9 @@ export type BillingContact = {
|
|
|
36
43
|
*/
|
|
37
44
|
email: string;
|
|
38
45
|
/**
|
|
39
|
-
*
|
|
40
|
-
*/
|
|
41
|
-
first_name: string;
|
|
42
|
-
/**
|
|
43
|
-
* Last name of the billing contact person.
|
|
46
|
+
* Name of the billing contact person.
|
|
44
47
|
*/
|
|
45
|
-
|
|
48
|
+
individual_name: string;
|
|
46
49
|
/**
|
|
47
50
|
* Tax ID of the organization.
|
|
48
51
|
*/
|
|
@@ -58,35 +61,31 @@ export type BillingCredits = {
|
|
|
58
61
|
*/
|
|
59
62
|
id?: string;
|
|
60
63
|
/**
|
|
61
|
-
*
|
|
62
|
-
*/
|
|
63
|
-
date_created: string;
|
|
64
|
-
/**
|
|
65
|
-
* Promotional code used by the customer.
|
|
64
|
+
* Type of the promotional code.
|
|
66
65
|
*/
|
|
67
|
-
|
|
66
|
+
type: 'credit' | 'discount';
|
|
68
67
|
/**
|
|
69
|
-
*
|
|
68
|
+
* Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.
|
|
70
69
|
*/
|
|
71
|
-
|
|
70
|
+
date_start: string;
|
|
72
71
|
/**
|
|
73
|
-
*
|
|
72
|
+
* Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.
|
|
74
73
|
*/
|
|
75
|
-
|
|
74
|
+
date_end?: string;
|
|
76
75
|
/**
|
|
77
|
-
*
|
|
76
|
+
* Promotional code used by the customer.
|
|
78
77
|
*/
|
|
79
|
-
|
|
78
|
+
code: string;
|
|
80
79
|
/**
|
|
81
|
-
*
|
|
80
|
+
* Description of the promotional code.
|
|
82
81
|
*/
|
|
83
|
-
|
|
82
|
+
description?: string;
|
|
84
83
|
/**
|
|
85
|
-
*
|
|
84
|
+
* Total value of the promotional code.
|
|
86
85
|
*/
|
|
87
|
-
|
|
86
|
+
value_total: number;
|
|
88
87
|
/**
|
|
89
|
-
*
|
|
88
|
+
* Remaining value of the promotional code.
|
|
90
89
|
*/
|
|
91
90
|
value_remaining?: number;
|
|
92
91
|
};
|
|
@@ -134,9 +133,9 @@ export type Chart = {
|
|
|
134
133
|
*/
|
|
135
134
|
chart: string;
|
|
136
135
|
/**
|
|
137
|
-
* Status of the chart deployment.
|
|
136
|
+
* Status of the chart deployment (Flux HelmRelease Ready condition reason, e.g. InstallSucceeded, UpgradeFailed, Progressing).
|
|
138
137
|
*/
|
|
139
|
-
status:
|
|
138
|
+
status: string;
|
|
140
139
|
/**
|
|
141
140
|
* Current version of the chart deployment.
|
|
142
141
|
*/
|
|
@@ -164,6 +163,9 @@ export type ChartUpdateInput = {
|
|
|
164
163
|
*/
|
|
165
164
|
version_channel: string;
|
|
166
165
|
};
|
|
166
|
+
/**
|
|
167
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
168
|
+
*/
|
|
167
169
|
export type ClusterCreateInput = {
|
|
168
170
|
/**
|
|
169
171
|
* Name of the cluster.
|
|
@@ -172,15 +174,61 @@ export type ClusterCreateInput = {
|
|
|
172
174
|
/**
|
|
173
175
|
* Tier of the cluster.
|
|
174
176
|
*/
|
|
175
|
-
tier
|
|
176
|
-
/**
|
|
177
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a". This field can not be updated after creation.
|
|
178
|
-
*/
|
|
179
|
-
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a';
|
|
177
|
+
tier?: 'basic' | 'pro' | 'enterprise';
|
|
180
178
|
/**
|
|
181
179
|
* Version of the kubernetes cluster.
|
|
182
180
|
*/
|
|
183
181
|
version_channel?: string;
|
|
182
|
+
/**
|
|
183
|
+
* Release channel for the cluster's control plane.
|
|
184
|
+
*/
|
|
185
|
+
release_channel?: 'rapid' | 'stable' | 'extended';
|
|
186
|
+
/**
|
|
187
|
+
* Cluster feature toggles.
|
|
188
|
+
*/
|
|
189
|
+
features?: {
|
|
190
|
+
/**
|
|
191
|
+
* GPU sharing strategy.
|
|
192
|
+
*/
|
|
193
|
+
gpu_sharing_strategy?: 'none' | 'mps' | 'time_slicing';
|
|
194
|
+
/**
|
|
195
|
+
* Maximum number of pods that may share a single GPU.
|
|
196
|
+
*/
|
|
197
|
+
gpu_max_shared_clients_per_gpu?: number;
|
|
198
|
+
/**
|
|
199
|
+
* Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.
|
|
200
|
+
*/
|
|
201
|
+
cilium_socket_lb_host_namespace_only?: boolean;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
205
|
+
*/
|
|
206
|
+
region: string;
|
|
207
|
+
/**
|
|
208
|
+
* Cluster networking configuration. Immutable after creation.
|
|
209
|
+
*/
|
|
210
|
+
networking?: {
|
|
211
|
+
/**
|
|
212
|
+
* CIDR block for pod IPs.
|
|
213
|
+
*/
|
|
214
|
+
pod_cidr?: string;
|
|
215
|
+
/**
|
|
216
|
+
* CIDR block for service IPs.
|
|
217
|
+
*/
|
|
218
|
+
service_cidr?: string;
|
|
219
|
+
/**
|
|
220
|
+
* Enable IPv4+IPv6 dual-stack networking.
|
|
221
|
+
*/
|
|
222
|
+
dual_stack?: boolean;
|
|
223
|
+
/**
|
|
224
|
+
* IPv6 pod CIDR. Requires dual_stack.
|
|
225
|
+
*/
|
|
226
|
+
pod_cidr_v6?: string;
|
|
227
|
+
/**
|
|
228
|
+
* IPv6 service CIDR. Requires dual_stack.
|
|
229
|
+
*/
|
|
230
|
+
service_cidr_v6?: string;
|
|
231
|
+
};
|
|
184
232
|
};
|
|
185
233
|
export type ClusterJoinInformation = {
|
|
186
234
|
/**
|
|
@@ -191,6 +239,14 @@ export type ClusterJoinInformation = {
|
|
|
191
239
|
* Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
|
|
192
240
|
*/
|
|
193
241
|
endpoint: string;
|
|
242
|
+
/**
|
|
243
|
+
* Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
|
|
244
|
+
*/
|
|
245
|
+
cluster_dns: string;
|
|
246
|
+
/**
|
|
247
|
+
* Pod CIDR for the cluster. Used to configure iptables rules on nodes to prevent Tailscale routing loops.
|
|
248
|
+
*/
|
|
249
|
+
pod_cidr: string;
|
|
194
250
|
/**
|
|
195
251
|
* Authentication key for the cluster.
|
|
196
252
|
*/
|
|
@@ -215,6 +271,10 @@ export type ClusterJoinInformation = {
|
|
|
215
271
|
* Containerd version of the cluster.
|
|
216
272
|
*/
|
|
217
273
|
containerd: string;
|
|
274
|
+
/**
|
|
275
|
+
* NVIDIA driver version of the cluster.
|
|
276
|
+
*/
|
|
277
|
+
nvidia_driver: string;
|
|
218
278
|
};
|
|
219
279
|
/**
|
|
220
280
|
* OIDC Information for hosts to access to third party API's.
|
|
@@ -234,6 +294,9 @@ export type ClusterJoinInformation = {
|
|
|
234
294
|
gcp_workload_identity_provider: string;
|
|
235
295
|
};
|
|
236
296
|
};
|
|
297
|
+
/**
|
|
298
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
299
|
+
*/
|
|
237
300
|
export type Cluster = {
|
|
238
301
|
/**
|
|
239
302
|
* Name of the cluster.
|
|
@@ -242,24 +305,71 @@ export type Cluster = {
|
|
|
242
305
|
/**
|
|
243
306
|
* Tier of the cluster.
|
|
244
307
|
*/
|
|
245
|
-
tier: 'basic' | 'pro';
|
|
308
|
+
tier: 'basic' | 'pro' | 'enterprise';
|
|
246
309
|
/**
|
|
247
|
-
*
|
|
310
|
+
* Version of the kubernetes cluster.
|
|
248
311
|
*/
|
|
249
|
-
|
|
312
|
+
version_channel: string;
|
|
250
313
|
/**
|
|
251
|
-
*
|
|
314
|
+
* Release channel for the cluster's control plane.
|
|
252
315
|
*/
|
|
253
|
-
|
|
316
|
+
release_channel: 'rapid' | 'stable' | 'extended';
|
|
317
|
+
/**
|
|
318
|
+
* Cluster feature toggles.
|
|
319
|
+
*/
|
|
320
|
+
features: {
|
|
321
|
+
/**
|
|
322
|
+
* GPU sharing strategy.
|
|
323
|
+
*/
|
|
324
|
+
gpu_sharing_strategy: 'none' | 'mps' | 'time_slicing';
|
|
325
|
+
/**
|
|
326
|
+
* Maximum number of pods that may share a single GPU.
|
|
327
|
+
*/
|
|
328
|
+
gpu_max_shared_clients_per_gpu: number;
|
|
329
|
+
/**
|
|
330
|
+
* Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.
|
|
331
|
+
*/
|
|
332
|
+
cilium_socket_lb_host_namespace_only: boolean;
|
|
333
|
+
};
|
|
334
|
+
/**
|
|
335
|
+
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
336
|
+
*/
|
|
337
|
+
region: string;
|
|
338
|
+
/**
|
|
339
|
+
* Cluster networking configuration. Immutable after creation.
|
|
340
|
+
*/
|
|
341
|
+
networking: {
|
|
342
|
+
/**
|
|
343
|
+
* CIDR block for pod IPs.
|
|
344
|
+
*/
|
|
345
|
+
pod_cidr: string;
|
|
346
|
+
/**
|
|
347
|
+
* CIDR block for service IPs.
|
|
348
|
+
*/
|
|
349
|
+
service_cidr: string;
|
|
350
|
+
/**
|
|
351
|
+
* Enable IPv4+IPv6 dual-stack networking.
|
|
352
|
+
*/
|
|
353
|
+
dual_stack: boolean;
|
|
354
|
+
/**
|
|
355
|
+
* IPv6 pod CIDR. Requires dual_stack.
|
|
356
|
+
*/
|
|
357
|
+
pod_cidr_v6: string;
|
|
358
|
+
/**
|
|
359
|
+
* IPv6 service CIDR. Requires dual_stack.
|
|
360
|
+
*/
|
|
361
|
+
service_cidr_v6: string;
|
|
362
|
+
};
|
|
254
363
|
/**
|
|
255
364
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
256
365
|
*/
|
|
257
366
|
id: string;
|
|
258
367
|
/**
|
|
259
|
-
* Status of the cluster.
|
|
368
|
+
* Status of the cluster.
|
|
260
369
|
*/
|
|
261
|
-
status: '
|
|
370
|
+
status: 'creating' | 'deployed' | 'updating' | 'disabled';
|
|
262
371
|
endpoint?: string | '';
|
|
372
|
+
endpoint_public?: string | '';
|
|
263
373
|
/**
|
|
264
374
|
* Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
|
|
265
375
|
*/
|
|
@@ -279,125 +389,259 @@ export type Cluster = {
|
|
|
279
389
|
/**
|
|
280
390
|
* Indicates if the cluster is ready to be used.
|
|
281
391
|
*/
|
|
282
|
-
ready
|
|
392
|
+
ready: boolean;
|
|
283
393
|
};
|
|
394
|
+
/**
|
|
395
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
396
|
+
*/
|
|
284
397
|
export type ClusterUpdateInput = {
|
|
285
398
|
/**
|
|
286
399
|
* Name of the cluster.
|
|
287
400
|
*/
|
|
288
|
-
name
|
|
401
|
+
name: string;
|
|
289
402
|
/**
|
|
290
403
|
* Tier of the cluster.
|
|
291
404
|
*/
|
|
292
|
-
tier
|
|
405
|
+
tier?: 'basic' | 'pro' | 'enterprise';
|
|
293
406
|
/**
|
|
294
407
|
* Version of the kubernetes cluster.
|
|
295
408
|
*/
|
|
296
409
|
version_channel?: string;
|
|
410
|
+
/**
|
|
411
|
+
* Release channel for the cluster's control plane.
|
|
412
|
+
*/
|
|
413
|
+
release_channel?: 'rapid' | 'stable' | 'extended';
|
|
414
|
+
/**
|
|
415
|
+
* Cluster feature toggles.
|
|
416
|
+
*/
|
|
417
|
+
features?: {
|
|
418
|
+
/**
|
|
419
|
+
* GPU sharing strategy.
|
|
420
|
+
*/
|
|
421
|
+
gpu_sharing_strategy?: 'none' | 'mps' | 'time_slicing';
|
|
422
|
+
/**
|
|
423
|
+
* Maximum number of pods that may share a single GPU.
|
|
424
|
+
*/
|
|
425
|
+
gpu_max_shared_clients_per_gpu?: number;
|
|
426
|
+
/**
|
|
427
|
+
* Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.
|
|
428
|
+
*/
|
|
429
|
+
cilium_socket_lb_host_namespace_only?: boolean;
|
|
430
|
+
};
|
|
297
431
|
};
|
|
432
|
+
/**
|
|
433
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
434
|
+
*/
|
|
298
435
|
export type FleetCreateInput = {
|
|
299
436
|
/**
|
|
300
437
|
* Limits define a set of bounds for provisioning capacity.
|
|
301
438
|
*/
|
|
302
439
|
limits?: {
|
|
303
440
|
/**
|
|
304
|
-
* CPU limit in cores.
|
|
441
|
+
* CPU limit in cores. Maximum 100,000.
|
|
305
442
|
*/
|
|
306
|
-
cpu
|
|
443
|
+
cpu?: number;
|
|
307
444
|
};
|
|
308
445
|
gcp?: {
|
|
309
|
-
enabled
|
|
446
|
+
enabled: boolean;
|
|
310
447
|
/**
|
|
311
|
-
*
|
|
448
|
+
* GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
|
|
312
449
|
*/
|
|
313
|
-
project
|
|
450
|
+
project?: string;
|
|
314
451
|
};
|
|
315
452
|
hetzner?: {
|
|
316
|
-
enabled
|
|
453
|
+
enabled: boolean;
|
|
317
454
|
/**
|
|
318
|
-
* Hetzner Cloud API
|
|
455
|
+
* Hetzner Cloud API token with read/write access (64 alphanumeric characters). Write-only: reads return a redacted placeholder, never the token. Omit the field, or send the placeholder back unchanged, to keep the existing key. Send a new value to rotate it.
|
|
319
456
|
*/
|
|
320
|
-
apiKey
|
|
457
|
+
apiKey?: string;
|
|
321
458
|
};
|
|
322
459
|
aws?: {
|
|
323
|
-
enabled
|
|
460
|
+
enabled: boolean;
|
|
461
|
+
/**
|
|
462
|
+
* AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
|
|
463
|
+
*/
|
|
464
|
+
controllerRoleArn?: string;
|
|
465
|
+
};
|
|
466
|
+
/**
|
|
467
|
+
* Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together.
|
|
468
|
+
*/
|
|
469
|
+
constraints?: {
|
|
470
|
+
/**
|
|
471
|
+
* Allowed values for `karpenter.sh/capacity-type`.
|
|
472
|
+
*/
|
|
473
|
+
'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
|
|
474
|
+
/**
|
|
475
|
+
* Allowed values for `kubernetes.io/arch`.
|
|
476
|
+
*/
|
|
477
|
+
'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
|
|
324
478
|
/**
|
|
325
|
-
*
|
|
479
|
+
* Allowed values for `cfke.io/instance-family`.
|
|
326
480
|
*/
|
|
327
|
-
|
|
481
|
+
'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
|
|
482
|
+
/**
|
|
483
|
+
* Allowed values for `topology.kubernetes.io/region`.
|
|
484
|
+
*/
|
|
485
|
+
'topology.kubernetes.io/region'?: Array<'africa-south1' | 'ap-northeast-1' | 'ap-northeast-2' | 'ap-northeast-3' | 'ap-south-1' | 'ap-southeast-1' | 'ap-southeast-2' | 'ash' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-south2' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'australia-southeast2' | 'ca-central-1' | 'eu-central-1' | 'eu-central-2' | 'eu-north-1' | 'eu-west-1' | 'eu-west-2' | 'eu-west-3' | 'europe-central2' | 'europe-north1' | 'europe-southwest1' | 'europe-west1' | 'europe-west10' | 'europe-west12' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'europe-west8' | 'europe-west9' | 'fsn1' | 'hel1' | 'hil' | 'me-central1' | 'me-central2' | 'me-west1' | 'nbg1' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'sa-east-1' | 'sin' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east-1' | 'us-east-2' | 'us-east1' | 'us-east4' | 'us-east5' | 'us-south1' | 'us-west-1' | 'us-west-2' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4'>;
|
|
328
486
|
};
|
|
487
|
+
/**
|
|
488
|
+
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet. Full-overwrite: omit to reset to the default (`conservative`).
|
|
489
|
+
*/
|
|
490
|
+
scalingProfile?: 'aggressive' | 'conservative';
|
|
329
491
|
/**
|
|
330
492
|
* Unique identifier of the kubernetes fleet.
|
|
331
493
|
*/
|
|
332
494
|
id: string;
|
|
333
495
|
};
|
|
496
|
+
/**
|
|
497
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
498
|
+
*/
|
|
334
499
|
export type Fleet = {
|
|
335
500
|
/**
|
|
336
501
|
* Limits define a set of bounds for provisioning capacity.
|
|
337
502
|
*/
|
|
338
503
|
limits?: {
|
|
339
504
|
/**
|
|
340
|
-
* CPU limit in cores.
|
|
505
|
+
* CPU limit in cores. Maximum 100,000.
|
|
341
506
|
*/
|
|
342
|
-
cpu
|
|
507
|
+
cpu?: number;
|
|
343
508
|
};
|
|
344
509
|
gcp?: {
|
|
345
|
-
enabled
|
|
510
|
+
enabled: boolean;
|
|
346
511
|
/**
|
|
347
|
-
*
|
|
512
|
+
* GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
|
|
348
513
|
*/
|
|
349
|
-
project
|
|
514
|
+
project?: string;
|
|
350
515
|
};
|
|
351
516
|
hetzner?: {
|
|
352
|
-
enabled
|
|
517
|
+
enabled: boolean;
|
|
353
518
|
/**
|
|
354
|
-
* Hetzner
|
|
519
|
+
* Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.
|
|
355
520
|
*/
|
|
356
|
-
apiKey
|
|
521
|
+
apiKey?: string;
|
|
357
522
|
};
|
|
358
523
|
aws?: {
|
|
359
|
-
enabled
|
|
524
|
+
enabled: boolean;
|
|
525
|
+
/**
|
|
526
|
+
* AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
|
|
527
|
+
*/
|
|
528
|
+
controllerRoleArn?: string;
|
|
529
|
+
};
|
|
530
|
+
/**
|
|
531
|
+
* Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together.
|
|
532
|
+
*/
|
|
533
|
+
constraints: {
|
|
534
|
+
/**
|
|
535
|
+
* Allowed values for `karpenter.sh/capacity-type`.
|
|
536
|
+
*/
|
|
537
|
+
'karpenter.sh/capacity-type': Array<'on-demand' | 'spot'>;
|
|
538
|
+
/**
|
|
539
|
+
* Allowed values for `kubernetes.io/arch`.
|
|
540
|
+
*/
|
|
541
|
+
'kubernetes.io/arch': Array<'amd64' | 'arm64'>;
|
|
542
|
+
/**
|
|
543
|
+
* Allowed values for `cfke.io/instance-family`.
|
|
544
|
+
*/
|
|
545
|
+
'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
|
|
360
546
|
/**
|
|
361
|
-
*
|
|
547
|
+
* Allowed values for `topology.kubernetes.io/region`.
|
|
362
548
|
*/
|
|
363
|
-
|
|
549
|
+
'topology.kubernetes.io/region'?: Array<'africa-south1' | 'ap-northeast-1' | 'ap-northeast-2' | 'ap-northeast-3' | 'ap-south-1' | 'ap-southeast-1' | 'ap-southeast-2' | 'ash' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-south2' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'australia-southeast2' | 'ca-central-1' | 'eu-central-1' | 'eu-central-2' | 'eu-north-1' | 'eu-west-1' | 'eu-west-2' | 'eu-west-3' | 'europe-central2' | 'europe-north1' | 'europe-southwest1' | 'europe-west1' | 'europe-west10' | 'europe-west12' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'europe-west8' | 'europe-west9' | 'fsn1' | 'hel1' | 'hil' | 'me-central1' | 'me-central2' | 'me-west1' | 'nbg1' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'sa-east-1' | 'sin' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east-1' | 'us-east-2' | 'us-east1' | 'us-east4' | 'us-east5' | 'us-south1' | 'us-west-1' | 'us-west-2' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4'>;
|
|
364
550
|
};
|
|
551
|
+
/**
|
|
552
|
+
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet. Full-overwrite: omit to reset to the default (`conservative`).
|
|
553
|
+
*/
|
|
554
|
+
scalingProfile: 'aggressive' | 'conservative';
|
|
365
555
|
/**
|
|
366
556
|
* Unique identifier of the kubernetes fleet.
|
|
367
557
|
*/
|
|
368
558
|
id: string;
|
|
559
|
+
/**
|
|
560
|
+
* Indicates whether the fleet configuration is healthy.
|
|
561
|
+
*/
|
|
562
|
+
ready: boolean;
|
|
563
|
+
/**
|
|
564
|
+
* Human-readable reason the fleet is not ready. Present only when `ready` is false.
|
|
565
|
+
*/
|
|
566
|
+
status_message?: string;
|
|
567
|
+
/**
|
|
568
|
+
* Creation date and time of the fleet.
|
|
569
|
+
*/
|
|
570
|
+
created_at: string;
|
|
571
|
+
/**
|
|
572
|
+
* Date and time the fleet was last updated.
|
|
573
|
+
*/
|
|
574
|
+
updated_at: string;
|
|
369
575
|
};
|
|
576
|
+
/**
|
|
577
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
578
|
+
*/
|
|
370
579
|
export type FleetUpdateInput = {
|
|
371
580
|
/**
|
|
372
581
|
* Limits define a set of bounds for provisioning capacity.
|
|
373
582
|
*/
|
|
374
583
|
limits?: {
|
|
375
584
|
/**
|
|
376
|
-
* CPU limit in cores.
|
|
585
|
+
* CPU limit in cores. Maximum 100,000.
|
|
377
586
|
*/
|
|
378
|
-
cpu
|
|
587
|
+
cpu?: number;
|
|
379
588
|
};
|
|
380
589
|
gcp?: {
|
|
381
|
-
enabled
|
|
590
|
+
enabled: boolean;
|
|
382
591
|
/**
|
|
383
|
-
*
|
|
592
|
+
* GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
|
|
384
593
|
*/
|
|
385
|
-
project
|
|
594
|
+
project?: string;
|
|
386
595
|
};
|
|
387
596
|
hetzner?: {
|
|
388
|
-
enabled
|
|
597
|
+
enabled: boolean;
|
|
389
598
|
/**
|
|
390
|
-
* Hetzner Cloud API
|
|
599
|
+
* Hetzner Cloud API token with read/write access (64 alphanumeric characters). Write-only: reads return a redacted placeholder, never the token. Omit the field, or send the placeholder back unchanged, to keep the existing key. Send a new value to rotate it.
|
|
391
600
|
*/
|
|
392
|
-
apiKey
|
|
601
|
+
apiKey?: string;
|
|
393
602
|
};
|
|
394
603
|
aws?: {
|
|
395
|
-
enabled
|
|
604
|
+
enabled: boolean;
|
|
605
|
+
/**
|
|
606
|
+
* AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
|
|
607
|
+
*/
|
|
608
|
+
controllerRoleArn?: string;
|
|
609
|
+
};
|
|
610
|
+
/**
|
|
611
|
+
* Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together.
|
|
612
|
+
*/
|
|
613
|
+
constraints?: {
|
|
614
|
+
/**
|
|
615
|
+
* Allowed values for `karpenter.sh/capacity-type`.
|
|
616
|
+
*/
|
|
617
|
+
'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
|
|
618
|
+
/**
|
|
619
|
+
* Allowed values for `kubernetes.io/arch`.
|
|
620
|
+
*/
|
|
621
|
+
'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
|
|
622
|
+
/**
|
|
623
|
+
* Allowed values for `cfke.io/instance-family`.
|
|
624
|
+
*/
|
|
625
|
+
'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
|
|
396
626
|
/**
|
|
397
|
-
*
|
|
627
|
+
* Allowed values for `topology.kubernetes.io/region`.
|
|
398
628
|
*/
|
|
399
|
-
|
|
629
|
+
'topology.kubernetes.io/region'?: Array<'africa-south1' | 'ap-northeast-1' | 'ap-northeast-2' | 'ap-northeast-3' | 'ap-south-1' | 'ap-southeast-1' | 'ap-southeast-2' | 'ash' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-south2' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'australia-southeast2' | 'ca-central-1' | 'eu-central-1' | 'eu-central-2' | 'eu-north-1' | 'eu-west-1' | 'eu-west-2' | 'eu-west-3' | 'europe-central2' | 'europe-north1' | 'europe-southwest1' | 'europe-west1' | 'europe-west10' | 'europe-west12' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'europe-west8' | 'europe-west9' | 'fsn1' | 'hel1' | 'hil' | 'me-central1' | 'me-central2' | 'me-west1' | 'nbg1' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'sa-east-1' | 'sin' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east-1' | 'us-east-2' | 'us-east1' | 'us-east4' | 'us-east5' | 'us-south1' | 'us-west-1' | 'us-west-2' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4'>;
|
|
400
630
|
};
|
|
631
|
+
/**
|
|
632
|
+
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet. Full-overwrite: omit to reset to the default (`conservative`).
|
|
633
|
+
*/
|
|
634
|
+
scalingProfile?: 'aggressive' | 'conservative';
|
|
635
|
+
};
|
|
636
|
+
export type InviteCreateInput = {
|
|
637
|
+
/**
|
|
638
|
+
* Email address of the user to invite.
|
|
639
|
+
*/
|
|
640
|
+
email: string;
|
|
641
|
+
/**
|
|
642
|
+
* Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.
|
|
643
|
+
*/
|
|
644
|
+
role?: 'Administrator' | 'User';
|
|
401
645
|
};
|
|
402
646
|
export type Invite = {
|
|
403
647
|
/**
|
|
@@ -420,471 +664,863 @@ export type Invite = {
|
|
|
420
664
|
* Generated unique invite code.
|
|
421
665
|
*/
|
|
422
666
|
code?: string;
|
|
667
|
+
/**
|
|
668
|
+
* Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.
|
|
669
|
+
*/
|
|
670
|
+
role?: 'Administrator' | 'User';
|
|
423
671
|
};
|
|
424
672
|
export type Invoice = {
|
|
425
673
|
/**
|
|
426
|
-
* Unique identifier of the invoice.
|
|
674
|
+
* Unique identifier of the invoice.
|
|
427
675
|
*/
|
|
428
676
|
id?: string;
|
|
429
|
-
|
|
430
|
-
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
431
|
-
*/
|
|
432
|
-
organizationId?: string;
|
|
677
|
+
number?: string;
|
|
433
678
|
/**
|
|
434
679
|
* Status of the invoice
|
|
435
680
|
*/
|
|
436
|
-
status?:
|
|
681
|
+
status?: string;
|
|
437
682
|
/**
|
|
438
683
|
* Total amount of the invoice
|
|
439
684
|
*/
|
|
440
|
-
|
|
685
|
+
total?: number;
|
|
441
686
|
/**
|
|
442
687
|
* Currency of the invoice
|
|
443
688
|
*/
|
|
444
|
-
currency?:
|
|
689
|
+
currency?: string;
|
|
690
|
+
/**
|
|
691
|
+
* Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
|
|
692
|
+
*/
|
|
693
|
+
created: string;
|
|
445
694
|
/**
|
|
446
|
-
*
|
|
695
|
+
* Billing period start timestamp. ISO 8601 date string in the UTC timezone.
|
|
447
696
|
*/
|
|
448
|
-
|
|
697
|
+
period_start: string;
|
|
449
698
|
/**
|
|
450
|
-
*
|
|
699
|
+
* Billing period end timestamp. ISO 8601 date string in the UTC timezone.
|
|
451
700
|
*/
|
|
452
|
-
|
|
701
|
+
period_end: string;
|
|
702
|
+
invoice_pdf?: string;
|
|
703
|
+
};
|
|
704
|
+
export type MarketplaceListingFiles = {
|
|
453
705
|
/**
|
|
454
|
-
*
|
|
706
|
+
* Raw Chart.yaml content from the Helm chart
|
|
455
707
|
*/
|
|
456
|
-
|
|
708
|
+
chartYaml?: string;
|
|
457
709
|
/**
|
|
458
|
-
*
|
|
710
|
+
* Raw values.yaml content from the Helm chart
|
|
459
711
|
*/
|
|
460
|
-
|
|
712
|
+
valuesYaml?: string;
|
|
461
713
|
/**
|
|
462
|
-
*
|
|
714
|
+
* JSON schema for values.yaml as a string
|
|
463
715
|
*/
|
|
464
|
-
|
|
716
|
+
valuesSchemaJson?: string;
|
|
717
|
+
};
|
|
718
|
+
export type MarketplaceListing = {
|
|
465
719
|
/**
|
|
466
|
-
*
|
|
720
|
+
* Name of the chart
|
|
467
721
|
*/
|
|
468
|
-
|
|
722
|
+
name: string;
|
|
469
723
|
/**
|
|
470
|
-
*
|
|
724
|
+
* Available versions of the chart
|
|
471
725
|
*/
|
|
472
|
-
|
|
726
|
+
versions: Array<string>;
|
|
473
727
|
/**
|
|
474
|
-
*
|
|
728
|
+
* Version channels for the chart
|
|
475
729
|
*/
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
730
|
+
version_channels: Array<string>;
|
|
731
|
+
/**
|
|
732
|
+
* Latest version of the chart
|
|
733
|
+
*/
|
|
734
|
+
latestVersion: string;
|
|
735
|
+
/**
|
|
736
|
+
* Chart metadata
|
|
737
|
+
*/
|
|
738
|
+
metadata?: {
|
|
481
739
|
/**
|
|
482
|
-
*
|
|
740
|
+
* Chart name from metadata
|
|
483
741
|
*/
|
|
484
|
-
|
|
742
|
+
name: string;
|
|
485
743
|
/**
|
|
486
|
-
*
|
|
744
|
+
* Chart version from metadata
|
|
487
745
|
*/
|
|
488
|
-
|
|
746
|
+
version: string;
|
|
489
747
|
/**
|
|
490
|
-
*
|
|
748
|
+
* Chart description
|
|
491
749
|
*/
|
|
492
|
-
|
|
750
|
+
description?: string;
|
|
493
751
|
/**
|
|
494
|
-
*
|
|
752
|
+
* Application version
|
|
495
753
|
*/
|
|
496
|
-
|
|
754
|
+
appVersion?: string;
|
|
497
755
|
/**
|
|
498
|
-
*
|
|
756
|
+
* Helm API version
|
|
499
757
|
*/
|
|
500
|
-
|
|
758
|
+
apiVersion?: string;
|
|
501
759
|
/**
|
|
502
|
-
*
|
|
760
|
+
* Chart keywords
|
|
503
761
|
*/
|
|
504
|
-
|
|
762
|
+
keywords?: Array<string>;
|
|
505
763
|
/**
|
|
506
|
-
*
|
|
764
|
+
* Chart home URL
|
|
507
765
|
*/
|
|
508
|
-
|
|
766
|
+
home?: string;
|
|
509
767
|
/**
|
|
510
|
-
*
|
|
768
|
+
* A URL to an SVG or PNG image to be used as an icon
|
|
511
769
|
*/
|
|
512
|
-
|
|
770
|
+
icon?: string;
|
|
513
771
|
/**
|
|
514
|
-
*
|
|
772
|
+
* Chart source URLs
|
|
515
773
|
*/
|
|
516
|
-
|
|
774
|
+
sources?: Array<string>;
|
|
517
775
|
/**
|
|
518
|
-
*
|
|
776
|
+
* Chart maintainers
|
|
519
777
|
*/
|
|
520
|
-
|
|
778
|
+
maintainers?: Array<{
|
|
779
|
+
/**
|
|
780
|
+
* Maintainer name
|
|
781
|
+
*/
|
|
782
|
+
name: string;
|
|
783
|
+
/**
|
|
784
|
+
* Maintainer email
|
|
785
|
+
*/
|
|
786
|
+
email?: string;
|
|
787
|
+
}>;
|
|
788
|
+
};
|
|
789
|
+
};
|
|
790
|
+
export type OrganizationCreateInput = {
|
|
791
|
+
/**
|
|
792
|
+
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
793
|
+
*/
|
|
794
|
+
type: 'business' | 'personal';
|
|
795
|
+
/**
|
|
796
|
+
* Email address used for billing as a string.
|
|
797
|
+
*/
|
|
798
|
+
email: string;
|
|
799
|
+
/**
|
|
800
|
+
* First name of the billing contact person.
|
|
801
|
+
*/
|
|
802
|
+
first_name: string;
|
|
803
|
+
/**
|
|
804
|
+
* Last name of the billing contact person.
|
|
805
|
+
*/
|
|
806
|
+
last_name: string;
|
|
807
|
+
/**
|
|
808
|
+
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
809
|
+
*/
|
|
810
|
+
company_name: string;
|
|
811
|
+
/**
|
|
812
|
+
* Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
|
|
813
|
+
*/
|
|
814
|
+
password: string;
|
|
815
|
+
};
|
|
816
|
+
export type OrganizationCreateOutput = {
|
|
817
|
+
/**
|
|
818
|
+
* Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.
|
|
819
|
+
*/
|
|
820
|
+
id: string;
|
|
821
|
+
};
|
|
822
|
+
export type Organization = {
|
|
823
|
+
/**
|
|
824
|
+
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
825
|
+
*/
|
|
826
|
+
id: string;
|
|
827
|
+
/**
|
|
828
|
+
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
829
|
+
*/
|
|
830
|
+
name?: string;
|
|
831
|
+
/**
|
|
832
|
+
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
833
|
+
*/
|
|
834
|
+
type: 'business' | 'personal';
|
|
835
|
+
/**
|
|
836
|
+
* Creation date of the organization. ISO 8601 date string in UTC timezone
|
|
837
|
+
*/
|
|
838
|
+
date_created: string;
|
|
839
|
+
/**
|
|
840
|
+
* For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.
|
|
841
|
+
*/
|
|
842
|
+
quota: {
|
|
521
843
|
/**
|
|
522
|
-
*
|
|
844
|
+
* Maximum number of Basic clusters that can be created.
|
|
523
845
|
*/
|
|
524
|
-
|
|
846
|
+
basic_clusters_max: number;
|
|
525
847
|
/**
|
|
526
|
-
*
|
|
848
|
+
* Available number of Basic clusters that can be created.
|
|
527
849
|
*/
|
|
528
|
-
|
|
850
|
+
basic_clusters_available: number;
|
|
529
851
|
/**
|
|
530
|
-
*
|
|
852
|
+
* Maximum number of Pro clusters that can be created.
|
|
531
853
|
*/
|
|
532
|
-
|
|
854
|
+
pro_clusters_max: number;
|
|
533
855
|
/**
|
|
534
|
-
*
|
|
856
|
+
* Available number of Pro clusters that can be created.
|
|
535
857
|
*/
|
|
536
|
-
|
|
858
|
+
pro_clusters_available: number;
|
|
537
859
|
/**
|
|
538
|
-
*
|
|
860
|
+
* Maximum number of Enterprise clusters that can be created.
|
|
539
861
|
*/
|
|
540
|
-
|
|
862
|
+
enterprise_clusters_max: number;
|
|
541
863
|
/**
|
|
542
|
-
*
|
|
864
|
+
* Available number of Enterprise clusters that can be created.
|
|
543
865
|
*/
|
|
544
|
-
|
|
866
|
+
enterprise_clusters_available: number;
|
|
545
867
|
/**
|
|
546
|
-
*
|
|
868
|
+
* Maximum number of fleets that can be created per cluster.
|
|
547
869
|
*/
|
|
548
|
-
|
|
870
|
+
fleets_max: number;
|
|
549
871
|
/**
|
|
550
|
-
*
|
|
872
|
+
* List of Cloudfleet cluster tiers available for the organization.
|
|
551
873
|
*/
|
|
552
|
-
|
|
874
|
+
cluster_tiers: Array<string>;
|
|
553
875
|
/**
|
|
554
|
-
*
|
|
876
|
+
* List of Cloudfleet control plane regions available for the organization.
|
|
555
877
|
*/
|
|
556
|
-
|
|
878
|
+
regions: Array<string>;
|
|
557
879
|
/**
|
|
558
|
-
*
|
|
880
|
+
* List of CFKE control plane versions available for the organization.
|
|
559
881
|
*/
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
*/
|
|
571
|
-
id?: string;
|
|
572
|
-
/**
|
|
573
|
-
* Unique identifier of the linked invoice item. UUID v4 string in canonical form
|
|
574
|
-
*/
|
|
575
|
-
linkedInvoiceItemId?: string;
|
|
576
|
-
/**
|
|
577
|
-
* Name of the product
|
|
578
|
-
*/
|
|
579
|
-
productName?: string;
|
|
580
|
-
/**
|
|
581
|
-
* Name of the plan
|
|
582
|
-
*/
|
|
583
|
-
planName?: string;
|
|
584
|
-
/**
|
|
585
|
-
* Name of the phase
|
|
586
|
-
*/
|
|
587
|
-
phaseName?: string;
|
|
588
|
-
/**
|
|
589
|
-
* Name of the usage
|
|
590
|
-
*/
|
|
591
|
-
usageName?: string;
|
|
592
|
-
/**
|
|
593
|
-
* Pretty name of the product
|
|
594
|
-
*/
|
|
595
|
-
prettyProductName?: string;
|
|
596
|
-
/**
|
|
597
|
-
* Pretty name of the plan
|
|
598
|
-
*/
|
|
599
|
-
prettyPlanName?: string;
|
|
600
|
-
/**
|
|
601
|
-
* Pretty name of the phase
|
|
602
|
-
*/
|
|
603
|
-
prettyPhaseName?: string;
|
|
604
|
-
/**
|
|
605
|
-
* Pretty name of the usage
|
|
606
|
-
*/
|
|
607
|
-
prettyUsageName?: string;
|
|
608
|
-
/**
|
|
609
|
-
* Type of the invoice item
|
|
610
|
-
*/
|
|
611
|
-
itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
|
|
612
|
-
/**
|
|
613
|
-
* Description of the invoice item
|
|
614
|
-
*/
|
|
615
|
-
description?: string;
|
|
616
|
-
/**
|
|
617
|
-
* Start date of the invoice item
|
|
618
|
-
*/
|
|
619
|
-
startDate?: string;
|
|
620
|
-
/**
|
|
621
|
-
* End date of the invoice item
|
|
622
|
-
*/
|
|
623
|
-
endDate?: string;
|
|
882
|
+
versions: Array<{
|
|
883
|
+
/**
|
|
884
|
+
* Id of the control plane version. Used in API calls.
|
|
885
|
+
*/
|
|
886
|
+
id: string;
|
|
887
|
+
/**
|
|
888
|
+
* Label of the control plane version. Used in frontent UI.
|
|
889
|
+
*/
|
|
890
|
+
label: string;
|
|
891
|
+
}>;
|
|
624
892
|
/**
|
|
625
|
-
*
|
|
893
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
626
894
|
*/
|
|
627
|
-
|
|
895
|
+
cfcr_storage_gb: number;
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
899
|
+
*/
|
|
900
|
+
status: 'active' | 'closed' | 'suspended';
|
|
901
|
+
/**
|
|
902
|
+
* Verification status of the organization, which determines the assigned quota. `none` when billing information is incomplete, `submitted` when billing information is complete but the organization is not yet verified, `verified` when the organization is verified.
|
|
903
|
+
*/
|
|
904
|
+
verification: 'none' | 'submitted' | 'verified';
|
|
905
|
+
};
|
|
906
|
+
export type PaymentMethod = {
|
|
907
|
+
/**
|
|
908
|
+
* Payment method identifier. Stripe payment method id for cards/SEPA; the constant `bank_transfer` for the invoice/bank-transfer method. Used to set as default or delete the payment method.
|
|
909
|
+
*/
|
|
910
|
+
id: string;
|
|
911
|
+
/**
|
|
912
|
+
* Payment method type. `card`, `sepa_debit` for SEPA Direct Debit (business accounts only), or `bank_transfer` for paying invoices by bank transfer.
|
|
913
|
+
*/
|
|
914
|
+
type: 'card' | 'sepa_debit' | 'bank_transfer';
|
|
915
|
+
/**
|
|
916
|
+
* Last 4 digits of the payment card number, of the bank account (IBAN) for SEPA Direct Debit, or of the destination IBAN for bank transfer.
|
|
917
|
+
*/
|
|
918
|
+
last4: string;
|
|
919
|
+
/**
|
|
920
|
+
* Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.
|
|
921
|
+
*/
|
|
922
|
+
exp_month: number;
|
|
923
|
+
/**
|
|
924
|
+
* Four-digit number representing the card's expiration year. May be in the past for an expired card still on file. Null for SEPA Direct Debit and bank transfer.
|
|
925
|
+
*/
|
|
926
|
+
exp_year: number;
|
|
927
|
+
/**
|
|
928
|
+
* Payment card brand as reported by Stripe, e.g. `visa`, `mastercard`, `amex`, `cartes_bancaires`, or `unknown`. Null for SEPA Direct Debit and bank transfer.
|
|
929
|
+
*/
|
|
930
|
+
brand: string;
|
|
931
|
+
/**
|
|
932
|
+
* Full destination IBAN to send bank transfers to. Set only for `bank_transfer`; null otherwise. This is Cloudfleet's virtual receiving account, shown in full so the customer can pay into it.
|
|
933
|
+
*/
|
|
934
|
+
iban: string;
|
|
935
|
+
/**
|
|
936
|
+
* BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.
|
|
937
|
+
*/
|
|
938
|
+
bic: string;
|
|
939
|
+
/**
|
|
940
|
+
* Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.
|
|
941
|
+
*/
|
|
942
|
+
account_holder_name: string;
|
|
943
|
+
/**
|
|
944
|
+
* Whether this payment method is the default used for invoices and active subscriptions. Always false for `bank_transfer` (it cannot be a Stripe default payment method).
|
|
945
|
+
*/
|
|
946
|
+
is_default: boolean;
|
|
947
|
+
};
|
|
948
|
+
export type PlatformQuota = {
|
|
949
|
+
/**
|
|
950
|
+
* Maximum number of Basic clusters that can be created.
|
|
951
|
+
*/
|
|
952
|
+
basic_clusters_max: number;
|
|
953
|
+
/**
|
|
954
|
+
* Available number of Basic clusters that can be created.
|
|
955
|
+
*/
|
|
956
|
+
basic_clusters_available: number;
|
|
957
|
+
/**
|
|
958
|
+
* Maximum number of Pro clusters that can be created.
|
|
959
|
+
*/
|
|
960
|
+
pro_clusters_max: number;
|
|
961
|
+
/**
|
|
962
|
+
* Available number of Pro clusters that can be created.
|
|
963
|
+
*/
|
|
964
|
+
pro_clusters_available: number;
|
|
965
|
+
/**
|
|
966
|
+
* Maximum number of Enterprise clusters that can be created.
|
|
967
|
+
*/
|
|
968
|
+
enterprise_clusters_max: number;
|
|
969
|
+
/**
|
|
970
|
+
* Available number of Enterprise clusters that can be created.
|
|
971
|
+
*/
|
|
972
|
+
enterprise_clusters_available: number;
|
|
973
|
+
/**
|
|
974
|
+
* Maximum number of fleets that can be created per cluster.
|
|
975
|
+
*/
|
|
976
|
+
fleets_max: number;
|
|
977
|
+
/**
|
|
978
|
+
* List of Cloudfleet cluster tiers available for the organization.
|
|
979
|
+
*/
|
|
980
|
+
cluster_tiers: Array<string>;
|
|
981
|
+
/**
|
|
982
|
+
* List of Cloudfleet control plane regions available for the organization.
|
|
983
|
+
*/
|
|
984
|
+
regions: Array<string>;
|
|
985
|
+
/**
|
|
986
|
+
* List of CFKE control plane versions available for the organization.
|
|
987
|
+
*/
|
|
988
|
+
versions: Array<{
|
|
628
989
|
/**
|
|
629
|
-
*
|
|
990
|
+
* Id of the control plane version. Used in API calls.
|
|
630
991
|
*/
|
|
631
|
-
|
|
992
|
+
id: string;
|
|
632
993
|
/**
|
|
633
|
-
*
|
|
994
|
+
* Label of the control plane version. Used in frontent UI.
|
|
634
995
|
*/
|
|
635
|
-
|
|
996
|
+
label: string;
|
|
997
|
+
}>;
|
|
998
|
+
/**
|
|
999
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
1000
|
+
*/
|
|
1001
|
+
cfcr_storage_gb: number;
|
|
1002
|
+
};
|
|
1003
|
+
export type RegistryRepository = {
|
|
1004
|
+
/**
|
|
1005
|
+
* Repository name.
|
|
1006
|
+
*/
|
|
1007
|
+
name: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* Registry region.
|
|
1010
|
+
*/
|
|
1011
|
+
region: string;
|
|
1012
|
+
/**
|
|
1013
|
+
* Full URI of the repository.
|
|
1014
|
+
*/
|
|
1015
|
+
uri: string;
|
|
1016
|
+
};
|
|
1017
|
+
export type RegistryRepositoryWithTags = {
|
|
1018
|
+
/**
|
|
1019
|
+
* Repository name.
|
|
1020
|
+
*/
|
|
1021
|
+
name: string;
|
|
1022
|
+
/**
|
|
1023
|
+
* Registry region.
|
|
1024
|
+
*/
|
|
1025
|
+
region: string;
|
|
1026
|
+
/**
|
|
1027
|
+
* Full URI of the repository.
|
|
1028
|
+
*/
|
|
1029
|
+
uri: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* Array of tags in the repository.
|
|
1032
|
+
*/
|
|
1033
|
+
tags: Array<{
|
|
636
1034
|
/**
|
|
637
|
-
*
|
|
1035
|
+
* Tag name.
|
|
638
1036
|
*/
|
|
639
|
-
|
|
1037
|
+
name: string;
|
|
640
1038
|
/**
|
|
641
|
-
*
|
|
1039
|
+
* Size of the tag in bytes.
|
|
642
1040
|
*/
|
|
643
|
-
|
|
1041
|
+
size: number;
|
|
644
1042
|
/**
|
|
645
|
-
*
|
|
1043
|
+
* Media type of the manifest.
|
|
646
1044
|
*/
|
|
647
|
-
|
|
1045
|
+
mediaType?: string;
|
|
648
1046
|
/**
|
|
649
|
-
*
|
|
1047
|
+
* Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
|
|
650
1048
|
*/
|
|
651
|
-
|
|
652
|
-
[key: string]: unknown;
|
|
653
|
-
} | string>;
|
|
1049
|
+
platforms?: Array<string>;
|
|
654
1050
|
}>;
|
|
655
|
-
};
|
|
656
|
-
export type MarketplaceListing = {
|
|
657
1051
|
/**
|
|
658
|
-
*
|
|
1052
|
+
* Total size of all tags in the repository in bytes.
|
|
659
1053
|
*/
|
|
660
|
-
|
|
1054
|
+
totalSize: number;
|
|
1055
|
+
};
|
|
1056
|
+
export type RegistryTag = {
|
|
661
1057
|
/**
|
|
662
|
-
*
|
|
1058
|
+
* Tag name.
|
|
663
1059
|
*/
|
|
664
1060
|
name: string;
|
|
665
1061
|
/**
|
|
666
|
-
*
|
|
1062
|
+
* Manifest digest for pulling by digest.
|
|
667
1063
|
*/
|
|
668
|
-
|
|
1064
|
+
digest: string;
|
|
669
1065
|
/**
|
|
670
|
-
*
|
|
1066
|
+
* Media type of the manifest.
|
|
671
1067
|
*/
|
|
672
|
-
|
|
1068
|
+
mediaType?: string;
|
|
673
1069
|
/**
|
|
674
|
-
*
|
|
1070
|
+
* Manifest config metadata.
|
|
675
1071
|
*/
|
|
676
|
-
|
|
1072
|
+
config?: {
|
|
1073
|
+
/**
|
|
1074
|
+
* Size of the config in bytes.
|
|
1075
|
+
*/
|
|
1076
|
+
size: number;
|
|
1077
|
+
};
|
|
677
1078
|
/**
|
|
678
|
-
*
|
|
1079
|
+
* Array of layer metadata.
|
|
679
1080
|
*/
|
|
680
|
-
|
|
1081
|
+
layers?: Array<{
|
|
1082
|
+
/**
|
|
1083
|
+
* Digest of the layer.
|
|
1084
|
+
*/
|
|
1085
|
+
digest?: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* Size of the layer in bytes.
|
|
1088
|
+
*/
|
|
1089
|
+
size: number;
|
|
1090
|
+
}>;
|
|
681
1091
|
/**
|
|
682
|
-
*
|
|
1092
|
+
* Array of manifests for multi-arch images.
|
|
683
1093
|
*/
|
|
684
|
-
|
|
685
|
-
version_channels: Array<string>;
|
|
686
|
-
value_schemas: Array<{
|
|
1094
|
+
manifests?: Array<{
|
|
687
1095
|
/**
|
|
688
|
-
*
|
|
1096
|
+
* Digest of the manifest.
|
|
689
1097
|
*/
|
|
690
|
-
|
|
1098
|
+
digest: string;
|
|
1099
|
+
/**
|
|
1100
|
+
* Platform information for the manifest.
|
|
1101
|
+
*/
|
|
1102
|
+
platform?: {
|
|
1103
|
+
/**
|
|
1104
|
+
* Architecture of the platform.
|
|
1105
|
+
*/
|
|
1106
|
+
architecture: string;
|
|
1107
|
+
/**
|
|
1108
|
+
* Operating system of the platform.
|
|
1109
|
+
*/
|
|
1110
|
+
os: string;
|
|
1111
|
+
/**
|
|
1112
|
+
* Variant of the platform (e.g., v7, v8 for ARM).
|
|
1113
|
+
*/
|
|
1114
|
+
variant?: string;
|
|
1115
|
+
};
|
|
691
1116
|
/**
|
|
692
|
-
*
|
|
1117
|
+
* Layers for this platform.
|
|
693
1118
|
*/
|
|
694
|
-
|
|
1119
|
+
layers?: Array<{
|
|
1120
|
+
/**
|
|
1121
|
+
* Digest of the layer.
|
|
1122
|
+
*/
|
|
1123
|
+
digest?: string;
|
|
1124
|
+
/**
|
|
1125
|
+
* Size of the layer in bytes.
|
|
1126
|
+
*/
|
|
1127
|
+
size: number;
|
|
1128
|
+
}>;
|
|
695
1129
|
/**
|
|
696
|
-
*
|
|
1130
|
+
* Total size of this platform manifest in bytes.
|
|
697
1131
|
*/
|
|
698
|
-
|
|
1132
|
+
size?: number;
|
|
699
1133
|
}>;
|
|
700
|
-
};
|
|
701
|
-
export type OrganizationCreateInput = {
|
|
702
1134
|
/**
|
|
703
|
-
*
|
|
1135
|
+
* Total size of the tag in bytes.
|
|
704
1136
|
*/
|
|
705
|
-
|
|
1137
|
+
size: number;
|
|
706
1138
|
/**
|
|
707
|
-
*
|
|
1139
|
+
* Registry region.
|
|
708
1140
|
*/
|
|
709
|
-
|
|
1141
|
+
region: string;
|
|
710
1142
|
/**
|
|
711
|
-
*
|
|
1143
|
+
* Repository name.
|
|
712
1144
|
*/
|
|
713
|
-
|
|
1145
|
+
repository: string;
|
|
714
1146
|
/**
|
|
715
|
-
*
|
|
1147
|
+
* Full URI of the tag.
|
|
716
1148
|
*/
|
|
717
|
-
|
|
1149
|
+
uri: string;
|
|
1150
|
+
};
|
|
1151
|
+
export type TicketAttachment = {
|
|
718
1152
|
/**
|
|
719
|
-
*
|
|
1153
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
720
1154
|
*/
|
|
721
|
-
|
|
1155
|
+
id: string;
|
|
1156
|
+
/**
|
|
1157
|
+
* Original filename as uploaded.
|
|
1158
|
+
*/
|
|
1159
|
+
filename: string;
|
|
1160
|
+
/**
|
|
1161
|
+
* MIME content type of the attachment.
|
|
1162
|
+
*/
|
|
1163
|
+
content_type: string;
|
|
1164
|
+
/**
|
|
1165
|
+
* Size of the attachment in bytes.
|
|
1166
|
+
*/
|
|
1167
|
+
size: number;
|
|
722
1168
|
};
|
|
723
|
-
export type
|
|
1169
|
+
export type TicketCreateInput = {
|
|
724
1170
|
/**
|
|
725
|
-
*
|
|
1171
|
+
* Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.
|
|
726
1172
|
*/
|
|
727
|
-
|
|
1173
|
+
category: 'billing' | 'technical' | 'general';
|
|
728
1174
|
/**
|
|
729
|
-
*
|
|
1175
|
+
* Initial message body in markdown. There is no separate subject — the first message body is the description.
|
|
730
1176
|
*/
|
|
731
|
-
|
|
1177
|
+
body: string;
|
|
732
1178
|
/**
|
|
733
|
-
*
|
|
1179
|
+
* Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).
|
|
734
1180
|
*/
|
|
735
|
-
|
|
1181
|
+
properties?: {
|
|
1182
|
+
[key: string]: unknown;
|
|
1183
|
+
};
|
|
1184
|
+
};
|
|
1185
|
+
export type TicketListResponse = {
|
|
736
1186
|
/**
|
|
737
|
-
*
|
|
1187
|
+
* Tickets for the organization, ordered newest first. Messages are omitted from list responses.
|
|
738
1188
|
*/
|
|
739
|
-
|
|
1189
|
+
items: Array<{
|
|
740
1190
|
/**
|
|
741
|
-
*
|
|
1191
|
+
* Unique identifier of the ticket (Mongo ObjectId).
|
|
742
1192
|
*/
|
|
743
|
-
|
|
1193
|
+
id: string;
|
|
744
1194
|
/**
|
|
745
|
-
*
|
|
1195
|
+
* Current state of the ticket.
|
|
746
1196
|
*/
|
|
747
|
-
|
|
1197
|
+
status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
|
|
748
1198
|
/**
|
|
749
|
-
*
|
|
1199
|
+
* Ticket category.
|
|
750
1200
|
*/
|
|
751
|
-
|
|
1201
|
+
category: 'billing' | 'technical' | 'general';
|
|
752
1202
|
/**
|
|
753
|
-
*
|
|
1203
|
+
* First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
|
|
754
1204
|
*/
|
|
755
|
-
|
|
1205
|
+
summary: string;
|
|
756
1206
|
/**
|
|
757
|
-
*
|
|
1207
|
+
* Closure timestamp. Null while the ticket is open.
|
|
758
1208
|
*/
|
|
759
|
-
|
|
1209
|
+
closed_at?: string;
|
|
760
1210
|
/**
|
|
761
|
-
*
|
|
1211
|
+
* Creation date of the ticket. ISO 8601 UTC.
|
|
762
1212
|
*/
|
|
763
|
-
|
|
1213
|
+
date_created: string;
|
|
764
1214
|
/**
|
|
765
|
-
*
|
|
1215
|
+
* Last update date of the ticket. ISO 8601 UTC.
|
|
766
1216
|
*/
|
|
767
|
-
|
|
1217
|
+
date_updated: string;
|
|
768
1218
|
/**
|
|
769
|
-
*
|
|
1219
|
+
* Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
|
|
770
1220
|
*/
|
|
771
|
-
|
|
1221
|
+
messages?: Array<{
|
|
772
1222
|
/**
|
|
773
|
-
*
|
|
1223
|
+
* Unique identifier of the message (Mongo ObjectId).
|
|
774
1224
|
*/
|
|
775
1225
|
id: string;
|
|
776
1226
|
/**
|
|
777
|
-
*
|
|
1227
|
+
* Message type. Internal notes are filtered out of customer-facing responses.
|
|
778
1228
|
*/
|
|
779
|
-
|
|
1229
|
+
type: 'customer_reply' | 'agent_reply';
|
|
1230
|
+
/**
|
|
1231
|
+
* Message body in markdown.
|
|
1232
|
+
*/
|
|
1233
|
+
body: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* First name of the author. Null when not provided.
|
|
1236
|
+
*/
|
|
1237
|
+
author_first_name?: string;
|
|
1238
|
+
/**
|
|
1239
|
+
* Last name of the author. Null when not provided.
|
|
1240
|
+
*/
|
|
1241
|
+
author_last_name?: string;
|
|
1242
|
+
/**
|
|
1243
|
+
* Attachments associated with this message.
|
|
1244
|
+
*/
|
|
1245
|
+
attachments?: Array<{
|
|
1246
|
+
/**
|
|
1247
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
1248
|
+
*/
|
|
1249
|
+
id: string;
|
|
1250
|
+
/**
|
|
1251
|
+
* Original filename as uploaded.
|
|
1252
|
+
*/
|
|
1253
|
+
filename: string;
|
|
1254
|
+
/**
|
|
1255
|
+
* MIME content type of the attachment.
|
|
1256
|
+
*/
|
|
1257
|
+
content_type: string;
|
|
1258
|
+
/**
|
|
1259
|
+
* Size of the attachment in bytes.
|
|
1260
|
+
*/
|
|
1261
|
+
size: number;
|
|
1262
|
+
}>;
|
|
1263
|
+
/**
|
|
1264
|
+
* Creation date of the message. ISO 8601 UTC.
|
|
1265
|
+
*/
|
|
1266
|
+
date_created: string;
|
|
780
1267
|
}>;
|
|
781
|
-
}
|
|
1268
|
+
}>;
|
|
1269
|
+
};
|
|
1270
|
+
export type TicketMessageInput = {
|
|
782
1271
|
/**
|
|
783
|
-
*
|
|
1272
|
+
* Reply body in markdown.
|
|
784
1273
|
*/
|
|
785
|
-
|
|
1274
|
+
body: string;
|
|
786
1275
|
};
|
|
787
|
-
export type
|
|
1276
|
+
export type TicketMessage = {
|
|
788
1277
|
/**
|
|
789
|
-
* Unique identifier of the
|
|
1278
|
+
* Unique identifier of the message (Mongo ObjectId).
|
|
790
1279
|
*/
|
|
791
1280
|
id: string;
|
|
792
1281
|
/**
|
|
793
|
-
*
|
|
1282
|
+
* Message type. Internal notes are filtered out of customer-facing responses.
|
|
794
1283
|
*/
|
|
795
|
-
|
|
1284
|
+
type: 'customer_reply' | 'agent_reply';
|
|
796
1285
|
/**
|
|
797
|
-
*
|
|
1286
|
+
* Message body in markdown.
|
|
798
1287
|
*/
|
|
799
|
-
|
|
1288
|
+
body: string;
|
|
800
1289
|
/**
|
|
801
|
-
*
|
|
1290
|
+
* First name of the author. Null when not provided.
|
|
802
1291
|
*/
|
|
803
|
-
|
|
1292
|
+
author_first_name?: string;
|
|
804
1293
|
/**
|
|
805
|
-
*
|
|
1294
|
+
* Last name of the author. Null when not provided.
|
|
806
1295
|
*/
|
|
807
|
-
|
|
1296
|
+
author_last_name?: string;
|
|
808
1297
|
/**
|
|
809
|
-
*
|
|
1298
|
+
* Attachments associated with this message.
|
|
810
1299
|
*/
|
|
811
|
-
|
|
1300
|
+
attachments?: Array<{
|
|
1301
|
+
/**
|
|
1302
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
1303
|
+
*/
|
|
1304
|
+
id: string;
|
|
1305
|
+
/**
|
|
1306
|
+
* Original filename as uploaded.
|
|
1307
|
+
*/
|
|
1308
|
+
filename: string;
|
|
1309
|
+
/**
|
|
1310
|
+
* MIME content type of the attachment.
|
|
1311
|
+
*/
|
|
1312
|
+
content_type: string;
|
|
1313
|
+
/**
|
|
1314
|
+
* Size of the attachment in bytes.
|
|
1315
|
+
*/
|
|
1316
|
+
size: number;
|
|
1317
|
+
}>;
|
|
812
1318
|
/**
|
|
813
|
-
*
|
|
1319
|
+
* Creation date of the message. ISO 8601 UTC.
|
|
814
1320
|
*/
|
|
815
|
-
|
|
1321
|
+
date_created: string;
|
|
816
1322
|
};
|
|
817
|
-
export type
|
|
818
|
-
/**
|
|
819
|
-
* Human readable access token name.
|
|
820
|
-
*/
|
|
821
|
-
name: string;
|
|
1323
|
+
export type Ticket = {
|
|
822
1324
|
/**
|
|
823
|
-
*
|
|
1325
|
+
* Unique identifier of the ticket (Mongo ObjectId).
|
|
824
1326
|
*/
|
|
825
|
-
|
|
826
|
-
};
|
|
827
|
-
export type Token = {
|
|
1327
|
+
id: string;
|
|
828
1328
|
/**
|
|
829
|
-
*
|
|
1329
|
+
* Current state of the ticket.
|
|
830
1330
|
*/
|
|
831
|
-
|
|
1331
|
+
status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
|
|
832
1332
|
/**
|
|
833
|
-
*
|
|
1333
|
+
* Ticket category.
|
|
834
1334
|
*/
|
|
835
|
-
|
|
1335
|
+
category: 'billing' | 'technical' | 'general';
|
|
836
1336
|
/**
|
|
837
|
-
*
|
|
1337
|
+
* First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
|
|
838
1338
|
*/
|
|
839
|
-
|
|
1339
|
+
summary: string;
|
|
840
1340
|
/**
|
|
841
|
-
*
|
|
1341
|
+
* Closure timestamp. Null while the ticket is open.
|
|
842
1342
|
*/
|
|
843
|
-
|
|
1343
|
+
closed_at?: string;
|
|
844
1344
|
/**
|
|
845
|
-
* Creation date of the
|
|
1345
|
+
* Creation date of the ticket. ISO 8601 UTC.
|
|
846
1346
|
*/
|
|
847
1347
|
date_created: string;
|
|
848
|
-
};
|
|
849
|
-
export type TokenUpdateInput = {
|
|
850
|
-
/**
|
|
851
|
-
* Human readable access token name.
|
|
852
|
-
*/
|
|
853
|
-
name?: string;
|
|
854
1348
|
/**
|
|
855
|
-
*
|
|
1349
|
+
* Last update date of the ticket. ISO 8601 UTC.
|
|
856
1350
|
*/
|
|
857
|
-
|
|
858
|
-
};
|
|
859
|
-
export type Usage = {
|
|
1351
|
+
date_updated: string;
|
|
860
1352
|
/**
|
|
861
|
-
*
|
|
1353
|
+
* Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
|
|
862
1354
|
*/
|
|
863
|
-
|
|
1355
|
+
messages?: Array<{
|
|
1356
|
+
/**
|
|
1357
|
+
* Unique identifier of the message (Mongo ObjectId).
|
|
1358
|
+
*/
|
|
1359
|
+
id: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* Message type. Internal notes are filtered out of customer-facing responses.
|
|
1362
|
+
*/
|
|
1363
|
+
type: 'customer_reply' | 'agent_reply';
|
|
1364
|
+
/**
|
|
1365
|
+
* Message body in markdown.
|
|
1366
|
+
*/
|
|
1367
|
+
body: string;
|
|
1368
|
+
/**
|
|
1369
|
+
* First name of the author. Null when not provided.
|
|
1370
|
+
*/
|
|
1371
|
+
author_first_name?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
* Last name of the author. Null when not provided.
|
|
1374
|
+
*/
|
|
1375
|
+
author_last_name?: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* Attachments associated with this message.
|
|
1378
|
+
*/
|
|
1379
|
+
attachments?: Array<{
|
|
1380
|
+
/**
|
|
1381
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
1382
|
+
*/
|
|
1383
|
+
id: string;
|
|
1384
|
+
/**
|
|
1385
|
+
* Original filename as uploaded.
|
|
1386
|
+
*/
|
|
1387
|
+
filename: string;
|
|
1388
|
+
/**
|
|
1389
|
+
* MIME content type of the attachment.
|
|
1390
|
+
*/
|
|
1391
|
+
content_type: string;
|
|
1392
|
+
/**
|
|
1393
|
+
* Size of the attachment in bytes.
|
|
1394
|
+
*/
|
|
1395
|
+
size: number;
|
|
1396
|
+
}>;
|
|
1397
|
+
/**
|
|
1398
|
+
* Creation date of the message. ISO 8601 UTC.
|
|
1399
|
+
*/
|
|
1400
|
+
date_created: string;
|
|
1401
|
+
}>;
|
|
1402
|
+
};
|
|
1403
|
+
export type TokenCreateInput = {
|
|
1404
|
+
/**
|
|
1405
|
+
* Human readable access token name.
|
|
1406
|
+
*/
|
|
1407
|
+
name: string;
|
|
1408
|
+
/**
|
|
1409
|
+
* Role assumed by the token.
|
|
1410
|
+
*/
|
|
1411
|
+
role: 'Administrator' | 'User';
|
|
1412
|
+
};
|
|
1413
|
+
export type Token = {
|
|
1414
|
+
/**
|
|
1415
|
+
* Human readable access token name.
|
|
1416
|
+
*/
|
|
1417
|
+
name: string;
|
|
1418
|
+
/**
|
|
1419
|
+
* Role assumed by the token.
|
|
1420
|
+
*/
|
|
1421
|
+
role: 'Administrator' | 'User';
|
|
1422
|
+
/**
|
|
1423
|
+
* Generated unique identifier of the access token.
|
|
1424
|
+
*/
|
|
1425
|
+
id?: string;
|
|
1426
|
+
/**
|
|
1427
|
+
* Access token secret. Unmasked only during creation.
|
|
1428
|
+
*/
|
|
1429
|
+
secret?: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* Creation date of the access token. ISO 8601 date string in UTC timezone
|
|
1432
|
+
*/
|
|
1433
|
+
date_created: string;
|
|
1434
|
+
};
|
|
1435
|
+
export type TokenUpdateInput = {
|
|
1436
|
+
/**
|
|
1437
|
+
* Human readable access token name.
|
|
1438
|
+
*/
|
|
1439
|
+
name?: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* Role assumed by the token.
|
|
1442
|
+
*/
|
|
1443
|
+
role?: 'Administrator' | 'User';
|
|
1444
|
+
};
|
|
1445
|
+
export type UsageFacets = {
|
|
1446
|
+
/**
|
|
1447
|
+
* List of unique cluster IDs
|
|
1448
|
+
*/
|
|
1449
|
+
cluster_id?: Array<string>;
|
|
1450
|
+
/**
|
|
1451
|
+
* List of unique products
|
|
1452
|
+
*/
|
|
1453
|
+
product?: Array<string>;
|
|
1454
|
+
};
|
|
1455
|
+
export type UsageResponse = {
|
|
1456
|
+
/**
|
|
1457
|
+
* Usage data
|
|
1458
|
+
*/
|
|
1459
|
+
data: Array<{
|
|
1460
|
+
/**
|
|
1461
|
+
* Hour of the usage
|
|
1462
|
+
*/
|
|
1463
|
+
hour: string;
|
|
1464
|
+
/**
|
|
1465
|
+
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
1466
|
+
*/
|
|
1467
|
+
cluster_id: string;
|
|
1468
|
+
/**
|
|
1469
|
+
* The product the usage is associated with
|
|
1470
|
+
*/
|
|
1471
|
+
product: string;
|
|
1472
|
+
/**
|
|
1473
|
+
* Consumption
|
|
1474
|
+
*/
|
|
1475
|
+
value: number;
|
|
1476
|
+
/**
|
|
1477
|
+
* Price per unit
|
|
1478
|
+
*/
|
|
1479
|
+
price: number;
|
|
1480
|
+
/**
|
|
1481
|
+
* Total cost
|
|
1482
|
+
*/
|
|
1483
|
+
total: number;
|
|
1484
|
+
}>;
|
|
1485
|
+
/**
|
|
1486
|
+
* Facets for filtering
|
|
1487
|
+
*/
|
|
1488
|
+
facets: {
|
|
1489
|
+
/**
|
|
1490
|
+
* List of unique cluster IDs
|
|
1491
|
+
*/
|
|
1492
|
+
cluster_id?: Array<string>;
|
|
1493
|
+
/**
|
|
1494
|
+
* List of unique products
|
|
1495
|
+
*/
|
|
1496
|
+
product?: Array<string>;
|
|
1497
|
+
};
|
|
1498
|
+
};
|
|
1499
|
+
export type Usage = {
|
|
1500
|
+
/**
|
|
1501
|
+
* Hour of the usage
|
|
1502
|
+
*/
|
|
1503
|
+
hour: string;
|
|
864
1504
|
/**
|
|
865
1505
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
866
1506
|
*/
|
|
867
1507
|
cluster_id: string;
|
|
868
1508
|
/**
|
|
869
|
-
*
|
|
1509
|
+
* The product the usage is associated with
|
|
870
1510
|
*/
|
|
871
|
-
|
|
1511
|
+
product: string;
|
|
872
1512
|
/**
|
|
873
|
-
*
|
|
1513
|
+
* Consumption
|
|
874
1514
|
*/
|
|
875
|
-
|
|
1515
|
+
value: number;
|
|
876
1516
|
/**
|
|
877
|
-
*
|
|
1517
|
+
* Price per unit
|
|
878
1518
|
*/
|
|
879
|
-
|
|
1519
|
+
price: number;
|
|
880
1520
|
/**
|
|
881
|
-
*
|
|
1521
|
+
* Total cost
|
|
882
1522
|
*/
|
|
883
|
-
|
|
884
|
-
cpu: number | '';
|
|
885
|
-
price: number | '';
|
|
886
|
-
value: number | '';
|
|
887
|
-
total: number | '';
|
|
1523
|
+
total: number;
|
|
888
1524
|
};
|
|
889
1525
|
export type UserCreateInput = {
|
|
890
1526
|
/**
|
|
@@ -907,14 +1543,6 @@ export type UserCreateInput = {
|
|
|
907
1543
|
* User password. Must be at least 8 characters long.
|
|
908
1544
|
*/
|
|
909
1545
|
password: string;
|
|
910
|
-
/**
|
|
911
|
-
* Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.
|
|
912
|
-
*/
|
|
913
|
-
status?: 'active' | 'inactive';
|
|
914
|
-
/**
|
|
915
|
-
* User role. Can be 'Administrator', 'User'.
|
|
916
|
-
*/
|
|
917
|
-
role?: 'Administrator' | 'User';
|
|
918
1546
|
};
|
|
919
1547
|
export type User = {
|
|
920
1548
|
/**
|
|
@@ -960,308 +1588,728 @@ export type UserUpdateInput = {
|
|
|
960
1588
|
*/
|
|
961
1589
|
last_name?: string;
|
|
962
1590
|
/**
|
|
963
|
-
* User role. Can be 'Administrator', 'User'.
|
|
1591
|
+
* User role. Can be 'Administrator', 'User'.
|
|
1592
|
+
*/
|
|
1593
|
+
role?: 'Administrator' | 'User';
|
|
1594
|
+
/**
|
|
1595
|
+
* Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.
|
|
1596
|
+
*/
|
|
1597
|
+
status?: 'active' | 'inactive';
|
|
1598
|
+
};
|
|
1599
|
+
export type ListUserOrganizationsData = {
|
|
1600
|
+
body?: never;
|
|
1601
|
+
path: {
|
|
1602
|
+
/**
|
|
1603
|
+
* User email address.
|
|
1604
|
+
*/
|
|
1605
|
+
email: string;
|
|
1606
|
+
};
|
|
1607
|
+
query?: never;
|
|
1608
|
+
url: '/users/organizations/{email}';
|
|
1609
|
+
};
|
|
1610
|
+
export type ListUserOrganizationsResponses = {
|
|
1611
|
+
/**
|
|
1612
|
+
* An array of organizations the user belongs to.
|
|
1613
|
+
*/
|
|
1614
|
+
200: Array<{
|
|
1615
|
+
/**
|
|
1616
|
+
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
1617
|
+
*/
|
|
1618
|
+
realm?: string;
|
|
1619
|
+
/**
|
|
1620
|
+
* Human-readable name of the organization
|
|
1621
|
+
*/
|
|
1622
|
+
displayName?: string;
|
|
1623
|
+
}>;
|
|
1624
|
+
};
|
|
1625
|
+
export type ListUserOrganizationsResponse = ListUserOrganizationsResponses[keyof ListUserOrganizationsResponses];
|
|
1626
|
+
export type ListUsersData = {
|
|
1627
|
+
body?: never;
|
|
1628
|
+
path?: never;
|
|
1629
|
+
query?: never;
|
|
1630
|
+
url: '/users';
|
|
1631
|
+
};
|
|
1632
|
+
export type ListUsersErrors = {
|
|
1633
|
+
/**
|
|
1634
|
+
* Not authenticated
|
|
1635
|
+
*/
|
|
1636
|
+
401: unknown;
|
|
1637
|
+
};
|
|
1638
|
+
export type ListUsersResponses = {
|
|
1639
|
+
/**
|
|
1640
|
+
* An array of users
|
|
1641
|
+
*/
|
|
1642
|
+
200: Array<User>;
|
|
1643
|
+
};
|
|
1644
|
+
export type ListUsersResponse = ListUsersResponses[keyof ListUsersResponses];
|
|
1645
|
+
export type CreateUserData = {
|
|
1646
|
+
body: UserCreateInput;
|
|
1647
|
+
path?: never;
|
|
1648
|
+
query?: never;
|
|
1649
|
+
url: '/users';
|
|
1650
|
+
};
|
|
1651
|
+
export type CreateUserResponses = {
|
|
1652
|
+
/**
|
|
1653
|
+
* Successfully created. Returns created user details.
|
|
1654
|
+
*/
|
|
1655
|
+
200: User;
|
|
1656
|
+
};
|
|
1657
|
+
export type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses];
|
|
1658
|
+
export type DeleteUserData = {
|
|
1659
|
+
body?: never;
|
|
1660
|
+
path: {
|
|
1661
|
+
/**
|
|
1662
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1663
|
+
*/
|
|
1664
|
+
user_id: string;
|
|
1665
|
+
};
|
|
1666
|
+
query?: never;
|
|
1667
|
+
url: '/users/{user_id}';
|
|
1668
|
+
};
|
|
1669
|
+
export type DeleteUserErrors = {
|
|
1670
|
+
/**
|
|
1671
|
+
* Deleting own user is not allowed. Delete your organization instead.
|
|
1672
|
+
*/
|
|
1673
|
+
400: unknown;
|
|
1674
|
+
/**
|
|
1675
|
+
* Not authenticated
|
|
1676
|
+
*/
|
|
1677
|
+
401: unknown;
|
|
1678
|
+
};
|
|
1679
|
+
export type DeleteUserResponses = {
|
|
1680
|
+
/**
|
|
1681
|
+
* User profile information
|
|
1682
|
+
*/
|
|
1683
|
+
200: User;
|
|
1684
|
+
};
|
|
1685
|
+
export type DeleteUserResponse = DeleteUserResponses[keyof DeleteUserResponses];
|
|
1686
|
+
export type GetUserData = {
|
|
1687
|
+
body?: never;
|
|
1688
|
+
path: {
|
|
1689
|
+
/**
|
|
1690
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1691
|
+
*/
|
|
1692
|
+
user_id: string;
|
|
1693
|
+
};
|
|
1694
|
+
query?: never;
|
|
1695
|
+
url: '/users/{user_id}';
|
|
1696
|
+
};
|
|
1697
|
+
export type GetUserErrors = {
|
|
1698
|
+
/**
|
|
1699
|
+
* Not authenticated
|
|
1700
|
+
*/
|
|
1701
|
+
401: unknown;
|
|
1702
|
+
};
|
|
1703
|
+
export type GetUserResponses = {
|
|
1704
|
+
/**
|
|
1705
|
+
* User profile information
|
|
1706
|
+
*/
|
|
1707
|
+
200: User;
|
|
1708
|
+
};
|
|
1709
|
+
export type GetUserResponse = GetUserResponses[keyof GetUserResponses];
|
|
1710
|
+
export type UpdateUserData = {
|
|
1711
|
+
body: UserUpdateInput;
|
|
1712
|
+
path: {
|
|
1713
|
+
/**
|
|
1714
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1715
|
+
*/
|
|
1716
|
+
user_id: string;
|
|
1717
|
+
};
|
|
1718
|
+
query?: never;
|
|
1719
|
+
url: '/users/{user_id}';
|
|
1720
|
+
};
|
|
1721
|
+
export type UpdateUserResponses = {
|
|
1722
|
+
/**
|
|
1723
|
+
* Successfully created. Returns created user details.
|
|
1724
|
+
*/
|
|
1725
|
+
200: User;
|
|
1726
|
+
};
|
|
1727
|
+
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
1728
|
+
export type ListTokensData = {
|
|
1729
|
+
body?: never;
|
|
1730
|
+
path?: never;
|
|
1731
|
+
query?: never;
|
|
1732
|
+
url: '/tokens';
|
|
1733
|
+
};
|
|
1734
|
+
export type ListTokensErrors = {
|
|
1735
|
+
/**
|
|
1736
|
+
* Not authenticated
|
|
1737
|
+
*/
|
|
1738
|
+
401: unknown;
|
|
1739
|
+
};
|
|
1740
|
+
export type ListTokensResponses = {
|
|
1741
|
+
/**
|
|
1742
|
+
* Returns a list of access token details with masked secrets.
|
|
1743
|
+
*/
|
|
1744
|
+
200: Array<Token>;
|
|
1745
|
+
};
|
|
1746
|
+
export type ListTokensResponse = ListTokensResponses[keyof ListTokensResponses];
|
|
1747
|
+
export type CreateTokenData = {
|
|
1748
|
+
body: TokenCreateInput;
|
|
1749
|
+
path?: never;
|
|
1750
|
+
query?: never;
|
|
1751
|
+
url: '/tokens';
|
|
1752
|
+
};
|
|
1753
|
+
export type CreateTokenErrors = {
|
|
1754
|
+
/**
|
|
1755
|
+
* Not authenticated
|
|
1756
|
+
*/
|
|
1757
|
+
401: unknown;
|
|
1758
|
+
};
|
|
1759
|
+
export type CreateTokenResponses = {
|
|
1760
|
+
/**
|
|
1761
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1762
|
+
*/
|
|
1763
|
+
200: Token;
|
|
1764
|
+
};
|
|
1765
|
+
export type CreateTokenResponse = CreateTokenResponses[keyof CreateTokenResponses];
|
|
1766
|
+
export type DeleteTokenData = {
|
|
1767
|
+
body?: never;
|
|
1768
|
+
path: {
|
|
1769
|
+
/**
|
|
1770
|
+
* Generated unique identifier of the access token.
|
|
1771
|
+
*/
|
|
1772
|
+
token_id: string;
|
|
1773
|
+
};
|
|
1774
|
+
query?: never;
|
|
1775
|
+
url: '/tokens/{token_id}';
|
|
1776
|
+
};
|
|
1777
|
+
export type DeleteTokenResponses = {
|
|
1778
|
+
/**
|
|
1779
|
+
* Successfully deleted.
|
|
1780
|
+
*/
|
|
1781
|
+
200: unknown;
|
|
1782
|
+
};
|
|
1783
|
+
export type GetTokenData = {
|
|
1784
|
+
body?: never;
|
|
1785
|
+
path: {
|
|
1786
|
+
/**
|
|
1787
|
+
* Generated unique identifier of the access token.
|
|
1788
|
+
*/
|
|
1789
|
+
token_id: string;
|
|
1790
|
+
};
|
|
1791
|
+
query?: never;
|
|
1792
|
+
url: '/tokens/{token_id}';
|
|
1793
|
+
};
|
|
1794
|
+
export type GetTokenErrors = {
|
|
1795
|
+
/**
|
|
1796
|
+
* Not authenticated
|
|
1797
|
+
*/
|
|
1798
|
+
401: unknown;
|
|
1799
|
+
};
|
|
1800
|
+
export type GetTokenResponses = {
|
|
1801
|
+
/**
|
|
1802
|
+
* Returns access token details with masked secret.
|
|
1803
|
+
*/
|
|
1804
|
+
200: Token;
|
|
1805
|
+
};
|
|
1806
|
+
export type GetTokenResponse = GetTokenResponses[keyof GetTokenResponses];
|
|
1807
|
+
export type UpdateTokenData = {
|
|
1808
|
+
body: TokenUpdateInput;
|
|
1809
|
+
path: {
|
|
1810
|
+
/**
|
|
1811
|
+
* Generated unique identifier of the access token.
|
|
1812
|
+
*/
|
|
1813
|
+
token_id: string;
|
|
1814
|
+
};
|
|
1815
|
+
query?: never;
|
|
1816
|
+
url: '/tokens/{token_id}';
|
|
1817
|
+
};
|
|
1818
|
+
export type UpdateTokenErrors = {
|
|
1819
|
+
/**
|
|
1820
|
+
* Not authenticated
|
|
1821
|
+
*/
|
|
1822
|
+
401: unknown;
|
|
1823
|
+
};
|
|
1824
|
+
export type UpdateTokenResponses = {
|
|
1825
|
+
/**
|
|
1826
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1827
|
+
*/
|
|
1828
|
+
200: Token;
|
|
1829
|
+
};
|
|
1830
|
+
export type UpdateTokenResponse = UpdateTokenResponses[keyof UpdateTokenResponses];
|
|
1831
|
+
export type RegenerateTokenData = {
|
|
1832
|
+
body?: never;
|
|
1833
|
+
path: {
|
|
1834
|
+
/**
|
|
1835
|
+
* Generated unique identifier of the access token.
|
|
1836
|
+
*/
|
|
1837
|
+
token_id: string;
|
|
1838
|
+
};
|
|
1839
|
+
query?: never;
|
|
1840
|
+
url: '/tokens/{token_id}/secret';
|
|
1841
|
+
};
|
|
1842
|
+
export type RegenerateTokenErrors = {
|
|
1843
|
+
/**
|
|
1844
|
+
* Not authenticated
|
|
1845
|
+
*/
|
|
1846
|
+
401: unknown;
|
|
1847
|
+
};
|
|
1848
|
+
export type RegenerateTokenResponses = {
|
|
1849
|
+
/**
|
|
1850
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1851
|
+
*/
|
|
1852
|
+
200: Token;
|
|
1853
|
+
};
|
|
1854
|
+
export type RegenerateTokenResponse = RegenerateTokenResponses[keyof RegenerateTokenResponses];
|
|
1855
|
+
export type ListTicketsData = {
|
|
1856
|
+
body?: never;
|
|
1857
|
+
path?: never;
|
|
1858
|
+
query?: never;
|
|
1859
|
+
url: '/tickets';
|
|
1860
|
+
};
|
|
1861
|
+
export type ListTicketsResponses = {
|
|
1862
|
+
/**
|
|
1863
|
+
* Tickets for the organization.
|
|
1864
|
+
*/
|
|
1865
|
+
200: TicketListResponse;
|
|
1866
|
+
};
|
|
1867
|
+
export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
|
|
1868
|
+
export type CreateTicketData = {
|
|
1869
|
+
body: {
|
|
1870
|
+
/**
|
|
1871
|
+
* JSON-encoded TicketCreateInput.
|
|
1872
|
+
*/
|
|
1873
|
+
payload?: string;
|
|
1874
|
+
attachments?: Array<Blob | File>;
|
|
1875
|
+
};
|
|
1876
|
+
path?: never;
|
|
1877
|
+
query?: never;
|
|
1878
|
+
url: '/tickets';
|
|
1879
|
+
};
|
|
1880
|
+
export type CreateTicketResponses = {
|
|
1881
|
+
/**
|
|
1882
|
+
* Ticket created.
|
|
1883
|
+
*/
|
|
1884
|
+
200: Ticket;
|
|
1885
|
+
};
|
|
1886
|
+
export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
|
|
1887
|
+
export type CloseTicketData = {
|
|
1888
|
+
body?: never;
|
|
1889
|
+
path: {
|
|
1890
|
+
ticket_id: string;
|
|
1891
|
+
};
|
|
1892
|
+
query?: never;
|
|
1893
|
+
url: '/tickets/{ticket_id}';
|
|
1894
|
+
};
|
|
1895
|
+
export type CloseTicketResponses = {
|
|
1896
|
+
/**
|
|
1897
|
+
* Ticket closed.
|
|
964
1898
|
*/
|
|
965
|
-
|
|
1899
|
+
200: Ticket;
|
|
1900
|
+
};
|
|
1901
|
+
export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
|
|
1902
|
+
export type GetTicketData = {
|
|
1903
|
+
body?: never;
|
|
1904
|
+
path: {
|
|
1905
|
+
ticket_id: string;
|
|
1906
|
+
};
|
|
1907
|
+
query?: never;
|
|
1908
|
+
url: '/tickets/{ticket_id}';
|
|
1909
|
+
};
|
|
1910
|
+
export type GetTicketResponses = {
|
|
966
1911
|
/**
|
|
967
|
-
*
|
|
1912
|
+
* Ticket with messages (internal notes excluded).
|
|
968
1913
|
*/
|
|
969
|
-
|
|
1914
|
+
200: Ticket;
|
|
970
1915
|
};
|
|
971
|
-
export type
|
|
972
|
-
|
|
973
|
-
|
|
1916
|
+
export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
|
|
1917
|
+
export type ReplyTicketData = {
|
|
1918
|
+
body: {
|
|
1919
|
+
/**
|
|
1920
|
+
* JSON-encoded TicketMessageInput.
|
|
1921
|
+
*/
|
|
1922
|
+
payload?: string;
|
|
1923
|
+
attachments?: Array<Blob | File>;
|
|
1924
|
+
};
|
|
1925
|
+
path: {
|
|
1926
|
+
ticket_id: string;
|
|
1927
|
+
};
|
|
974
1928
|
query?: never;
|
|
975
|
-
url: '/
|
|
1929
|
+
url: '/tickets/{ticket_id}/messages';
|
|
976
1930
|
};
|
|
977
|
-
export type
|
|
1931
|
+
export type ReplyTicketErrors = {
|
|
978
1932
|
/**
|
|
979
|
-
*
|
|
1933
|
+
* Ticket is closed. Open a new ticket instead.
|
|
980
1934
|
*/
|
|
981
|
-
|
|
1935
|
+
409: unknown;
|
|
982
1936
|
};
|
|
983
|
-
export type
|
|
1937
|
+
export type ReplyTicketResponses = {
|
|
984
1938
|
/**
|
|
985
|
-
*
|
|
1939
|
+
* Reply appended.
|
|
986
1940
|
*/
|
|
987
|
-
200:
|
|
1941
|
+
200: TicketMessage;
|
|
988
1942
|
};
|
|
989
|
-
export type
|
|
990
|
-
export type
|
|
1943
|
+
export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
|
|
1944
|
+
export type GetTicketAttachmentData = {
|
|
991
1945
|
body?: never;
|
|
992
|
-
path
|
|
1946
|
+
path: {
|
|
1947
|
+
ticket_id: string;
|
|
1948
|
+
attachment_id: string;
|
|
1949
|
+
};
|
|
993
1950
|
query?: never;
|
|
994
|
-
url: '/
|
|
1951
|
+
url: '/tickets/{ticket_id}/attachments/{attachment_id}';
|
|
995
1952
|
};
|
|
996
|
-
export type
|
|
1953
|
+
export type GetTicketAttachmentResponses = {
|
|
997
1954
|
/**
|
|
998
|
-
*
|
|
1955
|
+
* Attachment binary stream.
|
|
999
1956
|
*/
|
|
1000
|
-
200:
|
|
1957
|
+
200: Blob | File;
|
|
1001
1958
|
};
|
|
1002
|
-
export type
|
|
1003
|
-
export type
|
|
1959
|
+
export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
|
|
1960
|
+
export type ListRepositoriesData = {
|
|
1004
1961
|
body?: never;
|
|
1005
1962
|
path?: never;
|
|
1006
1963
|
query?: never;
|
|
1007
|
-
url: '/
|
|
1964
|
+
url: '/registry';
|
|
1008
1965
|
};
|
|
1009
|
-
export type
|
|
1966
|
+
export type ListRepositoriesErrors = {
|
|
1010
1967
|
/**
|
|
1011
|
-
*
|
|
1968
|
+
* Not authenticated
|
|
1012
1969
|
*/
|
|
1013
|
-
|
|
1970
|
+
401: unknown;
|
|
1971
|
+
/**
|
|
1972
|
+
* Internal server error
|
|
1973
|
+
*/
|
|
1974
|
+
500: unknown;
|
|
1014
1975
|
};
|
|
1015
|
-
export type
|
|
1976
|
+
export type ListRepositoriesResponses = {
|
|
1016
1977
|
/**
|
|
1017
|
-
*
|
|
1978
|
+
* List of repositories
|
|
1018
1979
|
*/
|
|
1019
|
-
200:
|
|
1980
|
+
200: Array<RegistryRepository>;
|
|
1020
1981
|
};
|
|
1021
|
-
export type
|
|
1022
|
-
export type
|
|
1982
|
+
export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
|
|
1983
|
+
export type ListTagsData = {
|
|
1023
1984
|
body?: never;
|
|
1024
|
-
path
|
|
1985
|
+
path: {
|
|
1986
|
+
/**
|
|
1987
|
+
* Region where the repository is located
|
|
1988
|
+
*/
|
|
1989
|
+
region: string;
|
|
1990
|
+
/**
|
|
1991
|
+
* Name of the repository
|
|
1992
|
+
*/
|
|
1993
|
+
repository: string;
|
|
1994
|
+
};
|
|
1025
1995
|
query?: never;
|
|
1026
|
-
url: '/
|
|
1996
|
+
url: '/registry/{region}/{repository}';
|
|
1027
1997
|
};
|
|
1028
|
-
export type
|
|
1998
|
+
export type ListTagsErrors = {
|
|
1029
1999
|
/**
|
|
1030
|
-
*
|
|
1031
|
-
*
|
|
2000
|
+
* Not authenticated
|
|
1032
2001
|
*/
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
2002
|
+
401: unknown;
|
|
2003
|
+
/**
|
|
2004
|
+
* Repository not found
|
|
2005
|
+
*/
|
|
2006
|
+
404: unknown;
|
|
2007
|
+
/**
|
|
2008
|
+
* Internal server error
|
|
2009
|
+
*/
|
|
2010
|
+
500: unknown;
|
|
1039
2011
|
};
|
|
1040
|
-
export type
|
|
1041
|
-
|
|
2012
|
+
export type ListTagsResponses = {
|
|
2013
|
+
/**
|
|
2014
|
+
* Repository with tags
|
|
2015
|
+
*/
|
|
2016
|
+
200: RegistryRepositoryWithTags;
|
|
2017
|
+
};
|
|
2018
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
2019
|
+
export type DeleteTagData = {
|
|
1042
2020
|
body?: never;
|
|
1043
|
-
path
|
|
1044
|
-
|
|
2021
|
+
path: {
|
|
2022
|
+
/**
|
|
2023
|
+
* Region where the repository is located
|
|
2024
|
+
*/
|
|
2025
|
+
region: string;
|
|
1045
2026
|
/**
|
|
1046
|
-
*
|
|
2027
|
+
* Name of the repository
|
|
1047
2028
|
*/
|
|
1048
|
-
|
|
2029
|
+
repository: string;
|
|
1049
2030
|
/**
|
|
1050
|
-
*
|
|
2031
|
+
* Name of the tag
|
|
1051
2032
|
*/
|
|
1052
|
-
|
|
2033
|
+
tag: string;
|
|
1053
2034
|
};
|
|
1054
|
-
|
|
2035
|
+
query?: never;
|
|
2036
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1055
2037
|
};
|
|
1056
|
-
export type
|
|
2038
|
+
export type DeleteTagErrors = {
|
|
1057
2039
|
/**
|
|
1058
2040
|
* Not authenticated
|
|
1059
2041
|
*/
|
|
1060
2042
|
401: unknown;
|
|
2043
|
+
/**
|
|
2044
|
+
* Tag not found
|
|
2045
|
+
*/
|
|
2046
|
+
404: unknown;
|
|
2047
|
+
/**
|
|
2048
|
+
* Internal server error
|
|
2049
|
+
*/
|
|
2050
|
+
500: unknown;
|
|
1061
2051
|
};
|
|
1062
|
-
export type
|
|
2052
|
+
export type DeleteTagResponses = {
|
|
1063
2053
|
/**
|
|
1064
|
-
*
|
|
2054
|
+
* Tag successfully deleted
|
|
1065
2055
|
*/
|
|
1066
|
-
200:
|
|
2056
|
+
200: unknown;
|
|
1067
2057
|
};
|
|
1068
|
-
export type
|
|
1069
|
-
export type GetInvoiceData = {
|
|
2058
|
+
export type GetTagData = {
|
|
1070
2059
|
body?: never;
|
|
1071
2060
|
path: {
|
|
1072
2061
|
/**
|
|
1073
|
-
*
|
|
2062
|
+
* Region where the repository is located
|
|
1074
2063
|
*/
|
|
1075
|
-
|
|
2064
|
+
region: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* Name of the repository
|
|
2067
|
+
*/
|
|
2068
|
+
repository: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* Name of the tag
|
|
2071
|
+
*/
|
|
2072
|
+
tag: string;
|
|
1076
2073
|
};
|
|
1077
2074
|
query?: never;
|
|
1078
|
-
url: '/
|
|
2075
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1079
2076
|
};
|
|
1080
|
-
export type
|
|
2077
|
+
export type GetTagErrors = {
|
|
1081
2078
|
/**
|
|
1082
|
-
*
|
|
2079
|
+
* Not authenticated
|
|
1083
2080
|
*/
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
2081
|
+
401: unknown;
|
|
2082
|
+
/**
|
|
2083
|
+
* Tag not found
|
|
2084
|
+
*/
|
|
2085
|
+
404: unknown;
|
|
2086
|
+
/**
|
|
2087
|
+
* Internal server error
|
|
2088
|
+
*/
|
|
2089
|
+
500: unknown;
|
|
1087
2090
|
};
|
|
1088
|
-
export type
|
|
1089
|
-
|
|
2091
|
+
export type GetTagResponses = {
|
|
2092
|
+
/**
|
|
2093
|
+
* Tag details
|
|
2094
|
+
*/
|
|
2095
|
+
200: RegistryTag;
|
|
2096
|
+
};
|
|
2097
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
2098
|
+
export type GetOrganizationData = {
|
|
1090
2099
|
body?: never;
|
|
1091
2100
|
path?: never;
|
|
1092
2101
|
query?: never;
|
|
1093
|
-
url: '/
|
|
2102
|
+
url: '/organization';
|
|
1094
2103
|
};
|
|
1095
|
-
export type
|
|
2104
|
+
export type GetOrganizationResponses = {
|
|
1096
2105
|
/**
|
|
1097
|
-
* Returns a single object containing organization
|
|
2106
|
+
* Returns a single object containing organization details.
|
|
1098
2107
|
*/
|
|
1099
|
-
200:
|
|
2108
|
+
200: Organization;
|
|
1100
2109
|
};
|
|
1101
|
-
export type
|
|
1102
|
-
export type
|
|
1103
|
-
body:
|
|
2110
|
+
export type GetOrganizationResponse = GetOrganizationResponses[keyof GetOrganizationResponses];
|
|
2111
|
+
export type CreateOrganizationData = {
|
|
2112
|
+
body: OrganizationCreateInput;
|
|
1104
2113
|
path?: never;
|
|
1105
2114
|
query?: never;
|
|
1106
|
-
url: '/
|
|
2115
|
+
url: '/organization';
|
|
1107
2116
|
};
|
|
1108
|
-
export type
|
|
2117
|
+
export type CreateOrganizationResponses = {
|
|
1109
2118
|
/**
|
|
1110
|
-
*
|
|
2119
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2120
|
+
*
|
|
1111
2121
|
*/
|
|
1112
|
-
200:
|
|
2122
|
+
200: OrganizationCreateOutput;
|
|
1113
2123
|
};
|
|
1114
|
-
export type
|
|
1115
|
-
export type
|
|
1116
|
-
|
|
2124
|
+
export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
|
|
2125
|
+
export type PostMcpData = {
|
|
2126
|
+
/**
|
|
2127
|
+
* JSON-RPC 2.0 request payload
|
|
2128
|
+
*/
|
|
2129
|
+
body: {
|
|
2130
|
+
jsonrpc?: string;
|
|
2131
|
+
method?: string;
|
|
2132
|
+
id?: string | number;
|
|
2133
|
+
/**
|
|
2134
|
+
* Method-specific parameters
|
|
2135
|
+
*/
|
|
2136
|
+
params?: {
|
|
2137
|
+
[key: string]: unknown;
|
|
2138
|
+
};
|
|
2139
|
+
};
|
|
1117
2140
|
path?: never;
|
|
1118
2141
|
query?: never;
|
|
1119
|
-
url: '/
|
|
2142
|
+
url: '/mcp';
|
|
1120
2143
|
};
|
|
1121
|
-
export type
|
|
2144
|
+
export type PostMcpErrors = {
|
|
1122
2145
|
/**
|
|
1123
2146
|
* Not authenticated
|
|
1124
2147
|
*/
|
|
1125
2148
|
401: unknown;
|
|
1126
2149
|
};
|
|
1127
|
-
export type
|
|
2150
|
+
export type PostMcpResponses = {
|
|
1128
2151
|
/**
|
|
1129
|
-
*
|
|
2152
|
+
* JSON-RPC 2.0 success or error response
|
|
1130
2153
|
*/
|
|
1131
|
-
200:
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
2154
|
+
200: {
|
|
2155
|
+
jsonrpc?: string;
|
|
2156
|
+
id?: string | number;
|
|
2157
|
+
result?: {
|
|
2158
|
+
[key: string]: unknown;
|
|
2159
|
+
};
|
|
2160
|
+
error?: {
|
|
2161
|
+
code?: number;
|
|
2162
|
+
message?: string;
|
|
2163
|
+
};
|
|
1140
2164
|
};
|
|
2165
|
+
};
|
|
2166
|
+
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
2167
|
+
export type ListMarketplaceChartsData = {
|
|
2168
|
+
body?: never;
|
|
1141
2169
|
path?: never;
|
|
1142
2170
|
query?: never;
|
|
1143
|
-
url: '/
|
|
2171
|
+
url: '/marketplace';
|
|
1144
2172
|
};
|
|
1145
|
-
export type
|
|
2173
|
+
export type ListMarketplaceChartsErrors = {
|
|
1146
2174
|
/**
|
|
1147
2175
|
* Not authenticated
|
|
1148
2176
|
*/
|
|
1149
2177
|
401: unknown;
|
|
1150
2178
|
};
|
|
1151
|
-
export type
|
|
2179
|
+
export type ListMarketplaceChartsResponses = {
|
|
1152
2180
|
/**
|
|
1153
|
-
*
|
|
2181
|
+
* An array of chart listings in the marketplace.
|
|
1154
2182
|
*/
|
|
1155
|
-
200:
|
|
2183
|
+
200: Array<MarketplaceListing>;
|
|
1156
2184
|
};
|
|
1157
|
-
export type
|
|
2185
|
+
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
2186
|
+
export type GetMarketplaceChartFilesData = {
|
|
1158
2187
|
body?: never;
|
|
1159
2188
|
path: {
|
|
1160
2189
|
/**
|
|
1161
|
-
*
|
|
2190
|
+
* Name of the chart in the marketplace.
|
|
1162
2191
|
*/
|
|
1163
|
-
|
|
2192
|
+
chart_name: string;
|
|
2193
|
+
/**
|
|
2194
|
+
* Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
|
|
2195
|
+
*/
|
|
2196
|
+
version_channel: string;
|
|
1164
2197
|
};
|
|
1165
2198
|
query?: never;
|
|
1166
|
-
url: '/
|
|
2199
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
1167
2200
|
};
|
|
1168
|
-
export type
|
|
2201
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
2202
|
+
/**
|
|
2203
|
+
* Chart not found or no version matches the channel
|
|
2204
|
+
*/
|
|
2205
|
+
404: unknown;
|
|
2206
|
+
};
|
|
2207
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
2208
|
+
/**
|
|
2209
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2210
|
+
*/
|
|
2211
|
+
200: MarketplaceListingFiles;
|
|
2212
|
+
};
|
|
2213
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
2214
|
+
export type ListInvitesData = {
|
|
2215
|
+
body?: never;
|
|
2216
|
+
path?: never;
|
|
2217
|
+
query?: never;
|
|
2218
|
+
url: '/invites';
|
|
2219
|
+
};
|
|
2220
|
+
export type ListInvitesErrors = {
|
|
1169
2221
|
/**
|
|
1170
2222
|
* Not authenticated
|
|
1171
2223
|
*/
|
|
1172
2224
|
401: unknown;
|
|
1173
2225
|
};
|
|
1174
|
-
export type
|
|
2226
|
+
export type ListInvitesResponses = {
|
|
1175
2227
|
/**
|
|
1176
|
-
* An array of
|
|
2228
|
+
* An array of invites
|
|
1177
2229
|
*/
|
|
1178
|
-
200: Array<
|
|
2230
|
+
200: Array<Invite>;
|
|
1179
2231
|
};
|
|
1180
|
-
export type
|
|
1181
|
-
export type
|
|
1182
|
-
body:
|
|
1183
|
-
path
|
|
1184
|
-
/**
|
|
1185
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1186
|
-
*/
|
|
1187
|
-
cluster_id: string;
|
|
1188
|
-
};
|
|
2232
|
+
export type ListInvitesResponse = ListInvitesResponses[keyof ListInvitesResponses];
|
|
2233
|
+
export type CreateInviteData = {
|
|
2234
|
+
body: InviteCreateInput;
|
|
2235
|
+
path?: never;
|
|
1189
2236
|
query?: never;
|
|
1190
|
-
url: '/
|
|
2237
|
+
url: '/invites';
|
|
1191
2238
|
};
|
|
1192
|
-
export type
|
|
2239
|
+
export type CreateInviteResponses = {
|
|
1193
2240
|
/**
|
|
1194
|
-
* Successfully created. Returns created
|
|
2241
|
+
* Successfully created. Returns created invite details.
|
|
1195
2242
|
*/
|
|
1196
|
-
200:
|
|
2243
|
+
200: Invite;
|
|
1197
2244
|
};
|
|
1198
|
-
export type
|
|
1199
|
-
export type
|
|
2245
|
+
export type CreateInviteResponse = CreateInviteResponses[keyof CreateInviteResponses];
|
|
2246
|
+
export type GetInviteData = {
|
|
1200
2247
|
body?: never;
|
|
1201
2248
|
path: {
|
|
1202
2249
|
/**
|
|
1203
|
-
*
|
|
1204
|
-
*/
|
|
1205
|
-
cluster_id: string;
|
|
1206
|
-
/**
|
|
1207
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
2250
|
+
* Invitation code
|
|
1208
2251
|
*/
|
|
1209
|
-
|
|
2252
|
+
code: string;
|
|
1210
2253
|
};
|
|
1211
2254
|
query?: never;
|
|
1212
|
-
url: '/
|
|
2255
|
+
url: '/invites/{code}';
|
|
1213
2256
|
};
|
|
1214
|
-
export type
|
|
2257
|
+
export type GetInviteResponses = {
|
|
1215
2258
|
/**
|
|
1216
|
-
*
|
|
2259
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
1217
2260
|
*/
|
|
1218
|
-
200:
|
|
2261
|
+
200: {
|
|
2262
|
+
/**
|
|
2263
|
+
* Email address the invite was issued to.
|
|
2264
|
+
*/
|
|
2265
|
+
email?: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* Identifier of the organization the invite grants access to.
|
|
2268
|
+
*/
|
|
2269
|
+
organization_id?: string;
|
|
2270
|
+
};
|
|
1219
2271
|
};
|
|
1220
|
-
export type
|
|
1221
|
-
export type
|
|
2272
|
+
export type GetInviteResponse = GetInviteResponses[keyof GetInviteResponses];
|
|
2273
|
+
export type DeleteInviteData = {
|
|
1222
2274
|
body?: never;
|
|
1223
2275
|
path: {
|
|
1224
2276
|
/**
|
|
1225
|
-
*
|
|
1226
|
-
*/
|
|
1227
|
-
cluster_id: string;
|
|
1228
|
-
/**
|
|
1229
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
2277
|
+
* User email address
|
|
1230
2278
|
*/
|
|
1231
|
-
|
|
2279
|
+
email: string;
|
|
1232
2280
|
};
|
|
1233
2281
|
query?: never;
|
|
1234
|
-
url: '/
|
|
2282
|
+
url: '/invites/{email}';
|
|
1235
2283
|
};
|
|
1236
|
-
export type
|
|
2284
|
+
export type DeleteInviteResponses = {
|
|
1237
2285
|
/**
|
|
1238
|
-
*
|
|
2286
|
+
* Successfully deleted.
|
|
1239
2287
|
*/
|
|
1240
|
-
200:
|
|
2288
|
+
200: unknown;
|
|
1241
2289
|
};
|
|
1242
|
-
export type
|
|
1243
|
-
|
|
1244
|
-
body: ChartUpdateInput;
|
|
2290
|
+
export type QueryClusterData = {
|
|
2291
|
+
body?: never;
|
|
1245
2292
|
path: {
|
|
1246
2293
|
/**
|
|
1247
2294
|
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1248
2295
|
*/
|
|
1249
2296
|
cluster_id: string;
|
|
1250
|
-
/**
|
|
1251
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
1252
|
-
*/
|
|
1253
|
-
chart_name: string;
|
|
1254
2297
|
};
|
|
1255
2298
|
query?: never;
|
|
1256
|
-
url: '/clusters/{cluster_id}/
|
|
2299
|
+
url: '/clusters/{cluster_id}/query';
|
|
1257
2300
|
};
|
|
1258
|
-
export type
|
|
2301
|
+
export type QueryClusterErrors = {
|
|
1259
2302
|
/**
|
|
1260
|
-
*
|
|
2303
|
+
* Not authenticated
|
|
1261
2304
|
*/
|
|
1262
|
-
|
|
2305
|
+
401: unknown;
|
|
2306
|
+
};
|
|
2307
|
+
export type QueryClusterResponses = {
|
|
2308
|
+
/**
|
|
2309
|
+
* Kubernetes API response
|
|
2310
|
+
*/
|
|
2311
|
+
200: unknown;
|
|
1263
2312
|
};
|
|
1264
|
-
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
1265
2313
|
export type ListFleetsData = {
|
|
1266
2314
|
body?: never;
|
|
1267
2315
|
path: {
|
|
@@ -1302,6 +2350,10 @@ export type CreateFleetErrors = {
|
|
|
1302
2350
|
* Cluster quota exceeded. Maximum number of fleets per cluster allowed in this organization is reached.
|
|
1303
2351
|
*/
|
|
1304
2352
|
402: string;
|
|
2353
|
+
/**
|
|
2354
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
2355
|
+
*/
|
|
2356
|
+
409: string;
|
|
1305
2357
|
};
|
|
1306
2358
|
export type CreateFleetError = CreateFleetErrors[keyof CreateFleetErrors];
|
|
1307
2359
|
export type CreateFleetResponses = {
|
|
@@ -1326,6 +2378,13 @@ export type DeleteFleetData = {
|
|
|
1326
2378
|
query?: never;
|
|
1327
2379
|
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
1328
2380
|
};
|
|
2381
|
+
export type DeleteFleetErrors = {
|
|
2382
|
+
/**
|
|
2383
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
2384
|
+
*/
|
|
2385
|
+
409: string;
|
|
2386
|
+
};
|
|
2387
|
+
export type DeleteFleetError = DeleteFleetErrors[keyof DeleteFleetErrors];
|
|
1329
2388
|
export type DeleteFleetResponses = {
|
|
1330
2389
|
/**
|
|
1331
2390
|
* Successfully deleted.
|
|
@@ -1375,6 +2434,10 @@ export type UpdateFleetErrors = {
|
|
|
1375
2434
|
* Organization must have a valid payment method configured to access this endpoint.
|
|
1376
2435
|
*/
|
|
1377
2436
|
402: string;
|
|
2437
|
+
/**
|
|
2438
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
2439
|
+
*/
|
|
2440
|
+
409: string;
|
|
1378
2441
|
};
|
|
1379
2442
|
export type UpdateFleetError = UpdateFleetErrors[keyof UpdateFleetErrors];
|
|
1380
2443
|
export type UpdateFleetResponses = {
|
|
@@ -1384,7 +2447,7 @@ export type UpdateFleetResponses = {
|
|
|
1384
2447
|
200: string;
|
|
1385
2448
|
};
|
|
1386
2449
|
export type UpdateFleetResponse = UpdateFleetResponses[keyof UpdateFleetResponses];
|
|
1387
|
-
export type
|
|
2450
|
+
export type ListChartsData = {
|
|
1388
2451
|
body?: never;
|
|
1389
2452
|
path: {
|
|
1390
2453
|
/**
|
|
@@ -1393,528 +2456,485 @@ export type QueryClusterData = {
|
|
|
1393
2456
|
cluster_id: string;
|
|
1394
2457
|
};
|
|
1395
2458
|
query?: never;
|
|
1396
|
-
url: '/clusters/{cluster_id}/
|
|
1397
|
-
};
|
|
1398
|
-
export type QueryClusterErrors = {
|
|
1399
|
-
/**
|
|
1400
|
-
* Not authenticated
|
|
1401
|
-
*/
|
|
1402
|
-
401: unknown;
|
|
1403
|
-
};
|
|
1404
|
-
export type QueryClusterResponses = {
|
|
1405
|
-
/**
|
|
1406
|
-
* Kubernetes API response
|
|
1407
|
-
*/
|
|
1408
|
-
200: unknown;
|
|
1409
|
-
};
|
|
1410
|
-
export type ListClustersData = {
|
|
1411
|
-
body?: never;
|
|
1412
|
-
path?: never;
|
|
1413
|
-
query?: never;
|
|
1414
|
-
url: '/clusters';
|
|
2459
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1415
2460
|
};
|
|
1416
|
-
export type
|
|
2461
|
+
export type ListChartsErrors = {
|
|
1417
2462
|
/**
|
|
1418
2463
|
* Not authenticated
|
|
1419
2464
|
*/
|
|
1420
2465
|
401: unknown;
|
|
1421
2466
|
};
|
|
1422
|
-
export type
|
|
2467
|
+
export type ListChartsResponses = {
|
|
1423
2468
|
/**
|
|
1424
|
-
* An array of
|
|
2469
|
+
* An array of charts
|
|
1425
2470
|
*/
|
|
1426
|
-
200: Array<
|
|
2471
|
+
200: Array<Chart>;
|
|
1427
2472
|
};
|
|
1428
|
-
export type
|
|
1429
|
-
export type
|
|
1430
|
-
body:
|
|
1431
|
-
path
|
|
2473
|
+
export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
|
|
2474
|
+
export type CreateChartData = {
|
|
2475
|
+
body: ChartCreateInput;
|
|
2476
|
+
path: {
|
|
2477
|
+
/**
|
|
2478
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2479
|
+
*/
|
|
2480
|
+
cluster_id: string;
|
|
2481
|
+
};
|
|
1432
2482
|
query?: never;
|
|
1433
|
-
url: '/clusters';
|
|
2483
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1434
2484
|
};
|
|
1435
|
-
export type
|
|
2485
|
+
export type CreateChartErrors = {
|
|
1436
2486
|
/**
|
|
1437
|
-
*
|
|
2487
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
1438
2488
|
*/
|
|
1439
|
-
|
|
2489
|
+
409: string;
|
|
1440
2490
|
};
|
|
1441
|
-
export type
|
|
1442
|
-
export type
|
|
2491
|
+
export type CreateChartError = CreateChartErrors[keyof CreateChartErrors];
|
|
2492
|
+
export type CreateChartResponses = {
|
|
1443
2493
|
/**
|
|
1444
|
-
* Successfully created. Returns created
|
|
2494
|
+
* Successfully created. Returns created Chart ID.
|
|
1445
2495
|
*/
|
|
1446
2496
|
200: string;
|
|
1447
2497
|
};
|
|
1448
|
-
export type
|
|
1449
|
-
export type
|
|
2498
|
+
export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
|
|
2499
|
+
export type DeleteChartData = {
|
|
1450
2500
|
body?: never;
|
|
1451
2501
|
path: {
|
|
1452
2502
|
/**
|
|
1453
2503
|
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1454
2504
|
*/
|
|
1455
2505
|
cluster_id: string;
|
|
2506
|
+
/**
|
|
2507
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2508
|
+
*/
|
|
2509
|
+
chart_name: string;
|
|
1456
2510
|
};
|
|
1457
2511
|
query?: never;
|
|
1458
|
-
url: '/clusters/{cluster_id}';
|
|
2512
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1459
2513
|
};
|
|
1460
|
-
export type
|
|
2514
|
+
export type DeleteChartErrors = {
|
|
2515
|
+
/**
|
|
2516
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
2517
|
+
*/
|
|
2518
|
+
409: string;
|
|
2519
|
+
};
|
|
2520
|
+
export type DeleteChartError = DeleteChartErrors[keyof DeleteChartErrors];
|
|
2521
|
+
export type DeleteChartResponses = {
|
|
1461
2522
|
/**
|
|
1462
2523
|
* Successfully deleted.
|
|
1463
2524
|
*/
|
|
1464
2525
|
200: string;
|
|
1465
2526
|
};
|
|
1466
|
-
export type
|
|
1467
|
-
export type
|
|
2527
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
2528
|
+
export type GetChartData = {
|
|
1468
2529
|
body?: never;
|
|
1469
2530
|
path: {
|
|
1470
2531
|
/**
|
|
1471
2532
|
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1472
2533
|
*/
|
|
1473
2534
|
cluster_id: string;
|
|
1474
|
-
};
|
|
1475
|
-
query?: never;
|
|
1476
|
-
url: '/clusters/{cluster_id}';
|
|
1477
|
-
};
|
|
1478
|
-
export type GetClusterResponses = {
|
|
1479
|
-
/**
|
|
1480
|
-
* Returns a single object containing cluster details.
|
|
1481
|
-
*/
|
|
1482
|
-
200: Cluster;
|
|
1483
|
-
};
|
|
1484
|
-
export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
|
|
1485
|
-
export type UpdateClusterData = {
|
|
1486
|
-
body: ClusterUpdateInput;
|
|
1487
|
-
path: {
|
|
1488
2535
|
/**
|
|
1489
|
-
*
|
|
2536
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1490
2537
|
*/
|
|
1491
|
-
|
|
2538
|
+
chart_name: string;
|
|
1492
2539
|
};
|
|
1493
2540
|
query?: never;
|
|
1494
|
-
url: '/clusters/{cluster_id}';
|
|
2541
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1495
2542
|
};
|
|
1496
|
-
export type
|
|
2543
|
+
export type GetChartResponses = {
|
|
1497
2544
|
/**
|
|
1498
|
-
*
|
|
2545
|
+
* Returns a single object containing chart details.
|
|
1499
2546
|
*/
|
|
1500
|
-
200:
|
|
2547
|
+
200: Chart;
|
|
1501
2548
|
};
|
|
1502
|
-
export type
|
|
1503
|
-
export type
|
|
1504
|
-
body
|
|
2549
|
+
export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
|
|
2550
|
+
export type UpdateChartData = {
|
|
2551
|
+
body: ChartUpdateInput;
|
|
1505
2552
|
path: {
|
|
1506
2553
|
/**
|
|
1507
2554
|
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1508
2555
|
*/
|
|
1509
2556
|
cluster_id: string;
|
|
2557
|
+
/**
|
|
2558
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2559
|
+
*/
|
|
2560
|
+
chart_name: string;
|
|
1510
2561
|
};
|
|
1511
2562
|
query?: never;
|
|
1512
|
-
url: '/clusters/{cluster_id}/
|
|
2563
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1513
2564
|
};
|
|
1514
|
-
export type
|
|
2565
|
+
export type UpdateChartErrors = {
|
|
1515
2566
|
/**
|
|
1516
|
-
*
|
|
2567
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
1517
2568
|
*/
|
|
1518
|
-
|
|
2569
|
+
409: string;
|
|
1519
2570
|
};
|
|
1520
|
-
export type
|
|
2571
|
+
export type UpdateChartError = UpdateChartErrors[keyof UpdateChartErrors];
|
|
2572
|
+
export type UpdateChartResponses = {
|
|
1521
2573
|
/**
|
|
1522
|
-
*
|
|
2574
|
+
* Successfully updated.
|
|
1523
2575
|
*/
|
|
1524
|
-
200:
|
|
2576
|
+
200: string;
|
|
1525
2577
|
};
|
|
1526
|
-
export type
|
|
1527
|
-
export type
|
|
2578
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
2579
|
+
export type ListClustersData = {
|
|
1528
2580
|
body?: never;
|
|
1529
2581
|
path?: never;
|
|
1530
2582
|
query?: never;
|
|
1531
|
-
url: '/
|
|
2583
|
+
url: '/clusters';
|
|
1532
2584
|
};
|
|
1533
|
-
export type
|
|
2585
|
+
export type ListClustersErrors = {
|
|
1534
2586
|
/**
|
|
1535
2587
|
* Not authenticated
|
|
1536
2588
|
*/
|
|
1537
2589
|
401: unknown;
|
|
1538
2590
|
};
|
|
1539
|
-
export type
|
|
2591
|
+
export type ListClustersResponses = {
|
|
1540
2592
|
/**
|
|
1541
|
-
* An array of
|
|
2593
|
+
* An array of clusters
|
|
1542
2594
|
*/
|
|
1543
|
-
200: Array<
|
|
2595
|
+
200: Array<Cluster>;
|
|
1544
2596
|
};
|
|
1545
|
-
export type
|
|
1546
|
-
export type
|
|
1547
|
-
body:
|
|
1548
|
-
/**
|
|
1549
|
-
* User email address
|
|
1550
|
-
*/
|
|
1551
|
-
email?: string;
|
|
1552
|
-
};
|
|
2597
|
+
export type ListClustersResponse = ListClustersResponses[keyof ListClustersResponses];
|
|
2598
|
+
export type CreateClusterData = {
|
|
2599
|
+
body: ClusterCreateInput;
|
|
1553
2600
|
path?: never;
|
|
1554
2601
|
query?: never;
|
|
1555
|
-
url: '/
|
|
2602
|
+
url: '/clusters';
|
|
1556
2603
|
};
|
|
1557
|
-
export type
|
|
2604
|
+
export type CreateClusterErrors = {
|
|
1558
2605
|
/**
|
|
1559
|
-
*
|
|
2606
|
+
* Cluster quota exceeded. Maximum number of clusters allowed in this organization is reached.
|
|
1560
2607
|
*/
|
|
1561
|
-
|
|
1562
|
-
};
|
|
1563
|
-
export type CreateInviteResponse = CreateInviteResponses[keyof CreateInviteResponses];
|
|
1564
|
-
export type GetInviteData = {
|
|
1565
|
-
body?: never;
|
|
1566
|
-
path: {
|
|
1567
|
-
/**
|
|
1568
|
-
* Invitation code
|
|
1569
|
-
*/
|
|
1570
|
-
code: string;
|
|
1571
|
-
};
|
|
1572
|
-
query?: never;
|
|
1573
|
-
url: '/invites/{code}';
|
|
2608
|
+
402: string;
|
|
1574
2609
|
};
|
|
1575
|
-
export type
|
|
2610
|
+
export type CreateClusterError = CreateClusterErrors[keyof CreateClusterErrors];
|
|
2611
|
+
export type CreateClusterResponses = {
|
|
1576
2612
|
/**
|
|
1577
|
-
*
|
|
2613
|
+
* Successfully created. Returns created Cluster ID.
|
|
1578
2614
|
*/
|
|
1579
|
-
200:
|
|
2615
|
+
200: string;
|
|
1580
2616
|
};
|
|
1581
|
-
export type
|
|
1582
|
-
export type
|
|
2617
|
+
export type CreateClusterResponse = CreateClusterResponses[keyof CreateClusterResponses];
|
|
2618
|
+
export type DeleteClusterData = {
|
|
1583
2619
|
body?: never;
|
|
1584
2620
|
path: {
|
|
1585
2621
|
/**
|
|
1586
|
-
*
|
|
2622
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1587
2623
|
*/
|
|
1588
|
-
|
|
2624
|
+
cluster_id: string;
|
|
1589
2625
|
};
|
|
1590
2626
|
query?: never;
|
|
1591
|
-
url: '/
|
|
2627
|
+
url: '/clusters/{cluster_id}';
|
|
1592
2628
|
};
|
|
1593
|
-
export type
|
|
2629
|
+
export type DeleteClusterErrors = {
|
|
1594
2630
|
/**
|
|
1595
|
-
*
|
|
2631
|
+
* Cluster not found; it does not exist or has already been deleted.
|
|
1596
2632
|
*/
|
|
1597
|
-
|
|
1598
|
-
};
|
|
1599
|
-
export type ListMarketplaceChartsData = {
|
|
1600
|
-
body?: never;
|
|
1601
|
-
path?: never;
|
|
1602
|
-
query?: never;
|
|
1603
|
-
url: '/marketplace';
|
|
1604
|
-
};
|
|
1605
|
-
export type ListMarketplaceChartsErrors = {
|
|
2633
|
+
404: unknown;
|
|
1606
2634
|
/**
|
|
1607
|
-
*
|
|
2635
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
1608
2636
|
*/
|
|
1609
|
-
|
|
2637
|
+
409: string;
|
|
2638
|
+
/**
|
|
2639
|
+
* Transient failure tearing down the cluster; retry the request.
|
|
2640
|
+
*/
|
|
2641
|
+
503: unknown;
|
|
1610
2642
|
};
|
|
1611
|
-
export type
|
|
2643
|
+
export type DeleteClusterError = DeleteClusterErrors[keyof DeleteClusterErrors];
|
|
2644
|
+
export type DeleteClusterResponses = {
|
|
1612
2645
|
/**
|
|
1613
|
-
*
|
|
2646
|
+
* Successfully deleted. The cluster has been torn down.
|
|
1614
2647
|
*/
|
|
1615
|
-
200:
|
|
2648
|
+
200: string;
|
|
1616
2649
|
};
|
|
1617
|
-
export type
|
|
1618
|
-
export type
|
|
2650
|
+
export type DeleteClusterResponse = DeleteClusterResponses[keyof DeleteClusterResponses];
|
|
2651
|
+
export type GetClusterData = {
|
|
1619
2652
|
body?: never;
|
|
1620
2653
|
path: {
|
|
1621
2654
|
/**
|
|
1622
|
-
* Unique identifier of the
|
|
2655
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1623
2656
|
*/
|
|
1624
|
-
|
|
2657
|
+
cluster_id: string;
|
|
1625
2658
|
};
|
|
1626
2659
|
query?: never;
|
|
1627
|
-
url: '/
|
|
2660
|
+
url: '/clusters/{cluster_id}';
|
|
1628
2661
|
};
|
|
1629
|
-
export type
|
|
2662
|
+
export type GetClusterResponses = {
|
|
1630
2663
|
/**
|
|
1631
|
-
* Returns
|
|
2664
|
+
* Returns a single object containing cluster details.
|
|
1632
2665
|
*/
|
|
1633
|
-
200:
|
|
2666
|
+
200: Cluster;
|
|
1634
2667
|
};
|
|
1635
|
-
export type
|
|
1636
|
-
export type
|
|
1637
|
-
body
|
|
1638
|
-
path
|
|
2668
|
+
export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
|
|
2669
|
+
export type UpdateClusterData = {
|
|
2670
|
+
body: ClusterUpdateInput;
|
|
2671
|
+
path: {
|
|
2672
|
+
/**
|
|
2673
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2674
|
+
*/
|
|
2675
|
+
cluster_id: string;
|
|
2676
|
+
};
|
|
1639
2677
|
query?: never;
|
|
1640
|
-
url: '/
|
|
2678
|
+
url: '/clusters/{cluster_id}';
|
|
1641
2679
|
};
|
|
1642
|
-
export type
|
|
2680
|
+
export type UpdateClusterErrors = {
|
|
1643
2681
|
/**
|
|
1644
|
-
*
|
|
2682
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
1645
2683
|
*/
|
|
1646
|
-
|
|
1647
|
-
};
|
|
1648
|
-
export type GetOrganizationResponse = GetOrganizationResponses[keyof GetOrganizationResponses];
|
|
1649
|
-
export type CreateOrganizationData = {
|
|
1650
|
-
body: OrganizationCreateInput;
|
|
1651
|
-
path?: never;
|
|
1652
|
-
query?: never;
|
|
1653
|
-
url: '/organization';
|
|
2684
|
+
409: string;
|
|
1654
2685
|
};
|
|
1655
|
-
export type
|
|
2686
|
+
export type UpdateClusterError = UpdateClusterErrors[keyof UpdateClusterErrors];
|
|
2687
|
+
export type UpdateClusterResponses = {
|
|
1656
2688
|
/**
|
|
1657
|
-
* Successfully
|
|
2689
|
+
* Successfully updated. Returns updated cluster details.
|
|
1658
2690
|
*/
|
|
1659
|
-
200:
|
|
2691
|
+
200: Cluster;
|
|
1660
2692
|
};
|
|
1661
|
-
export type
|
|
2693
|
+
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
2694
|
+
export type GetJoinInformationData = {
|
|
1662
2695
|
body?: never;
|
|
1663
|
-
path
|
|
2696
|
+
path: {
|
|
2697
|
+
/**
|
|
2698
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2699
|
+
*/
|
|
2700
|
+
cluster_id: string;
|
|
2701
|
+
};
|
|
1664
2702
|
query?: never;
|
|
1665
|
-
url: '/
|
|
2703
|
+
url: '/clusters/{cluster_id}/join_information';
|
|
1666
2704
|
};
|
|
1667
|
-
export type
|
|
2705
|
+
export type GetJoinInformationErrors = {
|
|
1668
2706
|
/**
|
|
1669
2707
|
* Not authenticated
|
|
1670
2708
|
*/
|
|
1671
2709
|
401: unknown;
|
|
2710
|
+
/**
|
|
2711
|
+
* The cluster cannot service this operation: it is still being created, or it is suspended. Retry once it is ready, or resume the cluster first.
|
|
2712
|
+
*/
|
|
2713
|
+
409: string;
|
|
1672
2714
|
};
|
|
1673
|
-
export type
|
|
2715
|
+
export type GetJoinInformationError = GetJoinInformationErrors[keyof GetJoinInformationErrors];
|
|
2716
|
+
export type GetJoinInformationResponses = {
|
|
1674
2717
|
/**
|
|
1675
|
-
*
|
|
2718
|
+
* An object of cluster join information
|
|
1676
2719
|
*/
|
|
1677
|
-
200:
|
|
2720
|
+
200: ClusterJoinInformation;
|
|
1678
2721
|
};
|
|
1679
|
-
export type
|
|
1680
|
-
export type
|
|
1681
|
-
body
|
|
2722
|
+
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
2723
|
+
export type GetUsageData = {
|
|
2724
|
+
body?: never;
|
|
1682
2725
|
path?: never;
|
|
1683
|
-
query?:
|
|
1684
|
-
|
|
2726
|
+
query?: {
|
|
2727
|
+
/**
|
|
2728
|
+
* Time granularity for usage aggregation - hourly (Past 48 hours aggregated by hour), daily (Past 30 days aggregated by day), monthly (Past 12 months aggregated by month)
|
|
2729
|
+
*/
|
|
2730
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
2731
|
+
};
|
|
2732
|
+
url: '/billing/usage';
|
|
1685
2733
|
};
|
|
1686
|
-
export type
|
|
2734
|
+
export type GetUsageErrors = {
|
|
1687
2735
|
/**
|
|
1688
2736
|
* Not authenticated
|
|
1689
2737
|
*/
|
|
1690
2738
|
401: unknown;
|
|
1691
2739
|
};
|
|
1692
|
-
export type
|
|
2740
|
+
export type GetUsageResponses = {
|
|
1693
2741
|
/**
|
|
1694
|
-
*
|
|
2742
|
+
* Usage data with facets for filtering
|
|
1695
2743
|
*/
|
|
1696
|
-
200:
|
|
2744
|
+
200: UsageResponse;
|
|
1697
2745
|
};
|
|
1698
|
-
export type
|
|
1699
|
-
export type
|
|
2746
|
+
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
2747
|
+
export type GetPaymentMethodSecretData = {
|
|
1700
2748
|
body?: never;
|
|
1701
|
-
path
|
|
1702
|
-
/**
|
|
1703
|
-
* Generated unique identifier of the access token.
|
|
1704
|
-
*/
|
|
1705
|
-
token_id: string;
|
|
1706
|
-
};
|
|
2749
|
+
path?: never;
|
|
1707
2750
|
query?: never;
|
|
1708
|
-
url: '/
|
|
2751
|
+
url: '/billing/payment-method';
|
|
1709
2752
|
};
|
|
1710
|
-
export type
|
|
2753
|
+
export type GetPaymentMethodSecretResponses = {
|
|
1711
2754
|
/**
|
|
1712
|
-
*
|
|
2755
|
+
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
2756
|
+
*
|
|
1713
2757
|
*/
|
|
1714
|
-
200:
|
|
1715
|
-
};
|
|
1716
|
-
export type GetTokenData = {
|
|
1717
|
-
body?: never;
|
|
1718
|
-
path: {
|
|
2758
|
+
200: {
|
|
1719
2759
|
/**
|
|
1720
|
-
*
|
|
2760
|
+
* The client secret.
|
|
1721
2761
|
*/
|
|
1722
|
-
|
|
2762
|
+
id?: string;
|
|
1723
2763
|
};
|
|
2764
|
+
};
|
|
2765
|
+
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
2766
|
+
export type ListPaymentMethodsData = {
|
|
2767
|
+
body?: never;
|
|
2768
|
+
path?: never;
|
|
1724
2769
|
query?: never;
|
|
1725
|
-
url: '/
|
|
2770
|
+
url: '/billing/payment-methods';
|
|
1726
2771
|
};
|
|
1727
|
-
export type
|
|
2772
|
+
export type ListPaymentMethodsErrors = {
|
|
1728
2773
|
/**
|
|
1729
2774
|
* Not authenticated
|
|
1730
2775
|
*/
|
|
1731
2776
|
401: unknown;
|
|
1732
2777
|
};
|
|
1733
|
-
export type
|
|
2778
|
+
export type ListPaymentMethodsResponses = {
|
|
1734
2779
|
/**
|
|
1735
|
-
*
|
|
2780
|
+
* An array of payment methods.
|
|
1736
2781
|
*/
|
|
1737
|
-
200:
|
|
2782
|
+
200: Array<PaymentMethod>;
|
|
1738
2783
|
};
|
|
1739
|
-
export type
|
|
1740
|
-
export type
|
|
1741
|
-
body
|
|
2784
|
+
export type ListPaymentMethodsResponse = ListPaymentMethodsResponses[keyof ListPaymentMethodsResponses];
|
|
2785
|
+
export type SetDefaultPaymentMethodData = {
|
|
2786
|
+
body?: never;
|
|
1742
2787
|
path: {
|
|
1743
2788
|
/**
|
|
1744
|
-
*
|
|
2789
|
+
* Stripe payment method identifier.
|
|
1745
2790
|
*/
|
|
1746
|
-
|
|
2791
|
+
paymentMethodId: string;
|
|
1747
2792
|
};
|
|
1748
2793
|
query?: never;
|
|
1749
|
-
url: '/
|
|
2794
|
+
url: '/billing/payment-methods/{paymentMethodId}/default';
|
|
1750
2795
|
};
|
|
1751
|
-
export type
|
|
2796
|
+
export type SetDefaultPaymentMethodErrors = {
|
|
2797
|
+
/**
|
|
2798
|
+
* The bank transfer payment method cannot be set as the default.
|
|
2799
|
+
*/
|
|
2800
|
+
400: unknown;
|
|
1752
2801
|
/**
|
|
1753
2802
|
* Not authenticated
|
|
1754
2803
|
*/
|
|
1755
2804
|
401: unknown;
|
|
2805
|
+
/**
|
|
2806
|
+
* Payment method not found.
|
|
2807
|
+
*/
|
|
2808
|
+
404: unknown;
|
|
1756
2809
|
};
|
|
1757
|
-
export type
|
|
2810
|
+
export type SetDefaultPaymentMethodResponses = {
|
|
1758
2811
|
/**
|
|
1759
|
-
*
|
|
2812
|
+
* Default payment method updated.
|
|
1760
2813
|
*/
|
|
1761
|
-
|
|
2814
|
+
204: void;
|
|
1762
2815
|
};
|
|
1763
|
-
export type
|
|
1764
|
-
export type
|
|
2816
|
+
export type SetDefaultPaymentMethodResponse = SetDefaultPaymentMethodResponses[keyof SetDefaultPaymentMethodResponses];
|
|
2817
|
+
export type DeletePaymentMethodData = {
|
|
1765
2818
|
body?: never;
|
|
1766
2819
|
path: {
|
|
1767
2820
|
/**
|
|
1768
|
-
*
|
|
2821
|
+
* Stripe payment method identifier.
|
|
1769
2822
|
*/
|
|
1770
|
-
|
|
2823
|
+
paymentMethodId: string;
|
|
1771
2824
|
};
|
|
1772
2825
|
query?: never;
|
|
1773
|
-
url: '/
|
|
2826
|
+
url: '/billing/payment-methods/{paymentMethodId}';
|
|
1774
2827
|
};
|
|
1775
|
-
export type
|
|
2828
|
+
export type DeletePaymentMethodErrors = {
|
|
2829
|
+
/**
|
|
2830
|
+
* The bank transfer payment method cannot be removed.
|
|
2831
|
+
*/
|
|
2832
|
+
400: unknown;
|
|
1776
2833
|
/**
|
|
1777
2834
|
* Not authenticated
|
|
1778
2835
|
*/
|
|
1779
2836
|
401: unknown;
|
|
1780
|
-
};
|
|
1781
|
-
export type RegenerateTokenResponses = {
|
|
1782
2837
|
/**
|
|
1783
|
-
*
|
|
2838
|
+
* Payment method not found.
|
|
1784
2839
|
*/
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
path: {
|
|
1791
|
-
/**
|
|
1792
|
-
* User email address.
|
|
1793
|
-
*/
|
|
1794
|
-
email: string;
|
|
1795
|
-
};
|
|
1796
|
-
query?: never;
|
|
1797
|
-
url: '/users/organizations/{email}';
|
|
2840
|
+
404: unknown;
|
|
2841
|
+
/**
|
|
2842
|
+
* Cannot delete the only remaining payment method.
|
|
2843
|
+
*/
|
|
2844
|
+
409: unknown;
|
|
1798
2845
|
};
|
|
1799
|
-
export type
|
|
2846
|
+
export type DeletePaymentMethodResponses = {
|
|
1800
2847
|
/**
|
|
1801
|
-
*
|
|
2848
|
+
* Payment method deleted.
|
|
1802
2849
|
*/
|
|
1803
|
-
|
|
1804
|
-
/**
|
|
1805
|
-
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
1806
|
-
*/
|
|
1807
|
-
realm?: string;
|
|
1808
|
-
/**
|
|
1809
|
-
* Human-readable name of the organization
|
|
1810
|
-
*/
|
|
1811
|
-
displayName?: string;
|
|
1812
|
-
}>;
|
|
2850
|
+
204: void;
|
|
1813
2851
|
};
|
|
1814
|
-
export type
|
|
1815
|
-
export type
|
|
2852
|
+
export type DeletePaymentMethodResponse = DeletePaymentMethodResponses[keyof DeletePaymentMethodResponses];
|
|
2853
|
+
export type ListInvoicesData = {
|
|
1816
2854
|
body?: never;
|
|
1817
2855
|
path?: never;
|
|
1818
2856
|
query?: never;
|
|
1819
|
-
url: '/
|
|
2857
|
+
url: '/billing/invoices';
|
|
1820
2858
|
};
|
|
1821
|
-
export type
|
|
2859
|
+
export type ListInvoicesErrors = {
|
|
1822
2860
|
/**
|
|
1823
2861
|
* Not authenticated
|
|
1824
2862
|
*/
|
|
1825
2863
|
401: unknown;
|
|
1826
2864
|
};
|
|
1827
|
-
export type
|
|
2865
|
+
export type ListInvoicesResponses = {
|
|
1828
2866
|
/**
|
|
1829
|
-
* An array of
|
|
2867
|
+
* An array of usage records.
|
|
1830
2868
|
*/
|
|
1831
|
-
200: Array<
|
|
2869
|
+
200: Array<Invoice>;
|
|
1832
2870
|
};
|
|
1833
|
-
export type
|
|
1834
|
-
export type
|
|
1835
|
-
body
|
|
2871
|
+
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
2872
|
+
export type GetContactData = {
|
|
2873
|
+
body?: never;
|
|
1836
2874
|
path?: never;
|
|
1837
2875
|
query?: never;
|
|
1838
|
-
url: '/
|
|
2876
|
+
url: '/billing/contact';
|
|
1839
2877
|
};
|
|
1840
|
-
export type
|
|
2878
|
+
export type GetContactResponses = {
|
|
1841
2879
|
/**
|
|
1842
|
-
*
|
|
2880
|
+
* Returns a single object containing organization contact and billing address details.
|
|
1843
2881
|
*/
|
|
1844
|
-
200:
|
|
2882
|
+
200: BillingContact;
|
|
1845
2883
|
};
|
|
1846
|
-
export type
|
|
1847
|
-
export type
|
|
1848
|
-
body
|
|
1849
|
-
path
|
|
1850
|
-
/**
|
|
1851
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
1852
|
-
*/
|
|
1853
|
-
user_id: string;
|
|
1854
|
-
};
|
|
2884
|
+
export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
|
|
2885
|
+
export type UpdateContactData = {
|
|
2886
|
+
body: BillingContact;
|
|
2887
|
+
path?: never;
|
|
1855
2888
|
query?: never;
|
|
1856
|
-
url: '/
|
|
1857
|
-
};
|
|
1858
|
-
export type DeleteUserErrors = {
|
|
1859
|
-
/**
|
|
1860
|
-
* Deleting own user is not allowed. Delete your organization instead.
|
|
1861
|
-
*/
|
|
1862
|
-
400: unknown;
|
|
1863
|
-
/**
|
|
1864
|
-
* Not authenticated
|
|
1865
|
-
*/
|
|
1866
|
-
401: unknown;
|
|
2889
|
+
url: '/billing/contact';
|
|
1867
2890
|
};
|
|
1868
|
-
export type
|
|
2891
|
+
export type UpdateContactResponses = {
|
|
1869
2892
|
/**
|
|
1870
|
-
*
|
|
2893
|
+
* Successfully updated. Returns updated organization details.
|
|
1871
2894
|
*/
|
|
1872
|
-
200:
|
|
2895
|
+
200: BillingContact;
|
|
1873
2896
|
};
|
|
1874
|
-
export type
|
|
1875
|
-
export type
|
|
2897
|
+
export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
|
|
2898
|
+
export type GetCreditsData = {
|
|
1876
2899
|
body?: never;
|
|
1877
|
-
path
|
|
1878
|
-
/**
|
|
1879
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
1880
|
-
*/
|
|
1881
|
-
user_id: string;
|
|
1882
|
-
};
|
|
2900
|
+
path?: never;
|
|
1883
2901
|
query?: never;
|
|
1884
|
-
url: '/
|
|
2902
|
+
url: '/billing/credits';
|
|
1885
2903
|
};
|
|
1886
|
-
export type
|
|
2904
|
+
export type GetCreditsErrors = {
|
|
1887
2905
|
/**
|
|
1888
2906
|
* Not authenticated
|
|
1889
2907
|
*/
|
|
1890
2908
|
401: unknown;
|
|
1891
2909
|
};
|
|
1892
|
-
export type
|
|
2910
|
+
export type GetCreditsResponses = {
|
|
1893
2911
|
/**
|
|
1894
|
-
*
|
|
2912
|
+
* An array of the applied promotional credits records.
|
|
1895
2913
|
*/
|
|
1896
|
-
200:
|
|
2914
|
+
200: Array<BillingCredits>;
|
|
1897
2915
|
};
|
|
1898
|
-
export type
|
|
1899
|
-
export type
|
|
1900
|
-
body:
|
|
1901
|
-
path: {
|
|
2916
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
2917
|
+
export type RedeemCreditsData = {
|
|
2918
|
+
body: {
|
|
1902
2919
|
/**
|
|
1903
|
-
*
|
|
2920
|
+
* Promotional code to redeem
|
|
1904
2921
|
*/
|
|
1905
|
-
|
|
2922
|
+
code?: string;
|
|
1906
2923
|
};
|
|
2924
|
+
path?: never;
|
|
1907
2925
|
query?: never;
|
|
1908
|
-
url: '/
|
|
2926
|
+
url: '/billing/credits';
|
|
1909
2927
|
};
|
|
1910
|
-
export type
|
|
2928
|
+
export type RedeemCreditsErrors = {
|
|
1911
2929
|
/**
|
|
1912
|
-
*
|
|
2930
|
+
* Not authenticated
|
|
1913
2931
|
*/
|
|
1914
|
-
|
|
2932
|
+
401: unknown;
|
|
1915
2933
|
};
|
|
1916
|
-
export type
|
|
1917
|
-
|
|
1918
|
-
|
|
2934
|
+
export type RedeemCreditsResponses = {
|
|
2935
|
+
/**
|
|
2936
|
+
* Successfully created a new organization.
|
|
2937
|
+
*/
|
|
2938
|
+
200: unknown;
|
|
1919
2939
|
};
|
|
1920
2940
|
//# sourceMappingURL=types.gen.d.ts.map
|