@cloudfleet/sdk 0.0.1-bbca6e3 → 0.0.1-bd45f1a
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 +384 -386
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +410 -412
- 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 +281 -28
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +361 -48
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +223 -225
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +324 -326
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +937 -738
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1453 -1281
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +390 -276
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
package/dist/types.gen.d.ts
CHANGED
|
@@ -163,6 +163,9 @@ export type ChartUpdateInput = {
|
|
|
163
163
|
*/
|
|
164
164
|
version_channel: string;
|
|
165
165
|
};
|
|
166
|
+
/**
|
|
167
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
168
|
+
*/
|
|
166
169
|
export type ClusterCreateInput = {
|
|
167
170
|
/**
|
|
168
171
|
* Name of the cluster.
|
|
@@ -171,15 +174,61 @@ export type ClusterCreateInput = {
|
|
|
171
174
|
/**
|
|
172
175
|
* Tier of the cluster.
|
|
173
176
|
*/
|
|
174
|
-
tier
|
|
177
|
+
tier?: 'basic' | 'pro';
|
|
178
|
+
/**
|
|
179
|
+
* Version of the kubernetes cluster.
|
|
180
|
+
*/
|
|
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
|
+
};
|
|
175
203
|
/**
|
|
176
204
|
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
177
205
|
*/
|
|
178
206
|
region: string;
|
|
179
207
|
/**
|
|
180
|
-
*
|
|
208
|
+
* Cluster networking configuration. Immutable after creation.
|
|
181
209
|
*/
|
|
182
|
-
|
|
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
|
+
};
|
|
183
232
|
};
|
|
184
233
|
export type ClusterJoinInformation = {
|
|
185
234
|
/**
|
|
@@ -245,6 +294,9 @@ export type ClusterJoinInformation = {
|
|
|
245
294
|
gcp_workload_identity_provider: string;
|
|
246
295
|
};
|
|
247
296
|
};
|
|
297
|
+
/**
|
|
298
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
299
|
+
*/
|
|
248
300
|
export type Cluster = {
|
|
249
301
|
/**
|
|
250
302
|
* Name of the cluster.
|
|
@@ -254,18 +306,68 @@ export type Cluster = {
|
|
|
254
306
|
* Tier of the cluster.
|
|
255
307
|
*/
|
|
256
308
|
tier: 'basic' | 'pro';
|
|
309
|
+
/**
|
|
310
|
+
* Version of the kubernetes cluster.
|
|
311
|
+
*/
|
|
312
|
+
version_channel: string;
|
|
313
|
+
/**
|
|
314
|
+
* Release channel for the cluster's control plane.
|
|
315
|
+
*/
|
|
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
|
+
};
|
|
257
334
|
/**
|
|
258
335
|
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
259
336
|
*/
|
|
260
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
|
+
};
|
|
261
363
|
/**
|
|
262
364
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
263
365
|
*/
|
|
264
366
|
id: string;
|
|
265
367
|
/**
|
|
266
|
-
* Status of the cluster.
|
|
368
|
+
* Status of the cluster.
|
|
267
369
|
*/
|
|
268
|
-
status: '
|
|
370
|
+
status: 'creating' | 'deployed' | 'updating' | 'disabled';
|
|
269
371
|
endpoint?: string | '';
|
|
270
372
|
endpoint_public?: string | '';
|
|
271
373
|
/**
|
|
@@ -287,26 +389,49 @@ export type Cluster = {
|
|
|
287
389
|
/**
|
|
288
390
|
* Indicates if the cluster is ready to be used.
|
|
289
391
|
*/
|
|
290
|
-
ready
|
|
291
|
-
/**
|
|
292
|
-
* Version of the kubernetes cluster.
|
|
293
|
-
*/
|
|
294
|
-
version_channel?: string;
|
|
392
|
+
ready: boolean;
|
|
295
393
|
};
|
|
394
|
+
/**
|
|
395
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
396
|
+
*/
|
|
296
397
|
export type ClusterUpdateInput = {
|
|
297
398
|
/**
|
|
298
399
|
* Name of the cluster.
|
|
299
400
|
*/
|
|
300
|
-
name
|
|
401
|
+
name: string;
|
|
301
402
|
/**
|
|
302
403
|
* Tier of the cluster.
|
|
303
404
|
*/
|
|
304
|
-
tier
|
|
405
|
+
tier?: 'basic' | 'pro';
|
|
305
406
|
/**
|
|
306
407
|
* Version of the kubernetes cluster.
|
|
307
408
|
*/
|
|
308
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
|
+
};
|
|
309
431
|
};
|
|
432
|
+
/**
|
|
433
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
434
|
+
*/
|
|
310
435
|
export type FleetCreateInput = {
|
|
311
436
|
/**
|
|
312
437
|
* Limits define a set of bounds for provisioning capacity.
|
|
@@ -339,7 +464,7 @@ export type FleetCreateInput = {
|
|
|
339
464
|
controllerRoleArn?: string;
|
|
340
465
|
};
|
|
341
466
|
/**
|
|
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.
|
|
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.
|
|
343
468
|
*/
|
|
344
469
|
constraints?: {
|
|
345
470
|
/**
|
|
@@ -360,7 +485,7 @@ export type FleetCreateInput = {
|
|
|
360
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'>;
|
|
361
486
|
};
|
|
362
487
|
/**
|
|
363
|
-
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
|
|
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`).
|
|
364
489
|
*/
|
|
365
490
|
scalingProfile?: 'aggressive' | 'conservative';
|
|
366
491
|
/**
|
|
@@ -368,6 +493,9 @@ export type FleetCreateInput = {
|
|
|
368
493
|
*/
|
|
369
494
|
id: string;
|
|
370
495
|
};
|
|
496
|
+
/**
|
|
497
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
498
|
+
*/
|
|
371
499
|
export type Fleet = {
|
|
372
500
|
/**
|
|
373
501
|
* Limits define a set of bounds for provisioning capacity.
|
|
@@ -400,17 +528,17 @@ export type Fleet = {
|
|
|
400
528
|
controllerRoleArn?: string;
|
|
401
529
|
};
|
|
402
530
|
/**
|
|
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.
|
|
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.
|
|
404
532
|
*/
|
|
405
|
-
constraints
|
|
533
|
+
constraints: {
|
|
406
534
|
/**
|
|
407
535
|
* Allowed values for `karpenter.sh/capacity-type`.
|
|
408
536
|
*/
|
|
409
|
-
'karpenter.sh/capacity-type'
|
|
537
|
+
'karpenter.sh/capacity-type': Array<'on-demand' | 'spot'>;
|
|
410
538
|
/**
|
|
411
539
|
* Allowed values for `kubernetes.io/arch`.
|
|
412
540
|
*/
|
|
413
|
-
'kubernetes.io/arch'
|
|
541
|
+
'kubernetes.io/arch': Array<'amd64' | 'arm64'>;
|
|
414
542
|
/**
|
|
415
543
|
* Allowed values for `cfke.io/instance-family`.
|
|
416
544
|
*/
|
|
@@ -421,14 +549,33 @@ export type Fleet = {
|
|
|
421
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'>;
|
|
422
550
|
};
|
|
423
551
|
/**
|
|
424
|
-
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
|
|
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`).
|
|
425
553
|
*/
|
|
426
554
|
scalingProfile: 'aggressive' | 'conservative';
|
|
427
555
|
/**
|
|
428
556
|
* Unique identifier of the kubernetes fleet.
|
|
429
557
|
*/
|
|
430
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;
|
|
431
575
|
};
|
|
576
|
+
/**
|
|
577
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
578
|
+
*/
|
|
432
579
|
export type FleetUpdateInput = {
|
|
433
580
|
/**
|
|
434
581
|
* Limits define a set of bounds for provisioning capacity.
|
|
@@ -461,7 +608,7 @@ export type FleetUpdateInput = {
|
|
|
461
608
|
controllerRoleArn?: string;
|
|
462
609
|
};
|
|
463
610
|
/**
|
|
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.
|
|
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.
|
|
465
612
|
*/
|
|
466
613
|
constraints?: {
|
|
467
614
|
/**
|
|
@@ -482,9 +629,9 @@ export type FleetUpdateInput = {
|
|
|
482
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'>;
|
|
483
630
|
};
|
|
484
631
|
/**
|
|
485
|
-
* Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.
|
|
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`).
|
|
486
633
|
*/
|
|
487
|
-
scalingProfile
|
|
634
|
+
scalingProfile?: 'aggressive' | 'conservative';
|
|
488
635
|
};
|
|
489
636
|
export type InviteCreateInput = {
|
|
490
637
|
/**
|
|
@@ -1433,615 +1580,632 @@ export type UserUpdateInput = {
|
|
|
1433
1580
|
*/
|
|
1434
1581
|
status?: 'active' | 'inactive';
|
|
1435
1582
|
};
|
|
1436
|
-
export type
|
|
1583
|
+
export type ListUserOrganizationsData = {
|
|
1437
1584
|
body?: never;
|
|
1438
|
-
path
|
|
1439
|
-
query?: {
|
|
1585
|
+
path: {
|
|
1440
1586
|
/**
|
|
1441
|
-
*
|
|
1587
|
+
* User email address.
|
|
1442
1588
|
*/
|
|
1443
|
-
|
|
1589
|
+
email: string;
|
|
1444
1590
|
};
|
|
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
1591
|
query?: never;
|
|
1464
|
-
url: '/
|
|
1592
|
+
url: '/users/organizations/{email}';
|
|
1465
1593
|
};
|
|
1466
|
-
export type
|
|
1594
|
+
export type ListUserOrganizationsResponses = {
|
|
1467
1595
|
/**
|
|
1468
|
-
*
|
|
1469
|
-
*
|
|
1596
|
+
* An array of organizations the user belongs to.
|
|
1470
1597
|
*/
|
|
1471
|
-
200: {
|
|
1598
|
+
200: Array<{
|
|
1472
1599
|
/**
|
|
1473
|
-
*
|
|
1600
|
+
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
1474
1601
|
*/
|
|
1475
|
-
|
|
1476
|
-
|
|
1602
|
+
realm?: string;
|
|
1603
|
+
/**
|
|
1604
|
+
* Human-readable name of the organization
|
|
1605
|
+
*/
|
|
1606
|
+
displayName?: string;
|
|
1607
|
+
}>;
|
|
1477
1608
|
};
|
|
1478
|
-
export type
|
|
1479
|
-
export type
|
|
1609
|
+
export type ListUserOrganizationsResponse = ListUserOrganizationsResponses[keyof ListUserOrganizationsResponses];
|
|
1610
|
+
export type ListUsersData = {
|
|
1480
1611
|
body?: never;
|
|
1481
1612
|
path?: never;
|
|
1482
1613
|
query?: never;
|
|
1483
|
-
url: '/
|
|
1614
|
+
url: '/users';
|
|
1484
1615
|
};
|
|
1485
|
-
export type
|
|
1616
|
+
export type ListUsersErrors = {
|
|
1486
1617
|
/**
|
|
1487
1618
|
* Not authenticated
|
|
1488
1619
|
*/
|
|
1489
1620
|
401: unknown;
|
|
1490
1621
|
};
|
|
1491
|
-
export type
|
|
1622
|
+
export type ListUsersResponses = {
|
|
1492
1623
|
/**
|
|
1493
|
-
* An array of
|
|
1624
|
+
* An array of users
|
|
1494
1625
|
*/
|
|
1495
|
-
200: Array<
|
|
1626
|
+
200: Array<User>;
|
|
1496
1627
|
};
|
|
1497
|
-
export type
|
|
1498
|
-
export type
|
|
1628
|
+
export type ListUsersResponse = ListUsersResponses[keyof ListUsersResponses];
|
|
1629
|
+
export type CreateUserData = {
|
|
1630
|
+
body: UserCreateInput;
|
|
1631
|
+
path?: never;
|
|
1632
|
+
query?: never;
|
|
1633
|
+
url: '/users';
|
|
1634
|
+
};
|
|
1635
|
+
export type CreateUserResponses = {
|
|
1636
|
+
/**
|
|
1637
|
+
* Successfully created. Returns created user details.
|
|
1638
|
+
*/
|
|
1639
|
+
200: User;
|
|
1640
|
+
};
|
|
1641
|
+
export type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses];
|
|
1642
|
+
export type DeleteUserData = {
|
|
1499
1643
|
body?: never;
|
|
1500
1644
|
path: {
|
|
1501
1645
|
/**
|
|
1502
|
-
*
|
|
1646
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1503
1647
|
*/
|
|
1504
|
-
|
|
1648
|
+
user_id: string;
|
|
1505
1649
|
};
|
|
1506
1650
|
query?: never;
|
|
1507
|
-
url: '/
|
|
1651
|
+
url: '/users/{user_id}';
|
|
1508
1652
|
};
|
|
1509
|
-
export type
|
|
1653
|
+
export type DeleteUserErrors = {
|
|
1510
1654
|
/**
|
|
1511
|
-
*
|
|
1655
|
+
* Deleting own user is not allowed. Delete your organization instead.
|
|
1512
1656
|
*/
|
|
1513
1657
|
400: unknown;
|
|
1514
1658
|
/**
|
|
1515
1659
|
* Not authenticated
|
|
1516
1660
|
*/
|
|
1517
1661
|
401: unknown;
|
|
1518
|
-
/**
|
|
1519
|
-
* Payment method not found.
|
|
1520
|
-
*/
|
|
1521
|
-
404: unknown;
|
|
1522
1662
|
};
|
|
1523
|
-
export type
|
|
1663
|
+
export type DeleteUserResponses = {
|
|
1524
1664
|
/**
|
|
1525
|
-
*
|
|
1665
|
+
* User profile information
|
|
1526
1666
|
*/
|
|
1527
|
-
|
|
1667
|
+
200: User;
|
|
1528
1668
|
};
|
|
1529
|
-
export type
|
|
1530
|
-
export type
|
|
1669
|
+
export type DeleteUserResponse = DeleteUserResponses[keyof DeleteUserResponses];
|
|
1670
|
+
export type GetUserData = {
|
|
1531
1671
|
body?: never;
|
|
1532
1672
|
path: {
|
|
1533
1673
|
/**
|
|
1534
|
-
*
|
|
1674
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1535
1675
|
*/
|
|
1536
|
-
|
|
1676
|
+
user_id: string;
|
|
1537
1677
|
};
|
|
1538
1678
|
query?: never;
|
|
1539
|
-
url: '/
|
|
1679
|
+
url: '/users/{user_id}';
|
|
1540
1680
|
};
|
|
1541
|
-
export type
|
|
1542
|
-
/**
|
|
1543
|
-
* The bank transfer payment method cannot be removed.
|
|
1544
|
-
*/
|
|
1545
|
-
400: unknown;
|
|
1681
|
+
export type GetUserErrors = {
|
|
1546
1682
|
/**
|
|
1547
1683
|
* Not authenticated
|
|
1548
1684
|
*/
|
|
1549
1685
|
401: unknown;
|
|
1686
|
+
};
|
|
1687
|
+
export type GetUserResponses = {
|
|
1550
1688
|
/**
|
|
1551
|
-
*
|
|
1552
|
-
*/
|
|
1553
|
-
404: unknown;
|
|
1554
|
-
/**
|
|
1555
|
-
* Cannot delete the only remaining payment method.
|
|
1689
|
+
* User profile information
|
|
1556
1690
|
*/
|
|
1557
|
-
|
|
1691
|
+
200: User;
|
|
1558
1692
|
};
|
|
1559
|
-
export type
|
|
1693
|
+
export type GetUserResponse = GetUserResponses[keyof GetUserResponses];
|
|
1694
|
+
export type UpdateUserData = {
|
|
1695
|
+
body: UserUpdateInput;
|
|
1696
|
+
path: {
|
|
1697
|
+
/**
|
|
1698
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1699
|
+
*/
|
|
1700
|
+
user_id: string;
|
|
1701
|
+
};
|
|
1702
|
+
query?: never;
|
|
1703
|
+
url: '/users/{user_id}';
|
|
1704
|
+
};
|
|
1705
|
+
export type UpdateUserResponses = {
|
|
1560
1706
|
/**
|
|
1561
|
-
*
|
|
1707
|
+
* Successfully created. Returns created user details.
|
|
1562
1708
|
*/
|
|
1563
|
-
|
|
1709
|
+
200: User;
|
|
1564
1710
|
};
|
|
1565
|
-
export type
|
|
1566
|
-
export type
|
|
1711
|
+
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
1712
|
+
export type ListTokensData = {
|
|
1567
1713
|
body?: never;
|
|
1568
1714
|
path?: never;
|
|
1569
1715
|
query?: never;
|
|
1570
|
-
url: '/
|
|
1716
|
+
url: '/tokens';
|
|
1571
1717
|
};
|
|
1572
|
-
export type
|
|
1718
|
+
export type ListTokensErrors = {
|
|
1573
1719
|
/**
|
|
1574
1720
|
* Not authenticated
|
|
1575
1721
|
*/
|
|
1576
1722
|
401: unknown;
|
|
1577
1723
|
};
|
|
1578
|
-
export type
|
|
1724
|
+
export type ListTokensResponses = {
|
|
1579
1725
|
/**
|
|
1580
|
-
*
|
|
1726
|
+
* Returns a list of access token details with masked secrets.
|
|
1581
1727
|
*/
|
|
1582
|
-
200: Array<
|
|
1728
|
+
200: Array<Token>;
|
|
1583
1729
|
};
|
|
1584
|
-
export type
|
|
1585
|
-
export type
|
|
1586
|
-
body
|
|
1730
|
+
export type ListTokensResponse = ListTokensResponses[keyof ListTokensResponses];
|
|
1731
|
+
export type CreateTokenData = {
|
|
1732
|
+
body: TokenCreateInput;
|
|
1587
1733
|
path?: never;
|
|
1588
1734
|
query?: never;
|
|
1589
|
-
url: '/
|
|
1735
|
+
url: '/tokens';
|
|
1590
1736
|
};
|
|
1591
|
-
export type
|
|
1737
|
+
export type CreateTokenErrors = {
|
|
1592
1738
|
/**
|
|
1593
|
-
*
|
|
1739
|
+
* Not authenticated
|
|
1594
1740
|
*/
|
|
1595
|
-
|
|
1741
|
+
401: unknown;
|
|
1596
1742
|
};
|
|
1597
|
-
export type
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1743
|
+
export type CreateTokenResponses = {
|
|
1744
|
+
/**
|
|
1745
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1746
|
+
*/
|
|
1747
|
+
200: Token;
|
|
1748
|
+
};
|
|
1749
|
+
export type CreateTokenResponse = CreateTokenResponses[keyof CreateTokenResponses];
|
|
1750
|
+
export type DeleteTokenData = {
|
|
1751
|
+
body?: never;
|
|
1752
|
+
path: {
|
|
1753
|
+
/**
|
|
1754
|
+
* Generated unique identifier of the access token.
|
|
1755
|
+
*/
|
|
1756
|
+
token_id: string;
|
|
1757
|
+
};
|
|
1601
1758
|
query?: never;
|
|
1602
|
-
url: '/
|
|
1759
|
+
url: '/tokens/{token_id}';
|
|
1603
1760
|
};
|
|
1604
|
-
export type
|
|
1761
|
+
export type DeleteTokenResponses = {
|
|
1605
1762
|
/**
|
|
1606
|
-
* Successfully
|
|
1763
|
+
* Successfully deleted.
|
|
1607
1764
|
*/
|
|
1608
|
-
200:
|
|
1765
|
+
200: unknown;
|
|
1609
1766
|
};
|
|
1610
|
-
export type
|
|
1611
|
-
export type GetCreditsData = {
|
|
1767
|
+
export type GetTokenData = {
|
|
1612
1768
|
body?: never;
|
|
1613
|
-
path
|
|
1769
|
+
path: {
|
|
1770
|
+
/**
|
|
1771
|
+
* Generated unique identifier of the access token.
|
|
1772
|
+
*/
|
|
1773
|
+
token_id: string;
|
|
1774
|
+
};
|
|
1614
1775
|
query?: never;
|
|
1615
|
-
url: '/
|
|
1776
|
+
url: '/tokens/{token_id}';
|
|
1616
1777
|
};
|
|
1617
|
-
export type
|
|
1778
|
+
export type GetTokenErrors = {
|
|
1618
1779
|
/**
|
|
1619
1780
|
* Not authenticated
|
|
1620
1781
|
*/
|
|
1621
1782
|
401: unknown;
|
|
1622
1783
|
};
|
|
1623
|
-
export type
|
|
1784
|
+
export type GetTokenResponses = {
|
|
1624
1785
|
/**
|
|
1625
|
-
*
|
|
1786
|
+
* Returns access token details with masked secret.
|
|
1626
1787
|
*/
|
|
1627
|
-
200:
|
|
1788
|
+
200: Token;
|
|
1628
1789
|
};
|
|
1629
|
-
export type
|
|
1630
|
-
export type
|
|
1631
|
-
body:
|
|
1790
|
+
export type GetTokenResponse = GetTokenResponses[keyof GetTokenResponses];
|
|
1791
|
+
export type UpdateTokenData = {
|
|
1792
|
+
body: TokenUpdateInput;
|
|
1793
|
+
path: {
|
|
1632
1794
|
/**
|
|
1633
|
-
*
|
|
1795
|
+
* Generated unique identifier of the access token.
|
|
1634
1796
|
*/
|
|
1635
|
-
|
|
1797
|
+
token_id: string;
|
|
1636
1798
|
};
|
|
1637
|
-
path?: never;
|
|
1638
1799
|
query?: never;
|
|
1639
|
-
url: '/
|
|
1800
|
+
url: '/tokens/{token_id}';
|
|
1640
1801
|
};
|
|
1641
|
-
export type
|
|
1802
|
+
export type UpdateTokenErrors = {
|
|
1642
1803
|
/**
|
|
1643
1804
|
* Not authenticated
|
|
1644
1805
|
*/
|
|
1645
1806
|
401: unknown;
|
|
1646
1807
|
};
|
|
1647
|
-
export type
|
|
1808
|
+
export type UpdateTokenResponses = {
|
|
1648
1809
|
/**
|
|
1649
|
-
* Successfully
|
|
1810
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1650
1811
|
*/
|
|
1651
|
-
200:
|
|
1812
|
+
200: Token;
|
|
1652
1813
|
};
|
|
1653
|
-
export type
|
|
1814
|
+
export type UpdateTokenResponse = UpdateTokenResponses[keyof UpdateTokenResponses];
|
|
1815
|
+
export type RegenerateTokenData = {
|
|
1654
1816
|
body?: never;
|
|
1655
1817
|
path: {
|
|
1656
1818
|
/**
|
|
1657
|
-
*
|
|
1819
|
+
* Generated unique identifier of the access token.
|
|
1658
1820
|
*/
|
|
1659
|
-
|
|
1821
|
+
token_id: string;
|
|
1660
1822
|
};
|
|
1661
1823
|
query?: never;
|
|
1662
|
-
url: '/
|
|
1824
|
+
url: '/tokens/{token_id}/secret';
|
|
1663
1825
|
};
|
|
1664
|
-
export type
|
|
1826
|
+
export type RegenerateTokenErrors = {
|
|
1665
1827
|
/**
|
|
1666
1828
|
* Not authenticated
|
|
1667
1829
|
*/
|
|
1668
1830
|
401: unknown;
|
|
1669
1831
|
};
|
|
1670
|
-
export type
|
|
1832
|
+
export type RegenerateTokenResponses = {
|
|
1671
1833
|
/**
|
|
1672
|
-
*
|
|
1834
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1673
1835
|
*/
|
|
1674
|
-
200:
|
|
1836
|
+
200: Token;
|
|
1675
1837
|
};
|
|
1676
|
-
export type
|
|
1677
|
-
export type
|
|
1678
|
-
body
|
|
1679
|
-
path
|
|
1838
|
+
export type RegenerateTokenResponse = RegenerateTokenResponses[keyof RegenerateTokenResponses];
|
|
1839
|
+
export type ListTicketsData = {
|
|
1840
|
+
body?: never;
|
|
1841
|
+
path?: never;
|
|
1842
|
+
query?: never;
|
|
1843
|
+
url: '/tickets';
|
|
1844
|
+
};
|
|
1845
|
+
export type ListTicketsResponses = {
|
|
1846
|
+
/**
|
|
1847
|
+
* Tickets for the organization.
|
|
1848
|
+
*/
|
|
1849
|
+
200: TicketListResponse;
|
|
1850
|
+
};
|
|
1851
|
+
export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
|
|
1852
|
+
export type CreateTicketData = {
|
|
1853
|
+
body: {
|
|
1680
1854
|
/**
|
|
1681
|
-
*
|
|
1855
|
+
* JSON-encoded TicketCreateInput.
|
|
1682
1856
|
*/
|
|
1683
|
-
|
|
1857
|
+
payload?: string;
|
|
1858
|
+
attachments?: Array<Blob | File>;
|
|
1684
1859
|
};
|
|
1860
|
+
path?: never;
|
|
1685
1861
|
query?: never;
|
|
1686
|
-
url: '/
|
|
1862
|
+
url: '/tickets';
|
|
1687
1863
|
};
|
|
1688
|
-
export type
|
|
1864
|
+
export type CreateTicketResponses = {
|
|
1689
1865
|
/**
|
|
1690
|
-
*
|
|
1866
|
+
* Ticket created.
|
|
1691
1867
|
*/
|
|
1692
|
-
200:
|
|
1868
|
+
200: Ticket;
|
|
1693
1869
|
};
|
|
1694
|
-
export type
|
|
1695
|
-
export type
|
|
1870
|
+
export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
|
|
1871
|
+
export type CloseTicketData = {
|
|
1696
1872
|
body?: never;
|
|
1697
1873
|
path: {
|
|
1698
|
-
|
|
1699
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1700
|
-
*/
|
|
1701
|
-
cluster_id: string;
|
|
1702
|
-
/**
|
|
1703
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
1704
|
-
*/
|
|
1705
|
-
chart_name: string;
|
|
1874
|
+
ticket_id: string;
|
|
1706
1875
|
};
|
|
1707
1876
|
query?: never;
|
|
1708
|
-
url: '/
|
|
1877
|
+
url: '/tickets/{ticket_id}';
|
|
1709
1878
|
};
|
|
1710
|
-
export type
|
|
1879
|
+
export type CloseTicketResponses = {
|
|
1711
1880
|
/**
|
|
1712
|
-
*
|
|
1881
|
+
* Ticket closed.
|
|
1713
1882
|
*/
|
|
1714
|
-
200:
|
|
1883
|
+
200: Ticket;
|
|
1715
1884
|
};
|
|
1716
|
-
export type
|
|
1717
|
-
export type
|
|
1885
|
+
export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
|
|
1886
|
+
export type GetTicketData = {
|
|
1718
1887
|
body?: never;
|
|
1719
1888
|
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;
|
|
1889
|
+
ticket_id: string;
|
|
1728
1890
|
};
|
|
1729
1891
|
query?: never;
|
|
1730
|
-
url: '/
|
|
1892
|
+
url: '/tickets/{ticket_id}';
|
|
1731
1893
|
};
|
|
1732
|
-
export type
|
|
1894
|
+
export type GetTicketResponses = {
|
|
1733
1895
|
/**
|
|
1734
|
-
*
|
|
1896
|
+
* Ticket with messages (internal notes excluded).
|
|
1735
1897
|
*/
|
|
1736
|
-
200:
|
|
1898
|
+
200: Ticket;
|
|
1737
1899
|
};
|
|
1738
|
-
export type
|
|
1739
|
-
export type
|
|
1740
|
-
body:
|
|
1741
|
-
path: {
|
|
1742
|
-
/**
|
|
1743
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1744
|
-
*/
|
|
1745
|
-
cluster_id: string;
|
|
1900
|
+
export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
|
|
1901
|
+
export type ReplyTicketData = {
|
|
1902
|
+
body: {
|
|
1746
1903
|
/**
|
|
1747
|
-
*
|
|
1904
|
+
* JSON-encoded TicketMessageInput.
|
|
1748
1905
|
*/
|
|
1749
|
-
|
|
1906
|
+
payload?: string;
|
|
1907
|
+
attachments?: Array<Blob | File>;
|
|
1908
|
+
};
|
|
1909
|
+
path: {
|
|
1910
|
+
ticket_id: string;
|
|
1750
1911
|
};
|
|
1751
1912
|
query?: never;
|
|
1752
|
-
url: '/
|
|
1913
|
+
url: '/tickets/{ticket_id}/messages';
|
|
1753
1914
|
};
|
|
1754
|
-
export type
|
|
1915
|
+
export type ReplyTicketErrors = {
|
|
1755
1916
|
/**
|
|
1756
|
-
*
|
|
1917
|
+
* Ticket is closed. Open a new ticket instead.
|
|
1757
1918
|
*/
|
|
1758
|
-
|
|
1919
|
+
409: unknown;
|
|
1759
1920
|
};
|
|
1760
|
-
export type
|
|
1761
|
-
|
|
1921
|
+
export type ReplyTicketResponses = {
|
|
1922
|
+
/**
|
|
1923
|
+
* Reply appended.
|
|
1924
|
+
*/
|
|
1925
|
+
200: TicketMessage;
|
|
1926
|
+
};
|
|
1927
|
+
export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
|
|
1928
|
+
export type GetTicketAttachmentData = {
|
|
1762
1929
|
body?: never;
|
|
1763
1930
|
path: {
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
*/
|
|
1767
|
-
cluster_id: string;
|
|
1931
|
+
ticket_id: string;
|
|
1932
|
+
attachment_id: string;
|
|
1768
1933
|
};
|
|
1769
1934
|
query?: never;
|
|
1770
|
-
url: '/
|
|
1935
|
+
url: '/tickets/{ticket_id}/attachments/{attachment_id}';
|
|
1771
1936
|
};
|
|
1772
|
-
export type
|
|
1937
|
+
export type GetTicketAttachmentResponses = {
|
|
1938
|
+
/**
|
|
1939
|
+
* Attachment binary stream.
|
|
1940
|
+
*/
|
|
1941
|
+
200: Blob | File;
|
|
1942
|
+
};
|
|
1943
|
+
export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
|
|
1944
|
+
export type ListRepositoriesData = {
|
|
1945
|
+
body?: never;
|
|
1946
|
+
path?: never;
|
|
1947
|
+
query?: never;
|
|
1948
|
+
url: '/registry';
|
|
1949
|
+
};
|
|
1950
|
+
export type ListRepositoriesErrors = {
|
|
1773
1951
|
/**
|
|
1774
1952
|
* Not authenticated
|
|
1775
1953
|
*/
|
|
1776
1954
|
401: unknown;
|
|
1955
|
+
/**
|
|
1956
|
+
* Internal server error
|
|
1957
|
+
*/
|
|
1958
|
+
500: unknown;
|
|
1777
1959
|
};
|
|
1778
|
-
export type
|
|
1960
|
+
export type ListRepositoriesResponses = {
|
|
1779
1961
|
/**
|
|
1780
|
-
*
|
|
1962
|
+
* List of repositories
|
|
1781
1963
|
*/
|
|
1782
|
-
200: Array<
|
|
1964
|
+
200: Array<RegistryRepository>;
|
|
1783
1965
|
};
|
|
1784
|
-
export type
|
|
1785
|
-
export type
|
|
1786
|
-
body
|
|
1966
|
+
export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
|
|
1967
|
+
export type ListTagsData = {
|
|
1968
|
+
body?: never;
|
|
1787
1969
|
path: {
|
|
1788
1970
|
/**
|
|
1789
|
-
*
|
|
1971
|
+
* Region where the repository is located
|
|
1790
1972
|
*/
|
|
1791
|
-
|
|
1973
|
+
region: string;
|
|
1974
|
+
/**
|
|
1975
|
+
* Name of the repository
|
|
1976
|
+
*/
|
|
1977
|
+
repository: string;
|
|
1792
1978
|
};
|
|
1793
1979
|
query?: never;
|
|
1794
|
-
url: '/
|
|
1980
|
+
url: '/registry/{region}/{repository}';
|
|
1795
1981
|
};
|
|
1796
|
-
export type
|
|
1982
|
+
export type ListTagsErrors = {
|
|
1797
1983
|
/**
|
|
1798
|
-
*
|
|
1984
|
+
* Not authenticated
|
|
1799
1985
|
*/
|
|
1800
|
-
|
|
1986
|
+
401: unknown;
|
|
1987
|
+
/**
|
|
1988
|
+
* Repository not found
|
|
1989
|
+
*/
|
|
1990
|
+
404: unknown;
|
|
1991
|
+
/**
|
|
1992
|
+
* Internal server error
|
|
1993
|
+
*/
|
|
1994
|
+
500: unknown;
|
|
1801
1995
|
};
|
|
1802
|
-
export type
|
|
1803
|
-
export type CreateFleetResponses = {
|
|
1996
|
+
export type ListTagsResponses = {
|
|
1804
1997
|
/**
|
|
1805
|
-
*
|
|
1998
|
+
* Repository with tags
|
|
1806
1999
|
*/
|
|
1807
|
-
200:
|
|
2000
|
+
200: RegistryRepositoryWithTags;
|
|
1808
2001
|
};
|
|
1809
|
-
export type
|
|
1810
|
-
export type
|
|
2002
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
2003
|
+
export type DeleteTagData = {
|
|
1811
2004
|
body?: never;
|
|
1812
2005
|
path: {
|
|
1813
2006
|
/**
|
|
1814
|
-
*
|
|
2007
|
+
* Region where the repository is located
|
|
1815
2008
|
*/
|
|
1816
|
-
|
|
2009
|
+
region: string;
|
|
1817
2010
|
/**
|
|
1818
|
-
*
|
|
2011
|
+
* Name of the repository
|
|
1819
2012
|
*/
|
|
1820
|
-
|
|
2013
|
+
repository: string;
|
|
2014
|
+
/**
|
|
2015
|
+
* Name of the tag
|
|
2016
|
+
*/
|
|
2017
|
+
tag: string;
|
|
1821
2018
|
};
|
|
1822
2019
|
query?: never;
|
|
1823
|
-
url: '/
|
|
2020
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1824
2021
|
};
|
|
1825
|
-
export type
|
|
2022
|
+
export type DeleteTagErrors = {
|
|
1826
2023
|
/**
|
|
1827
|
-
*
|
|
2024
|
+
* Not authenticated
|
|
1828
2025
|
*/
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
cluster_id: string;
|
|
1839
|
-
/**
|
|
1840
|
-
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1841
|
-
*/
|
|
1842
|
-
fleet_name: string;
|
|
1843
|
-
};
|
|
1844
|
-
query?: never;
|
|
1845
|
-
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2026
|
+
401: unknown;
|
|
2027
|
+
/**
|
|
2028
|
+
* Tag not found
|
|
2029
|
+
*/
|
|
2030
|
+
404: unknown;
|
|
2031
|
+
/**
|
|
2032
|
+
* Internal server error
|
|
2033
|
+
*/
|
|
2034
|
+
500: unknown;
|
|
1846
2035
|
};
|
|
1847
|
-
export type
|
|
2036
|
+
export type DeleteTagResponses = {
|
|
1848
2037
|
/**
|
|
1849
|
-
*
|
|
2038
|
+
* Tag successfully deleted
|
|
1850
2039
|
*/
|
|
1851
|
-
200:
|
|
2040
|
+
200: unknown;
|
|
1852
2041
|
};
|
|
1853
|
-
export type
|
|
1854
|
-
|
|
1855
|
-
body: FleetUpdateInput;
|
|
2042
|
+
export type GetTagData = {
|
|
2043
|
+
body?: never;
|
|
1856
2044
|
path: {
|
|
1857
2045
|
/**
|
|
1858
|
-
*
|
|
2046
|
+
* Region where the repository is located
|
|
1859
2047
|
*/
|
|
1860
|
-
|
|
2048
|
+
region: string;
|
|
1861
2049
|
/**
|
|
1862
|
-
*
|
|
2050
|
+
* Name of the repository
|
|
1863
2051
|
*/
|
|
1864
|
-
|
|
2052
|
+
repository: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* Name of the tag
|
|
2055
|
+
*/
|
|
2056
|
+
tag: string;
|
|
1865
2057
|
};
|
|
1866
2058
|
query?: never;
|
|
1867
|
-
url: '/
|
|
2059
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1868
2060
|
};
|
|
1869
|
-
export type
|
|
2061
|
+
export type GetTagErrors = {
|
|
1870
2062
|
/**
|
|
1871
|
-
*
|
|
2063
|
+
* Not authenticated
|
|
1872
2064
|
*/
|
|
1873
|
-
|
|
2065
|
+
401: unknown;
|
|
2066
|
+
/**
|
|
2067
|
+
* Tag not found
|
|
2068
|
+
*/
|
|
2069
|
+
404: unknown;
|
|
2070
|
+
/**
|
|
2071
|
+
* Internal server error
|
|
2072
|
+
*/
|
|
2073
|
+
500: unknown;
|
|
1874
2074
|
};
|
|
1875
|
-
export type
|
|
1876
|
-
export type UpdateFleetResponses = {
|
|
2075
|
+
export type GetTagResponses = {
|
|
1877
2076
|
/**
|
|
1878
|
-
*
|
|
2077
|
+
* Tag details
|
|
1879
2078
|
*/
|
|
1880
|
-
200:
|
|
2079
|
+
200: RegistryTag;
|
|
1881
2080
|
};
|
|
1882
|
-
export type
|
|
1883
|
-
export type
|
|
2081
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
2082
|
+
export type GetOrganizationData = {
|
|
1884
2083
|
body?: never;
|
|
1885
|
-
path
|
|
1886
|
-
/**
|
|
1887
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1888
|
-
*/
|
|
1889
|
-
cluster_id: string;
|
|
1890
|
-
};
|
|
2084
|
+
path?: never;
|
|
1891
2085
|
query?: never;
|
|
1892
|
-
url: '/
|
|
2086
|
+
url: '/organization';
|
|
1893
2087
|
};
|
|
1894
|
-
export type
|
|
2088
|
+
export type GetOrganizationResponses = {
|
|
1895
2089
|
/**
|
|
1896
|
-
*
|
|
2090
|
+
* Returns a single object containing organization details.
|
|
1897
2091
|
*/
|
|
1898
|
-
|
|
2092
|
+
200: Organization;
|
|
1899
2093
|
};
|
|
1900
|
-
export type
|
|
2094
|
+
export type GetOrganizationResponse = GetOrganizationResponses[keyof GetOrganizationResponses];
|
|
2095
|
+
export type CreateOrganizationData = {
|
|
2096
|
+
body: OrganizationCreateInput;
|
|
2097
|
+
path?: never;
|
|
2098
|
+
query?: never;
|
|
2099
|
+
url: '/organization';
|
|
2100
|
+
};
|
|
2101
|
+
export type CreateOrganizationResponses = {
|
|
1901
2102
|
/**
|
|
1902
|
-
*
|
|
2103
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2104
|
+
*
|
|
1903
2105
|
*/
|
|
1904
|
-
200:
|
|
2106
|
+
200: OrganizationCreateOutput;
|
|
1905
2107
|
};
|
|
1906
|
-
export type
|
|
1907
|
-
|
|
2108
|
+
export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
|
|
2109
|
+
export type PostMcpData = {
|
|
2110
|
+
/**
|
|
2111
|
+
* JSON-RPC 2.0 request payload
|
|
2112
|
+
*/
|
|
2113
|
+
body: {
|
|
2114
|
+
jsonrpc?: string;
|
|
2115
|
+
method?: string;
|
|
2116
|
+
id?: string | number;
|
|
2117
|
+
/**
|
|
2118
|
+
* Method-specific parameters
|
|
2119
|
+
*/
|
|
2120
|
+
params?: {
|
|
2121
|
+
[key: string]: unknown;
|
|
2122
|
+
};
|
|
2123
|
+
};
|
|
1908
2124
|
path?: never;
|
|
1909
2125
|
query?: never;
|
|
1910
|
-
url: '/
|
|
2126
|
+
url: '/mcp';
|
|
1911
2127
|
};
|
|
1912
|
-
export type
|
|
2128
|
+
export type PostMcpErrors = {
|
|
1913
2129
|
/**
|
|
1914
2130
|
* Not authenticated
|
|
1915
2131
|
*/
|
|
1916
2132
|
401: unknown;
|
|
1917
2133
|
};
|
|
1918
|
-
export type
|
|
2134
|
+
export type PostMcpResponses = {
|
|
1919
2135
|
/**
|
|
1920
|
-
*
|
|
2136
|
+
* JSON-RPC 2.0 success or error response
|
|
1921
2137
|
*/
|
|
1922
|
-
200:
|
|
2138
|
+
200: {
|
|
2139
|
+
jsonrpc?: string;
|
|
2140
|
+
id?: string | number;
|
|
2141
|
+
result?: {
|
|
2142
|
+
[key: string]: unknown;
|
|
2143
|
+
};
|
|
2144
|
+
error?: {
|
|
2145
|
+
code?: number;
|
|
2146
|
+
message?: string;
|
|
2147
|
+
};
|
|
2148
|
+
};
|
|
1923
2149
|
};
|
|
1924
|
-
export type
|
|
1925
|
-
export type
|
|
1926
|
-
body
|
|
2150
|
+
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
2151
|
+
export type ListMarketplaceChartsData = {
|
|
2152
|
+
body?: never;
|
|
1927
2153
|
path?: never;
|
|
1928
2154
|
query?: never;
|
|
1929
|
-
url: '/
|
|
2155
|
+
url: '/marketplace';
|
|
1930
2156
|
};
|
|
1931
|
-
export type
|
|
2157
|
+
export type ListMarketplaceChartsErrors = {
|
|
1932
2158
|
/**
|
|
1933
|
-
*
|
|
2159
|
+
* Not authenticated
|
|
1934
2160
|
*/
|
|
1935
|
-
|
|
2161
|
+
401: unknown;
|
|
1936
2162
|
};
|
|
1937
|
-
export type
|
|
1938
|
-
export type CreateClusterResponses = {
|
|
2163
|
+
export type ListMarketplaceChartsResponses = {
|
|
1939
2164
|
/**
|
|
1940
|
-
*
|
|
2165
|
+
* An array of chart listings in the marketplace.
|
|
1941
2166
|
*/
|
|
1942
|
-
200:
|
|
2167
|
+
200: Array<MarketplaceListing>;
|
|
1943
2168
|
};
|
|
1944
|
-
export type
|
|
1945
|
-
export type
|
|
2169
|
+
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
2170
|
+
export type GetMarketplaceChartFilesData = {
|
|
1946
2171
|
body?: never;
|
|
1947
2172
|
path: {
|
|
1948
2173
|
/**
|
|
1949
|
-
*
|
|
2174
|
+
* Name of the chart in the marketplace.
|
|
1950
2175
|
*/
|
|
1951
|
-
|
|
2176
|
+
chart_name: string;
|
|
2177
|
+
/**
|
|
2178
|
+
* 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).
|
|
2179
|
+
*/
|
|
2180
|
+
version_channel: string;
|
|
1952
2181
|
};
|
|
1953
2182
|
query?: never;
|
|
1954
|
-
url: '/
|
|
2183
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
1955
2184
|
};
|
|
1956
|
-
export type
|
|
2185
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
1957
2186
|
/**
|
|
1958
|
-
*
|
|
2187
|
+
* Chart not found or no version matches the channel
|
|
1959
2188
|
*/
|
|
1960
2189
|
404: unknown;
|
|
1961
|
-
/**
|
|
1962
|
-
* The cluster could not be torn down due to a transient failure. The cluster is left intact; retry the request.
|
|
1963
|
-
*
|
|
1964
|
-
*/
|
|
1965
|
-
503: unknown;
|
|
1966
2190
|
};
|
|
1967
|
-
export type
|
|
2191
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
1968
2192
|
/**
|
|
1969
|
-
*
|
|
2193
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1970
2194
|
*/
|
|
1971
|
-
200:
|
|
2195
|
+
200: MarketplaceListingFiles;
|
|
1972
2196
|
};
|
|
1973
|
-
export type
|
|
1974
|
-
export type
|
|
2197
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
2198
|
+
export type ListInvitesData = {
|
|
1975
2199
|
body?: never;
|
|
1976
|
-
path
|
|
1977
|
-
/**
|
|
1978
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1979
|
-
*/
|
|
1980
|
-
cluster_id: string;
|
|
1981
|
-
};
|
|
2200
|
+
path?: never;
|
|
1982
2201
|
query?: never;
|
|
1983
|
-
url: '/
|
|
2202
|
+
url: '/invites';
|
|
1984
2203
|
};
|
|
1985
|
-
export type
|
|
2204
|
+
export type ListInvitesErrors = {
|
|
1986
2205
|
/**
|
|
1987
|
-
*
|
|
2206
|
+
* Not authenticated
|
|
1988
2207
|
*/
|
|
1989
|
-
|
|
1990
|
-
};
|
|
1991
|
-
export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
|
|
1992
|
-
export type UpdateClusterData = {
|
|
1993
|
-
body: ClusterUpdateInput;
|
|
1994
|
-
path: {
|
|
1995
|
-
/**
|
|
1996
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1997
|
-
*/
|
|
1998
|
-
cluster_id: string;
|
|
1999
|
-
};
|
|
2000
|
-
query?: never;
|
|
2001
|
-
url: '/clusters/{cluster_id}';
|
|
2002
|
-
};
|
|
2003
|
-
export type UpdateClusterResponses = {
|
|
2004
|
-
/**
|
|
2005
|
-
* Successfully updated. Returns updated cluster details.
|
|
2006
|
-
*/
|
|
2007
|
-
200: Cluster;
|
|
2008
|
-
};
|
|
2009
|
-
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
2010
|
-
export type GetJoinInformationData = {
|
|
2011
|
-
body?: never;
|
|
2012
|
-
path: {
|
|
2013
|
-
/**
|
|
2014
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2015
|
-
*/
|
|
2016
|
-
cluster_id: string;
|
|
2017
|
-
};
|
|
2018
|
-
query?: never;
|
|
2019
|
-
url: '/clusters/{cluster_id}/join_information';
|
|
2020
|
-
};
|
|
2021
|
-
export type GetJoinInformationErrors = {
|
|
2022
|
-
/**
|
|
2023
|
-
* Not authenticated
|
|
2024
|
-
*/
|
|
2025
|
-
401: unknown;
|
|
2026
|
-
};
|
|
2027
|
-
export type GetJoinInformationResponses = {
|
|
2028
|
-
/**
|
|
2029
|
-
* An object of cluster join information
|
|
2030
|
-
*/
|
|
2031
|
-
200: ClusterJoinInformation;
|
|
2032
|
-
};
|
|
2033
|
-
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
2034
|
-
export type ListInvitesData = {
|
|
2035
|
-
body?: never;
|
|
2036
|
-
path?: never;
|
|
2037
|
-
query?: never;
|
|
2038
|
-
url: '/invites';
|
|
2039
|
-
};
|
|
2040
|
-
export type ListInvitesErrors = {
|
|
2041
|
-
/**
|
|
2042
|
-
* Not authenticated
|
|
2043
|
-
*/
|
|
2044
|
-
401: unknown;
|
|
2208
|
+
401: unknown;
|
|
2045
2209
|
};
|
|
2046
2210
|
export type ListInvitesResponses = {
|
|
2047
2211
|
/**
|
|
@@ -2107,619 +2271,654 @@ export type DeleteInviteResponses = {
|
|
|
2107
2271
|
*/
|
|
2108
2272
|
200: unknown;
|
|
2109
2273
|
};
|
|
2110
|
-
export type
|
|
2274
|
+
export type QueryClusterData = {
|
|
2111
2275
|
body?: never;
|
|
2112
|
-
path
|
|
2276
|
+
path: {
|
|
2277
|
+
/**
|
|
2278
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2279
|
+
*/
|
|
2280
|
+
cluster_id: string;
|
|
2281
|
+
};
|
|
2113
2282
|
query?: never;
|
|
2114
|
-
url: '/
|
|
2283
|
+
url: '/clusters/{cluster_id}/query';
|
|
2115
2284
|
};
|
|
2116
|
-
export type
|
|
2285
|
+
export type QueryClusterErrors = {
|
|
2117
2286
|
/**
|
|
2118
2287
|
* Not authenticated
|
|
2119
2288
|
*/
|
|
2120
2289
|
401: unknown;
|
|
2121
2290
|
};
|
|
2122
|
-
export type
|
|
2291
|
+
export type QueryClusterResponses = {
|
|
2123
2292
|
/**
|
|
2124
|
-
*
|
|
2293
|
+
* Kubernetes API response
|
|
2125
2294
|
*/
|
|
2126
|
-
200:
|
|
2295
|
+
200: unknown;
|
|
2127
2296
|
};
|
|
2128
|
-
export type
|
|
2129
|
-
export type GetMarketplaceChartFilesData = {
|
|
2297
|
+
export type ListFleetsData = {
|
|
2130
2298
|
body?: never;
|
|
2131
2299
|
path: {
|
|
2132
2300
|
/**
|
|
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).
|
|
2301
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2138
2302
|
*/
|
|
2139
|
-
|
|
2303
|
+
cluster_id: string;
|
|
2140
2304
|
};
|
|
2141
2305
|
query?: never;
|
|
2142
|
-
url: '/
|
|
2306
|
+
url: '/clusters/{cluster_id}/fleets';
|
|
2143
2307
|
};
|
|
2144
|
-
export type
|
|
2308
|
+
export type ListFleetsErrors = {
|
|
2145
2309
|
/**
|
|
2146
|
-
*
|
|
2310
|
+
* Not authenticated
|
|
2147
2311
|
*/
|
|
2148
|
-
|
|
2312
|
+
401: unknown;
|
|
2149
2313
|
};
|
|
2150
|
-
export type
|
|
2314
|
+
export type ListFleetsResponses = {
|
|
2151
2315
|
/**
|
|
2152
|
-
*
|
|
2316
|
+
* An array of fleets
|
|
2153
2317
|
*/
|
|
2154
|
-
200:
|
|
2318
|
+
200: Array<Fleet>;
|
|
2155
2319
|
};
|
|
2156
|
-
export type
|
|
2157
|
-
export type
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
*/
|
|
2161
|
-
body: {
|
|
2162
|
-
jsonrpc?: string;
|
|
2163
|
-
method?: string;
|
|
2164
|
-
id?: string | number;
|
|
2320
|
+
export type ListFleetsResponse = ListFleetsResponses[keyof ListFleetsResponses];
|
|
2321
|
+
export type CreateFleetData = {
|
|
2322
|
+
body: FleetCreateInput;
|
|
2323
|
+
path: {
|
|
2165
2324
|
/**
|
|
2166
|
-
*
|
|
2325
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2167
2326
|
*/
|
|
2168
|
-
|
|
2169
|
-
[key: string]: unknown;
|
|
2170
|
-
};
|
|
2327
|
+
cluster_id: string;
|
|
2171
2328
|
};
|
|
2172
|
-
path?: never;
|
|
2173
2329
|
query?: never;
|
|
2174
|
-
url: '/
|
|
2175
|
-
};
|
|
2176
|
-
export type PostMcpErrors = {
|
|
2177
|
-
/**
|
|
2178
|
-
* Not authenticated
|
|
2179
|
-
*/
|
|
2180
|
-
401: unknown;
|
|
2330
|
+
url: '/clusters/{cluster_id}/fleets';
|
|
2181
2331
|
};
|
|
2182
|
-
export type
|
|
2332
|
+
export type CreateFleetErrors = {
|
|
2183
2333
|
/**
|
|
2184
|
-
*
|
|
2334
|
+
* Cluster quota exceeded. Maximum number of fleets per cluster allowed in this organization is reached.
|
|
2185
2335
|
*/
|
|
2186
|
-
|
|
2187
|
-
jsonrpc?: string;
|
|
2188
|
-
id?: string | number;
|
|
2189
|
-
result?: {
|
|
2190
|
-
[key: string]: unknown;
|
|
2191
|
-
};
|
|
2192
|
-
error?: {
|
|
2193
|
-
code?: number;
|
|
2194
|
-
message?: string;
|
|
2195
|
-
};
|
|
2196
|
-
};
|
|
2197
|
-
};
|
|
2198
|
-
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
2199
|
-
export type GetOrganizationData = {
|
|
2200
|
-
body?: never;
|
|
2201
|
-
path?: never;
|
|
2202
|
-
query?: never;
|
|
2203
|
-
url: '/organization';
|
|
2204
|
-
};
|
|
2205
|
-
export type GetOrganizationResponses = {
|
|
2336
|
+
402: string;
|
|
2206
2337
|
/**
|
|
2207
|
-
*
|
|
2338
|
+
* 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
2339
|
*/
|
|
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';
|
|
2340
|
+
409: string;
|
|
2217
2341
|
};
|
|
2218
|
-
export type
|
|
2342
|
+
export type CreateFleetError = CreateFleetErrors[keyof CreateFleetErrors];
|
|
2343
|
+
export type CreateFleetResponses = {
|
|
2219
2344
|
/**
|
|
2220
|
-
*
|
|
2221
|
-
*
|
|
2345
|
+
* Successfully created. Returns created Fleet ID.
|
|
2222
2346
|
*/
|
|
2223
|
-
200:
|
|
2347
|
+
200: string;
|
|
2224
2348
|
};
|
|
2225
|
-
export type
|
|
2226
|
-
export type
|
|
2349
|
+
export type CreateFleetResponse = CreateFleetResponses[keyof CreateFleetResponses];
|
|
2350
|
+
export type DeleteFleetData = {
|
|
2227
2351
|
body?: never;
|
|
2228
|
-
path
|
|
2352
|
+
path: {
|
|
2353
|
+
/**
|
|
2354
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2355
|
+
*/
|
|
2356
|
+
cluster_id: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2359
|
+
*/
|
|
2360
|
+
fleet_name: string;
|
|
2361
|
+
};
|
|
2229
2362
|
query?: never;
|
|
2230
|
-
url: '/
|
|
2363
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2231
2364
|
};
|
|
2232
|
-
export type
|
|
2233
|
-
/**
|
|
2234
|
-
* Not authenticated
|
|
2235
|
-
*/
|
|
2236
|
-
401: unknown;
|
|
2365
|
+
export type DeleteFleetErrors = {
|
|
2237
2366
|
/**
|
|
2238
|
-
*
|
|
2367
|
+
* 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.
|
|
2239
2368
|
*/
|
|
2240
|
-
|
|
2369
|
+
409: string;
|
|
2241
2370
|
};
|
|
2242
|
-
export type
|
|
2371
|
+
export type DeleteFleetError = DeleteFleetErrors[keyof DeleteFleetErrors];
|
|
2372
|
+
export type DeleteFleetResponses = {
|
|
2243
2373
|
/**
|
|
2244
|
-
*
|
|
2374
|
+
* Successfully deleted.
|
|
2245
2375
|
*/
|
|
2246
|
-
200:
|
|
2376
|
+
200: string;
|
|
2247
2377
|
};
|
|
2248
|
-
export type
|
|
2249
|
-
export type
|
|
2378
|
+
export type DeleteFleetResponse = DeleteFleetResponses[keyof DeleteFleetResponses];
|
|
2379
|
+
export type GetFleetData = {
|
|
2250
2380
|
body?: never;
|
|
2251
2381
|
path: {
|
|
2252
2382
|
/**
|
|
2253
|
-
*
|
|
2383
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2254
2384
|
*/
|
|
2255
|
-
|
|
2385
|
+
cluster_id: string;
|
|
2256
2386
|
/**
|
|
2257
|
-
*
|
|
2387
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2258
2388
|
*/
|
|
2259
|
-
|
|
2389
|
+
fleet_name: string;
|
|
2260
2390
|
};
|
|
2261
2391
|
query?: never;
|
|
2262
|
-
url: '/
|
|
2263
|
-
};
|
|
2264
|
-
export type ListTagsErrors = {
|
|
2265
|
-
/**
|
|
2266
|
-
* Not authenticated
|
|
2267
|
-
*/
|
|
2268
|
-
401: unknown;
|
|
2269
|
-
/**
|
|
2270
|
-
* Repository not found
|
|
2271
|
-
*/
|
|
2272
|
-
404: unknown;
|
|
2273
|
-
/**
|
|
2274
|
-
* Internal server error
|
|
2275
|
-
*/
|
|
2276
|
-
500: unknown;
|
|
2392
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2277
2393
|
};
|
|
2278
|
-
export type
|
|
2394
|
+
export type GetFleetResponses = {
|
|
2279
2395
|
/**
|
|
2280
|
-
*
|
|
2396
|
+
* Returns a single object containing fleet details.
|
|
2281
2397
|
*/
|
|
2282
|
-
200:
|
|
2398
|
+
200: Fleet;
|
|
2283
2399
|
};
|
|
2284
|
-
export type
|
|
2285
|
-
export type
|
|
2286
|
-
body
|
|
2400
|
+
export type GetFleetResponse = GetFleetResponses[keyof GetFleetResponses];
|
|
2401
|
+
export type UpdateFleetData = {
|
|
2402
|
+
body: FleetUpdateInput;
|
|
2287
2403
|
path: {
|
|
2288
2404
|
/**
|
|
2289
|
-
*
|
|
2290
|
-
*/
|
|
2291
|
-
region: string;
|
|
2292
|
-
/**
|
|
2293
|
-
* Name of the repository
|
|
2405
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2294
2406
|
*/
|
|
2295
|
-
|
|
2407
|
+
cluster_id: string;
|
|
2296
2408
|
/**
|
|
2297
|
-
*
|
|
2409
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2298
2410
|
*/
|
|
2299
|
-
|
|
2411
|
+
fleet_name: string;
|
|
2300
2412
|
};
|
|
2301
2413
|
query?: never;
|
|
2302
|
-
url: '/
|
|
2414
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
2303
2415
|
};
|
|
2304
|
-
export type
|
|
2416
|
+
export type UpdateFleetErrors = {
|
|
2305
2417
|
/**
|
|
2306
|
-
*
|
|
2418
|
+
* Organization must have a valid payment method configured to access this endpoint.
|
|
2307
2419
|
*/
|
|
2308
|
-
|
|
2420
|
+
402: string;
|
|
2309
2421
|
/**
|
|
2310
|
-
*
|
|
2422
|
+
* 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.
|
|
2311
2423
|
*/
|
|
2312
|
-
|
|
2313
|
-
/**
|
|
2314
|
-
* Internal server error
|
|
2315
|
-
*/
|
|
2316
|
-
500: unknown;
|
|
2424
|
+
409: string;
|
|
2317
2425
|
};
|
|
2318
|
-
export type
|
|
2426
|
+
export type UpdateFleetError = UpdateFleetErrors[keyof UpdateFleetErrors];
|
|
2427
|
+
export type UpdateFleetResponses = {
|
|
2319
2428
|
/**
|
|
2320
|
-
*
|
|
2429
|
+
* Successfully updated.
|
|
2321
2430
|
*/
|
|
2322
|
-
200:
|
|
2431
|
+
200: string;
|
|
2323
2432
|
};
|
|
2324
|
-
export type
|
|
2433
|
+
export type UpdateFleetResponse = UpdateFleetResponses[keyof UpdateFleetResponses];
|
|
2434
|
+
export type ListChartsData = {
|
|
2325
2435
|
body?: never;
|
|
2326
2436
|
path: {
|
|
2327
2437
|
/**
|
|
2328
|
-
*
|
|
2329
|
-
*/
|
|
2330
|
-
region: string;
|
|
2331
|
-
/**
|
|
2332
|
-
* Name of the repository
|
|
2333
|
-
*/
|
|
2334
|
-
repository: string;
|
|
2335
|
-
/**
|
|
2336
|
-
* Name of the tag
|
|
2438
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2337
2439
|
*/
|
|
2338
|
-
|
|
2440
|
+
cluster_id: string;
|
|
2339
2441
|
};
|
|
2340
2442
|
query?: never;
|
|
2341
|
-
url: '/
|
|
2443
|
+
url: '/clusters/{cluster_id}/charts';
|
|
2342
2444
|
};
|
|
2343
|
-
export type
|
|
2445
|
+
export type ListChartsErrors = {
|
|
2344
2446
|
/**
|
|
2345
2447
|
* Not authenticated
|
|
2346
2448
|
*/
|
|
2347
2449
|
401: unknown;
|
|
2450
|
+
};
|
|
2451
|
+
export type ListChartsResponses = {
|
|
2348
2452
|
/**
|
|
2349
|
-
*
|
|
2453
|
+
* An array of charts
|
|
2350
2454
|
*/
|
|
2351
|
-
|
|
2455
|
+
200: Array<Chart>;
|
|
2456
|
+
};
|
|
2457
|
+
export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
|
|
2458
|
+
export type CreateChartData = {
|
|
2459
|
+
body: ChartCreateInput;
|
|
2460
|
+
path: {
|
|
2461
|
+
/**
|
|
2462
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2463
|
+
*/
|
|
2464
|
+
cluster_id: string;
|
|
2465
|
+
};
|
|
2466
|
+
query?: never;
|
|
2467
|
+
url: '/clusters/{cluster_id}/charts';
|
|
2468
|
+
};
|
|
2469
|
+
export type CreateChartErrors = {
|
|
2352
2470
|
/**
|
|
2353
|
-
*
|
|
2471
|
+
* 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.
|
|
2354
2472
|
*/
|
|
2355
|
-
|
|
2473
|
+
409: string;
|
|
2356
2474
|
};
|
|
2357
|
-
export type
|
|
2475
|
+
export type CreateChartError = CreateChartErrors[keyof CreateChartErrors];
|
|
2476
|
+
export type CreateChartResponses = {
|
|
2358
2477
|
/**
|
|
2359
|
-
*
|
|
2478
|
+
* Successfully created. Returns created Chart ID.
|
|
2360
2479
|
*/
|
|
2361
|
-
200:
|
|
2480
|
+
200: string;
|
|
2362
2481
|
};
|
|
2363
|
-
export type
|
|
2364
|
-
export type
|
|
2482
|
+
export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
|
|
2483
|
+
export type DeleteChartData = {
|
|
2365
2484
|
body?: never;
|
|
2366
|
-
path
|
|
2485
|
+
path: {
|
|
2486
|
+
/**
|
|
2487
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2488
|
+
*/
|
|
2489
|
+
cluster_id: string;
|
|
2490
|
+
/**
|
|
2491
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2492
|
+
*/
|
|
2493
|
+
chart_name: string;
|
|
2494
|
+
};
|
|
2367
2495
|
query?: never;
|
|
2368
|
-
url: '/
|
|
2496
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2369
2497
|
};
|
|
2370
|
-
export type
|
|
2498
|
+
export type DeleteChartErrors = {
|
|
2371
2499
|
/**
|
|
2372
|
-
*
|
|
2500
|
+
* 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.
|
|
2373
2501
|
*/
|
|
2374
|
-
|
|
2502
|
+
409: string;
|
|
2375
2503
|
};
|
|
2376
|
-
export type
|
|
2377
|
-
export type
|
|
2378
|
-
|
|
2504
|
+
export type DeleteChartError = DeleteChartErrors[keyof DeleteChartErrors];
|
|
2505
|
+
export type DeleteChartResponses = {
|
|
2506
|
+
/**
|
|
2507
|
+
* Successfully deleted.
|
|
2508
|
+
*/
|
|
2509
|
+
200: string;
|
|
2510
|
+
};
|
|
2511
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
2512
|
+
export type GetChartData = {
|
|
2513
|
+
body?: never;
|
|
2514
|
+
path: {
|
|
2379
2515
|
/**
|
|
2380
|
-
*
|
|
2516
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2381
2517
|
*/
|
|
2382
|
-
|
|
2383
|
-
|
|
2518
|
+
cluster_id: string;
|
|
2519
|
+
/**
|
|
2520
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2521
|
+
*/
|
|
2522
|
+
chart_name: string;
|
|
2384
2523
|
};
|
|
2385
|
-
path?: never;
|
|
2386
2524
|
query?: never;
|
|
2387
|
-
url: '/
|
|
2525
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2388
2526
|
};
|
|
2389
|
-
export type
|
|
2527
|
+
export type GetChartResponses = {
|
|
2390
2528
|
/**
|
|
2391
|
-
*
|
|
2529
|
+
* Returns a single object containing chart details.
|
|
2392
2530
|
*/
|
|
2393
|
-
200:
|
|
2531
|
+
200: Chart;
|
|
2394
2532
|
};
|
|
2395
|
-
export type
|
|
2396
|
-
export type
|
|
2397
|
-
body
|
|
2533
|
+
export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
|
|
2534
|
+
export type UpdateChartData = {
|
|
2535
|
+
body: ChartUpdateInput;
|
|
2398
2536
|
path: {
|
|
2399
|
-
|
|
2537
|
+
/**
|
|
2538
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2539
|
+
*/
|
|
2540
|
+
cluster_id: string;
|
|
2541
|
+
/**
|
|
2542
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2543
|
+
*/
|
|
2544
|
+
chart_name: string;
|
|
2400
2545
|
};
|
|
2401
2546
|
query?: never;
|
|
2402
|
-
url: '/
|
|
2547
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2403
2548
|
};
|
|
2404
|
-
export type
|
|
2549
|
+
export type UpdateChartErrors = {
|
|
2405
2550
|
/**
|
|
2406
|
-
*
|
|
2551
|
+
* 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.
|
|
2407
2552
|
*/
|
|
2408
|
-
|
|
2553
|
+
409: string;
|
|
2409
2554
|
};
|
|
2410
|
-
export type
|
|
2411
|
-
export type
|
|
2555
|
+
export type UpdateChartError = UpdateChartErrors[keyof UpdateChartErrors];
|
|
2556
|
+
export type UpdateChartResponses = {
|
|
2557
|
+
/**
|
|
2558
|
+
* Successfully updated.
|
|
2559
|
+
*/
|
|
2560
|
+
200: string;
|
|
2561
|
+
};
|
|
2562
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
2563
|
+
export type ListClustersData = {
|
|
2412
2564
|
body?: never;
|
|
2413
|
-
path
|
|
2414
|
-
ticket_id: string;
|
|
2415
|
-
};
|
|
2565
|
+
path?: never;
|
|
2416
2566
|
query?: never;
|
|
2417
|
-
url: '/
|
|
2567
|
+
url: '/clusters';
|
|
2418
2568
|
};
|
|
2419
|
-
export type
|
|
2569
|
+
export type ListClustersErrors = {
|
|
2420
2570
|
/**
|
|
2421
|
-
*
|
|
2571
|
+
* Not authenticated
|
|
2422
2572
|
*/
|
|
2423
|
-
|
|
2573
|
+
401: unknown;
|
|
2424
2574
|
};
|
|
2425
|
-
export type
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
path
|
|
2435
|
-
ticket_id: string;
|
|
2436
|
-
};
|
|
2575
|
+
export type ListClustersResponses = {
|
|
2576
|
+
/**
|
|
2577
|
+
* An array of clusters
|
|
2578
|
+
*/
|
|
2579
|
+
200: Array<Cluster>;
|
|
2580
|
+
};
|
|
2581
|
+
export type ListClustersResponse = ListClustersResponses[keyof ListClustersResponses];
|
|
2582
|
+
export type CreateClusterData = {
|
|
2583
|
+
body: ClusterCreateInput;
|
|
2584
|
+
path?: never;
|
|
2437
2585
|
query?: never;
|
|
2438
|
-
url: '/
|
|
2586
|
+
url: '/clusters';
|
|
2439
2587
|
};
|
|
2440
|
-
export type
|
|
2588
|
+
export type CreateClusterErrors = {
|
|
2441
2589
|
/**
|
|
2442
|
-
*
|
|
2590
|
+
* Cluster quota exceeded. Maximum number of clusters allowed in this organization is reached.
|
|
2443
2591
|
*/
|
|
2444
|
-
|
|
2592
|
+
402: string;
|
|
2445
2593
|
};
|
|
2446
|
-
export type
|
|
2594
|
+
export type CreateClusterError = CreateClusterErrors[keyof CreateClusterErrors];
|
|
2595
|
+
export type CreateClusterResponses = {
|
|
2447
2596
|
/**
|
|
2448
|
-
*
|
|
2597
|
+
* Successfully created. Returns created Cluster ID.
|
|
2449
2598
|
*/
|
|
2450
|
-
200:
|
|
2599
|
+
200: string;
|
|
2451
2600
|
};
|
|
2452
|
-
export type
|
|
2453
|
-
export type
|
|
2601
|
+
export type CreateClusterResponse = CreateClusterResponses[keyof CreateClusterResponses];
|
|
2602
|
+
export type DeleteClusterData = {
|
|
2454
2603
|
body?: never;
|
|
2455
2604
|
path: {
|
|
2456
|
-
|
|
2457
|
-
|
|
2605
|
+
/**
|
|
2606
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2607
|
+
*/
|
|
2608
|
+
cluster_id: string;
|
|
2458
2609
|
};
|
|
2459
2610
|
query?: never;
|
|
2460
|
-
url: '/
|
|
2611
|
+
url: '/clusters/{cluster_id}';
|
|
2461
2612
|
};
|
|
2462
|
-
export type
|
|
2613
|
+
export type DeleteClusterErrors = {
|
|
2463
2614
|
/**
|
|
2464
|
-
*
|
|
2615
|
+
* Cluster not found — it does not exist or has already been deleted.
|
|
2465
2616
|
*/
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2617
|
+
404: unknown;
|
|
2618
|
+
/**
|
|
2619
|
+
* 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.
|
|
2620
|
+
*/
|
|
2621
|
+
409: string;
|
|
2622
|
+
/**
|
|
2623
|
+
* Transient failure tearing down the cluster; retry the request.
|
|
2624
|
+
*/
|
|
2625
|
+
503: unknown;
|
|
2474
2626
|
};
|
|
2475
|
-
export type
|
|
2627
|
+
export type DeleteClusterError = DeleteClusterErrors[keyof DeleteClusterErrors];
|
|
2628
|
+
export type DeleteClusterResponses = {
|
|
2476
2629
|
/**
|
|
2477
|
-
*
|
|
2630
|
+
* Successfully deleted. The cluster has been torn down.
|
|
2478
2631
|
*/
|
|
2479
|
-
|
|
2632
|
+
200: string;
|
|
2480
2633
|
};
|
|
2481
|
-
export type
|
|
2634
|
+
export type DeleteClusterResponse = DeleteClusterResponses[keyof DeleteClusterResponses];
|
|
2635
|
+
export type GetClusterData = {
|
|
2636
|
+
body?: never;
|
|
2637
|
+
path: {
|
|
2638
|
+
/**
|
|
2639
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2640
|
+
*/
|
|
2641
|
+
cluster_id: string;
|
|
2642
|
+
};
|
|
2643
|
+
query?: never;
|
|
2644
|
+
url: '/clusters/{cluster_id}';
|
|
2645
|
+
};
|
|
2646
|
+
export type GetClusterResponses = {
|
|
2482
2647
|
/**
|
|
2483
|
-
* Returns a
|
|
2648
|
+
* Returns a single object containing cluster details.
|
|
2484
2649
|
*/
|
|
2485
|
-
200:
|
|
2650
|
+
200: Cluster;
|
|
2486
2651
|
};
|
|
2487
|
-
export type
|
|
2488
|
-
export type
|
|
2489
|
-
body:
|
|
2490
|
-
path
|
|
2652
|
+
export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
|
|
2653
|
+
export type UpdateClusterData = {
|
|
2654
|
+
body: ClusterUpdateInput;
|
|
2655
|
+
path: {
|
|
2656
|
+
/**
|
|
2657
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2658
|
+
*/
|
|
2659
|
+
cluster_id: string;
|
|
2660
|
+
};
|
|
2491
2661
|
query?: never;
|
|
2492
|
-
url: '/
|
|
2662
|
+
url: '/clusters/{cluster_id}';
|
|
2493
2663
|
};
|
|
2494
|
-
export type
|
|
2664
|
+
export type UpdateClusterErrors = {
|
|
2495
2665
|
/**
|
|
2496
|
-
*
|
|
2666
|
+
* 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
2667
|
*/
|
|
2498
|
-
|
|
2668
|
+
409: string;
|
|
2499
2669
|
};
|
|
2500
|
-
export type
|
|
2670
|
+
export type UpdateClusterError = UpdateClusterErrors[keyof UpdateClusterErrors];
|
|
2671
|
+
export type UpdateClusterResponses = {
|
|
2501
2672
|
/**
|
|
2502
|
-
* Successfully
|
|
2673
|
+
* Successfully updated. Returns updated cluster details.
|
|
2503
2674
|
*/
|
|
2504
|
-
200:
|
|
2675
|
+
200: Cluster;
|
|
2505
2676
|
};
|
|
2506
|
-
export type
|
|
2507
|
-
export type
|
|
2677
|
+
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
2678
|
+
export type GetJoinInformationData = {
|
|
2508
2679
|
body?: never;
|
|
2509
2680
|
path: {
|
|
2510
2681
|
/**
|
|
2511
|
-
*
|
|
2682
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2512
2683
|
*/
|
|
2513
|
-
|
|
2684
|
+
cluster_id: string;
|
|
2514
2685
|
};
|
|
2515
2686
|
query?: never;
|
|
2516
|
-
url: '/
|
|
2687
|
+
url: '/clusters/{cluster_id}/join_information';
|
|
2517
2688
|
};
|
|
2518
|
-
export type
|
|
2689
|
+
export type GetJoinInformationErrors = {
|
|
2519
2690
|
/**
|
|
2520
|
-
*
|
|
2691
|
+
* Not authenticated
|
|
2521
2692
|
*/
|
|
2522
|
-
|
|
2693
|
+
401: unknown;
|
|
2694
|
+
/**
|
|
2695
|
+
* 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.
|
|
2696
|
+
*/
|
|
2697
|
+
409: string;
|
|
2523
2698
|
};
|
|
2524
|
-
export type
|
|
2699
|
+
export type GetJoinInformationError = GetJoinInformationErrors[keyof GetJoinInformationErrors];
|
|
2700
|
+
export type GetJoinInformationResponses = {
|
|
2701
|
+
/**
|
|
2702
|
+
* An object of cluster join information
|
|
2703
|
+
*/
|
|
2704
|
+
200: ClusterJoinInformation;
|
|
2705
|
+
};
|
|
2706
|
+
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
2707
|
+
export type GetUsageData = {
|
|
2525
2708
|
body?: never;
|
|
2526
|
-
path
|
|
2709
|
+
path?: never;
|
|
2710
|
+
query?: {
|
|
2527
2711
|
/**
|
|
2528
|
-
*
|
|
2712
|
+
* 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
2713
|
*/
|
|
2530
|
-
|
|
2714
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
2531
2715
|
};
|
|
2532
|
-
|
|
2533
|
-
url: '/tokens/{token_id}';
|
|
2716
|
+
url: '/billing/usage';
|
|
2534
2717
|
};
|
|
2535
|
-
export type
|
|
2718
|
+
export type GetUsageErrors = {
|
|
2536
2719
|
/**
|
|
2537
2720
|
* Not authenticated
|
|
2538
2721
|
*/
|
|
2539
2722
|
401: unknown;
|
|
2540
2723
|
};
|
|
2541
|
-
export type
|
|
2724
|
+
export type GetUsageResponses = {
|
|
2542
2725
|
/**
|
|
2543
|
-
*
|
|
2726
|
+
* Usage data with facets for filtering
|
|
2544
2727
|
*/
|
|
2545
|
-
200:
|
|
2728
|
+
200: UsageResponse;
|
|
2546
2729
|
};
|
|
2547
|
-
export type
|
|
2548
|
-
export type
|
|
2549
|
-
body
|
|
2550
|
-
path
|
|
2730
|
+
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
2731
|
+
export type GetPaymentMethodSecretData = {
|
|
2732
|
+
body?: never;
|
|
2733
|
+
path?: never;
|
|
2734
|
+
query?: never;
|
|
2735
|
+
url: '/billing/payment-method';
|
|
2736
|
+
};
|
|
2737
|
+
export type GetPaymentMethodSecretResponses = {
|
|
2738
|
+
/**
|
|
2739
|
+
* 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.
|
|
2740
|
+
*
|
|
2741
|
+
*/
|
|
2742
|
+
200: {
|
|
2551
2743
|
/**
|
|
2552
|
-
*
|
|
2744
|
+
* The client secret.
|
|
2553
2745
|
*/
|
|
2554
|
-
|
|
2746
|
+
id?: string;
|
|
2555
2747
|
};
|
|
2748
|
+
};
|
|
2749
|
+
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
2750
|
+
export type ListPaymentMethodsData = {
|
|
2751
|
+
body?: never;
|
|
2752
|
+
path?: never;
|
|
2556
2753
|
query?: never;
|
|
2557
|
-
url: '/
|
|
2754
|
+
url: '/billing/payment-methods';
|
|
2558
2755
|
};
|
|
2559
|
-
export type
|
|
2756
|
+
export type ListPaymentMethodsErrors = {
|
|
2560
2757
|
/**
|
|
2561
2758
|
* Not authenticated
|
|
2562
2759
|
*/
|
|
2563
2760
|
401: unknown;
|
|
2564
2761
|
};
|
|
2565
|
-
export type
|
|
2762
|
+
export type ListPaymentMethodsResponses = {
|
|
2566
2763
|
/**
|
|
2567
|
-
*
|
|
2764
|
+
* An array of payment methods.
|
|
2568
2765
|
*/
|
|
2569
|
-
200:
|
|
2766
|
+
200: Array<PaymentMethod>;
|
|
2570
2767
|
};
|
|
2571
|
-
export type
|
|
2572
|
-
export type
|
|
2768
|
+
export type ListPaymentMethodsResponse = ListPaymentMethodsResponses[keyof ListPaymentMethodsResponses];
|
|
2769
|
+
export type SetDefaultPaymentMethodData = {
|
|
2573
2770
|
body?: never;
|
|
2574
2771
|
path: {
|
|
2575
2772
|
/**
|
|
2576
|
-
*
|
|
2773
|
+
* Stripe payment method identifier.
|
|
2577
2774
|
*/
|
|
2578
|
-
|
|
2775
|
+
paymentMethodId: string;
|
|
2579
2776
|
};
|
|
2580
2777
|
query?: never;
|
|
2581
|
-
url: '/
|
|
2778
|
+
url: '/billing/payment-methods/{paymentMethodId}/default';
|
|
2582
2779
|
};
|
|
2583
|
-
export type
|
|
2780
|
+
export type SetDefaultPaymentMethodErrors = {
|
|
2781
|
+
/**
|
|
2782
|
+
* The bank transfer payment method cannot be set as the default.
|
|
2783
|
+
*/
|
|
2784
|
+
400: unknown;
|
|
2584
2785
|
/**
|
|
2585
2786
|
* Not authenticated
|
|
2586
2787
|
*/
|
|
2587
2788
|
401: unknown;
|
|
2789
|
+
/**
|
|
2790
|
+
* Payment method not found.
|
|
2791
|
+
*/
|
|
2792
|
+
404: unknown;
|
|
2588
2793
|
};
|
|
2589
|
-
export type
|
|
2794
|
+
export type SetDefaultPaymentMethodResponses = {
|
|
2590
2795
|
/**
|
|
2591
|
-
*
|
|
2796
|
+
* Default payment method updated.
|
|
2592
2797
|
*/
|
|
2593
|
-
|
|
2798
|
+
204: void;
|
|
2594
2799
|
};
|
|
2595
|
-
export type
|
|
2596
|
-
export type
|
|
2800
|
+
export type SetDefaultPaymentMethodResponse = SetDefaultPaymentMethodResponses[keyof SetDefaultPaymentMethodResponses];
|
|
2801
|
+
export type DeletePaymentMethodData = {
|
|
2597
2802
|
body?: never;
|
|
2598
2803
|
path: {
|
|
2599
2804
|
/**
|
|
2600
|
-
*
|
|
2805
|
+
* Stripe payment method identifier.
|
|
2601
2806
|
*/
|
|
2602
|
-
|
|
2807
|
+
paymentMethodId: string;
|
|
2603
2808
|
};
|
|
2604
2809
|
query?: never;
|
|
2605
|
-
url: '/
|
|
2810
|
+
url: '/billing/payment-methods/{paymentMethodId}';
|
|
2606
2811
|
};
|
|
2607
|
-
export type
|
|
2812
|
+
export type DeletePaymentMethodErrors = {
|
|
2608
2813
|
/**
|
|
2609
|
-
*
|
|
2814
|
+
* The bank transfer payment method cannot be removed.
|
|
2610
2815
|
*/
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2816
|
+
400: unknown;
|
|
2817
|
+
/**
|
|
2818
|
+
* Not authenticated
|
|
2819
|
+
*/
|
|
2820
|
+
401: unknown;
|
|
2821
|
+
/**
|
|
2822
|
+
* Payment method not found.
|
|
2823
|
+
*/
|
|
2824
|
+
404: unknown;
|
|
2825
|
+
/**
|
|
2826
|
+
* Cannot delete the only remaining payment method.
|
|
2827
|
+
*/
|
|
2828
|
+
409: unknown;
|
|
2621
2829
|
};
|
|
2622
|
-
export type
|
|
2623
|
-
|
|
2830
|
+
export type DeletePaymentMethodResponses = {
|
|
2831
|
+
/**
|
|
2832
|
+
* Payment method deleted.
|
|
2833
|
+
*/
|
|
2834
|
+
204: void;
|
|
2835
|
+
};
|
|
2836
|
+
export type DeletePaymentMethodResponse = DeletePaymentMethodResponses[keyof DeletePaymentMethodResponses];
|
|
2837
|
+
export type ListInvoicesData = {
|
|
2624
2838
|
body?: never;
|
|
2625
2839
|
path?: never;
|
|
2626
2840
|
query?: never;
|
|
2627
|
-
url: '/
|
|
2841
|
+
url: '/billing/invoices';
|
|
2628
2842
|
};
|
|
2629
|
-
export type
|
|
2843
|
+
export type ListInvoicesErrors = {
|
|
2630
2844
|
/**
|
|
2631
2845
|
* Not authenticated
|
|
2632
2846
|
*/
|
|
2633
2847
|
401: unknown;
|
|
2634
2848
|
};
|
|
2635
|
-
export type
|
|
2849
|
+
export type ListInvoicesResponses = {
|
|
2636
2850
|
/**
|
|
2637
|
-
* An array of
|
|
2851
|
+
* An array of usage records.
|
|
2638
2852
|
*/
|
|
2639
|
-
200: Array<
|
|
2853
|
+
200: Array<Invoice>;
|
|
2640
2854
|
};
|
|
2641
|
-
export type
|
|
2642
|
-
export type
|
|
2643
|
-
body
|
|
2855
|
+
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
2856
|
+
export type GetContactData = {
|
|
2857
|
+
body?: never;
|
|
2644
2858
|
path?: never;
|
|
2645
2859
|
query?: never;
|
|
2646
|
-
url: '/
|
|
2860
|
+
url: '/billing/contact';
|
|
2647
2861
|
};
|
|
2648
|
-
export type
|
|
2862
|
+
export type GetContactResponses = {
|
|
2649
2863
|
/**
|
|
2650
|
-
*
|
|
2864
|
+
* Returns a single object containing organization contact and billing address details.
|
|
2651
2865
|
*/
|
|
2652
|
-
200:
|
|
2866
|
+
200: BillingContact;
|
|
2653
2867
|
};
|
|
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
|
-
};
|
|
2868
|
+
export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
|
|
2869
|
+
export type UpdateContactData = {
|
|
2870
|
+
body: BillingContact;
|
|
2871
|
+
path?: never;
|
|
2663
2872
|
query?: never;
|
|
2664
|
-
url: '/
|
|
2873
|
+
url: '/billing/contact';
|
|
2665
2874
|
};
|
|
2666
|
-
export type
|
|
2875
|
+
export type UpdateContactResponses = {
|
|
2667
2876
|
/**
|
|
2668
|
-
*
|
|
2877
|
+
* Successfully updated. Returns updated organization details.
|
|
2669
2878
|
*/
|
|
2670
|
-
|
|
2879
|
+
200: BillingContact;
|
|
2880
|
+
};
|
|
2881
|
+
export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
|
|
2882
|
+
export type GetCreditsData = {
|
|
2883
|
+
body?: never;
|
|
2884
|
+
path?: never;
|
|
2885
|
+
query?: never;
|
|
2886
|
+
url: '/billing/credits';
|
|
2887
|
+
};
|
|
2888
|
+
export type GetCreditsErrors = {
|
|
2671
2889
|
/**
|
|
2672
2890
|
* Not authenticated
|
|
2673
2891
|
*/
|
|
2674
2892
|
401: unknown;
|
|
2675
2893
|
};
|
|
2676
|
-
export type
|
|
2894
|
+
export type GetCreditsResponses = {
|
|
2677
2895
|
/**
|
|
2678
|
-
*
|
|
2896
|
+
* An array of the applied promotional credits records.
|
|
2679
2897
|
*/
|
|
2680
|
-
200:
|
|
2898
|
+
200: Array<BillingCredits>;
|
|
2681
2899
|
};
|
|
2682
|
-
export type
|
|
2683
|
-
export type
|
|
2684
|
-
body
|
|
2685
|
-
path: {
|
|
2900
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
2901
|
+
export type RedeemCreditsData = {
|
|
2902
|
+
body: {
|
|
2686
2903
|
/**
|
|
2687
|
-
*
|
|
2904
|
+
* Promotional code to redeem
|
|
2688
2905
|
*/
|
|
2689
|
-
|
|
2906
|
+
code?: string;
|
|
2690
2907
|
};
|
|
2908
|
+
path?: never;
|
|
2691
2909
|
query?: never;
|
|
2692
|
-
url: '/
|
|
2910
|
+
url: '/billing/credits';
|
|
2693
2911
|
};
|
|
2694
|
-
export type
|
|
2912
|
+
export type RedeemCreditsErrors = {
|
|
2695
2913
|
/**
|
|
2696
2914
|
* Not authenticated
|
|
2697
2915
|
*/
|
|
2698
2916
|
401: unknown;
|
|
2699
2917
|
};
|
|
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 = {
|
|
2918
|
+
export type RedeemCreditsResponses = {
|
|
2719
2919
|
/**
|
|
2720
|
-
* Successfully created
|
|
2920
|
+
* Successfully created a new organization.
|
|
2721
2921
|
*/
|
|
2722
|
-
200:
|
|
2922
|
+
200: unknown;
|
|
2723
2923
|
};
|
|
2724
|
-
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
2725
2924
|
//# sourceMappingURL=types.gen.d.ts.map
|