@cloudfleet/sdk 0.0.1-bbca6e3 → 0.0.1-bc3dfb7
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 +437 -389
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +458 -410
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -4
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +1 -1
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +2 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +3 -3
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/params.gen.js +4 -4
- package/dist/core/params.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +360 -177
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +493 -229
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +244 -220
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +353 -318
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +991 -804
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1560 -1316
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +465 -314
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
export type ClientOptions = {
|
|
2
2
|
baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
|
|
3
3
|
};
|
|
4
|
+
export type BasicPriceConsentInput = {
|
|
5
|
+
/**
|
|
6
|
+
* The administrator's decision on the new Basic price. `accepted` continues to paid billing when the signup credit runs out; `rejected` opts out (clusters are suspended, never charged). A `rejected` org can later be flipped back to `accepted`.
|
|
7
|
+
*/
|
|
8
|
+
decision: 'accepted' | 'rejected';
|
|
9
|
+
};
|
|
10
|
+
export type BasicPriceConsent = {
|
|
11
|
+
/**
|
|
12
|
+
* Consent status for the new Basic price. `not_applicable` when the organization is not in scope for the migration. `pending` when the organization must opt in but no admin has decided yet. `accepted` / `rejected` reflect the recorded decision.
|
|
13
|
+
*/
|
|
14
|
+
status: 'not_applicable' | 'pending' | 'accepted' | 'rejected';
|
|
15
|
+
/**
|
|
16
|
+
* When the current decision was recorded. Absent while `not_applicable` or `pending`.
|
|
17
|
+
*/
|
|
18
|
+
decided_at?: string;
|
|
19
|
+
/**
|
|
20
|
+
* User id of the administrator who recorded the current decision. Absent while `not_applicable` or `pending`.
|
|
21
|
+
*/
|
|
22
|
+
decided_by?: string;
|
|
23
|
+
};
|
|
4
24
|
export type BillingContact = {
|
|
5
25
|
/**
|
|
6
26
|
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
@@ -163,6 +183,9 @@ export type ChartUpdateInput = {
|
|
|
163
183
|
*/
|
|
164
184
|
version_channel: string;
|
|
165
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
188
|
+
*/
|
|
166
189
|
export type ClusterCreateInput = {
|
|
167
190
|
/**
|
|
168
191
|
* Name of the cluster.
|
|
@@ -171,15 +194,61 @@ export type ClusterCreateInput = {
|
|
|
171
194
|
/**
|
|
172
195
|
* Tier of the cluster.
|
|
173
196
|
*/
|
|
174
|
-
tier
|
|
197
|
+
tier?: 'basic' | 'pro' | 'enterprise';
|
|
198
|
+
/**
|
|
199
|
+
* Version of the kubernetes cluster.
|
|
200
|
+
*/
|
|
201
|
+
version_channel?: string;
|
|
202
|
+
/**
|
|
203
|
+
* Release channel for the cluster's control plane.
|
|
204
|
+
*/
|
|
205
|
+
release_channel?: 'rapid' | 'stable' | 'extended';
|
|
206
|
+
/**
|
|
207
|
+
* Cluster feature toggles.
|
|
208
|
+
*/
|
|
209
|
+
features?: {
|
|
210
|
+
/**
|
|
211
|
+
* GPU sharing strategy.
|
|
212
|
+
*/
|
|
213
|
+
gpu_sharing_strategy?: 'none' | 'mps' | 'time_slicing';
|
|
214
|
+
/**
|
|
215
|
+
* Maximum number of pods that may share a single GPU.
|
|
216
|
+
*/
|
|
217
|
+
gpu_max_shared_clients_per_gpu?: number;
|
|
218
|
+
/**
|
|
219
|
+
* Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.
|
|
220
|
+
*/
|
|
221
|
+
cilium_socket_lb_host_namespace_only?: boolean;
|
|
222
|
+
};
|
|
175
223
|
/**
|
|
176
224
|
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
177
225
|
*/
|
|
178
226
|
region: string;
|
|
179
227
|
/**
|
|
180
|
-
*
|
|
228
|
+
* Cluster networking configuration. Immutable after creation.
|
|
181
229
|
*/
|
|
182
|
-
|
|
230
|
+
networking?: {
|
|
231
|
+
/**
|
|
232
|
+
* CIDR block for pod IPs.
|
|
233
|
+
*/
|
|
234
|
+
pod_cidr?: string;
|
|
235
|
+
/**
|
|
236
|
+
* CIDR block for service IPs.
|
|
237
|
+
*/
|
|
238
|
+
service_cidr?: string;
|
|
239
|
+
/**
|
|
240
|
+
* Enable IPv4+IPv6 dual-stack networking.
|
|
241
|
+
*/
|
|
242
|
+
dual_stack?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
* IPv6 pod CIDR. Requires dual_stack.
|
|
245
|
+
*/
|
|
246
|
+
pod_cidr_v6?: string;
|
|
247
|
+
/**
|
|
248
|
+
* IPv6 service CIDR. Requires dual_stack.
|
|
249
|
+
*/
|
|
250
|
+
service_cidr_v6?: string;
|
|
251
|
+
};
|
|
183
252
|
};
|
|
184
253
|
export type ClusterJoinInformation = {
|
|
185
254
|
/**
|
|
@@ -245,6 +314,9 @@ export type ClusterJoinInformation = {
|
|
|
245
314
|
gcp_workload_identity_provider: string;
|
|
246
315
|
};
|
|
247
316
|
};
|
|
317
|
+
/**
|
|
318
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
319
|
+
*/
|
|
248
320
|
export type Cluster = {
|
|
249
321
|
/**
|
|
250
322
|
* Name of the cluster.
|
|
@@ -253,19 +325,69 @@ export type Cluster = {
|
|
|
253
325
|
/**
|
|
254
326
|
* Tier of the cluster.
|
|
255
327
|
*/
|
|
256
|
-
tier: 'basic' | 'pro';
|
|
328
|
+
tier: 'basic' | 'pro' | 'enterprise';
|
|
329
|
+
/**
|
|
330
|
+
* Version of the kubernetes cluster.
|
|
331
|
+
*/
|
|
332
|
+
version_channel: string;
|
|
333
|
+
/**
|
|
334
|
+
* Release channel for the cluster's control plane.
|
|
335
|
+
*/
|
|
336
|
+
release_channel: 'rapid' | 'stable' | 'extended';
|
|
337
|
+
/**
|
|
338
|
+
* Cluster feature toggles.
|
|
339
|
+
*/
|
|
340
|
+
features: {
|
|
341
|
+
/**
|
|
342
|
+
* GPU sharing strategy.
|
|
343
|
+
*/
|
|
344
|
+
gpu_sharing_strategy: 'none' | 'mps' | 'time_slicing';
|
|
345
|
+
/**
|
|
346
|
+
* Maximum number of pods that may share a single GPU.
|
|
347
|
+
*/
|
|
348
|
+
gpu_max_shared_clients_per_gpu: number;
|
|
349
|
+
/**
|
|
350
|
+
* Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.
|
|
351
|
+
*/
|
|
352
|
+
cilium_socket_lb_host_namespace_only: boolean;
|
|
353
|
+
};
|
|
257
354
|
/**
|
|
258
355
|
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
259
356
|
*/
|
|
260
357
|
region: string;
|
|
358
|
+
/**
|
|
359
|
+
* Cluster networking configuration. Immutable after creation.
|
|
360
|
+
*/
|
|
361
|
+
networking: {
|
|
362
|
+
/**
|
|
363
|
+
* CIDR block for pod IPs.
|
|
364
|
+
*/
|
|
365
|
+
pod_cidr: string;
|
|
366
|
+
/**
|
|
367
|
+
* CIDR block for service IPs.
|
|
368
|
+
*/
|
|
369
|
+
service_cidr: string;
|
|
370
|
+
/**
|
|
371
|
+
* Enable IPv4+IPv6 dual-stack networking.
|
|
372
|
+
*/
|
|
373
|
+
dual_stack: boolean;
|
|
374
|
+
/**
|
|
375
|
+
* IPv6 pod CIDR. Requires dual_stack.
|
|
376
|
+
*/
|
|
377
|
+
pod_cidr_v6: string;
|
|
378
|
+
/**
|
|
379
|
+
* IPv6 service CIDR. Requires dual_stack.
|
|
380
|
+
*/
|
|
381
|
+
service_cidr_v6: string;
|
|
382
|
+
};
|
|
261
383
|
/**
|
|
262
384
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
263
385
|
*/
|
|
264
386
|
id: string;
|
|
265
387
|
/**
|
|
266
|
-
* Status of the cluster.
|
|
388
|
+
* Status of the cluster.
|
|
267
389
|
*/
|
|
268
|
-
status: '
|
|
390
|
+
status: 'creating' | 'deployed' | 'updating' | 'disabled';
|
|
269
391
|
endpoint?: string | '';
|
|
270
392
|
endpoint_public?: string | '';
|
|
271
393
|
/**
|
|
@@ -287,26 +409,49 @@ export type Cluster = {
|
|
|
287
409
|
/**
|
|
288
410
|
* Indicates if the cluster is ready to be used.
|
|
289
411
|
*/
|
|
290
|
-
ready
|
|
291
|
-
/**
|
|
292
|
-
* Version of the kubernetes cluster.
|
|
293
|
-
*/
|
|
294
|
-
version_channel?: string;
|
|
412
|
+
ready: boolean;
|
|
295
413
|
};
|
|
414
|
+
/**
|
|
415
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
416
|
+
*/
|
|
296
417
|
export type ClusterUpdateInput = {
|
|
297
418
|
/**
|
|
298
419
|
* Name of the cluster.
|
|
299
420
|
*/
|
|
300
|
-
name
|
|
421
|
+
name: string;
|
|
301
422
|
/**
|
|
302
423
|
* Tier of the cluster.
|
|
303
424
|
*/
|
|
304
|
-
tier
|
|
425
|
+
tier?: 'basic' | 'pro' | 'enterprise';
|
|
305
426
|
/**
|
|
306
427
|
* Version of the kubernetes cluster.
|
|
307
428
|
*/
|
|
308
429
|
version_channel?: string;
|
|
430
|
+
/**
|
|
431
|
+
* Release channel for the cluster's control plane.
|
|
432
|
+
*/
|
|
433
|
+
release_channel?: 'rapid' | 'stable' | 'extended';
|
|
434
|
+
/**
|
|
435
|
+
* Cluster feature toggles.
|
|
436
|
+
*/
|
|
437
|
+
features?: {
|
|
438
|
+
/**
|
|
439
|
+
* GPU sharing strategy.
|
|
440
|
+
*/
|
|
441
|
+
gpu_sharing_strategy?: 'none' | 'mps' | 'time_slicing';
|
|
442
|
+
/**
|
|
443
|
+
* Maximum number of pods that may share a single GPU.
|
|
444
|
+
*/
|
|
445
|
+
gpu_max_shared_clients_per_gpu?: number;
|
|
446
|
+
/**
|
|
447
|
+
* Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.
|
|
448
|
+
*/
|
|
449
|
+
cilium_socket_lb_host_namespace_only?: boolean;
|
|
450
|
+
};
|
|
309
451
|
};
|
|
452
|
+
/**
|
|
453
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
454
|
+
*/
|
|
310
455
|
export type FleetCreateInput = {
|
|
311
456
|
/**
|
|
312
457
|
* Limits define a set of bounds for provisioning capacity.
|
|
@@ -327,7 +472,7 @@ export type FleetCreateInput = {
|
|
|
327
472
|
hetzner?: {
|
|
328
473
|
enabled: boolean;
|
|
329
474
|
/**
|
|
330
|
-
* Hetzner Cloud API token with read
|
|
475
|
+
* 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.
|
|
331
476
|
*/
|
|
332
477
|
apiKey?: string;
|
|
333
478
|
};
|
|
@@ -339,7 +484,7 @@ export type FleetCreateInput = {
|
|
|
339
484
|
controllerRoleArn?: string;
|
|
340
485
|
};
|
|
341
486
|
/**
|
|
342
|
-
* 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.
|
|
487
|
+
* 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.
|
|
343
488
|
*/
|
|
344
489
|
constraints?: {
|
|
345
490
|
/**
|
|
@@ -360,7 +505,7 @@ export type FleetCreateInput = {
|
|
|
360
505
|
'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'>;
|
|
361
506
|
};
|
|
362
507
|
/**
|
|
363
|
-
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
|
|
508
|
+
* 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`).
|
|
364
509
|
*/
|
|
365
510
|
scalingProfile?: 'aggressive' | 'conservative';
|
|
366
511
|
/**
|
|
@@ -368,6 +513,9 @@ export type FleetCreateInput = {
|
|
|
368
513
|
*/
|
|
369
514
|
id: string;
|
|
370
515
|
};
|
|
516
|
+
/**
|
|
517
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
518
|
+
*/
|
|
371
519
|
export type Fleet = {
|
|
372
520
|
/**
|
|
373
521
|
* Limits define a set of bounds for provisioning capacity.
|
|
@@ -400,17 +548,17 @@ export type Fleet = {
|
|
|
400
548
|
controllerRoleArn?: string;
|
|
401
549
|
};
|
|
402
550
|
/**
|
|
403
|
-
* 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.
|
|
551
|
+
* 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.
|
|
404
552
|
*/
|
|
405
|
-
constraints
|
|
553
|
+
constraints: {
|
|
406
554
|
/**
|
|
407
555
|
* Allowed values for `karpenter.sh/capacity-type`.
|
|
408
556
|
*/
|
|
409
|
-
'karpenter.sh/capacity-type'
|
|
557
|
+
'karpenter.sh/capacity-type': Array<'on-demand' | 'spot'>;
|
|
410
558
|
/**
|
|
411
559
|
* Allowed values for `kubernetes.io/arch`.
|
|
412
560
|
*/
|
|
413
|
-
'kubernetes.io/arch'
|
|
561
|
+
'kubernetes.io/arch': Array<'amd64' | 'arm64'>;
|
|
414
562
|
/**
|
|
415
563
|
* Allowed values for `cfke.io/instance-family`.
|
|
416
564
|
*/
|
|
@@ -421,14 +569,33 @@ export type Fleet = {
|
|
|
421
569
|
'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'>;
|
|
422
570
|
};
|
|
423
571
|
/**
|
|
424
|
-
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
|
|
572
|
+
* 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`).
|
|
425
573
|
*/
|
|
426
574
|
scalingProfile: 'aggressive' | 'conservative';
|
|
427
575
|
/**
|
|
428
576
|
* Unique identifier of the kubernetes fleet.
|
|
429
577
|
*/
|
|
430
578
|
id: string;
|
|
579
|
+
/**
|
|
580
|
+
* Indicates whether the fleet configuration is healthy.
|
|
581
|
+
*/
|
|
582
|
+
ready: boolean;
|
|
583
|
+
/**
|
|
584
|
+
* Human-readable reason the fleet is not ready. Present only when `ready` is false.
|
|
585
|
+
*/
|
|
586
|
+
status_message?: string;
|
|
587
|
+
/**
|
|
588
|
+
* Creation date and time of the fleet.
|
|
589
|
+
*/
|
|
590
|
+
created_at: string;
|
|
591
|
+
/**
|
|
592
|
+
* Date and time the fleet was last updated.
|
|
593
|
+
*/
|
|
594
|
+
updated_at: string;
|
|
431
595
|
};
|
|
596
|
+
/**
|
|
597
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
598
|
+
*/
|
|
432
599
|
export type FleetUpdateInput = {
|
|
433
600
|
/**
|
|
434
601
|
* Limits define a set of bounds for provisioning capacity.
|
|
@@ -449,7 +616,7 @@ export type FleetUpdateInput = {
|
|
|
449
616
|
hetzner?: {
|
|
450
617
|
enabled: boolean;
|
|
451
618
|
/**
|
|
452
|
-
* Hetzner Cloud API token with read
|
|
619
|
+
* 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.
|
|
453
620
|
*/
|
|
454
621
|
apiKey?: string;
|
|
455
622
|
};
|
|
@@ -461,7 +628,7 @@ export type FleetUpdateInput = {
|
|
|
461
628
|
controllerRoleArn?: string;
|
|
462
629
|
};
|
|
463
630
|
/**
|
|
464
|
-
* 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.
|
|
631
|
+
* 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.
|
|
465
632
|
*/
|
|
466
633
|
constraints?: {
|
|
467
634
|
/**
|
|
@@ -482,9 +649,9 @@ export type FleetUpdateInput = {
|
|
|
482
649
|
'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'>;
|
|
483
650
|
};
|
|
484
651
|
/**
|
|
485
|
-
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
|
|
652
|
+
* 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`).
|
|
486
653
|
*/
|
|
487
|
-
scalingProfile
|
|
654
|
+
scalingProfile?: 'aggressive' | 'conservative';
|
|
488
655
|
};
|
|
489
656
|
export type InviteCreateInput = {
|
|
490
657
|
/**
|
|
@@ -709,6 +876,14 @@ export type Organization = {
|
|
|
709
876
|
* Available number of Pro clusters that can be created.
|
|
710
877
|
*/
|
|
711
878
|
pro_clusters_available: number;
|
|
879
|
+
/**
|
|
880
|
+
* Maximum number of Enterprise clusters that can be created.
|
|
881
|
+
*/
|
|
882
|
+
enterprise_clusters_max: number;
|
|
883
|
+
/**
|
|
884
|
+
* Available number of Enterprise clusters that can be created.
|
|
885
|
+
*/
|
|
886
|
+
enterprise_clusters_available: number;
|
|
712
887
|
/**
|
|
713
888
|
* Maximum number of fleets that can be created per cluster.
|
|
714
889
|
*/
|
|
@@ -807,6 +982,14 @@ export type PlatformQuota = {
|
|
|
807
982
|
* Available number of Pro clusters that can be created.
|
|
808
983
|
*/
|
|
809
984
|
pro_clusters_available: number;
|
|
985
|
+
/**
|
|
986
|
+
* Maximum number of Enterprise clusters that can be created.
|
|
987
|
+
*/
|
|
988
|
+
enterprise_clusters_max: number;
|
|
989
|
+
/**
|
|
990
|
+
* Available number of Enterprise clusters that can be created.
|
|
991
|
+
*/
|
|
992
|
+
enterprise_clusters_available: number;
|
|
810
993
|
/**
|
|
811
994
|
* Maximum number of fleets that can be created per cluster.
|
|
812
995
|
*/
|
|
@@ -1019,91 +1202,6 @@ export type TicketCreateInput = {
|
|
|
1019
1202
|
[key: string]: unknown;
|
|
1020
1203
|
};
|
|
1021
1204
|
};
|
|
1022
|
-
export type TicketListResponse = {
|
|
1023
|
-
/**
|
|
1024
|
-
* Tickets for the organization, ordered newest first. Messages are omitted from list responses.
|
|
1025
|
-
*/
|
|
1026
|
-
items: Array<{
|
|
1027
|
-
/**
|
|
1028
|
-
* Unique identifier of the ticket (Mongo ObjectId).
|
|
1029
|
-
*/
|
|
1030
|
-
id: string;
|
|
1031
|
-
/**
|
|
1032
|
-
* Current state of the ticket.
|
|
1033
|
-
*/
|
|
1034
|
-
status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
|
|
1035
|
-
/**
|
|
1036
|
-
* Ticket category.
|
|
1037
|
-
*/
|
|
1038
|
-
category: 'billing' | 'technical' | 'general';
|
|
1039
|
-
/**
|
|
1040
|
-
* First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
|
|
1041
|
-
*/
|
|
1042
|
-
summary: string;
|
|
1043
|
-
/**
|
|
1044
|
-
* Closure timestamp. Null while the ticket is open.
|
|
1045
|
-
*/
|
|
1046
|
-
closed_at?: string;
|
|
1047
|
-
/**
|
|
1048
|
-
* Creation date of the ticket. ISO 8601 UTC.
|
|
1049
|
-
*/
|
|
1050
|
-
date_created: string;
|
|
1051
|
-
/**
|
|
1052
|
-
* Last update date of the ticket. ISO 8601 UTC.
|
|
1053
|
-
*/
|
|
1054
|
-
date_updated: string;
|
|
1055
|
-
/**
|
|
1056
|
-
* Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
|
|
1057
|
-
*/
|
|
1058
|
-
messages?: Array<{
|
|
1059
|
-
/**
|
|
1060
|
-
* Unique identifier of the message (Mongo ObjectId).
|
|
1061
|
-
*/
|
|
1062
|
-
id: string;
|
|
1063
|
-
/**
|
|
1064
|
-
* Message type. Internal notes are filtered out of customer-facing responses.
|
|
1065
|
-
*/
|
|
1066
|
-
type: 'customer_reply' | 'agent_reply';
|
|
1067
|
-
/**
|
|
1068
|
-
* Message body in markdown.
|
|
1069
|
-
*/
|
|
1070
|
-
body: string;
|
|
1071
|
-
/**
|
|
1072
|
-
* First name of the author. Null when not provided.
|
|
1073
|
-
*/
|
|
1074
|
-
author_first_name?: string;
|
|
1075
|
-
/**
|
|
1076
|
-
* Last name of the author. Null when not provided.
|
|
1077
|
-
*/
|
|
1078
|
-
author_last_name?: string;
|
|
1079
|
-
/**
|
|
1080
|
-
* Attachments associated with this message.
|
|
1081
|
-
*/
|
|
1082
|
-
attachments?: Array<{
|
|
1083
|
-
/**
|
|
1084
|
-
* Unique identifier of the attachment (Mongo ObjectId).
|
|
1085
|
-
*/
|
|
1086
|
-
id: string;
|
|
1087
|
-
/**
|
|
1088
|
-
* Original filename as uploaded.
|
|
1089
|
-
*/
|
|
1090
|
-
filename: string;
|
|
1091
|
-
/**
|
|
1092
|
-
* MIME content type of the attachment.
|
|
1093
|
-
*/
|
|
1094
|
-
content_type: string;
|
|
1095
|
-
/**
|
|
1096
|
-
* Size of the attachment in bytes.
|
|
1097
|
-
*/
|
|
1098
|
-
size: number;
|
|
1099
|
-
}>;
|
|
1100
|
-
/**
|
|
1101
|
-
* Creation date of the message. ISO 8601 UTC.
|
|
1102
|
-
*/
|
|
1103
|
-
date_created: string;
|
|
1104
|
-
}>;
|
|
1105
|
-
}>;
|
|
1106
|
-
};
|
|
1107
1205
|
export type TicketMessageInput = {
|
|
1108
1206
|
/**
|
|
1109
1207
|
* Reply body in markdown.
|
|
@@ -1287,7 +1385,7 @@ export type UsageFacets = {
|
|
|
1287
1385
|
/**
|
|
1288
1386
|
* List of unique products
|
|
1289
1387
|
*/
|
|
1290
|
-
product?: Array<
|
|
1388
|
+
product?: Array<'cfke_controlplane_basic' | 'cfke_controlplane_pro' | 'cfke_controlplane_enterprise' | 'cfke_connected_nodes_basic' | 'cfke_connected_nodes_pro' | 'cfke_connected_nodes_enterprise' | 'cfcr_storage'>;
|
|
1291
1389
|
};
|
|
1292
1390
|
export type UsageResponse = {
|
|
1293
1391
|
/**
|
|
@@ -1305,7 +1403,7 @@ export type UsageResponse = {
|
|
|
1305
1403
|
/**
|
|
1306
1404
|
* The product the usage is associated with
|
|
1307
1405
|
*/
|
|
1308
|
-
product:
|
|
1406
|
+
product: 'cfke_controlplane_basic' | 'cfke_controlplane_pro' | 'cfke_controlplane_enterprise' | 'cfke_connected_nodes_basic' | 'cfke_connected_nodes_pro' | 'cfke_connected_nodes_enterprise' | 'cfcr_storage';
|
|
1309
1407
|
/**
|
|
1310
1408
|
* Consumption
|
|
1311
1409
|
*/
|
|
@@ -1330,7 +1428,7 @@ export type UsageResponse = {
|
|
|
1330
1428
|
/**
|
|
1331
1429
|
* List of unique products
|
|
1332
1430
|
*/
|
|
1333
|
-
product?: Array<
|
|
1431
|
+
product?: Array<'cfke_controlplane_basic' | 'cfke_controlplane_pro' | 'cfke_controlplane_enterprise' | 'cfke_connected_nodes_basic' | 'cfke_connected_nodes_pro' | 'cfke_connected_nodes_enterprise' | 'cfcr_storage'>;
|
|
1334
1432
|
};
|
|
1335
1433
|
};
|
|
1336
1434
|
export type Usage = {
|
|
@@ -1345,7 +1443,7 @@ export type Usage = {
|
|
|
1345
1443
|
/**
|
|
1346
1444
|
* The product the usage is associated with
|
|
1347
1445
|
*/
|
|
1348
|
-
product:
|
|
1446
|
+
product: 'cfke_controlplane_basic' | 'cfke_controlplane_pro' | 'cfke_controlplane_enterprise' | 'cfke_connected_nodes_basic' | 'cfke_connected_nodes_pro' | 'cfke_connected_nodes_enterprise' | 'cfcr_storage';
|
|
1349
1447
|
/**
|
|
1350
1448
|
* Consumption
|
|
1351
1449
|
*/
|
|
@@ -1433,604 +1531,658 @@ export type UserUpdateInput = {
|
|
|
1433
1531
|
*/
|
|
1434
1532
|
status?: 'active' | 'inactive';
|
|
1435
1533
|
};
|
|
1436
|
-
export type
|
|
1534
|
+
export type ListUserOrganizationsData = {
|
|
1437
1535
|
body?: never;
|
|
1438
|
-
path
|
|
1439
|
-
query?: {
|
|
1536
|
+
path: {
|
|
1440
1537
|
/**
|
|
1441
|
-
*
|
|
1538
|
+
* User email address.
|
|
1442
1539
|
*/
|
|
1443
|
-
|
|
1540
|
+
email: string;
|
|
1444
1541
|
};
|
|
1445
|
-
url: '/billing/usage';
|
|
1446
|
-
};
|
|
1447
|
-
export type GetUsageErrors = {
|
|
1448
|
-
/**
|
|
1449
|
-
* Not authenticated
|
|
1450
|
-
*/
|
|
1451
|
-
401: unknown;
|
|
1452
|
-
};
|
|
1453
|
-
export type GetUsageResponses = {
|
|
1454
|
-
/**
|
|
1455
|
-
* Usage data with facets for filtering
|
|
1456
|
-
*/
|
|
1457
|
-
200: UsageResponse;
|
|
1458
|
-
};
|
|
1459
|
-
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
1460
|
-
export type GetPaymentMethodSecretData = {
|
|
1461
|
-
body?: never;
|
|
1462
|
-
path?: never;
|
|
1463
1542
|
query?: never;
|
|
1464
|
-
url: '/
|
|
1543
|
+
url: '/users/organizations/{email}';
|
|
1465
1544
|
};
|
|
1466
|
-
export type
|
|
1545
|
+
export type ListUserOrganizationsResponses = {
|
|
1467
1546
|
/**
|
|
1468
|
-
*
|
|
1469
|
-
*
|
|
1547
|
+
* An array of organizations the user belongs to.
|
|
1470
1548
|
*/
|
|
1471
|
-
200: {
|
|
1549
|
+
200: Array<{
|
|
1472
1550
|
/**
|
|
1473
|
-
*
|
|
1551
|
+
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
1474
1552
|
*/
|
|
1475
|
-
|
|
1476
|
-
|
|
1553
|
+
realm?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* Human-readable name of the organization
|
|
1556
|
+
*/
|
|
1557
|
+
displayName?: string;
|
|
1558
|
+
}>;
|
|
1477
1559
|
};
|
|
1478
|
-
export type
|
|
1479
|
-
export type
|
|
1560
|
+
export type ListUserOrganizationsResponse = ListUserOrganizationsResponses[keyof ListUserOrganizationsResponses];
|
|
1561
|
+
export type ListUsersData = {
|
|
1480
1562
|
body?: never;
|
|
1481
1563
|
path?: never;
|
|
1482
1564
|
query?: never;
|
|
1483
|
-
url: '/
|
|
1565
|
+
url: '/users';
|
|
1484
1566
|
};
|
|
1485
|
-
export type
|
|
1567
|
+
export type ListUsersErrors = {
|
|
1486
1568
|
/**
|
|
1487
1569
|
* Not authenticated
|
|
1488
1570
|
*/
|
|
1489
1571
|
401: unknown;
|
|
1490
1572
|
};
|
|
1491
|
-
export type
|
|
1573
|
+
export type ListUsersResponses = {
|
|
1492
1574
|
/**
|
|
1493
|
-
* An array of
|
|
1575
|
+
* An array of users
|
|
1494
1576
|
*/
|
|
1495
|
-
200: Array<
|
|
1577
|
+
200: Array<User>;
|
|
1496
1578
|
};
|
|
1497
|
-
export type
|
|
1498
|
-
export type
|
|
1579
|
+
export type ListUsersResponse = ListUsersResponses[keyof ListUsersResponses];
|
|
1580
|
+
export type CreateUserData = {
|
|
1581
|
+
body: UserCreateInput;
|
|
1582
|
+
path?: never;
|
|
1583
|
+
query?: never;
|
|
1584
|
+
url: '/users';
|
|
1585
|
+
};
|
|
1586
|
+
export type CreateUserResponses = {
|
|
1587
|
+
/**
|
|
1588
|
+
* Successfully created. Returns created user details.
|
|
1589
|
+
*/
|
|
1590
|
+
200: User;
|
|
1591
|
+
};
|
|
1592
|
+
export type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses];
|
|
1593
|
+
export type DeleteUserData = {
|
|
1499
1594
|
body?: never;
|
|
1500
1595
|
path: {
|
|
1501
1596
|
/**
|
|
1502
|
-
*
|
|
1597
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1503
1598
|
*/
|
|
1504
|
-
|
|
1599
|
+
user_id: string;
|
|
1505
1600
|
};
|
|
1506
1601
|
query?: never;
|
|
1507
|
-
url: '/
|
|
1602
|
+
url: '/users/{user_id}';
|
|
1508
1603
|
};
|
|
1509
|
-
export type
|
|
1604
|
+
export type DeleteUserErrors = {
|
|
1510
1605
|
/**
|
|
1511
|
-
*
|
|
1606
|
+
* Deleting own user is not allowed. Delete your organization instead.
|
|
1512
1607
|
*/
|
|
1513
1608
|
400: unknown;
|
|
1514
1609
|
/**
|
|
1515
1610
|
* Not authenticated
|
|
1516
1611
|
*/
|
|
1517
1612
|
401: unknown;
|
|
1518
|
-
/**
|
|
1519
|
-
* Payment method not found.
|
|
1520
|
-
*/
|
|
1521
|
-
404: unknown;
|
|
1522
1613
|
};
|
|
1523
|
-
export type
|
|
1614
|
+
export type DeleteUserResponses = {
|
|
1524
1615
|
/**
|
|
1525
|
-
*
|
|
1616
|
+
* User profile information
|
|
1526
1617
|
*/
|
|
1527
|
-
|
|
1618
|
+
200: User;
|
|
1528
1619
|
};
|
|
1529
|
-
export type
|
|
1530
|
-
export type
|
|
1620
|
+
export type DeleteUserResponse = DeleteUserResponses[keyof DeleteUserResponses];
|
|
1621
|
+
export type GetUserData = {
|
|
1531
1622
|
body?: never;
|
|
1532
1623
|
path: {
|
|
1533
1624
|
/**
|
|
1534
|
-
*
|
|
1625
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1535
1626
|
*/
|
|
1536
|
-
|
|
1627
|
+
user_id: string;
|
|
1537
1628
|
};
|
|
1538
1629
|
query?: never;
|
|
1539
|
-
url: '/
|
|
1630
|
+
url: '/users/{user_id}';
|
|
1540
1631
|
};
|
|
1541
|
-
export type
|
|
1542
|
-
/**
|
|
1543
|
-
* The bank transfer payment method cannot be removed.
|
|
1544
|
-
*/
|
|
1545
|
-
400: unknown;
|
|
1632
|
+
export type GetUserErrors = {
|
|
1546
1633
|
/**
|
|
1547
1634
|
* Not authenticated
|
|
1548
1635
|
*/
|
|
1549
1636
|
401: unknown;
|
|
1637
|
+
};
|
|
1638
|
+
export type GetUserResponses = {
|
|
1550
1639
|
/**
|
|
1551
|
-
*
|
|
1552
|
-
*/
|
|
1553
|
-
404: unknown;
|
|
1554
|
-
/**
|
|
1555
|
-
* Cannot delete the only remaining payment method.
|
|
1640
|
+
* User profile information
|
|
1556
1641
|
*/
|
|
1557
|
-
|
|
1642
|
+
200: User;
|
|
1558
1643
|
};
|
|
1559
|
-
export type
|
|
1644
|
+
export type GetUserResponse = GetUserResponses[keyof GetUserResponses];
|
|
1645
|
+
export type UpdateUserData = {
|
|
1646
|
+
body: UserUpdateInput;
|
|
1647
|
+
path: {
|
|
1648
|
+
/**
|
|
1649
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1650
|
+
*/
|
|
1651
|
+
user_id: string;
|
|
1652
|
+
};
|
|
1653
|
+
query?: never;
|
|
1654
|
+
url: '/users/{user_id}';
|
|
1655
|
+
};
|
|
1656
|
+
export type UpdateUserResponses = {
|
|
1560
1657
|
/**
|
|
1561
|
-
*
|
|
1658
|
+
* Successfully created. Returns created user details.
|
|
1562
1659
|
*/
|
|
1563
|
-
|
|
1660
|
+
200: User;
|
|
1564
1661
|
};
|
|
1565
|
-
export type
|
|
1566
|
-
export type
|
|
1662
|
+
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
1663
|
+
export type ListTokensData = {
|
|
1567
1664
|
body?: never;
|
|
1568
1665
|
path?: never;
|
|
1569
1666
|
query?: never;
|
|
1570
|
-
url: '/
|
|
1667
|
+
url: '/tokens';
|
|
1571
1668
|
};
|
|
1572
|
-
export type
|
|
1669
|
+
export type ListTokensErrors = {
|
|
1573
1670
|
/**
|
|
1574
1671
|
* Not authenticated
|
|
1575
1672
|
*/
|
|
1576
1673
|
401: unknown;
|
|
1577
1674
|
};
|
|
1578
|
-
export type
|
|
1675
|
+
export type ListTokensResponses = {
|
|
1579
1676
|
/**
|
|
1580
|
-
*
|
|
1677
|
+
* Returns a list of access token details with masked secrets.
|
|
1581
1678
|
*/
|
|
1582
|
-
200: Array<
|
|
1679
|
+
200: Array<Token>;
|
|
1583
1680
|
};
|
|
1584
|
-
export type
|
|
1585
|
-
export type
|
|
1586
|
-
body
|
|
1681
|
+
export type ListTokensResponse = ListTokensResponses[keyof ListTokensResponses];
|
|
1682
|
+
export type CreateTokenData = {
|
|
1683
|
+
body: TokenCreateInput;
|
|
1587
1684
|
path?: never;
|
|
1588
1685
|
query?: never;
|
|
1589
|
-
url: '/
|
|
1686
|
+
url: '/tokens';
|
|
1590
1687
|
};
|
|
1591
|
-
export type
|
|
1688
|
+
export type CreateTokenErrors = {
|
|
1592
1689
|
/**
|
|
1593
|
-
*
|
|
1690
|
+
* Not authenticated
|
|
1594
1691
|
*/
|
|
1595
|
-
|
|
1692
|
+
401: unknown;
|
|
1596
1693
|
};
|
|
1597
|
-
export type
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1694
|
+
export type CreateTokenResponses = {
|
|
1695
|
+
/**
|
|
1696
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1697
|
+
*/
|
|
1698
|
+
200: Token;
|
|
1699
|
+
};
|
|
1700
|
+
export type CreateTokenResponse = CreateTokenResponses[keyof CreateTokenResponses];
|
|
1701
|
+
export type DeleteTokenData = {
|
|
1702
|
+
body?: never;
|
|
1703
|
+
path: {
|
|
1704
|
+
/**
|
|
1705
|
+
* Generated unique identifier of the access token.
|
|
1706
|
+
*/
|
|
1707
|
+
token_id: string;
|
|
1708
|
+
};
|
|
1601
1709
|
query?: never;
|
|
1602
|
-
url: '/
|
|
1710
|
+
url: '/tokens/{token_id}';
|
|
1603
1711
|
};
|
|
1604
|
-
export type
|
|
1712
|
+
export type DeleteTokenResponses = {
|
|
1605
1713
|
/**
|
|
1606
|
-
* Successfully
|
|
1714
|
+
* Successfully deleted.
|
|
1607
1715
|
*/
|
|
1608
|
-
200:
|
|
1716
|
+
200: unknown;
|
|
1609
1717
|
};
|
|
1610
|
-
export type
|
|
1611
|
-
export type GetCreditsData = {
|
|
1718
|
+
export type GetTokenData = {
|
|
1612
1719
|
body?: never;
|
|
1613
|
-
path
|
|
1720
|
+
path: {
|
|
1721
|
+
/**
|
|
1722
|
+
* Generated unique identifier of the access token.
|
|
1723
|
+
*/
|
|
1724
|
+
token_id: string;
|
|
1725
|
+
};
|
|
1614
1726
|
query?: never;
|
|
1615
|
-
url: '/
|
|
1727
|
+
url: '/tokens/{token_id}';
|
|
1616
1728
|
};
|
|
1617
|
-
export type
|
|
1729
|
+
export type GetTokenErrors = {
|
|
1618
1730
|
/**
|
|
1619
1731
|
* Not authenticated
|
|
1620
1732
|
*/
|
|
1621
1733
|
401: unknown;
|
|
1622
1734
|
};
|
|
1623
|
-
export type
|
|
1735
|
+
export type GetTokenResponses = {
|
|
1624
1736
|
/**
|
|
1625
|
-
*
|
|
1737
|
+
* Returns access token details with masked secret.
|
|
1626
1738
|
*/
|
|
1627
|
-
200:
|
|
1739
|
+
200: Token;
|
|
1628
1740
|
};
|
|
1629
|
-
export type
|
|
1630
|
-
export type
|
|
1631
|
-
body:
|
|
1741
|
+
export type GetTokenResponse = GetTokenResponses[keyof GetTokenResponses];
|
|
1742
|
+
export type UpdateTokenData = {
|
|
1743
|
+
body: TokenUpdateInput;
|
|
1744
|
+
path: {
|
|
1632
1745
|
/**
|
|
1633
|
-
*
|
|
1746
|
+
* Generated unique identifier of the access token.
|
|
1634
1747
|
*/
|
|
1635
|
-
|
|
1748
|
+
token_id: string;
|
|
1636
1749
|
};
|
|
1637
|
-
path?: never;
|
|
1638
1750
|
query?: never;
|
|
1639
|
-
url: '/
|
|
1751
|
+
url: '/tokens/{token_id}';
|
|
1640
1752
|
};
|
|
1641
|
-
export type
|
|
1753
|
+
export type UpdateTokenErrors = {
|
|
1642
1754
|
/**
|
|
1643
1755
|
* Not authenticated
|
|
1644
1756
|
*/
|
|
1645
1757
|
401: unknown;
|
|
1646
1758
|
};
|
|
1647
|
-
export type
|
|
1759
|
+
export type UpdateTokenResponses = {
|
|
1648
1760
|
/**
|
|
1649
|
-
* Successfully
|
|
1761
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1650
1762
|
*/
|
|
1651
|
-
200:
|
|
1763
|
+
200: Token;
|
|
1652
1764
|
};
|
|
1653
|
-
export type
|
|
1765
|
+
export type UpdateTokenResponse = UpdateTokenResponses[keyof UpdateTokenResponses];
|
|
1766
|
+
export type RegenerateTokenData = {
|
|
1654
1767
|
body?: never;
|
|
1655
1768
|
path: {
|
|
1656
1769
|
/**
|
|
1657
|
-
*
|
|
1770
|
+
* Generated unique identifier of the access token.
|
|
1658
1771
|
*/
|
|
1659
|
-
|
|
1772
|
+
token_id: string;
|
|
1660
1773
|
};
|
|
1661
1774
|
query?: never;
|
|
1662
|
-
url: '/
|
|
1775
|
+
url: '/tokens/{token_id}/secret';
|
|
1663
1776
|
};
|
|
1664
|
-
export type
|
|
1777
|
+
export type RegenerateTokenErrors = {
|
|
1665
1778
|
/**
|
|
1666
1779
|
* Not authenticated
|
|
1667
1780
|
*/
|
|
1668
1781
|
401: unknown;
|
|
1669
1782
|
};
|
|
1670
|
-
export type
|
|
1783
|
+
export type RegenerateTokenResponses = {
|
|
1671
1784
|
/**
|
|
1672
|
-
*
|
|
1785
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1673
1786
|
*/
|
|
1674
|
-
200:
|
|
1787
|
+
200: Token;
|
|
1675
1788
|
};
|
|
1676
|
-
export type
|
|
1677
|
-
export type
|
|
1678
|
-
body
|
|
1679
|
-
path
|
|
1680
|
-
/**
|
|
1681
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1682
|
-
*/
|
|
1683
|
-
cluster_id: string;
|
|
1684
|
-
};
|
|
1789
|
+
export type RegenerateTokenResponse = RegenerateTokenResponses[keyof RegenerateTokenResponses];
|
|
1790
|
+
export type ListTicketsData = {
|
|
1791
|
+
body?: never;
|
|
1792
|
+
path?: never;
|
|
1685
1793
|
query?: never;
|
|
1686
|
-
url: '/
|
|
1794
|
+
url: '/tickets';
|
|
1687
1795
|
};
|
|
1688
|
-
export type
|
|
1796
|
+
export type ListTicketsResponses = {
|
|
1689
1797
|
/**
|
|
1690
|
-
*
|
|
1798
|
+
* An array of tickets for the organization, newest first.
|
|
1691
1799
|
*/
|
|
1692
|
-
200:
|
|
1800
|
+
200: Array<Ticket>;
|
|
1693
1801
|
};
|
|
1694
|
-
export type
|
|
1695
|
-
export type
|
|
1696
|
-
body
|
|
1697
|
-
path: {
|
|
1698
|
-
/**
|
|
1699
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1700
|
-
*/
|
|
1701
|
-
cluster_id: string;
|
|
1802
|
+
export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
|
|
1803
|
+
export type CreateTicketData = {
|
|
1804
|
+
body: {
|
|
1702
1805
|
/**
|
|
1703
|
-
*
|
|
1806
|
+
* JSON-encoded TicketCreateInput.
|
|
1704
1807
|
*/
|
|
1705
|
-
|
|
1808
|
+
payload?: string;
|
|
1809
|
+
attachments?: Array<Blob | File>;
|
|
1706
1810
|
};
|
|
1811
|
+
path?: never;
|
|
1707
1812
|
query?: never;
|
|
1708
|
-
url: '/
|
|
1813
|
+
url: '/tickets';
|
|
1709
1814
|
};
|
|
1710
|
-
export type
|
|
1815
|
+
export type CreateTicketResponses = {
|
|
1711
1816
|
/**
|
|
1712
|
-
*
|
|
1817
|
+
* Ticket created.
|
|
1713
1818
|
*/
|
|
1714
|
-
200:
|
|
1819
|
+
200: Ticket;
|
|
1715
1820
|
};
|
|
1716
|
-
export type
|
|
1717
|
-
export type
|
|
1821
|
+
export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
|
|
1822
|
+
export type CloseTicketData = {
|
|
1718
1823
|
body?: never;
|
|
1719
1824
|
path: {
|
|
1720
|
-
|
|
1721
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1722
|
-
*/
|
|
1723
|
-
cluster_id: string;
|
|
1724
|
-
/**
|
|
1725
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
1726
|
-
*/
|
|
1727
|
-
chart_name: string;
|
|
1825
|
+
ticket_id: string;
|
|
1728
1826
|
};
|
|
1729
1827
|
query?: never;
|
|
1730
|
-
url: '/
|
|
1828
|
+
url: '/tickets/{ticket_id}';
|
|
1731
1829
|
};
|
|
1732
|
-
export type
|
|
1830
|
+
export type CloseTicketResponses = {
|
|
1733
1831
|
/**
|
|
1734
|
-
*
|
|
1832
|
+
* Ticket closed.
|
|
1735
1833
|
*/
|
|
1736
|
-
200:
|
|
1834
|
+
200: Ticket;
|
|
1737
1835
|
};
|
|
1738
|
-
export type
|
|
1739
|
-
export type
|
|
1740
|
-
body
|
|
1836
|
+
export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
|
|
1837
|
+
export type GetTicketData = {
|
|
1838
|
+
body?: never;
|
|
1741
1839
|
path: {
|
|
1742
|
-
|
|
1743
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1744
|
-
*/
|
|
1745
|
-
cluster_id: string;
|
|
1746
|
-
/**
|
|
1747
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
1748
|
-
*/
|
|
1749
|
-
chart_name: string;
|
|
1840
|
+
ticket_id: string;
|
|
1750
1841
|
};
|
|
1751
1842
|
query?: never;
|
|
1752
|
-
url: '/
|
|
1843
|
+
url: '/tickets/{ticket_id}';
|
|
1753
1844
|
};
|
|
1754
|
-
export type
|
|
1845
|
+
export type GetTicketResponses = {
|
|
1755
1846
|
/**
|
|
1756
|
-
*
|
|
1847
|
+
* Ticket with messages (internal notes excluded).
|
|
1757
1848
|
*/
|
|
1758
|
-
200:
|
|
1849
|
+
200: Ticket;
|
|
1759
1850
|
};
|
|
1760
|
-
export type
|
|
1761
|
-
export type
|
|
1762
|
-
body
|
|
1763
|
-
path: {
|
|
1851
|
+
export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
|
|
1852
|
+
export type ReplyTicketData = {
|
|
1853
|
+
body: {
|
|
1764
1854
|
/**
|
|
1765
|
-
*
|
|
1855
|
+
* JSON-encoded TicketMessageInput.
|
|
1766
1856
|
*/
|
|
1767
|
-
|
|
1857
|
+
payload?: string;
|
|
1858
|
+
attachments?: Array<Blob | File>;
|
|
1859
|
+
};
|
|
1860
|
+
path: {
|
|
1861
|
+
ticket_id: string;
|
|
1768
1862
|
};
|
|
1769
1863
|
query?: never;
|
|
1770
|
-
url: '/
|
|
1864
|
+
url: '/tickets/{ticket_id}/messages';
|
|
1771
1865
|
};
|
|
1772
|
-
export type
|
|
1866
|
+
export type ReplyTicketErrors = {
|
|
1773
1867
|
/**
|
|
1774
|
-
*
|
|
1868
|
+
* Ticket is closed. Open a new ticket instead.
|
|
1775
1869
|
*/
|
|
1776
|
-
|
|
1870
|
+
409: unknown;
|
|
1777
1871
|
};
|
|
1778
|
-
export type
|
|
1872
|
+
export type ReplyTicketResponses = {
|
|
1779
1873
|
/**
|
|
1780
|
-
*
|
|
1874
|
+
* Reply appended.
|
|
1781
1875
|
*/
|
|
1782
|
-
200:
|
|
1876
|
+
200: TicketMessage;
|
|
1783
1877
|
};
|
|
1784
|
-
export type
|
|
1785
|
-
export type
|
|
1786
|
-
body
|
|
1878
|
+
export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
|
|
1879
|
+
export type GetTicketAttachmentData = {
|
|
1880
|
+
body?: never;
|
|
1787
1881
|
path: {
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
*/
|
|
1791
|
-
cluster_id: string;
|
|
1882
|
+
ticket_id: string;
|
|
1883
|
+
attachment_id: string;
|
|
1792
1884
|
};
|
|
1793
1885
|
query?: never;
|
|
1794
|
-
url: '/
|
|
1795
|
-
};
|
|
1796
|
-
export type CreateFleetErrors = {
|
|
1797
|
-
/**
|
|
1798
|
-
* Cluster quota exceeded. Maximum number of fleets per cluster allowed in this organization is reached.
|
|
1799
|
-
*/
|
|
1800
|
-
402: string;
|
|
1886
|
+
url: '/tickets/{ticket_id}/attachments/{attachment_id}';
|
|
1801
1887
|
};
|
|
1802
|
-
export type
|
|
1803
|
-
export type CreateFleetResponses = {
|
|
1888
|
+
export type GetTicketAttachmentResponses = {
|
|
1804
1889
|
/**
|
|
1805
|
-
*
|
|
1890
|
+
* Attachment binary stream.
|
|
1806
1891
|
*/
|
|
1807
|
-
200:
|
|
1892
|
+
200: Blob | File;
|
|
1808
1893
|
};
|
|
1809
|
-
export type
|
|
1810
|
-
export type
|
|
1894
|
+
export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
|
|
1895
|
+
export type ListRepositoriesData = {
|
|
1811
1896
|
body?: never;
|
|
1812
|
-
path
|
|
1813
|
-
/**
|
|
1814
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1815
|
-
*/
|
|
1816
|
-
cluster_id: string;
|
|
1817
|
-
/**
|
|
1818
|
-
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1819
|
-
*/
|
|
1820
|
-
fleet_name: string;
|
|
1821
|
-
};
|
|
1897
|
+
path?: never;
|
|
1822
1898
|
query?: never;
|
|
1823
|
-
url: '/
|
|
1899
|
+
url: '/registry';
|
|
1824
1900
|
};
|
|
1825
|
-
export type
|
|
1901
|
+
export type ListRepositoriesErrors = {
|
|
1826
1902
|
/**
|
|
1827
|
-
*
|
|
1903
|
+
* Not authenticated
|
|
1828
1904
|
*/
|
|
1829
|
-
|
|
1905
|
+
401: unknown;
|
|
1906
|
+
/**
|
|
1907
|
+
* Internal server error
|
|
1908
|
+
*/
|
|
1909
|
+
500: unknown;
|
|
1830
1910
|
};
|
|
1831
|
-
export type
|
|
1832
|
-
|
|
1911
|
+
export type ListRepositoriesResponses = {
|
|
1912
|
+
/**
|
|
1913
|
+
* List of repositories
|
|
1914
|
+
*/
|
|
1915
|
+
200: Array<RegistryRepository>;
|
|
1916
|
+
};
|
|
1917
|
+
export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
|
|
1918
|
+
export type ListTagsData = {
|
|
1833
1919
|
body?: never;
|
|
1834
1920
|
path: {
|
|
1835
1921
|
/**
|
|
1836
|
-
*
|
|
1922
|
+
* Region where the repository is located
|
|
1837
1923
|
*/
|
|
1838
|
-
|
|
1924
|
+
region: string;
|
|
1839
1925
|
/**
|
|
1840
|
-
*
|
|
1926
|
+
* Name of the repository
|
|
1841
1927
|
*/
|
|
1842
|
-
|
|
1928
|
+
repository: string;
|
|
1843
1929
|
};
|
|
1844
1930
|
query?: never;
|
|
1845
|
-
url: '/
|
|
1931
|
+
url: '/registry/{region}/{repository}';
|
|
1846
1932
|
};
|
|
1847
|
-
export type
|
|
1933
|
+
export type ListTagsErrors = {
|
|
1848
1934
|
/**
|
|
1849
|
-
*
|
|
1935
|
+
* Not authenticated
|
|
1850
1936
|
*/
|
|
1851
|
-
|
|
1937
|
+
401: unknown;
|
|
1938
|
+
/**
|
|
1939
|
+
* Repository not found
|
|
1940
|
+
*/
|
|
1941
|
+
404: unknown;
|
|
1942
|
+
/**
|
|
1943
|
+
* Internal server error
|
|
1944
|
+
*/
|
|
1945
|
+
500: unknown;
|
|
1852
1946
|
};
|
|
1853
|
-
export type
|
|
1854
|
-
|
|
1855
|
-
|
|
1947
|
+
export type ListTagsResponses = {
|
|
1948
|
+
/**
|
|
1949
|
+
* Repository with tags
|
|
1950
|
+
*/
|
|
1951
|
+
200: RegistryRepositoryWithTags;
|
|
1952
|
+
};
|
|
1953
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
1954
|
+
export type DeleteTagData = {
|
|
1955
|
+
body?: never;
|
|
1856
1956
|
path: {
|
|
1857
1957
|
/**
|
|
1858
|
-
*
|
|
1958
|
+
* Region where the repository is located
|
|
1859
1959
|
*/
|
|
1860
|
-
|
|
1960
|
+
region: string;
|
|
1861
1961
|
/**
|
|
1862
|
-
*
|
|
1962
|
+
* Name of the repository
|
|
1863
1963
|
*/
|
|
1864
|
-
|
|
1964
|
+
repository: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* Name of the tag
|
|
1967
|
+
*/
|
|
1968
|
+
tag: string;
|
|
1865
1969
|
};
|
|
1866
1970
|
query?: never;
|
|
1867
|
-
url: '/
|
|
1971
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1868
1972
|
};
|
|
1869
|
-
export type
|
|
1973
|
+
export type DeleteTagErrors = {
|
|
1870
1974
|
/**
|
|
1871
|
-
*
|
|
1975
|
+
* Not authenticated
|
|
1872
1976
|
*/
|
|
1873
|
-
|
|
1977
|
+
401: unknown;
|
|
1978
|
+
/**
|
|
1979
|
+
* Tag not found
|
|
1980
|
+
*/
|
|
1981
|
+
404: unknown;
|
|
1982
|
+
/**
|
|
1983
|
+
* Internal server error
|
|
1984
|
+
*/
|
|
1985
|
+
500: unknown;
|
|
1874
1986
|
};
|
|
1875
|
-
export type
|
|
1876
|
-
export type UpdateFleetResponses = {
|
|
1987
|
+
export type DeleteTagResponses = {
|
|
1877
1988
|
/**
|
|
1878
|
-
*
|
|
1989
|
+
* Tag successfully deleted
|
|
1879
1990
|
*/
|
|
1880
|
-
200:
|
|
1991
|
+
200: unknown;
|
|
1881
1992
|
};
|
|
1882
|
-
export type
|
|
1883
|
-
export type QueryClusterData = {
|
|
1993
|
+
export type GetTagData = {
|
|
1884
1994
|
body?: never;
|
|
1885
1995
|
path: {
|
|
1886
1996
|
/**
|
|
1887
|
-
*
|
|
1997
|
+
* Region where the repository is located
|
|
1888
1998
|
*/
|
|
1889
|
-
|
|
1999
|
+
region: string;
|
|
2000
|
+
/**
|
|
2001
|
+
* Name of the repository
|
|
2002
|
+
*/
|
|
2003
|
+
repository: string;
|
|
2004
|
+
/**
|
|
2005
|
+
* Name of the tag
|
|
2006
|
+
*/
|
|
2007
|
+
tag: string;
|
|
1890
2008
|
};
|
|
1891
2009
|
query?: never;
|
|
1892
|
-
url: '/
|
|
2010
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1893
2011
|
};
|
|
1894
|
-
export type
|
|
2012
|
+
export type GetTagErrors = {
|
|
1895
2013
|
/**
|
|
1896
2014
|
* Not authenticated
|
|
1897
2015
|
*/
|
|
1898
2016
|
401: unknown;
|
|
2017
|
+
/**
|
|
2018
|
+
* Tag not found
|
|
2019
|
+
*/
|
|
2020
|
+
404: unknown;
|
|
2021
|
+
/**
|
|
2022
|
+
* Internal server error
|
|
2023
|
+
*/
|
|
2024
|
+
500: unknown;
|
|
1899
2025
|
};
|
|
1900
|
-
export type
|
|
2026
|
+
export type GetTagResponses = {
|
|
1901
2027
|
/**
|
|
1902
|
-
*
|
|
2028
|
+
* Tag details
|
|
1903
2029
|
*/
|
|
1904
|
-
200:
|
|
2030
|
+
200: RegistryTag;
|
|
1905
2031
|
};
|
|
1906
|
-
export type
|
|
2032
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
2033
|
+
export type GetOrganizationData = {
|
|
1907
2034
|
body?: never;
|
|
1908
2035
|
path?: never;
|
|
1909
2036
|
query?: never;
|
|
1910
|
-
url: '/
|
|
1911
|
-
};
|
|
1912
|
-
export type ListClustersErrors = {
|
|
1913
|
-
/**
|
|
1914
|
-
* Not authenticated
|
|
1915
|
-
*/
|
|
1916
|
-
401: unknown;
|
|
2037
|
+
url: '/organization';
|
|
1917
2038
|
};
|
|
1918
|
-
export type
|
|
2039
|
+
export type GetOrganizationResponses = {
|
|
1919
2040
|
/**
|
|
1920
|
-
*
|
|
2041
|
+
* Returns a single object containing organization details.
|
|
1921
2042
|
*/
|
|
1922
|
-
200:
|
|
2043
|
+
200: Organization;
|
|
1923
2044
|
};
|
|
1924
|
-
export type
|
|
1925
|
-
export type
|
|
1926
|
-
body:
|
|
2045
|
+
export type GetOrganizationResponse = GetOrganizationResponses[keyof GetOrganizationResponses];
|
|
2046
|
+
export type CreateOrganizationData = {
|
|
2047
|
+
body: OrganizationCreateInput;
|
|
1927
2048
|
path?: never;
|
|
1928
2049
|
query?: never;
|
|
1929
|
-
url: '/
|
|
2050
|
+
url: '/organization';
|
|
1930
2051
|
};
|
|
1931
|
-
export type
|
|
2052
|
+
export type CreateOrganizationResponses = {
|
|
1932
2053
|
/**
|
|
1933
|
-
*
|
|
2054
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2055
|
+
*
|
|
1934
2056
|
*/
|
|
1935
|
-
|
|
2057
|
+
200: OrganizationCreateOutput;
|
|
1936
2058
|
};
|
|
1937
|
-
export type
|
|
1938
|
-
export type
|
|
2059
|
+
export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
|
|
2060
|
+
export type GetBasicPriceConsentData = {
|
|
2061
|
+
body?: never;
|
|
2062
|
+
path?: never;
|
|
2063
|
+
query?: never;
|
|
2064
|
+
url: '/organization/basic-price-consent';
|
|
2065
|
+
};
|
|
2066
|
+
export type GetBasicPriceConsentResponses = {
|
|
1939
2067
|
/**
|
|
1940
|
-
*
|
|
2068
|
+
* Returns the current consent status.
|
|
1941
2069
|
*/
|
|
1942
|
-
200:
|
|
2070
|
+
200: BasicPriceConsent;
|
|
1943
2071
|
};
|
|
1944
|
-
export type
|
|
1945
|
-
export type
|
|
1946
|
-
body
|
|
1947
|
-
path
|
|
1948
|
-
/**
|
|
1949
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1950
|
-
*/
|
|
1951
|
-
cluster_id: string;
|
|
1952
|
-
};
|
|
2072
|
+
export type GetBasicPriceConsentResponse = GetBasicPriceConsentResponses[keyof GetBasicPriceConsentResponses];
|
|
2073
|
+
export type SetBasicPriceConsentData = {
|
|
2074
|
+
body: BasicPriceConsentInput;
|
|
2075
|
+
path?: never;
|
|
1953
2076
|
query?: never;
|
|
1954
|
-
url: '/
|
|
2077
|
+
url: '/organization/basic-price-consent';
|
|
1955
2078
|
};
|
|
1956
|
-
export type
|
|
2079
|
+
export type SetBasicPriceConsentErrors = {
|
|
1957
2080
|
/**
|
|
1958
|
-
*
|
|
2081
|
+
* The authenticated principal has no email address (e.g. a service account) and cannot record this decision.
|
|
2082
|
+
*
|
|
1959
2083
|
*/
|
|
1960
|
-
|
|
2084
|
+
401: unknown;
|
|
1961
2085
|
/**
|
|
1962
|
-
* The
|
|
1963
|
-
*
|
|
2086
|
+
* The consent flow does not apply to this organization.
|
|
1964
2087
|
*/
|
|
1965
|
-
|
|
2088
|
+
409: unknown;
|
|
1966
2089
|
};
|
|
1967
|
-
export type
|
|
2090
|
+
export type SetBasicPriceConsentResponses = {
|
|
1968
2091
|
/**
|
|
1969
|
-
*
|
|
2092
|
+
* Decision recorded. Returns the updated consent status.
|
|
1970
2093
|
*/
|
|
1971
|
-
200:
|
|
2094
|
+
200: BasicPriceConsent;
|
|
1972
2095
|
};
|
|
1973
|
-
export type
|
|
1974
|
-
export type
|
|
1975
|
-
|
|
1976
|
-
|
|
2096
|
+
export type SetBasicPriceConsentResponse = SetBasicPriceConsentResponses[keyof SetBasicPriceConsentResponses];
|
|
2097
|
+
export type PostMcpData = {
|
|
2098
|
+
/**
|
|
2099
|
+
* JSON-RPC 2.0 request payload
|
|
2100
|
+
*/
|
|
2101
|
+
body: {
|
|
2102
|
+
jsonrpc?: string;
|
|
2103
|
+
method?: string;
|
|
2104
|
+
id?: string | number;
|
|
1977
2105
|
/**
|
|
1978
|
-
*
|
|
2106
|
+
* Method-specific parameters
|
|
1979
2107
|
*/
|
|
1980
|
-
|
|
2108
|
+
params?: {
|
|
2109
|
+
[key: string]: unknown;
|
|
2110
|
+
};
|
|
1981
2111
|
};
|
|
2112
|
+
path?: never;
|
|
1982
2113
|
query?: never;
|
|
1983
|
-
url: '/
|
|
2114
|
+
url: '/mcp';
|
|
1984
2115
|
};
|
|
1985
|
-
export type
|
|
2116
|
+
export type PostMcpErrors = {
|
|
1986
2117
|
/**
|
|
1987
|
-
*
|
|
2118
|
+
* Not authenticated
|
|
1988
2119
|
*/
|
|
1989
|
-
|
|
2120
|
+
401: unknown;
|
|
1990
2121
|
};
|
|
1991
|
-
export type
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
2122
|
+
export type PostMcpResponses = {
|
|
2123
|
+
/**
|
|
2124
|
+
* JSON-RPC 2.0 success or error response
|
|
2125
|
+
*/
|
|
2126
|
+
200: {
|
|
2127
|
+
jsonrpc?: string;
|
|
2128
|
+
id?: string | number;
|
|
2129
|
+
result?: {
|
|
2130
|
+
[key: string]: unknown;
|
|
2131
|
+
};
|
|
2132
|
+
error?: {
|
|
2133
|
+
code?: number;
|
|
2134
|
+
message?: string;
|
|
2135
|
+
};
|
|
1999
2136
|
};
|
|
2137
|
+
};
|
|
2138
|
+
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
2139
|
+
export type ListMarketplaceChartsData = {
|
|
2140
|
+
body?: never;
|
|
2141
|
+
path?: never;
|
|
2000
2142
|
query?: never;
|
|
2001
|
-
url: '/
|
|
2143
|
+
url: '/marketplace';
|
|
2002
2144
|
};
|
|
2003
|
-
export type
|
|
2145
|
+
export type ListMarketplaceChartsErrors = {
|
|
2004
2146
|
/**
|
|
2005
|
-
*
|
|
2147
|
+
* Not authenticated
|
|
2006
2148
|
*/
|
|
2007
|
-
|
|
2149
|
+
401: unknown;
|
|
2008
2150
|
};
|
|
2009
|
-
export type
|
|
2010
|
-
|
|
2151
|
+
export type ListMarketplaceChartsResponses = {
|
|
2152
|
+
/**
|
|
2153
|
+
* An array of chart listings in the marketplace.
|
|
2154
|
+
*/
|
|
2155
|
+
200: Array<MarketplaceListing>;
|
|
2156
|
+
};
|
|
2157
|
+
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
2158
|
+
export type GetMarketplaceChartFilesData = {
|
|
2011
2159
|
body?: never;
|
|
2012
2160
|
path: {
|
|
2013
2161
|
/**
|
|
2014
|
-
*
|
|
2162
|
+
* Name of the chart in the marketplace.
|
|
2015
2163
|
*/
|
|
2016
|
-
|
|
2164
|
+
chart_name: string;
|
|
2165
|
+
/**
|
|
2166
|
+
* 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).
|
|
2167
|
+
*/
|
|
2168
|
+
version_channel: string;
|
|
2017
2169
|
};
|
|
2018
2170
|
query?: never;
|
|
2019
|
-
url: '/
|
|
2171
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
2020
2172
|
};
|
|
2021
|
-
export type
|
|
2173
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
2022
2174
|
/**
|
|
2023
|
-
*
|
|
2175
|
+
* Chart not found or no version matches the channel
|
|
2024
2176
|
*/
|
|
2025
|
-
|
|
2177
|
+
404: unknown;
|
|
2026
2178
|
};
|
|
2027
|
-
export type
|
|
2179
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
2028
2180
|
/**
|
|
2029
|
-
*
|
|
2181
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2030
2182
|
*/
|
|
2031
|
-
200:
|
|
2183
|
+
200: MarketplaceListingFiles;
|
|
2032
2184
|
};
|
|
2033
|
-
export type
|
|
2185
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
2034
2186
|
export type ListInvitesData = {
|
|
2035
2187
|
body?: never;
|
|
2036
2188
|
path?: never;
|
|
@@ -2107,619 +2259,654 @@ export type DeleteInviteResponses = {
|
|
|
2107
2259
|
*/
|
|
2108
2260
|
200: unknown;
|
|
2109
2261
|
};
|
|
2110
|
-
export type
|
|
2262
|
+
export type QueryClusterData = {
|
|
2111
2263
|
body?: never;
|
|
2112
|
-
path
|
|
2264
|
+
path: {
|
|
2265
|
+
/**
|
|
2266
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2267
|
+
*/
|
|
2268
|
+
cluster_id: string;
|
|
2269
|
+
};
|
|
2113
2270
|
query?: never;
|
|
2114
|
-
url: '/
|
|
2271
|
+
url: '/clusters/{cluster_id}/query';
|
|
2115
2272
|
};
|
|
2116
|
-
export type
|
|
2273
|
+
export type QueryClusterErrors = {
|
|
2117
2274
|
/**
|
|
2118
2275
|
* Not authenticated
|
|
2119
2276
|
*/
|
|
2120
2277
|
401: unknown;
|
|
2121
2278
|
};
|
|
2122
|
-
export type
|
|
2279
|
+
export type QueryClusterResponses = {
|
|
2123
2280
|
/**
|
|
2124
|
-
*
|
|
2281
|
+
* Kubernetes API response
|
|
2125
2282
|
*/
|
|
2126
|
-
200:
|
|
2283
|
+
200: unknown;
|
|
2127
2284
|
};
|
|
2128
|
-
export type
|
|
2129
|
-
export type GetMarketplaceChartFilesData = {
|
|
2285
|
+
export type ListFleetsData = {
|
|
2130
2286
|
body?: never;
|
|
2131
2287
|
path: {
|
|
2132
2288
|
/**
|
|
2133
|
-
*
|
|
2134
|
-
*/
|
|
2135
|
-
chart_name: string;
|
|
2136
|
-
/**
|
|
2137
|
-
* 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).
|
|
2289
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2138
2290
|
*/
|
|
2139
|
-
|
|
2291
|
+
cluster_id: string;
|
|
2140
2292
|
};
|
|
2141
2293
|
query?: never;
|
|
2142
|
-
url: '/
|
|
2294
|
+
url: '/clusters/{cluster_id}/fleets';
|
|
2143
2295
|
};
|
|
2144
|
-
export type
|
|
2296
|
+
export type ListFleetsErrors = {
|
|
2145
2297
|
/**
|
|
2146
|
-
*
|
|
2298
|
+
* Not authenticated
|
|
2147
2299
|
*/
|
|
2148
|
-
|
|
2300
|
+
401: unknown;
|
|
2149
2301
|
};
|
|
2150
|
-
export type
|
|
2302
|
+
export type ListFleetsResponses = {
|
|
2151
2303
|
/**
|
|
2152
|
-
*
|
|
2304
|
+
* An array of fleets
|
|
2153
2305
|
*/
|
|
2154
|
-
200:
|
|
2306
|
+
200: Array<Fleet>;
|
|
2155
2307
|
};
|
|
2156
|
-
export type
|
|
2157
|
-
export type
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
*/
|
|
2161
|
-
body: {
|
|
2162
|
-
jsonrpc?: string;
|
|
2163
|
-
method?: string;
|
|
2164
|
-
id?: string | number;
|
|
2308
|
+
export type ListFleetsResponse = ListFleetsResponses[keyof ListFleetsResponses];
|
|
2309
|
+
export type CreateFleetData = {
|
|
2310
|
+
body: FleetCreateInput;
|
|
2311
|
+
path: {
|
|
2165
2312
|
/**
|
|
2166
|
-
*
|
|
2313
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2167
2314
|
*/
|
|
2168
|
-
|
|
2169
|
-
[key: string]: unknown;
|
|
2170
|
-
};
|
|
2315
|
+
cluster_id: string;
|
|
2171
2316
|
};
|
|
2172
|
-
path?: never;
|
|
2173
2317
|
query?: never;
|
|
2174
|
-
url: '/
|
|
2318
|
+
url: '/clusters/{cluster_id}/fleets';
|
|
2175
2319
|
};
|
|
2176
|
-
export type
|
|
2320
|
+
export type CreateFleetErrors = {
|
|
2177
2321
|
/**
|
|
2178
|
-
*
|
|
2322
|
+
* Cluster quota exceeded. Maximum number of fleets per cluster allowed in this organization is reached.
|
|
2179
2323
|
*/
|
|
2180
|
-
|
|
2324
|
+
402: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* 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.
|
|
2327
|
+
*/
|
|
2328
|
+
409: string;
|
|
2181
2329
|
};
|
|
2182
|
-
export type
|
|
2330
|
+
export type CreateFleetError = CreateFleetErrors[keyof CreateFleetErrors];
|
|
2331
|
+
export type CreateFleetResponses = {
|
|
2183
2332
|
/**
|
|
2184
|
-
*
|
|
2333
|
+
* Successfully created. Returns created Fleet ID.
|
|
2185
2334
|
*/
|
|
2186
|
-
200:
|
|
2187
|
-
jsonrpc?: string;
|
|
2188
|
-
id?: string | number;
|
|
2189
|
-
result?: {
|
|
2190
|
-
[key: string]: unknown;
|
|
2191
|
-
};
|
|
2192
|
-
error?: {
|
|
2193
|
-
code?: number;
|
|
2194
|
-
message?: string;
|
|
2195
|
-
};
|
|
2196
|
-
};
|
|
2335
|
+
200: string;
|
|
2197
2336
|
};
|
|
2198
|
-
export type
|
|
2199
|
-
export type
|
|
2337
|
+
export type CreateFleetResponse = CreateFleetResponses[keyof CreateFleetResponses];
|
|
2338
|
+
export type DeleteFleetData = {
|
|
2200
2339
|
body?: never;
|
|
2201
|
-
path
|
|
2340
|
+
path: {
|
|
2341
|
+
/**
|
|
2342
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2343
|
+
*/
|
|
2344
|
+
cluster_id: string;
|
|
2345
|
+
/**
|
|
2346
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2347
|
+
*/
|
|
2348
|
+
fleet_name: string;
|
|
2349
|
+
};
|
|
2202
2350
|
query?: never;
|
|
2203
|
-
url: '/
|
|
2351
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2204
2352
|
};
|
|
2205
|
-
export type
|
|
2353
|
+
export type DeleteFleetErrors = {
|
|
2206
2354
|
/**
|
|
2207
|
-
*
|
|
2355
|
+
* 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.
|
|
2208
2356
|
*/
|
|
2209
|
-
|
|
2210
|
-
};
|
|
2211
|
-
export type GetOrganizationResponse = GetOrganizationResponses[keyof GetOrganizationResponses];
|
|
2212
|
-
export type CreateOrganizationData = {
|
|
2213
|
-
body: OrganizationCreateInput;
|
|
2214
|
-
path?: never;
|
|
2215
|
-
query?: never;
|
|
2216
|
-
url: '/organization';
|
|
2357
|
+
409: string;
|
|
2217
2358
|
};
|
|
2218
|
-
export type
|
|
2359
|
+
export type DeleteFleetError = DeleteFleetErrors[keyof DeleteFleetErrors];
|
|
2360
|
+
export type DeleteFleetResponses = {
|
|
2219
2361
|
/**
|
|
2220
|
-
*
|
|
2221
|
-
*
|
|
2362
|
+
* Successfully deleted.
|
|
2222
2363
|
*/
|
|
2223
|
-
200:
|
|
2364
|
+
200: string;
|
|
2224
2365
|
};
|
|
2225
|
-
export type
|
|
2226
|
-
export type
|
|
2366
|
+
export type DeleteFleetResponse = DeleteFleetResponses[keyof DeleteFleetResponses];
|
|
2367
|
+
export type GetFleetData = {
|
|
2227
2368
|
body?: never;
|
|
2228
|
-
path
|
|
2369
|
+
path: {
|
|
2370
|
+
/**
|
|
2371
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2372
|
+
*/
|
|
2373
|
+
cluster_id: string;
|
|
2374
|
+
/**
|
|
2375
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2376
|
+
*/
|
|
2377
|
+
fleet_name: string;
|
|
2378
|
+
};
|
|
2229
2379
|
query?: never;
|
|
2230
|
-
url: '/
|
|
2231
|
-
};
|
|
2232
|
-
export type ListRepositoriesErrors = {
|
|
2233
|
-
/**
|
|
2234
|
-
* Not authenticated
|
|
2235
|
-
*/
|
|
2236
|
-
401: unknown;
|
|
2237
|
-
/**
|
|
2238
|
-
* Internal server error
|
|
2239
|
-
*/
|
|
2240
|
-
500: unknown;
|
|
2380
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2241
2381
|
};
|
|
2242
|
-
export type
|
|
2382
|
+
export type GetFleetResponses = {
|
|
2243
2383
|
/**
|
|
2244
|
-
*
|
|
2384
|
+
* Returns a single object containing fleet details.
|
|
2245
2385
|
*/
|
|
2246
|
-
200:
|
|
2386
|
+
200: Fleet;
|
|
2247
2387
|
};
|
|
2248
|
-
export type
|
|
2249
|
-
export type
|
|
2250
|
-
body
|
|
2388
|
+
export type GetFleetResponse = GetFleetResponses[keyof GetFleetResponses];
|
|
2389
|
+
export type UpdateFleetData = {
|
|
2390
|
+
body: FleetUpdateInput;
|
|
2251
2391
|
path: {
|
|
2252
2392
|
/**
|
|
2253
|
-
*
|
|
2393
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2254
2394
|
*/
|
|
2255
|
-
|
|
2395
|
+
cluster_id: string;
|
|
2256
2396
|
/**
|
|
2257
|
-
*
|
|
2397
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2258
2398
|
*/
|
|
2259
|
-
|
|
2399
|
+
fleet_name: string;
|
|
2260
2400
|
};
|
|
2261
2401
|
query?: never;
|
|
2262
|
-
url: '/
|
|
2402
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2263
2403
|
};
|
|
2264
|
-
export type
|
|
2404
|
+
export type UpdateFleetErrors = {
|
|
2265
2405
|
/**
|
|
2266
|
-
*
|
|
2406
|
+
* Organization must have a valid payment method configured to access this endpoint.
|
|
2267
2407
|
*/
|
|
2268
|
-
|
|
2408
|
+
402: string;
|
|
2269
2409
|
/**
|
|
2270
|
-
*
|
|
2271
|
-
*/
|
|
2272
|
-
404: unknown;
|
|
2273
|
-
/**
|
|
2274
|
-
* Internal server error
|
|
2410
|
+
* 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.
|
|
2275
2411
|
*/
|
|
2276
|
-
|
|
2412
|
+
409: string;
|
|
2277
2413
|
};
|
|
2278
|
-
export type
|
|
2414
|
+
export type UpdateFleetError = UpdateFleetErrors[keyof UpdateFleetErrors];
|
|
2415
|
+
export type UpdateFleetResponses = {
|
|
2279
2416
|
/**
|
|
2280
|
-
*
|
|
2417
|
+
* Successfully updated.
|
|
2281
2418
|
*/
|
|
2282
|
-
200:
|
|
2419
|
+
200: string;
|
|
2283
2420
|
};
|
|
2284
|
-
export type
|
|
2285
|
-
export type
|
|
2421
|
+
export type UpdateFleetResponse = UpdateFleetResponses[keyof UpdateFleetResponses];
|
|
2422
|
+
export type ListChartsData = {
|
|
2286
2423
|
body?: never;
|
|
2287
2424
|
path: {
|
|
2288
2425
|
/**
|
|
2289
|
-
*
|
|
2290
|
-
*/
|
|
2291
|
-
region: string;
|
|
2292
|
-
/**
|
|
2293
|
-
* Name of the repository
|
|
2294
|
-
*/
|
|
2295
|
-
repository: string;
|
|
2296
|
-
/**
|
|
2297
|
-
* Name of the tag
|
|
2426
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2298
2427
|
*/
|
|
2299
|
-
|
|
2428
|
+
cluster_id: string;
|
|
2300
2429
|
};
|
|
2301
2430
|
query?: never;
|
|
2302
|
-
url: '/
|
|
2431
|
+
url: '/clusters/{cluster_id}/charts';
|
|
2303
2432
|
};
|
|
2304
|
-
export type
|
|
2433
|
+
export type ListChartsErrors = {
|
|
2305
2434
|
/**
|
|
2306
2435
|
* Not authenticated
|
|
2307
2436
|
*/
|
|
2308
2437
|
401: unknown;
|
|
2438
|
+
};
|
|
2439
|
+
export type ListChartsResponses = {
|
|
2309
2440
|
/**
|
|
2310
|
-
*
|
|
2441
|
+
* An array of charts
|
|
2311
2442
|
*/
|
|
2312
|
-
|
|
2443
|
+
200: Array<Chart>;
|
|
2444
|
+
};
|
|
2445
|
+
export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
|
|
2446
|
+
export type CreateChartData = {
|
|
2447
|
+
body: ChartCreateInput;
|
|
2448
|
+
path: {
|
|
2449
|
+
/**
|
|
2450
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2451
|
+
*/
|
|
2452
|
+
cluster_id: string;
|
|
2453
|
+
};
|
|
2454
|
+
query?: never;
|
|
2455
|
+
url: '/clusters/{cluster_id}/charts';
|
|
2456
|
+
};
|
|
2457
|
+
export type CreateChartErrors = {
|
|
2313
2458
|
/**
|
|
2314
|
-
*
|
|
2459
|
+
* 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.
|
|
2315
2460
|
*/
|
|
2316
|
-
|
|
2461
|
+
409: string;
|
|
2317
2462
|
};
|
|
2318
|
-
export type
|
|
2463
|
+
export type CreateChartError = CreateChartErrors[keyof CreateChartErrors];
|
|
2464
|
+
export type CreateChartResponses = {
|
|
2319
2465
|
/**
|
|
2320
|
-
*
|
|
2466
|
+
* Successfully created. Returns created Chart ID.
|
|
2321
2467
|
*/
|
|
2322
|
-
200:
|
|
2468
|
+
200: string;
|
|
2323
2469
|
};
|
|
2324
|
-
export type
|
|
2470
|
+
export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
|
|
2471
|
+
export type DeleteChartData = {
|
|
2325
2472
|
body?: never;
|
|
2326
2473
|
path: {
|
|
2327
2474
|
/**
|
|
2328
|
-
*
|
|
2329
|
-
*/
|
|
2330
|
-
region: string;
|
|
2331
|
-
/**
|
|
2332
|
-
* Name of the repository
|
|
2475
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2333
2476
|
*/
|
|
2334
|
-
|
|
2477
|
+
cluster_id: string;
|
|
2335
2478
|
/**
|
|
2336
|
-
*
|
|
2479
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2337
2480
|
*/
|
|
2338
|
-
|
|
2481
|
+
chart_name: string;
|
|
2339
2482
|
};
|
|
2340
2483
|
query?: never;
|
|
2341
|
-
url: '/
|
|
2484
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2342
2485
|
};
|
|
2343
|
-
export type
|
|
2344
|
-
/**
|
|
2345
|
-
* Not authenticated
|
|
2346
|
-
*/
|
|
2347
|
-
401: unknown;
|
|
2486
|
+
export type DeleteChartErrors = {
|
|
2348
2487
|
/**
|
|
2349
|
-
*
|
|
2488
|
+
* 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.
|
|
2350
2489
|
*/
|
|
2351
|
-
|
|
2352
|
-
/**
|
|
2353
|
-
* Internal server error
|
|
2354
|
-
*/
|
|
2355
|
-
500: unknown;
|
|
2490
|
+
409: string;
|
|
2356
2491
|
};
|
|
2357
|
-
export type
|
|
2492
|
+
export type DeleteChartError = DeleteChartErrors[keyof DeleteChartErrors];
|
|
2493
|
+
export type DeleteChartResponses = {
|
|
2358
2494
|
/**
|
|
2359
|
-
*
|
|
2495
|
+
* Successfully deleted.
|
|
2360
2496
|
*/
|
|
2361
|
-
200:
|
|
2497
|
+
200: string;
|
|
2362
2498
|
};
|
|
2363
|
-
export type
|
|
2364
|
-
export type
|
|
2499
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
2500
|
+
export type GetChartData = {
|
|
2365
2501
|
body?: never;
|
|
2366
|
-
path
|
|
2502
|
+
path: {
|
|
2503
|
+
/**
|
|
2504
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2505
|
+
*/
|
|
2506
|
+
cluster_id: string;
|
|
2507
|
+
/**
|
|
2508
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2509
|
+
*/
|
|
2510
|
+
chart_name: string;
|
|
2511
|
+
};
|
|
2367
2512
|
query?: never;
|
|
2368
|
-
url: '/
|
|
2513
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2369
2514
|
};
|
|
2370
|
-
export type
|
|
2515
|
+
export type GetChartResponses = {
|
|
2371
2516
|
/**
|
|
2372
|
-
*
|
|
2517
|
+
* Returns a single object containing chart details.
|
|
2373
2518
|
*/
|
|
2374
|
-
200:
|
|
2519
|
+
200: Chart;
|
|
2375
2520
|
};
|
|
2376
|
-
export type
|
|
2377
|
-
export type
|
|
2378
|
-
body:
|
|
2521
|
+
export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
|
|
2522
|
+
export type UpdateChartData = {
|
|
2523
|
+
body: ChartUpdateInput;
|
|
2524
|
+
path: {
|
|
2379
2525
|
/**
|
|
2380
|
-
*
|
|
2526
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2381
2527
|
*/
|
|
2382
|
-
|
|
2383
|
-
|
|
2528
|
+
cluster_id: string;
|
|
2529
|
+
/**
|
|
2530
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2531
|
+
*/
|
|
2532
|
+
chart_name: string;
|
|
2384
2533
|
};
|
|
2385
|
-
path?: never;
|
|
2386
2534
|
query?: never;
|
|
2387
|
-
url: '/
|
|
2535
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2388
2536
|
};
|
|
2389
|
-
export type
|
|
2537
|
+
export type UpdateChartErrors = {
|
|
2390
2538
|
/**
|
|
2391
|
-
*
|
|
2539
|
+
* 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.
|
|
2392
2540
|
*/
|
|
2393
|
-
|
|
2541
|
+
409: string;
|
|
2394
2542
|
};
|
|
2395
|
-
export type
|
|
2396
|
-
export type
|
|
2397
|
-
body?: never;
|
|
2398
|
-
path: {
|
|
2399
|
-
ticket_id: string;
|
|
2400
|
-
};
|
|
2401
|
-
query?: never;
|
|
2402
|
-
url: '/tickets/{ticket_id}';
|
|
2403
|
-
};
|
|
2404
|
-
export type CloseTicketResponses = {
|
|
2543
|
+
export type UpdateChartError = UpdateChartErrors[keyof UpdateChartErrors];
|
|
2544
|
+
export type UpdateChartResponses = {
|
|
2405
2545
|
/**
|
|
2406
|
-
*
|
|
2546
|
+
* Successfully updated.
|
|
2407
2547
|
*/
|
|
2408
|
-
200:
|
|
2548
|
+
200: string;
|
|
2409
2549
|
};
|
|
2410
|
-
export type
|
|
2411
|
-
export type
|
|
2550
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
2551
|
+
export type ListClustersData = {
|
|
2412
2552
|
body?: never;
|
|
2413
|
-
path
|
|
2414
|
-
ticket_id: string;
|
|
2415
|
-
};
|
|
2553
|
+
path?: never;
|
|
2416
2554
|
query?: never;
|
|
2417
|
-
url: '/
|
|
2555
|
+
url: '/clusters';
|
|
2418
2556
|
};
|
|
2419
|
-
export type
|
|
2557
|
+
export type ListClustersErrors = {
|
|
2420
2558
|
/**
|
|
2421
|
-
*
|
|
2559
|
+
* Not authenticated
|
|
2422
2560
|
*/
|
|
2423
|
-
|
|
2561
|
+
401: unknown;
|
|
2424
2562
|
};
|
|
2425
|
-
export type
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
path
|
|
2435
|
-
ticket_id: string;
|
|
2436
|
-
};
|
|
2563
|
+
export type ListClustersResponses = {
|
|
2564
|
+
/**
|
|
2565
|
+
* An array of clusters
|
|
2566
|
+
*/
|
|
2567
|
+
200: Array<Cluster>;
|
|
2568
|
+
};
|
|
2569
|
+
export type ListClustersResponse = ListClustersResponses[keyof ListClustersResponses];
|
|
2570
|
+
export type CreateClusterData = {
|
|
2571
|
+
body: ClusterCreateInput;
|
|
2572
|
+
path?: never;
|
|
2437
2573
|
query?: never;
|
|
2438
|
-
url: '/
|
|
2574
|
+
url: '/clusters';
|
|
2439
2575
|
};
|
|
2440
|
-
export type
|
|
2576
|
+
export type CreateClusterErrors = {
|
|
2441
2577
|
/**
|
|
2442
|
-
*
|
|
2578
|
+
* Cluster quota exceeded. Maximum number of clusters allowed in this organization is reached.
|
|
2443
2579
|
*/
|
|
2444
|
-
|
|
2580
|
+
402: string;
|
|
2445
2581
|
};
|
|
2446
|
-
export type
|
|
2582
|
+
export type CreateClusterError = CreateClusterErrors[keyof CreateClusterErrors];
|
|
2583
|
+
export type CreateClusterResponses = {
|
|
2447
2584
|
/**
|
|
2448
|
-
*
|
|
2585
|
+
* Successfully created. Returns created Cluster ID.
|
|
2449
2586
|
*/
|
|
2450
|
-
200:
|
|
2587
|
+
200: string;
|
|
2451
2588
|
};
|
|
2452
|
-
export type
|
|
2453
|
-
export type
|
|
2589
|
+
export type CreateClusterResponse = CreateClusterResponses[keyof CreateClusterResponses];
|
|
2590
|
+
export type DeleteClusterData = {
|
|
2454
2591
|
body?: never;
|
|
2455
2592
|
path: {
|
|
2456
|
-
|
|
2457
|
-
|
|
2593
|
+
/**
|
|
2594
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2595
|
+
*/
|
|
2596
|
+
cluster_id: string;
|
|
2458
2597
|
};
|
|
2459
2598
|
query?: never;
|
|
2460
|
-
url: '/
|
|
2599
|
+
url: '/clusters/{cluster_id}';
|
|
2461
2600
|
};
|
|
2462
|
-
export type
|
|
2601
|
+
export type DeleteClusterErrors = {
|
|
2463
2602
|
/**
|
|
2464
|
-
*
|
|
2603
|
+
* Cluster not found; it does not exist or has already been deleted.
|
|
2465
2604
|
*/
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2605
|
+
404: unknown;
|
|
2606
|
+
/**
|
|
2607
|
+
* 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.
|
|
2608
|
+
*/
|
|
2609
|
+
409: string;
|
|
2610
|
+
/**
|
|
2611
|
+
* Transient failure tearing down the cluster; retry the request.
|
|
2612
|
+
*/
|
|
2613
|
+
503: unknown;
|
|
2474
2614
|
};
|
|
2475
|
-
export type
|
|
2615
|
+
export type DeleteClusterError = DeleteClusterErrors[keyof DeleteClusterErrors];
|
|
2616
|
+
export type DeleteClusterResponses = {
|
|
2476
2617
|
/**
|
|
2477
|
-
*
|
|
2618
|
+
* Successfully deleted. The cluster has been torn down.
|
|
2478
2619
|
*/
|
|
2479
|
-
|
|
2620
|
+
200: string;
|
|
2480
2621
|
};
|
|
2481
|
-
export type
|
|
2622
|
+
export type DeleteClusterResponse = DeleteClusterResponses[keyof DeleteClusterResponses];
|
|
2623
|
+
export type GetClusterData = {
|
|
2624
|
+
body?: never;
|
|
2625
|
+
path: {
|
|
2626
|
+
/**
|
|
2627
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2628
|
+
*/
|
|
2629
|
+
cluster_id: string;
|
|
2630
|
+
};
|
|
2631
|
+
query?: never;
|
|
2632
|
+
url: '/clusters/{cluster_id}';
|
|
2633
|
+
};
|
|
2634
|
+
export type GetClusterResponses = {
|
|
2482
2635
|
/**
|
|
2483
|
-
* Returns a
|
|
2636
|
+
* Returns a single object containing cluster details.
|
|
2484
2637
|
*/
|
|
2485
|
-
200:
|
|
2638
|
+
200: Cluster;
|
|
2486
2639
|
};
|
|
2487
|
-
export type
|
|
2488
|
-
export type
|
|
2489
|
-
body:
|
|
2490
|
-
path
|
|
2640
|
+
export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
|
|
2641
|
+
export type UpdateClusterData = {
|
|
2642
|
+
body: ClusterUpdateInput;
|
|
2643
|
+
path: {
|
|
2644
|
+
/**
|
|
2645
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2646
|
+
*/
|
|
2647
|
+
cluster_id: string;
|
|
2648
|
+
};
|
|
2491
2649
|
query?: never;
|
|
2492
|
-
url: '/
|
|
2650
|
+
url: '/clusters/{cluster_id}';
|
|
2493
2651
|
};
|
|
2494
|
-
export type
|
|
2652
|
+
export type UpdateClusterErrors = {
|
|
2495
2653
|
/**
|
|
2496
|
-
*
|
|
2654
|
+
* 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.
|
|
2497
2655
|
*/
|
|
2498
|
-
|
|
2656
|
+
409: string;
|
|
2499
2657
|
};
|
|
2500
|
-
export type
|
|
2658
|
+
export type UpdateClusterError = UpdateClusterErrors[keyof UpdateClusterErrors];
|
|
2659
|
+
export type UpdateClusterResponses = {
|
|
2501
2660
|
/**
|
|
2502
|
-
* Successfully
|
|
2661
|
+
* Successfully updated. Returns updated cluster details.
|
|
2503
2662
|
*/
|
|
2504
|
-
200:
|
|
2663
|
+
200: Cluster;
|
|
2505
2664
|
};
|
|
2506
|
-
export type
|
|
2507
|
-
export type
|
|
2665
|
+
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
2666
|
+
export type GetJoinInformationData = {
|
|
2508
2667
|
body?: never;
|
|
2509
2668
|
path: {
|
|
2510
2669
|
/**
|
|
2511
|
-
*
|
|
2670
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2512
2671
|
*/
|
|
2513
|
-
|
|
2672
|
+
cluster_id: string;
|
|
2514
2673
|
};
|
|
2515
2674
|
query?: never;
|
|
2516
|
-
url: '/
|
|
2675
|
+
url: '/clusters/{cluster_id}/join_information';
|
|
2517
2676
|
};
|
|
2518
|
-
export type
|
|
2677
|
+
export type GetJoinInformationErrors = {
|
|
2519
2678
|
/**
|
|
2520
|
-
*
|
|
2679
|
+
* Not authenticated
|
|
2521
2680
|
*/
|
|
2522
|
-
|
|
2681
|
+
401: unknown;
|
|
2682
|
+
/**
|
|
2683
|
+
* 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.
|
|
2684
|
+
*/
|
|
2685
|
+
409: string;
|
|
2523
2686
|
};
|
|
2524
|
-
export type
|
|
2687
|
+
export type GetJoinInformationError = GetJoinInformationErrors[keyof GetJoinInformationErrors];
|
|
2688
|
+
export type GetJoinInformationResponses = {
|
|
2689
|
+
/**
|
|
2690
|
+
* An object of cluster join information
|
|
2691
|
+
*/
|
|
2692
|
+
200: ClusterJoinInformation;
|
|
2693
|
+
};
|
|
2694
|
+
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
2695
|
+
export type GetUsageData = {
|
|
2525
2696
|
body?: never;
|
|
2526
|
-
path
|
|
2697
|
+
path?: never;
|
|
2698
|
+
query?: {
|
|
2527
2699
|
/**
|
|
2528
|
-
*
|
|
2700
|
+
* 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)
|
|
2529
2701
|
*/
|
|
2530
|
-
|
|
2702
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
2531
2703
|
};
|
|
2532
|
-
|
|
2533
|
-
url: '/tokens/{token_id}';
|
|
2704
|
+
url: '/billing/usage';
|
|
2534
2705
|
};
|
|
2535
|
-
export type
|
|
2706
|
+
export type GetUsageErrors = {
|
|
2536
2707
|
/**
|
|
2537
2708
|
* Not authenticated
|
|
2538
2709
|
*/
|
|
2539
2710
|
401: unknown;
|
|
2540
2711
|
};
|
|
2541
|
-
export type
|
|
2712
|
+
export type GetUsageResponses = {
|
|
2542
2713
|
/**
|
|
2543
|
-
*
|
|
2714
|
+
* Usage data with facets for filtering
|
|
2544
2715
|
*/
|
|
2545
|
-
200:
|
|
2716
|
+
200: UsageResponse;
|
|
2546
2717
|
};
|
|
2547
|
-
export type
|
|
2548
|
-
export type
|
|
2549
|
-
body
|
|
2550
|
-
path
|
|
2718
|
+
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
2719
|
+
export type GetPaymentMethodSecretData = {
|
|
2720
|
+
body?: never;
|
|
2721
|
+
path?: never;
|
|
2722
|
+
query?: never;
|
|
2723
|
+
url: '/billing/payment-method';
|
|
2724
|
+
};
|
|
2725
|
+
export type GetPaymentMethodSecretResponses = {
|
|
2726
|
+
/**
|
|
2727
|
+
* 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.
|
|
2728
|
+
*
|
|
2729
|
+
*/
|
|
2730
|
+
200: {
|
|
2551
2731
|
/**
|
|
2552
|
-
*
|
|
2732
|
+
* The client secret.
|
|
2553
2733
|
*/
|
|
2554
|
-
|
|
2734
|
+
id?: string;
|
|
2555
2735
|
};
|
|
2736
|
+
};
|
|
2737
|
+
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
2738
|
+
export type ListPaymentMethodsData = {
|
|
2739
|
+
body?: never;
|
|
2740
|
+
path?: never;
|
|
2556
2741
|
query?: never;
|
|
2557
|
-
url: '/
|
|
2742
|
+
url: '/billing/payment-methods';
|
|
2558
2743
|
};
|
|
2559
|
-
export type
|
|
2744
|
+
export type ListPaymentMethodsErrors = {
|
|
2560
2745
|
/**
|
|
2561
2746
|
* Not authenticated
|
|
2562
2747
|
*/
|
|
2563
2748
|
401: unknown;
|
|
2564
2749
|
};
|
|
2565
|
-
export type
|
|
2750
|
+
export type ListPaymentMethodsResponses = {
|
|
2566
2751
|
/**
|
|
2567
|
-
*
|
|
2752
|
+
* An array of payment methods.
|
|
2568
2753
|
*/
|
|
2569
|
-
200:
|
|
2754
|
+
200: Array<PaymentMethod>;
|
|
2570
2755
|
};
|
|
2571
|
-
export type
|
|
2572
|
-
export type
|
|
2756
|
+
export type ListPaymentMethodsResponse = ListPaymentMethodsResponses[keyof ListPaymentMethodsResponses];
|
|
2757
|
+
export type SetDefaultPaymentMethodData = {
|
|
2573
2758
|
body?: never;
|
|
2574
2759
|
path: {
|
|
2575
2760
|
/**
|
|
2576
|
-
*
|
|
2761
|
+
* Stripe payment method identifier.
|
|
2577
2762
|
*/
|
|
2578
|
-
|
|
2763
|
+
paymentMethodId: string;
|
|
2579
2764
|
};
|
|
2580
2765
|
query?: never;
|
|
2581
|
-
url: '/
|
|
2766
|
+
url: '/billing/payment-methods/{paymentMethodId}/default';
|
|
2582
2767
|
};
|
|
2583
|
-
export type
|
|
2768
|
+
export type SetDefaultPaymentMethodErrors = {
|
|
2769
|
+
/**
|
|
2770
|
+
* The bank transfer payment method cannot be set as the default.
|
|
2771
|
+
*/
|
|
2772
|
+
400: unknown;
|
|
2584
2773
|
/**
|
|
2585
2774
|
* Not authenticated
|
|
2586
2775
|
*/
|
|
2587
2776
|
401: unknown;
|
|
2777
|
+
/**
|
|
2778
|
+
* Payment method not found.
|
|
2779
|
+
*/
|
|
2780
|
+
404: unknown;
|
|
2588
2781
|
};
|
|
2589
|
-
export type
|
|
2782
|
+
export type SetDefaultPaymentMethodResponses = {
|
|
2590
2783
|
/**
|
|
2591
|
-
*
|
|
2784
|
+
* Default payment method updated.
|
|
2592
2785
|
*/
|
|
2593
|
-
|
|
2786
|
+
204: void;
|
|
2594
2787
|
};
|
|
2595
|
-
export type
|
|
2596
|
-
export type
|
|
2788
|
+
export type SetDefaultPaymentMethodResponse = SetDefaultPaymentMethodResponses[keyof SetDefaultPaymentMethodResponses];
|
|
2789
|
+
export type DeletePaymentMethodData = {
|
|
2597
2790
|
body?: never;
|
|
2598
2791
|
path: {
|
|
2599
2792
|
/**
|
|
2600
|
-
*
|
|
2793
|
+
* Stripe payment method identifier.
|
|
2601
2794
|
*/
|
|
2602
|
-
|
|
2795
|
+
paymentMethodId: string;
|
|
2603
2796
|
};
|
|
2604
2797
|
query?: never;
|
|
2605
|
-
url: '/
|
|
2798
|
+
url: '/billing/payment-methods/{paymentMethodId}';
|
|
2606
2799
|
};
|
|
2607
|
-
export type
|
|
2800
|
+
export type DeletePaymentMethodErrors = {
|
|
2608
2801
|
/**
|
|
2609
|
-
*
|
|
2802
|
+
* The bank transfer payment method cannot be removed.
|
|
2610
2803
|
*/
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2804
|
+
400: unknown;
|
|
2805
|
+
/**
|
|
2806
|
+
* Not authenticated
|
|
2807
|
+
*/
|
|
2808
|
+
401: unknown;
|
|
2809
|
+
/**
|
|
2810
|
+
* Payment method not found.
|
|
2811
|
+
*/
|
|
2812
|
+
404: unknown;
|
|
2813
|
+
/**
|
|
2814
|
+
* Cannot delete the only remaining payment method.
|
|
2815
|
+
*/
|
|
2816
|
+
409: unknown;
|
|
2621
2817
|
};
|
|
2622
|
-
export type
|
|
2623
|
-
|
|
2818
|
+
export type DeletePaymentMethodResponses = {
|
|
2819
|
+
/**
|
|
2820
|
+
* Payment method deleted.
|
|
2821
|
+
*/
|
|
2822
|
+
204: void;
|
|
2823
|
+
};
|
|
2824
|
+
export type DeletePaymentMethodResponse = DeletePaymentMethodResponses[keyof DeletePaymentMethodResponses];
|
|
2825
|
+
export type ListInvoicesData = {
|
|
2624
2826
|
body?: never;
|
|
2625
2827
|
path?: never;
|
|
2626
2828
|
query?: never;
|
|
2627
|
-
url: '/
|
|
2829
|
+
url: '/billing/invoices';
|
|
2628
2830
|
};
|
|
2629
|
-
export type
|
|
2831
|
+
export type ListInvoicesErrors = {
|
|
2630
2832
|
/**
|
|
2631
2833
|
* Not authenticated
|
|
2632
2834
|
*/
|
|
2633
2835
|
401: unknown;
|
|
2634
2836
|
};
|
|
2635
|
-
export type
|
|
2837
|
+
export type ListInvoicesResponses = {
|
|
2636
2838
|
/**
|
|
2637
|
-
* An array of
|
|
2839
|
+
* An array of usage records.
|
|
2638
2840
|
*/
|
|
2639
|
-
200: Array<
|
|
2841
|
+
200: Array<Invoice>;
|
|
2640
2842
|
};
|
|
2641
|
-
export type
|
|
2642
|
-
export type
|
|
2643
|
-
body
|
|
2843
|
+
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
2844
|
+
export type GetContactData = {
|
|
2845
|
+
body?: never;
|
|
2644
2846
|
path?: never;
|
|
2645
2847
|
query?: never;
|
|
2646
|
-
url: '/
|
|
2848
|
+
url: '/billing/contact';
|
|
2647
2849
|
};
|
|
2648
|
-
export type
|
|
2850
|
+
export type GetContactResponses = {
|
|
2649
2851
|
/**
|
|
2650
|
-
*
|
|
2852
|
+
* Returns a single object containing organization contact and billing address details.
|
|
2651
2853
|
*/
|
|
2652
|
-
200:
|
|
2854
|
+
200: BillingContact;
|
|
2653
2855
|
};
|
|
2654
|
-
export type
|
|
2655
|
-
export type
|
|
2656
|
-
body
|
|
2657
|
-
path
|
|
2658
|
-
/**
|
|
2659
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2660
|
-
*/
|
|
2661
|
-
user_id: string;
|
|
2662
|
-
};
|
|
2856
|
+
export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
|
|
2857
|
+
export type UpdateContactData = {
|
|
2858
|
+
body: BillingContact;
|
|
2859
|
+
path?: never;
|
|
2663
2860
|
query?: never;
|
|
2664
|
-
url: '/
|
|
2861
|
+
url: '/billing/contact';
|
|
2665
2862
|
};
|
|
2666
|
-
export type
|
|
2863
|
+
export type UpdateContactResponses = {
|
|
2667
2864
|
/**
|
|
2668
|
-
*
|
|
2865
|
+
* Successfully updated. Returns updated organization details.
|
|
2669
2866
|
*/
|
|
2670
|
-
|
|
2867
|
+
200: BillingContact;
|
|
2868
|
+
};
|
|
2869
|
+
export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
|
|
2870
|
+
export type GetCreditsData = {
|
|
2871
|
+
body?: never;
|
|
2872
|
+
path?: never;
|
|
2873
|
+
query?: never;
|
|
2874
|
+
url: '/billing/credits';
|
|
2875
|
+
};
|
|
2876
|
+
export type GetCreditsErrors = {
|
|
2671
2877
|
/**
|
|
2672
2878
|
* Not authenticated
|
|
2673
2879
|
*/
|
|
2674
2880
|
401: unknown;
|
|
2675
2881
|
};
|
|
2676
|
-
export type
|
|
2882
|
+
export type GetCreditsResponses = {
|
|
2677
2883
|
/**
|
|
2678
|
-
*
|
|
2884
|
+
* An array of the applied promotional credits records.
|
|
2679
2885
|
*/
|
|
2680
|
-
200:
|
|
2886
|
+
200: Array<BillingCredits>;
|
|
2681
2887
|
};
|
|
2682
|
-
export type
|
|
2683
|
-
export type
|
|
2684
|
-
body
|
|
2685
|
-
path: {
|
|
2888
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
2889
|
+
export type RedeemCreditsData = {
|
|
2890
|
+
body: {
|
|
2686
2891
|
/**
|
|
2687
|
-
*
|
|
2892
|
+
* Promotional code to redeem
|
|
2688
2893
|
*/
|
|
2689
|
-
|
|
2894
|
+
code?: string;
|
|
2690
2895
|
};
|
|
2896
|
+
path?: never;
|
|
2691
2897
|
query?: never;
|
|
2692
|
-
url: '/
|
|
2898
|
+
url: '/billing/credits';
|
|
2693
2899
|
};
|
|
2694
|
-
export type
|
|
2900
|
+
export type RedeemCreditsErrors = {
|
|
2695
2901
|
/**
|
|
2696
2902
|
* Not authenticated
|
|
2697
2903
|
*/
|
|
2698
2904
|
401: unknown;
|
|
2699
2905
|
};
|
|
2700
|
-
export type
|
|
2701
|
-
/**
|
|
2702
|
-
* User profile information
|
|
2703
|
-
*/
|
|
2704
|
-
200: User;
|
|
2705
|
-
};
|
|
2706
|
-
export type GetUserResponse = GetUserResponses[keyof GetUserResponses];
|
|
2707
|
-
export type UpdateUserData = {
|
|
2708
|
-
body: UserUpdateInput;
|
|
2709
|
-
path: {
|
|
2710
|
-
/**
|
|
2711
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2712
|
-
*/
|
|
2713
|
-
user_id: string;
|
|
2714
|
-
};
|
|
2715
|
-
query?: never;
|
|
2716
|
-
url: '/users/{user_id}';
|
|
2717
|
-
};
|
|
2718
|
-
export type UpdateUserResponses = {
|
|
2906
|
+
export type RedeemCreditsResponses = {
|
|
2719
2907
|
/**
|
|
2720
|
-
* Successfully created
|
|
2908
|
+
* Successfully created a new organization.
|
|
2721
2909
|
*/
|
|
2722
|
-
200:
|
|
2910
|
+
200: unknown;
|
|
2723
2911
|
};
|
|
2724
|
-
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
2725
2912
|
//# sourceMappingURL=types.gen.d.ts.map
|