@cloudfleet/sdk 0.0.1-2caaedc → 0.0.1-2d09a49
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 +1199 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1215 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +104 -123
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +6 -3
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +7 -3
- 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/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +3 -4
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +932 -140
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1867 -213
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +262 -186
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +377 -257
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +1469 -736
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +3415 -1208
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1280 -293
- package/dist/zod.gen.js.map +1 -1
- package/package.json +27 -11
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,7 +1,31 @@
|
|
|
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 = {
|
|
25
|
+
/**
|
|
26
|
+
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
27
|
+
*/
|
|
28
|
+
type: 'business' | 'personal';
|
|
5
29
|
/**
|
|
6
30
|
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
7
31
|
*/
|
|
@@ -129,9 +153,9 @@ export type Chart = {
|
|
|
129
153
|
*/
|
|
130
154
|
chart: string;
|
|
131
155
|
/**
|
|
132
|
-
* Status of the chart deployment.
|
|
156
|
+
* Status of the chart deployment (Flux HelmRelease Ready condition reason, e.g. InstallSucceeded, UpgradeFailed, Progressing).
|
|
133
157
|
*/
|
|
134
|
-
status:
|
|
158
|
+
status: string;
|
|
135
159
|
/**
|
|
136
160
|
* Current version of the chart deployment.
|
|
137
161
|
*/
|
|
@@ -159,6 +183,9 @@ export type ChartUpdateInput = {
|
|
|
159
183
|
*/
|
|
160
184
|
version_channel: string;
|
|
161
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
188
|
+
*/
|
|
162
189
|
export type ClusterCreateInput = {
|
|
163
190
|
/**
|
|
164
191
|
* Name of the cluster.
|
|
@@ -167,15 +194,61 @@ export type ClusterCreateInput = {
|
|
|
167
194
|
/**
|
|
168
195
|
* Tier of the cluster.
|
|
169
196
|
*/
|
|
170
|
-
tier
|
|
197
|
+
tier?: 'basic' | 'pro' | 'enterprise';
|
|
171
198
|
/**
|
|
172
|
-
*
|
|
199
|
+
* Version of the kubernetes cluster.
|
|
173
200
|
*/
|
|
174
|
-
|
|
201
|
+
version_channel?: string;
|
|
175
202
|
/**
|
|
176
|
-
*
|
|
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
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
225
|
+
*/
|
|
226
|
+
region: string;
|
|
227
|
+
/**
|
|
228
|
+
* Cluster networking configuration. Immutable after creation.
|
|
177
229
|
*/
|
|
178
|
-
|
|
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
|
+
};
|
|
179
252
|
};
|
|
180
253
|
export type ClusterJoinInformation = {
|
|
181
254
|
/**
|
|
@@ -190,6 +263,10 @@ export type ClusterJoinInformation = {
|
|
|
190
263
|
* Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
|
|
191
264
|
*/
|
|
192
265
|
cluster_dns: string;
|
|
266
|
+
/**
|
|
267
|
+
* Pod CIDR for the cluster. Used to configure iptables rules on nodes to prevent Tailscale routing loops.
|
|
268
|
+
*/
|
|
269
|
+
pod_cidr: string;
|
|
193
270
|
/**
|
|
194
271
|
* Authentication key for the cluster.
|
|
195
272
|
*/
|
|
@@ -237,6 +314,9 @@ export type ClusterJoinInformation = {
|
|
|
237
314
|
gcp_workload_identity_provider: string;
|
|
238
315
|
};
|
|
239
316
|
};
|
|
317
|
+
/**
|
|
318
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
319
|
+
*/
|
|
240
320
|
export type Cluster = {
|
|
241
321
|
/**
|
|
242
322
|
* Name of the cluster.
|
|
@@ -245,20 +325,71 @@ export type Cluster = {
|
|
|
245
325
|
/**
|
|
246
326
|
* Tier of the cluster.
|
|
247
327
|
*/
|
|
248
|
-
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';
|
|
249
337
|
/**
|
|
250
|
-
*
|
|
338
|
+
* Cluster feature toggles.
|
|
251
339
|
*/
|
|
252
|
-
|
|
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
|
+
};
|
|
354
|
+
/**
|
|
355
|
+
* Cloudfleet control plane region. This field can not be updated after creation.
|
|
356
|
+
*/
|
|
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
|
+
};
|
|
253
383
|
/**
|
|
254
384
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
255
385
|
*/
|
|
256
386
|
id: string;
|
|
257
387
|
/**
|
|
258
|
-
* Status of the cluster.
|
|
388
|
+
* Status of the cluster.
|
|
259
389
|
*/
|
|
260
|
-
status: '
|
|
390
|
+
status: 'creating' | 'deployed' | 'updating' | 'disabled';
|
|
261
391
|
endpoint?: string | '';
|
|
392
|
+
endpoint_public?: string | '';
|
|
262
393
|
/**
|
|
263
394
|
* Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
|
|
264
395
|
*/
|
|
@@ -278,129 +409,259 @@ export type Cluster = {
|
|
|
278
409
|
/**
|
|
279
410
|
* Indicates if the cluster is ready to be used.
|
|
280
411
|
*/
|
|
281
|
-
ready
|
|
282
|
-
/**
|
|
283
|
-
* Version of the kubernetes cluster.
|
|
284
|
-
*/
|
|
285
|
-
version_channel?: string;
|
|
412
|
+
ready: boolean;
|
|
286
413
|
};
|
|
414
|
+
/**
|
|
415
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
416
|
+
*/
|
|
287
417
|
export type ClusterUpdateInput = {
|
|
288
418
|
/**
|
|
289
419
|
* Name of the cluster.
|
|
290
420
|
*/
|
|
291
|
-
name
|
|
421
|
+
name: string;
|
|
292
422
|
/**
|
|
293
423
|
* Tier of the cluster.
|
|
294
424
|
*/
|
|
295
|
-
tier
|
|
425
|
+
tier?: 'basic' | 'pro' | 'enterprise';
|
|
296
426
|
/**
|
|
297
427
|
* Version of the kubernetes cluster.
|
|
298
428
|
*/
|
|
299
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
|
+
};
|
|
300
451
|
};
|
|
452
|
+
/**
|
|
453
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
454
|
+
*/
|
|
301
455
|
export type FleetCreateInput = {
|
|
302
456
|
/**
|
|
303
457
|
* Limits define a set of bounds for provisioning capacity.
|
|
304
458
|
*/
|
|
305
459
|
limits?: {
|
|
306
460
|
/**
|
|
307
|
-
* CPU limit in cores.
|
|
461
|
+
* CPU limit in cores. Maximum 100,000.
|
|
308
462
|
*/
|
|
309
|
-
cpu
|
|
463
|
+
cpu?: number;
|
|
310
464
|
};
|
|
311
465
|
gcp?: {
|
|
312
|
-
enabled
|
|
466
|
+
enabled: boolean;
|
|
313
467
|
/**
|
|
314
|
-
*
|
|
468
|
+
* GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
|
|
315
469
|
*/
|
|
316
|
-
project
|
|
470
|
+
project?: string;
|
|
317
471
|
};
|
|
318
472
|
hetzner?: {
|
|
319
|
-
enabled
|
|
473
|
+
enabled: boolean;
|
|
320
474
|
/**
|
|
321
|
-
* Hetzner Cloud API
|
|
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.
|
|
322
476
|
*/
|
|
323
|
-
apiKey
|
|
477
|
+
apiKey?: string;
|
|
324
478
|
};
|
|
325
479
|
aws?: {
|
|
326
|
-
enabled
|
|
480
|
+
enabled: boolean;
|
|
481
|
+
/**
|
|
482
|
+
* AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
|
|
483
|
+
*/
|
|
484
|
+
controllerRoleArn?: string;
|
|
485
|
+
};
|
|
486
|
+
/**
|
|
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.
|
|
488
|
+
*/
|
|
489
|
+
constraints?: {
|
|
490
|
+
/**
|
|
491
|
+
* Allowed values for `karpenter.sh/capacity-type`.
|
|
492
|
+
*/
|
|
493
|
+
'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
|
|
327
494
|
/**
|
|
328
|
-
*
|
|
495
|
+
* Allowed values for `kubernetes.io/arch`.
|
|
329
496
|
*/
|
|
330
|
-
|
|
497
|
+
'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
|
|
498
|
+
/**
|
|
499
|
+
* Allowed values for `cfke.io/instance-family`.
|
|
500
|
+
*/
|
|
501
|
+
'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
|
|
502
|
+
/**
|
|
503
|
+
* Allowed values for `topology.kubernetes.io/region`.
|
|
504
|
+
*/
|
|
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'>;
|
|
331
506
|
};
|
|
507
|
+
/**
|
|
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`).
|
|
509
|
+
*/
|
|
510
|
+
scalingProfile?: 'aggressive' | 'conservative';
|
|
332
511
|
/**
|
|
333
512
|
* Unique identifier of the kubernetes fleet.
|
|
334
513
|
*/
|
|
335
514
|
id: string;
|
|
336
515
|
};
|
|
516
|
+
/**
|
|
517
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
518
|
+
*/
|
|
337
519
|
export type Fleet = {
|
|
338
520
|
/**
|
|
339
521
|
* Limits define a set of bounds for provisioning capacity.
|
|
340
522
|
*/
|
|
341
523
|
limits?: {
|
|
342
524
|
/**
|
|
343
|
-
* CPU limit in cores.
|
|
525
|
+
* CPU limit in cores. Maximum 100,000.
|
|
344
526
|
*/
|
|
345
|
-
cpu
|
|
527
|
+
cpu?: number;
|
|
346
528
|
};
|
|
347
529
|
gcp?: {
|
|
348
|
-
enabled
|
|
530
|
+
enabled: boolean;
|
|
349
531
|
/**
|
|
350
|
-
*
|
|
532
|
+
* GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
|
|
351
533
|
*/
|
|
352
|
-
project
|
|
534
|
+
project?: string;
|
|
353
535
|
};
|
|
354
536
|
hetzner?: {
|
|
355
|
-
enabled
|
|
537
|
+
enabled: boolean;
|
|
356
538
|
/**
|
|
357
|
-
* Hetzner
|
|
539
|
+
* Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.
|
|
358
540
|
*/
|
|
359
|
-
apiKey
|
|
541
|
+
apiKey?: string;
|
|
360
542
|
};
|
|
361
543
|
aws?: {
|
|
362
|
-
enabled
|
|
544
|
+
enabled: boolean;
|
|
545
|
+
/**
|
|
546
|
+
* AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
|
|
547
|
+
*/
|
|
548
|
+
controllerRoleArn?: string;
|
|
549
|
+
};
|
|
550
|
+
/**
|
|
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.
|
|
552
|
+
*/
|
|
553
|
+
constraints: {
|
|
554
|
+
/**
|
|
555
|
+
* Allowed values for `karpenter.sh/capacity-type`.
|
|
556
|
+
*/
|
|
557
|
+
'karpenter.sh/capacity-type': Array<'on-demand' | 'spot'>;
|
|
558
|
+
/**
|
|
559
|
+
* Allowed values for `kubernetes.io/arch`.
|
|
560
|
+
*/
|
|
561
|
+
'kubernetes.io/arch': Array<'amd64' | 'arm64'>;
|
|
562
|
+
/**
|
|
563
|
+
* Allowed values for `cfke.io/instance-family`.
|
|
564
|
+
*/
|
|
565
|
+
'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
|
|
363
566
|
/**
|
|
364
|
-
*
|
|
567
|
+
* Allowed values for `topology.kubernetes.io/region`.
|
|
365
568
|
*/
|
|
366
|
-
|
|
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'>;
|
|
367
570
|
};
|
|
571
|
+
/**
|
|
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`).
|
|
573
|
+
*/
|
|
574
|
+
scalingProfile: 'aggressive' | 'conservative';
|
|
368
575
|
/**
|
|
369
576
|
* Unique identifier of the kubernetes fleet.
|
|
370
577
|
*/
|
|
371
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;
|
|
372
595
|
};
|
|
596
|
+
/**
|
|
597
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
598
|
+
*/
|
|
373
599
|
export type FleetUpdateInput = {
|
|
374
600
|
/**
|
|
375
601
|
* Limits define a set of bounds for provisioning capacity.
|
|
376
602
|
*/
|
|
377
603
|
limits?: {
|
|
378
604
|
/**
|
|
379
|
-
* CPU limit in cores.
|
|
605
|
+
* CPU limit in cores. Maximum 100,000.
|
|
380
606
|
*/
|
|
381
|
-
cpu
|
|
607
|
+
cpu?: number;
|
|
382
608
|
};
|
|
383
609
|
gcp?: {
|
|
384
|
-
enabled
|
|
610
|
+
enabled: boolean;
|
|
385
611
|
/**
|
|
386
|
-
*
|
|
612
|
+
* GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.
|
|
387
613
|
*/
|
|
388
|
-
project
|
|
614
|
+
project?: string;
|
|
389
615
|
};
|
|
390
616
|
hetzner?: {
|
|
391
|
-
enabled
|
|
617
|
+
enabled: boolean;
|
|
392
618
|
/**
|
|
393
|
-
* Hetzner Cloud API
|
|
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.
|
|
394
620
|
*/
|
|
395
|
-
apiKey
|
|
621
|
+
apiKey?: string;
|
|
396
622
|
};
|
|
397
623
|
aws?: {
|
|
398
|
-
enabled
|
|
624
|
+
enabled: boolean;
|
|
625
|
+
/**
|
|
626
|
+
* AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.
|
|
627
|
+
*/
|
|
628
|
+
controllerRoleArn?: string;
|
|
629
|
+
};
|
|
630
|
+
/**
|
|
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.
|
|
632
|
+
*/
|
|
633
|
+
constraints?: {
|
|
634
|
+
/**
|
|
635
|
+
* Allowed values for `karpenter.sh/capacity-type`.
|
|
636
|
+
*/
|
|
637
|
+
'karpenter.sh/capacity-type'?: Array<'on-demand' | 'spot'>;
|
|
638
|
+
/**
|
|
639
|
+
* Allowed values for `kubernetes.io/arch`.
|
|
640
|
+
*/
|
|
641
|
+
'kubernetes.io/arch'?: Array<'amd64' | 'arm64'>;
|
|
642
|
+
/**
|
|
643
|
+
* Allowed values for `cfke.io/instance-family`.
|
|
644
|
+
*/
|
|
645
|
+
'cfke.io/instance-family'?: Array<'a1' | 'a2' | 'a3' | 'a4' | 'c1' | 'c2' | 'c2d' | 'c3' | 'c3d' | 'c4' | 'c4a' | 'c4d' | 'c5' | 'c5a' | 'c5ad' | 'c5d' | 'c5n' | 'c6a' | 'c6g' | 'c6gd' | 'c6gn' | 'c6i' | 'c6id' | 'c6in' | 'c7a' | 'c7g' | 'c7gd' | 'c7gn' | 'c7i' | 'c7i-flex' | 'c8g' | 'c8gd' | 'cax' | 'ccx' | 'cpx' | 'cx' | 'd2' | 'd3' | 'd3en' | 'dl1' | 'dl2q' | 'e2' | 'f1' | 'f2' | 'g1' | 'g2' | 'g4ad' | 'g4dn' | 'g5' | 'g5g' | 'g6' | 'g6e' | 'gr6' | 'h1' | 'h3' | 'hpc6a' | 'hpc6id' | 'hpc7a' | 'hpc7g' | 'i2' | 'i3' | 'i3en' | 'i4g' | 'i4i' | 'i7i' | 'i7ie' | 'i8g' | 'im4gn' | 'inf1' | 'inf2' | 'is4gen' | 'm1' | 'm2' | 'm3' | 'm4' | 'm5' | 'm5a' | 'm5ad' | 'm5d' | 'm5dn' | 'm5n' | 'm5zn' | 'm6a' | 'm6g' | 'm6gd' | 'm6i' | 'm6id' | 'm6idn' | 'm6in' | 'm7a' | 'm7g' | 'm7gd' | 'm7i' | 'm7i-flex' | 'm8g' | 'm8gd' | 'n1' | 'n2' | 'n2d' | 'n4' | 'p3' | 'p3dn' | 'p4d' | 'p4de' | 'p5' | 'p5e' | 'p5en' | 'p6-b200' | 'r3' | 'r4' | 'r5' | 'r5a' | 'r5ad' | 'r5b' | 'r5d' | 'r5dn' | 'r5n' | 'r6a' | 'r6g' | 'r6gd' | 'r6i' | 'r6id' | 'r6idn' | 'r6in' | 'r7a' | 'r7g' | 'r7gd' | 'r7i' | 'r7iz' | 'r8g' | 'r8gd' | 't2' | 't2a' | 't2d' | 't3' | 't3a' | 't4g' | 'trn1' | 'trn1n' | 'u-3tb1' | 'u-6tb1' | 'u7i-12tb' | 'u7i-6tb' | 'u7i-8tb' | 'u7in-16tb' | 'u7in-24tb' | 'u7in-32tb' | 'vt1' | 'x1' | 'x1e' | 'x2gd' | 'x2idn' | 'x2iedn' | 'x2iezn' | 'x4' | 'x8g' | 'z1d' | 'z3'>;
|
|
399
646
|
/**
|
|
400
|
-
*
|
|
647
|
+
* Allowed values for `topology.kubernetes.io/region`.
|
|
401
648
|
*/
|
|
402
|
-
|
|
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'>;
|
|
403
650
|
};
|
|
651
|
+
/**
|
|
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`).
|
|
653
|
+
*/
|
|
654
|
+
scalingProfile?: 'aggressive' | 'conservative';
|
|
655
|
+
};
|
|
656
|
+
export type InviteCreateInput = {
|
|
657
|
+
/**
|
|
658
|
+
* Email address of the user to invite.
|
|
659
|
+
*/
|
|
660
|
+
email: string;
|
|
661
|
+
/**
|
|
662
|
+
* Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.
|
|
663
|
+
*/
|
|
664
|
+
role?: 'Administrator' | 'User';
|
|
404
665
|
};
|
|
405
666
|
export type Invite = {
|
|
406
667
|
/**
|
|
@@ -423,6 +684,10 @@ export type Invite = {
|
|
|
423
684
|
* Generated unique invite code.
|
|
424
685
|
*/
|
|
425
686
|
code?: string;
|
|
687
|
+
/**
|
|
688
|
+
* Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.
|
|
689
|
+
*/
|
|
690
|
+
role?: 'Administrator' | 'User';
|
|
426
691
|
};
|
|
427
692
|
export type Invoice = {
|
|
428
693
|
/**
|
|
@@ -543,6 +808,10 @@ export type MarketplaceListing = {
|
|
|
543
808
|
};
|
|
544
809
|
};
|
|
545
810
|
export type OrganizationCreateInput = {
|
|
811
|
+
/**
|
|
812
|
+
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
813
|
+
*/
|
|
814
|
+
type: 'business' | 'personal';
|
|
546
815
|
/**
|
|
547
816
|
* Email address used for billing as a string.
|
|
548
817
|
*/
|
|
@@ -564,6 +833,12 @@ export type OrganizationCreateInput = {
|
|
|
564
833
|
*/
|
|
565
834
|
password: string;
|
|
566
835
|
};
|
|
836
|
+
export type OrganizationCreateOutput = {
|
|
837
|
+
/**
|
|
838
|
+
* Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.
|
|
839
|
+
*/
|
|
840
|
+
id: string;
|
|
841
|
+
};
|
|
567
842
|
export type Organization = {
|
|
568
843
|
/**
|
|
569
844
|
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
@@ -573,6 +848,10 @@ export type Organization = {
|
|
|
573
848
|
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
574
849
|
*/
|
|
575
850
|
name?: string;
|
|
851
|
+
/**
|
|
852
|
+
* Type of the organization. `business` for legal entities, `personal` for individuals.
|
|
853
|
+
*/
|
|
854
|
+
type: 'business' | 'personal';
|
|
576
855
|
/**
|
|
577
856
|
* Creation date of the organization. ISO 8601 date string in UTC timezone
|
|
578
857
|
*/
|
|
@@ -597,6 +876,14 @@ export type Organization = {
|
|
|
597
876
|
* Available number of Pro clusters that can be created.
|
|
598
877
|
*/
|
|
599
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;
|
|
600
887
|
/**
|
|
601
888
|
* Maximum number of fleets that can be created per cluster.
|
|
602
889
|
*/
|
|
@@ -622,14 +909,6 @@ export type Organization = {
|
|
|
622
909
|
*/
|
|
623
910
|
label: string;
|
|
624
911
|
}>;
|
|
625
|
-
/**
|
|
626
|
-
* User-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
627
|
-
*/
|
|
628
|
-
copilot_user_hourly_tokens: number;
|
|
629
|
-
/**
|
|
630
|
-
* Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
631
|
-
*/
|
|
632
|
-
copilot_organization_hourly_tokens: number;
|
|
633
912
|
/**
|
|
634
913
|
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
635
914
|
*/
|
|
@@ -639,36 +918,52 @@ export type Organization = {
|
|
|
639
918
|
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
640
919
|
*/
|
|
641
920
|
status: 'active' | 'closed' | 'suspended';
|
|
921
|
+
/**
|
|
922
|
+
* Verification status of the organization, which determines the assigned quota. `none` when billing information is incomplete, `submitted` when billing information is complete but the organization is not yet verified, `verified` when the organization is verified.
|
|
923
|
+
*/
|
|
924
|
+
verification: 'none' | 'submitted' | 'verified';
|
|
642
925
|
};
|
|
643
926
|
export type PaymentMethod = {
|
|
644
927
|
/**
|
|
645
|
-
*
|
|
928
|
+
* Payment method identifier. Stripe payment method id for cards/SEPA; the constant `bank_transfer` for the invoice/bank-transfer method. Used to set as default or delete the payment method.
|
|
646
929
|
*/
|
|
647
930
|
id: string;
|
|
648
931
|
/**
|
|
649
|
-
*
|
|
650
|
-
*/
|
|
651
|
-
setup: boolean;
|
|
652
|
-
/**
|
|
653
|
-
* Payment method type type. Only `card` payments supported at the moment.
|
|
932
|
+
* Payment method type. `card`, `sepa_debit` for SEPA Direct Debit (business accounts only), or `bank_transfer` for paying invoices by bank transfer.
|
|
654
933
|
*/
|
|
655
|
-
type: 'card';
|
|
934
|
+
type: 'card' | 'sepa_debit' | 'bank_transfer';
|
|
656
935
|
/**
|
|
657
|
-
* Last 4 digits of the payment card number.
|
|
936
|
+
* Last 4 digits of the payment card number, of the bank account (IBAN) for SEPA Direct Debit, or of the destination IBAN for bank transfer.
|
|
658
937
|
*/
|
|
659
938
|
last4: string;
|
|
660
939
|
/**
|
|
661
|
-
* Two-digit number representing the card's expiration month.
|
|
940
|
+
* Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.
|
|
662
941
|
*/
|
|
663
942
|
exp_month: number;
|
|
664
943
|
/**
|
|
665
|
-
* Four-digit number representing the card's expiration year.
|
|
944
|
+
* Four-digit number representing the card's expiration year. May be in the past for an expired card still on file. Null for SEPA Direct Debit and bank transfer.
|
|
666
945
|
*/
|
|
667
946
|
exp_year: number;
|
|
668
947
|
/**
|
|
669
|
-
* Payment card brand
|
|
948
|
+
* Payment card brand as reported by Stripe, e.g. `visa`, `mastercard`, `amex`, `cartes_bancaires`, or `unknown`. Null for SEPA Direct Debit and bank transfer.
|
|
949
|
+
*/
|
|
950
|
+
brand: string;
|
|
951
|
+
/**
|
|
952
|
+
* Full destination IBAN to send bank transfers to. Set only for `bank_transfer`; null otherwise. This is Cloudfleet's virtual receiving account, shown in full so the customer can pay into it.
|
|
953
|
+
*/
|
|
954
|
+
iban: string;
|
|
955
|
+
/**
|
|
956
|
+
* BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.
|
|
957
|
+
*/
|
|
958
|
+
bic: string;
|
|
959
|
+
/**
|
|
960
|
+
* Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.
|
|
961
|
+
*/
|
|
962
|
+
account_holder_name: string;
|
|
963
|
+
/**
|
|
964
|
+
* Whether this payment method is the default used for invoices and active subscriptions. Always false for `bank_transfer` (it cannot be a Stripe default payment method).
|
|
670
965
|
*/
|
|
671
|
-
|
|
966
|
+
is_default: boolean;
|
|
672
967
|
};
|
|
673
968
|
export type PlatformQuota = {
|
|
674
969
|
/**
|
|
@@ -687,6 +982,14 @@ export type PlatformQuota = {
|
|
|
687
982
|
* Available number of Pro clusters that can be created.
|
|
688
983
|
*/
|
|
689
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;
|
|
690
993
|
/**
|
|
691
994
|
* Maximum number of fleets that can be created per cluster.
|
|
692
995
|
*/
|
|
@@ -712,14 +1015,6 @@ export type PlatformQuota = {
|
|
|
712
1015
|
*/
|
|
713
1016
|
label: string;
|
|
714
1017
|
}>;
|
|
715
|
-
/**
|
|
716
|
-
* User-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
717
|
-
*/
|
|
718
|
-
copilot_user_hourly_tokens: number;
|
|
719
|
-
/**
|
|
720
|
-
* Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
721
|
-
*/
|
|
722
|
-
copilot_organization_hourly_tokens: number;
|
|
723
1018
|
/**
|
|
724
1019
|
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
725
1020
|
*/
|
|
@@ -873,105 +1168,272 @@ export type RegistryTag = {
|
|
|
873
1168
|
*/
|
|
874
1169
|
uri: string;
|
|
875
1170
|
};
|
|
876
|
-
export type
|
|
1171
|
+
export type TicketAttachment = {
|
|
877
1172
|
/**
|
|
878
|
-
*
|
|
1173
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
879
1174
|
*/
|
|
880
|
-
|
|
1175
|
+
id: string;
|
|
881
1176
|
/**
|
|
882
|
-
*
|
|
1177
|
+
* Original filename as uploaded.
|
|
883
1178
|
*/
|
|
884
|
-
|
|
885
|
-
};
|
|
886
|
-
export type Token = {
|
|
1179
|
+
filename: string;
|
|
887
1180
|
/**
|
|
888
|
-
*
|
|
1181
|
+
* MIME content type of the attachment.
|
|
889
1182
|
*/
|
|
890
|
-
|
|
1183
|
+
content_type: string;
|
|
891
1184
|
/**
|
|
892
|
-
*
|
|
1185
|
+
* Size of the attachment in bytes.
|
|
893
1186
|
*/
|
|
894
|
-
|
|
1187
|
+
size: number;
|
|
1188
|
+
};
|
|
1189
|
+
export type TicketCreateInput = {
|
|
895
1190
|
/**
|
|
896
|
-
*
|
|
1191
|
+
* Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.
|
|
897
1192
|
*/
|
|
898
|
-
|
|
1193
|
+
category: 'billing' | 'technical' | 'general';
|
|
899
1194
|
/**
|
|
900
|
-
*
|
|
1195
|
+
* Initial message body in markdown. There is no separate subject — the first message body is the description.
|
|
901
1196
|
*/
|
|
902
|
-
|
|
1197
|
+
body: string;
|
|
903
1198
|
/**
|
|
904
|
-
*
|
|
1199
|
+
* Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).
|
|
905
1200
|
*/
|
|
906
|
-
|
|
1201
|
+
properties?: {
|
|
1202
|
+
[key: string]: unknown;
|
|
1203
|
+
};
|
|
907
1204
|
};
|
|
908
|
-
export type
|
|
1205
|
+
export type TicketMessageInput = {
|
|
909
1206
|
/**
|
|
910
|
-
*
|
|
1207
|
+
* Reply body in markdown.
|
|
911
1208
|
*/
|
|
912
|
-
|
|
1209
|
+
body: string;
|
|
1210
|
+
};
|
|
1211
|
+
export type TicketMessage = {
|
|
913
1212
|
/**
|
|
914
|
-
*
|
|
1213
|
+
* Unique identifier of the message (Mongo ObjectId).
|
|
915
1214
|
*/
|
|
916
|
-
|
|
917
|
-
};
|
|
918
|
-
export type UsageFacets = {
|
|
1215
|
+
id: string;
|
|
919
1216
|
/**
|
|
920
|
-
*
|
|
1217
|
+
* Message type. Internal notes are filtered out of customer-facing responses.
|
|
921
1218
|
*/
|
|
922
|
-
|
|
1219
|
+
type: 'customer_reply' | 'agent_reply';
|
|
923
1220
|
/**
|
|
924
|
-
*
|
|
1221
|
+
* Message body in markdown.
|
|
925
1222
|
*/
|
|
926
|
-
|
|
927
|
-
};
|
|
928
|
-
export type UsageResponse = {
|
|
1223
|
+
body: string;
|
|
929
1224
|
/**
|
|
930
|
-
*
|
|
1225
|
+
* First name of the author. Null when not provided.
|
|
931
1226
|
*/
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
1227
|
+
author_first_name?: string;
|
|
1228
|
+
/**
|
|
1229
|
+
* Last name of the author. Null when not provided.
|
|
1230
|
+
*/
|
|
1231
|
+
author_last_name?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* Attachments associated with this message.
|
|
1234
|
+
*/
|
|
1235
|
+
attachments?: Array<{
|
|
941
1236
|
/**
|
|
942
|
-
*
|
|
1237
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
943
1238
|
*/
|
|
944
|
-
|
|
1239
|
+
id: string;
|
|
945
1240
|
/**
|
|
946
|
-
*
|
|
1241
|
+
* Original filename as uploaded.
|
|
947
1242
|
*/
|
|
948
|
-
|
|
1243
|
+
filename: string;
|
|
949
1244
|
/**
|
|
950
|
-
*
|
|
1245
|
+
* MIME content type of the attachment.
|
|
951
1246
|
*/
|
|
952
|
-
|
|
1247
|
+
content_type: string;
|
|
953
1248
|
/**
|
|
954
|
-
*
|
|
1249
|
+
* Size of the attachment in bytes.
|
|
955
1250
|
*/
|
|
956
|
-
|
|
1251
|
+
size: number;
|
|
957
1252
|
}>;
|
|
958
1253
|
/**
|
|
959
|
-
*
|
|
1254
|
+
* Creation date of the message. ISO 8601 UTC.
|
|
960
1255
|
*/
|
|
961
|
-
|
|
962
|
-
/**
|
|
963
|
-
* List of unique cluster IDs
|
|
964
|
-
*/
|
|
965
|
-
cluster_id?: Array<string>;
|
|
966
|
-
/**
|
|
967
|
-
* List of unique products
|
|
968
|
-
*/
|
|
969
|
-
product?: Array<string>;
|
|
970
|
-
};
|
|
1256
|
+
date_created: string;
|
|
971
1257
|
};
|
|
972
|
-
export type
|
|
1258
|
+
export type Ticket = {
|
|
973
1259
|
/**
|
|
974
|
-
*
|
|
1260
|
+
* Unique identifier of the ticket (Mongo ObjectId).
|
|
1261
|
+
*/
|
|
1262
|
+
id: string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Current state of the ticket.
|
|
1265
|
+
*/
|
|
1266
|
+
status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
|
|
1267
|
+
/**
|
|
1268
|
+
* Ticket category.
|
|
1269
|
+
*/
|
|
1270
|
+
category: 'billing' | 'technical' | 'general';
|
|
1271
|
+
/**
|
|
1272
|
+
* First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
|
|
1273
|
+
*/
|
|
1274
|
+
summary: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* Closure timestamp. Null while the ticket is open.
|
|
1277
|
+
*/
|
|
1278
|
+
closed_at?: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* Creation date of the ticket. ISO 8601 UTC.
|
|
1281
|
+
*/
|
|
1282
|
+
date_created: string;
|
|
1283
|
+
/**
|
|
1284
|
+
* Last update date of the ticket. ISO 8601 UTC.
|
|
1285
|
+
*/
|
|
1286
|
+
date_updated: string;
|
|
1287
|
+
/**
|
|
1288
|
+
* Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
|
|
1289
|
+
*/
|
|
1290
|
+
messages?: Array<{
|
|
1291
|
+
/**
|
|
1292
|
+
* Unique identifier of the message (Mongo ObjectId).
|
|
1293
|
+
*/
|
|
1294
|
+
id: string;
|
|
1295
|
+
/**
|
|
1296
|
+
* Message type. Internal notes are filtered out of customer-facing responses.
|
|
1297
|
+
*/
|
|
1298
|
+
type: 'customer_reply' | 'agent_reply';
|
|
1299
|
+
/**
|
|
1300
|
+
* Message body in markdown.
|
|
1301
|
+
*/
|
|
1302
|
+
body: string;
|
|
1303
|
+
/**
|
|
1304
|
+
* First name of the author. Null when not provided.
|
|
1305
|
+
*/
|
|
1306
|
+
author_first_name?: string;
|
|
1307
|
+
/**
|
|
1308
|
+
* Last name of the author. Null when not provided.
|
|
1309
|
+
*/
|
|
1310
|
+
author_last_name?: string;
|
|
1311
|
+
/**
|
|
1312
|
+
* Attachments associated with this message.
|
|
1313
|
+
*/
|
|
1314
|
+
attachments?: Array<{
|
|
1315
|
+
/**
|
|
1316
|
+
* Unique identifier of the attachment (Mongo ObjectId).
|
|
1317
|
+
*/
|
|
1318
|
+
id: string;
|
|
1319
|
+
/**
|
|
1320
|
+
* Original filename as uploaded.
|
|
1321
|
+
*/
|
|
1322
|
+
filename: string;
|
|
1323
|
+
/**
|
|
1324
|
+
* MIME content type of the attachment.
|
|
1325
|
+
*/
|
|
1326
|
+
content_type: string;
|
|
1327
|
+
/**
|
|
1328
|
+
* Size of the attachment in bytes.
|
|
1329
|
+
*/
|
|
1330
|
+
size: number;
|
|
1331
|
+
}>;
|
|
1332
|
+
/**
|
|
1333
|
+
* Creation date of the message. ISO 8601 UTC.
|
|
1334
|
+
*/
|
|
1335
|
+
date_created: string;
|
|
1336
|
+
}>;
|
|
1337
|
+
};
|
|
1338
|
+
export type TokenCreateInput = {
|
|
1339
|
+
/**
|
|
1340
|
+
* Human readable access token name.
|
|
1341
|
+
*/
|
|
1342
|
+
name: string;
|
|
1343
|
+
/**
|
|
1344
|
+
* Role assumed by the token.
|
|
1345
|
+
*/
|
|
1346
|
+
role: 'Administrator' | 'User';
|
|
1347
|
+
};
|
|
1348
|
+
export type Token = {
|
|
1349
|
+
/**
|
|
1350
|
+
* Human readable access token name.
|
|
1351
|
+
*/
|
|
1352
|
+
name: string;
|
|
1353
|
+
/**
|
|
1354
|
+
* Role assumed by the token.
|
|
1355
|
+
*/
|
|
1356
|
+
role: 'Administrator' | 'User';
|
|
1357
|
+
/**
|
|
1358
|
+
* Generated unique identifier of the access token.
|
|
1359
|
+
*/
|
|
1360
|
+
id?: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* Access token secret. Unmasked only during creation.
|
|
1363
|
+
*/
|
|
1364
|
+
secret?: string;
|
|
1365
|
+
/**
|
|
1366
|
+
* Creation date of the access token. ISO 8601 date string in UTC timezone
|
|
1367
|
+
*/
|
|
1368
|
+
date_created: string;
|
|
1369
|
+
};
|
|
1370
|
+
export type TokenUpdateInput = {
|
|
1371
|
+
/**
|
|
1372
|
+
* Human readable access token name.
|
|
1373
|
+
*/
|
|
1374
|
+
name?: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* Role assumed by the token.
|
|
1377
|
+
*/
|
|
1378
|
+
role?: 'Administrator' | 'User';
|
|
1379
|
+
};
|
|
1380
|
+
export type UsageFacets = {
|
|
1381
|
+
/**
|
|
1382
|
+
* List of unique cluster IDs
|
|
1383
|
+
*/
|
|
1384
|
+
cluster_id?: Array<string>;
|
|
1385
|
+
/**
|
|
1386
|
+
* List of unique products
|
|
1387
|
+
*/
|
|
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'>;
|
|
1389
|
+
};
|
|
1390
|
+
export type UsageResponse = {
|
|
1391
|
+
/**
|
|
1392
|
+
* Usage data
|
|
1393
|
+
*/
|
|
1394
|
+
data: Array<{
|
|
1395
|
+
/**
|
|
1396
|
+
* Hour of the usage
|
|
1397
|
+
*/
|
|
1398
|
+
hour: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
1401
|
+
*/
|
|
1402
|
+
cluster_id: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* The product the usage is associated with
|
|
1405
|
+
*/
|
|
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';
|
|
1407
|
+
/**
|
|
1408
|
+
* Consumption
|
|
1409
|
+
*/
|
|
1410
|
+
value: number;
|
|
1411
|
+
/**
|
|
1412
|
+
* Price per unit
|
|
1413
|
+
*/
|
|
1414
|
+
price: number;
|
|
1415
|
+
/**
|
|
1416
|
+
* Total cost
|
|
1417
|
+
*/
|
|
1418
|
+
total: number;
|
|
1419
|
+
}>;
|
|
1420
|
+
/**
|
|
1421
|
+
* Facets for filtering
|
|
1422
|
+
*/
|
|
1423
|
+
facets: {
|
|
1424
|
+
/**
|
|
1425
|
+
* List of unique cluster IDs
|
|
1426
|
+
*/
|
|
1427
|
+
cluster_id?: Array<string>;
|
|
1428
|
+
/**
|
|
1429
|
+
* List of unique products
|
|
1430
|
+
*/
|
|
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'>;
|
|
1432
|
+
};
|
|
1433
|
+
};
|
|
1434
|
+
export type Usage = {
|
|
1435
|
+
/**
|
|
1436
|
+
* Hour of the usage
|
|
975
1437
|
*/
|
|
976
1438
|
hour: string;
|
|
977
1439
|
/**
|
|
@@ -981,7 +1443,7 @@ export type Usage = {
|
|
|
981
1443
|
/**
|
|
982
1444
|
* The product the usage is associated with
|
|
983
1445
|
*/
|
|
984
|
-
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';
|
|
985
1447
|
/**
|
|
986
1448
|
* Consumption
|
|
987
1449
|
*/
|
|
@@ -1016,14 +1478,6 @@ export type UserCreateInput = {
|
|
|
1016
1478
|
* User password. Must be at least 8 characters long.
|
|
1017
1479
|
*/
|
|
1018
1480
|
password: string;
|
|
1019
|
-
/**
|
|
1020
|
-
* Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.
|
|
1021
|
-
*/
|
|
1022
|
-
status?: 'active' | 'inactive';
|
|
1023
|
-
/**
|
|
1024
|
-
* User role. Can be 'Administrator', 'User'.
|
|
1025
|
-
*/
|
|
1026
|
-
role?: 'Administrator' | 'User';
|
|
1027
1481
|
};
|
|
1028
1482
|
export type User = {
|
|
1029
1483
|
/**
|
|
@@ -1077,558 +1531,686 @@ export type UserUpdateInput = {
|
|
|
1077
1531
|
*/
|
|
1078
1532
|
status?: 'active' | 'inactive';
|
|
1079
1533
|
};
|
|
1080
|
-
export type
|
|
1534
|
+
export type ListUserOrganizationsData = {
|
|
1081
1535
|
body?: never;
|
|
1082
|
-
path
|
|
1083
|
-
query?: {
|
|
1536
|
+
path: {
|
|
1084
1537
|
/**
|
|
1085
|
-
*
|
|
1538
|
+
* User email address.
|
|
1086
1539
|
*/
|
|
1087
|
-
|
|
1540
|
+
email: string;
|
|
1088
1541
|
};
|
|
1089
|
-
|
|
1090
|
-
};
|
|
1091
|
-
export type GetUsageErrors = {
|
|
1092
|
-
/**
|
|
1093
|
-
* Not authenticated
|
|
1094
|
-
*/
|
|
1095
|
-
401: unknown;
|
|
1542
|
+
query?: never;
|
|
1543
|
+
url: '/users/organizations/{email}';
|
|
1096
1544
|
};
|
|
1097
|
-
export type
|
|
1545
|
+
export type ListUserOrganizationsResponses = {
|
|
1098
1546
|
/**
|
|
1099
|
-
*
|
|
1547
|
+
* An array of organizations the user belongs to.
|
|
1100
1548
|
*/
|
|
1101
|
-
200:
|
|
1549
|
+
200: Array<{
|
|
1550
|
+
/**
|
|
1551
|
+
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
1552
|
+
*/
|
|
1553
|
+
realm?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* Human-readable name of the organization
|
|
1556
|
+
*/
|
|
1557
|
+
displayName?: string;
|
|
1558
|
+
}>;
|
|
1102
1559
|
};
|
|
1103
|
-
export type
|
|
1104
|
-
export type
|
|
1560
|
+
export type ListUserOrganizationsResponse = ListUserOrganizationsResponses[keyof ListUserOrganizationsResponses];
|
|
1561
|
+
export type ListUsersData = {
|
|
1105
1562
|
body?: never;
|
|
1106
1563
|
path?: never;
|
|
1107
1564
|
query?: never;
|
|
1108
|
-
url: '/
|
|
1565
|
+
url: '/users';
|
|
1109
1566
|
};
|
|
1110
|
-
export type
|
|
1567
|
+
export type ListUsersErrors = {
|
|
1111
1568
|
/**
|
|
1112
|
-
*
|
|
1569
|
+
* Not authenticated
|
|
1113
1570
|
*/
|
|
1114
|
-
|
|
1571
|
+
401: unknown;
|
|
1115
1572
|
};
|
|
1116
|
-
export type
|
|
1573
|
+
export type ListUsersResponses = {
|
|
1117
1574
|
/**
|
|
1118
|
-
*
|
|
1575
|
+
* An array of users
|
|
1119
1576
|
*/
|
|
1120
|
-
200:
|
|
1577
|
+
200: Array<User>;
|
|
1121
1578
|
};
|
|
1122
|
-
export type
|
|
1123
|
-
export type
|
|
1124
|
-
body
|
|
1579
|
+
export type ListUsersResponse = ListUsersResponses[keyof ListUsersResponses];
|
|
1580
|
+
export type CreateUserData = {
|
|
1581
|
+
body: UserCreateInput;
|
|
1125
1582
|
path?: never;
|
|
1126
1583
|
query?: never;
|
|
1127
|
-
url: '/
|
|
1584
|
+
url: '/users';
|
|
1128
1585
|
};
|
|
1129
|
-
export type
|
|
1586
|
+
export type CreateUserResponses = {
|
|
1130
1587
|
/**
|
|
1131
|
-
*
|
|
1132
|
-
*
|
|
1588
|
+
* Successfully created. Returns created user details.
|
|
1133
1589
|
*/
|
|
1134
|
-
200:
|
|
1590
|
+
200: User;
|
|
1591
|
+
};
|
|
1592
|
+
export type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses];
|
|
1593
|
+
export type DeleteUserData = {
|
|
1594
|
+
body?: never;
|
|
1595
|
+
path: {
|
|
1135
1596
|
/**
|
|
1136
|
-
*
|
|
1597
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1137
1598
|
*/
|
|
1138
|
-
|
|
1599
|
+
user_id: string;
|
|
1139
1600
|
};
|
|
1140
|
-
};
|
|
1141
|
-
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
1142
|
-
export type ListInvoicesData = {
|
|
1143
|
-
body?: never;
|
|
1144
|
-
path?: never;
|
|
1145
1601
|
query?: never;
|
|
1146
|
-
url: '/
|
|
1602
|
+
url: '/users/{user_id}';
|
|
1147
1603
|
};
|
|
1148
|
-
export type
|
|
1604
|
+
export type DeleteUserErrors = {
|
|
1605
|
+
/**
|
|
1606
|
+
* Deleting own user is not allowed. Delete your organization instead.
|
|
1607
|
+
*/
|
|
1608
|
+
400: unknown;
|
|
1149
1609
|
/**
|
|
1150
1610
|
* Not authenticated
|
|
1151
1611
|
*/
|
|
1152
1612
|
401: unknown;
|
|
1153
1613
|
};
|
|
1154
|
-
export type
|
|
1614
|
+
export type DeleteUserResponses = {
|
|
1155
1615
|
/**
|
|
1156
|
-
*
|
|
1616
|
+
* User profile information
|
|
1157
1617
|
*/
|
|
1158
|
-
200:
|
|
1618
|
+
200: User;
|
|
1159
1619
|
};
|
|
1160
|
-
export type
|
|
1161
|
-
export type
|
|
1620
|
+
export type DeleteUserResponse = DeleteUserResponses[keyof DeleteUserResponses];
|
|
1621
|
+
export type GetUserData = {
|
|
1162
1622
|
body?: never;
|
|
1163
|
-
path
|
|
1623
|
+
path: {
|
|
1624
|
+
/**
|
|
1625
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
1626
|
+
*/
|
|
1627
|
+
user_id: string;
|
|
1628
|
+
};
|
|
1164
1629
|
query?: never;
|
|
1165
|
-
url: '/
|
|
1630
|
+
url: '/users/{user_id}';
|
|
1166
1631
|
};
|
|
1167
|
-
export type
|
|
1632
|
+
export type GetUserErrors = {
|
|
1168
1633
|
/**
|
|
1169
|
-
*
|
|
1634
|
+
* Not authenticated
|
|
1170
1635
|
*/
|
|
1171
|
-
|
|
1636
|
+
401: unknown;
|
|
1172
1637
|
};
|
|
1173
|
-
export type
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1638
|
+
export type GetUserResponses = {
|
|
1639
|
+
/**
|
|
1640
|
+
* User profile information
|
|
1641
|
+
*/
|
|
1642
|
+
200: User;
|
|
1643
|
+
};
|
|
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
|
+
};
|
|
1177
1653
|
query?: never;
|
|
1178
|
-
url: '/
|
|
1654
|
+
url: '/users/{user_id}';
|
|
1179
1655
|
};
|
|
1180
|
-
export type
|
|
1656
|
+
export type UpdateUserResponses = {
|
|
1181
1657
|
/**
|
|
1182
|
-
* Successfully
|
|
1658
|
+
* Successfully created. Returns created user details.
|
|
1183
1659
|
*/
|
|
1184
|
-
200:
|
|
1660
|
+
200: User;
|
|
1185
1661
|
};
|
|
1186
|
-
export type
|
|
1187
|
-
export type
|
|
1662
|
+
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
1663
|
+
export type ListTokensData = {
|
|
1188
1664
|
body?: never;
|
|
1189
1665
|
path?: never;
|
|
1190
1666
|
query?: never;
|
|
1191
|
-
url: '/
|
|
1667
|
+
url: '/tokens';
|
|
1192
1668
|
};
|
|
1193
|
-
export type
|
|
1669
|
+
export type ListTokensErrors = {
|
|
1194
1670
|
/**
|
|
1195
1671
|
* Not authenticated
|
|
1196
1672
|
*/
|
|
1197
1673
|
401: unknown;
|
|
1198
1674
|
};
|
|
1199
|
-
export type
|
|
1675
|
+
export type ListTokensResponses = {
|
|
1200
1676
|
/**
|
|
1201
|
-
*
|
|
1677
|
+
* Returns a list of access token details with masked secrets.
|
|
1202
1678
|
*/
|
|
1203
|
-
200: Array<
|
|
1679
|
+
200: Array<Token>;
|
|
1204
1680
|
};
|
|
1205
|
-
export type
|
|
1206
|
-
export type
|
|
1207
|
-
body:
|
|
1208
|
-
/**
|
|
1209
|
-
* Promotional code to redeem
|
|
1210
|
-
*/
|
|
1211
|
-
code?: string;
|
|
1212
|
-
};
|
|
1681
|
+
export type ListTokensResponse = ListTokensResponses[keyof ListTokensResponses];
|
|
1682
|
+
export type CreateTokenData = {
|
|
1683
|
+
body: TokenCreateInput;
|
|
1213
1684
|
path?: never;
|
|
1214
1685
|
query?: never;
|
|
1215
|
-
url: '/
|
|
1686
|
+
url: '/tokens';
|
|
1216
1687
|
};
|
|
1217
|
-
export type
|
|
1688
|
+
export type CreateTokenErrors = {
|
|
1218
1689
|
/**
|
|
1219
1690
|
* Not authenticated
|
|
1220
1691
|
*/
|
|
1221
1692
|
401: unknown;
|
|
1222
1693
|
};
|
|
1223
|
-
export type
|
|
1694
|
+
export type CreateTokenResponses = {
|
|
1224
1695
|
/**
|
|
1225
|
-
* Successfully created
|
|
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
|
+
};
|
|
1709
|
+
query?: never;
|
|
1710
|
+
url: '/tokens/{token_id}';
|
|
1711
|
+
};
|
|
1712
|
+
export type DeleteTokenResponses = {
|
|
1713
|
+
/**
|
|
1714
|
+
* Successfully deleted.
|
|
1226
1715
|
*/
|
|
1227
1716
|
200: unknown;
|
|
1228
1717
|
};
|
|
1229
|
-
export type
|
|
1718
|
+
export type GetTokenData = {
|
|
1230
1719
|
body?: never;
|
|
1231
1720
|
path: {
|
|
1232
1721
|
/**
|
|
1233
|
-
*
|
|
1722
|
+
* Generated unique identifier of the access token.
|
|
1234
1723
|
*/
|
|
1235
|
-
|
|
1724
|
+
token_id: string;
|
|
1236
1725
|
};
|
|
1237
1726
|
query?: never;
|
|
1238
|
-
url: '/
|
|
1727
|
+
url: '/tokens/{token_id}';
|
|
1239
1728
|
};
|
|
1240
|
-
export type
|
|
1729
|
+
export type GetTokenErrors = {
|
|
1241
1730
|
/**
|
|
1242
1731
|
* Not authenticated
|
|
1243
1732
|
*/
|
|
1244
1733
|
401: unknown;
|
|
1245
1734
|
};
|
|
1246
|
-
export type
|
|
1735
|
+
export type GetTokenResponses = {
|
|
1247
1736
|
/**
|
|
1248
|
-
*
|
|
1737
|
+
* Returns access token details with masked secret.
|
|
1249
1738
|
*/
|
|
1250
|
-
200:
|
|
1739
|
+
200: Token;
|
|
1251
1740
|
};
|
|
1252
|
-
export type
|
|
1253
|
-
export type
|
|
1254
|
-
body:
|
|
1741
|
+
export type GetTokenResponse = GetTokenResponses[keyof GetTokenResponses];
|
|
1742
|
+
export type UpdateTokenData = {
|
|
1743
|
+
body: TokenUpdateInput;
|
|
1255
1744
|
path: {
|
|
1256
1745
|
/**
|
|
1257
|
-
*
|
|
1746
|
+
* Generated unique identifier of the access token.
|
|
1258
1747
|
*/
|
|
1259
|
-
|
|
1748
|
+
token_id: string;
|
|
1260
1749
|
};
|
|
1261
1750
|
query?: never;
|
|
1262
|
-
url: '/
|
|
1751
|
+
url: '/tokens/{token_id}';
|
|
1263
1752
|
};
|
|
1264
|
-
export type
|
|
1753
|
+
export type UpdateTokenErrors = {
|
|
1265
1754
|
/**
|
|
1266
|
-
*
|
|
1755
|
+
* Not authenticated
|
|
1267
1756
|
*/
|
|
1268
|
-
|
|
1757
|
+
401: unknown;
|
|
1269
1758
|
};
|
|
1270
|
-
export type
|
|
1271
|
-
|
|
1759
|
+
export type UpdateTokenResponses = {
|
|
1760
|
+
/**
|
|
1761
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1762
|
+
*/
|
|
1763
|
+
200: Token;
|
|
1764
|
+
};
|
|
1765
|
+
export type UpdateTokenResponse = UpdateTokenResponses[keyof UpdateTokenResponses];
|
|
1766
|
+
export type RegenerateTokenData = {
|
|
1272
1767
|
body?: never;
|
|
1273
1768
|
path: {
|
|
1274
1769
|
/**
|
|
1275
|
-
*
|
|
1276
|
-
*/
|
|
1277
|
-
cluster_id: string;
|
|
1278
|
-
/**
|
|
1279
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
1770
|
+
* Generated unique identifier of the access token.
|
|
1280
1771
|
*/
|
|
1281
|
-
|
|
1772
|
+
token_id: string;
|
|
1282
1773
|
};
|
|
1283
1774
|
query?: never;
|
|
1284
|
-
url: '/
|
|
1775
|
+
url: '/tokens/{token_id}/secret';
|
|
1285
1776
|
};
|
|
1286
|
-
export type
|
|
1777
|
+
export type RegenerateTokenErrors = {
|
|
1287
1778
|
/**
|
|
1288
|
-
*
|
|
1779
|
+
* Not authenticated
|
|
1289
1780
|
*/
|
|
1290
|
-
|
|
1781
|
+
401: unknown;
|
|
1291
1782
|
};
|
|
1292
|
-
export type
|
|
1293
|
-
|
|
1783
|
+
export type RegenerateTokenResponses = {
|
|
1784
|
+
/**
|
|
1785
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1786
|
+
*/
|
|
1787
|
+
200: Token;
|
|
1788
|
+
};
|
|
1789
|
+
export type RegenerateTokenResponse = RegenerateTokenResponses[keyof RegenerateTokenResponses];
|
|
1790
|
+
export type ListTicketsData = {
|
|
1294
1791
|
body?: never;
|
|
1295
|
-
path
|
|
1296
|
-
/**
|
|
1297
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1298
|
-
*/
|
|
1299
|
-
cluster_id: string;
|
|
1300
|
-
/**
|
|
1301
|
-
* Chart deployment name as the unique identifier of the chart.
|
|
1302
|
-
*/
|
|
1303
|
-
chart_name: string;
|
|
1304
|
-
};
|
|
1792
|
+
path?: never;
|
|
1305
1793
|
query?: never;
|
|
1306
|
-
url: '/
|
|
1794
|
+
url: '/tickets';
|
|
1307
1795
|
};
|
|
1308
|
-
export type
|
|
1796
|
+
export type ListTicketsResponses = {
|
|
1309
1797
|
/**
|
|
1310
|
-
*
|
|
1798
|
+
* An array of tickets for the organization, newest first.
|
|
1311
1799
|
*/
|
|
1312
|
-
200:
|
|
1800
|
+
200: Array<Ticket>;
|
|
1313
1801
|
};
|
|
1314
|
-
export type
|
|
1315
|
-
export type
|
|
1316
|
-
body:
|
|
1317
|
-
path: {
|
|
1318
|
-
/**
|
|
1319
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1320
|
-
*/
|
|
1321
|
-
cluster_id: string;
|
|
1802
|
+
export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
|
|
1803
|
+
export type CreateTicketData = {
|
|
1804
|
+
body: {
|
|
1322
1805
|
/**
|
|
1323
|
-
*
|
|
1806
|
+
* JSON-encoded TicketCreateInput.
|
|
1324
1807
|
*/
|
|
1325
|
-
|
|
1808
|
+
payload?: string;
|
|
1809
|
+
attachments?: Array<Blob | File>;
|
|
1326
1810
|
};
|
|
1811
|
+
path?: never;
|
|
1327
1812
|
query?: never;
|
|
1328
|
-
url: '/
|
|
1813
|
+
url: '/tickets';
|
|
1329
1814
|
};
|
|
1330
|
-
export type
|
|
1815
|
+
export type CreateTicketResponses = {
|
|
1331
1816
|
/**
|
|
1332
|
-
*
|
|
1817
|
+
* Ticket created.
|
|
1333
1818
|
*/
|
|
1334
|
-
200:
|
|
1819
|
+
200: Ticket;
|
|
1335
1820
|
};
|
|
1336
|
-
export type
|
|
1337
|
-
export type
|
|
1821
|
+
export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
|
|
1822
|
+
export type CloseTicketData = {
|
|
1338
1823
|
body?: never;
|
|
1339
1824
|
path: {
|
|
1340
|
-
|
|
1341
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1342
|
-
*/
|
|
1343
|
-
cluster_id: string;
|
|
1825
|
+
ticket_id: string;
|
|
1344
1826
|
};
|
|
1345
1827
|
query?: never;
|
|
1346
|
-
url: '/
|
|
1828
|
+
url: '/tickets/{ticket_id}';
|
|
1347
1829
|
};
|
|
1348
|
-
export type
|
|
1830
|
+
export type CloseTicketResponses = {
|
|
1349
1831
|
/**
|
|
1350
|
-
*
|
|
1832
|
+
* Ticket closed.
|
|
1351
1833
|
*/
|
|
1352
|
-
|
|
1834
|
+
200: Ticket;
|
|
1353
1835
|
};
|
|
1354
|
-
export type
|
|
1836
|
+
export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
|
|
1837
|
+
export type GetTicketData = {
|
|
1838
|
+
body?: never;
|
|
1839
|
+
path: {
|
|
1840
|
+
ticket_id: string;
|
|
1841
|
+
};
|
|
1842
|
+
query?: never;
|
|
1843
|
+
url: '/tickets/{ticket_id}';
|
|
1844
|
+
};
|
|
1845
|
+
export type GetTicketResponses = {
|
|
1355
1846
|
/**
|
|
1356
|
-
*
|
|
1847
|
+
* Ticket with messages (internal notes excluded).
|
|
1357
1848
|
*/
|
|
1358
|
-
200:
|
|
1849
|
+
200: Ticket;
|
|
1359
1850
|
};
|
|
1360
|
-
export type
|
|
1361
|
-
export type
|
|
1362
|
-
body:
|
|
1363
|
-
path: {
|
|
1851
|
+
export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
|
|
1852
|
+
export type ReplyTicketData = {
|
|
1853
|
+
body: {
|
|
1364
1854
|
/**
|
|
1365
|
-
*
|
|
1855
|
+
* JSON-encoded TicketMessageInput.
|
|
1366
1856
|
*/
|
|
1367
|
-
|
|
1857
|
+
payload?: string;
|
|
1858
|
+
attachments?: Array<Blob | File>;
|
|
1859
|
+
};
|
|
1860
|
+
path: {
|
|
1861
|
+
ticket_id: string;
|
|
1368
1862
|
};
|
|
1369
1863
|
query?: never;
|
|
1370
|
-
url: '/
|
|
1864
|
+
url: '/tickets/{ticket_id}/messages';
|
|
1371
1865
|
};
|
|
1372
|
-
export type
|
|
1866
|
+
export type ReplyTicketErrors = {
|
|
1373
1867
|
/**
|
|
1374
|
-
*
|
|
1868
|
+
* Ticket is closed. Open a new ticket instead.
|
|
1375
1869
|
*/
|
|
1376
|
-
|
|
1870
|
+
409: unknown;
|
|
1377
1871
|
};
|
|
1378
|
-
export type
|
|
1379
|
-
export type CreateFleetResponses = {
|
|
1872
|
+
export type ReplyTicketResponses = {
|
|
1380
1873
|
/**
|
|
1381
|
-
*
|
|
1874
|
+
* Reply appended.
|
|
1382
1875
|
*/
|
|
1383
|
-
200:
|
|
1876
|
+
200: TicketMessage;
|
|
1384
1877
|
};
|
|
1385
|
-
export type
|
|
1386
|
-
export type
|
|
1878
|
+
export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
|
|
1879
|
+
export type GetTicketAttachmentData = {
|
|
1387
1880
|
body?: never;
|
|
1388
1881
|
path: {
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
*/
|
|
1392
|
-
cluster_id: string;
|
|
1393
|
-
/**
|
|
1394
|
-
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1395
|
-
*/
|
|
1396
|
-
fleet_name: string;
|
|
1882
|
+
ticket_id: string;
|
|
1883
|
+
attachment_id: string;
|
|
1397
1884
|
};
|
|
1398
1885
|
query?: never;
|
|
1399
|
-
url: '/
|
|
1886
|
+
url: '/tickets/{ticket_id}/attachments/{attachment_id}';
|
|
1400
1887
|
};
|
|
1401
|
-
export type
|
|
1888
|
+
export type GetTicketAttachmentResponses = {
|
|
1402
1889
|
/**
|
|
1403
|
-
*
|
|
1890
|
+
* Attachment binary stream.
|
|
1404
1891
|
*/
|
|
1405
|
-
200:
|
|
1892
|
+
200: Blob | File;
|
|
1406
1893
|
};
|
|
1407
|
-
export type
|
|
1408
|
-
export type
|
|
1894
|
+
export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
|
|
1895
|
+
export type ListRepositoriesData = {
|
|
1409
1896
|
body?: never;
|
|
1410
|
-
path
|
|
1411
|
-
/**
|
|
1412
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1413
|
-
*/
|
|
1414
|
-
cluster_id: string;
|
|
1415
|
-
/**
|
|
1416
|
-
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1417
|
-
*/
|
|
1418
|
-
fleet_name: string;
|
|
1419
|
-
};
|
|
1897
|
+
path?: never;
|
|
1420
1898
|
query?: never;
|
|
1421
|
-
url: '/
|
|
1899
|
+
url: '/registry';
|
|
1422
1900
|
};
|
|
1423
|
-
export type
|
|
1901
|
+
export type ListRepositoriesErrors = {
|
|
1424
1902
|
/**
|
|
1425
|
-
*
|
|
1903
|
+
* Not authenticated
|
|
1426
1904
|
*/
|
|
1427
|
-
|
|
1905
|
+
401: unknown;
|
|
1906
|
+
/**
|
|
1907
|
+
* Internal server error
|
|
1908
|
+
*/
|
|
1909
|
+
500: unknown;
|
|
1428
1910
|
};
|
|
1429
|
-
export type
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
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 = {
|
|
1919
|
+
body?: never;
|
|
1920
|
+
path: {
|
|
1433
1921
|
/**
|
|
1434
|
-
*
|
|
1922
|
+
* Region where the repository is located
|
|
1435
1923
|
*/
|
|
1436
|
-
|
|
1924
|
+
region: string;
|
|
1437
1925
|
/**
|
|
1438
|
-
*
|
|
1926
|
+
* Name of the repository
|
|
1439
1927
|
*/
|
|
1440
|
-
|
|
1928
|
+
repository: string;
|
|
1441
1929
|
};
|
|
1442
1930
|
query?: never;
|
|
1443
|
-
url: '/
|
|
1931
|
+
url: '/registry/{region}/{repository}';
|
|
1444
1932
|
};
|
|
1445
|
-
export type
|
|
1933
|
+
export type ListTagsErrors = {
|
|
1446
1934
|
/**
|
|
1447
|
-
*
|
|
1935
|
+
* Not authenticated
|
|
1448
1936
|
*/
|
|
1449
|
-
|
|
1937
|
+
401: unknown;
|
|
1938
|
+
/**
|
|
1939
|
+
* Repository not found
|
|
1940
|
+
*/
|
|
1941
|
+
404: unknown;
|
|
1942
|
+
/**
|
|
1943
|
+
* Internal server error
|
|
1944
|
+
*/
|
|
1945
|
+
500: unknown;
|
|
1450
1946
|
};
|
|
1451
|
-
export type
|
|
1452
|
-
export type UpdateFleetResponses = {
|
|
1947
|
+
export type ListTagsResponses = {
|
|
1453
1948
|
/**
|
|
1454
|
-
*
|
|
1949
|
+
* Repository with tags
|
|
1455
1950
|
*/
|
|
1456
|
-
200:
|
|
1951
|
+
200: RegistryRepositoryWithTags;
|
|
1457
1952
|
};
|
|
1458
|
-
export type
|
|
1459
|
-
export type
|
|
1953
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
1954
|
+
export type DeleteTagData = {
|
|
1460
1955
|
body?: never;
|
|
1461
1956
|
path: {
|
|
1462
1957
|
/**
|
|
1463
|
-
*
|
|
1958
|
+
* Region where the repository is located
|
|
1464
1959
|
*/
|
|
1465
|
-
|
|
1960
|
+
region: string;
|
|
1961
|
+
/**
|
|
1962
|
+
* Name of the repository
|
|
1963
|
+
*/
|
|
1964
|
+
repository: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* Name of the tag
|
|
1967
|
+
*/
|
|
1968
|
+
tag: string;
|
|
1466
1969
|
};
|
|
1467
1970
|
query?: never;
|
|
1468
|
-
url: '/
|
|
1971
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1469
1972
|
};
|
|
1470
|
-
export type
|
|
1973
|
+
export type DeleteTagErrors = {
|
|
1471
1974
|
/**
|
|
1472
1975
|
* Not authenticated
|
|
1473
1976
|
*/
|
|
1474
1977
|
401: unknown;
|
|
1978
|
+
/**
|
|
1979
|
+
* Tag not found
|
|
1980
|
+
*/
|
|
1981
|
+
404: unknown;
|
|
1982
|
+
/**
|
|
1983
|
+
* Internal server error
|
|
1984
|
+
*/
|
|
1985
|
+
500: unknown;
|
|
1475
1986
|
};
|
|
1476
|
-
export type
|
|
1987
|
+
export type DeleteTagResponses = {
|
|
1477
1988
|
/**
|
|
1478
|
-
*
|
|
1989
|
+
* Tag successfully deleted
|
|
1479
1990
|
*/
|
|
1480
1991
|
200: unknown;
|
|
1481
1992
|
};
|
|
1482
|
-
export type
|
|
1993
|
+
export type GetTagData = {
|
|
1483
1994
|
body?: never;
|
|
1484
|
-
path
|
|
1995
|
+
path: {
|
|
1996
|
+
/**
|
|
1997
|
+
* Region where the repository is located
|
|
1998
|
+
*/
|
|
1999
|
+
region: string;
|
|
2000
|
+
/**
|
|
2001
|
+
* Name of the repository
|
|
2002
|
+
*/
|
|
2003
|
+
repository: string;
|
|
2004
|
+
/**
|
|
2005
|
+
* Name of the tag
|
|
2006
|
+
*/
|
|
2007
|
+
tag: string;
|
|
2008
|
+
};
|
|
1485
2009
|
query?: never;
|
|
1486
|
-
url: '/
|
|
2010
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1487
2011
|
};
|
|
1488
|
-
export type
|
|
2012
|
+
export type GetTagErrors = {
|
|
1489
2013
|
/**
|
|
1490
2014
|
* Not authenticated
|
|
1491
2015
|
*/
|
|
1492
2016
|
401: unknown;
|
|
2017
|
+
/**
|
|
2018
|
+
* Tag not found
|
|
2019
|
+
*/
|
|
2020
|
+
404: unknown;
|
|
2021
|
+
/**
|
|
2022
|
+
* Internal server error
|
|
2023
|
+
*/
|
|
2024
|
+
500: unknown;
|
|
1493
2025
|
};
|
|
1494
|
-
export type
|
|
2026
|
+
export type GetTagResponses = {
|
|
1495
2027
|
/**
|
|
1496
|
-
*
|
|
2028
|
+
* Tag details
|
|
1497
2029
|
*/
|
|
1498
|
-
200:
|
|
2030
|
+
200: RegistryTag;
|
|
1499
2031
|
};
|
|
1500
|
-
export type
|
|
1501
|
-
export type
|
|
1502
|
-
body
|
|
2032
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
2033
|
+
export type GetOrganizationData = {
|
|
2034
|
+
body?: never;
|
|
1503
2035
|
path?: never;
|
|
1504
2036
|
query?: never;
|
|
1505
|
-
url: '/
|
|
2037
|
+
url: '/organization';
|
|
1506
2038
|
};
|
|
1507
|
-
export type
|
|
2039
|
+
export type GetOrganizationResponses = {
|
|
1508
2040
|
/**
|
|
1509
|
-
*
|
|
2041
|
+
* Returns a single object containing organization details.
|
|
1510
2042
|
*/
|
|
1511
|
-
|
|
2043
|
+
200: Organization;
|
|
1512
2044
|
};
|
|
1513
|
-
export type
|
|
1514
|
-
export type
|
|
2045
|
+
export type GetOrganizationResponse = GetOrganizationResponses[keyof GetOrganizationResponses];
|
|
2046
|
+
export type CreateOrganizationData = {
|
|
2047
|
+
body: OrganizationCreateInput;
|
|
2048
|
+
path?: never;
|
|
2049
|
+
query?: never;
|
|
2050
|
+
url: '/organization';
|
|
2051
|
+
};
|
|
2052
|
+
export type CreateOrganizationResponses = {
|
|
1515
2053
|
/**
|
|
1516
|
-
*
|
|
2054
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2055
|
+
*
|
|
1517
2056
|
*/
|
|
1518
|
-
200:
|
|
2057
|
+
200: OrganizationCreateOutput;
|
|
1519
2058
|
};
|
|
1520
|
-
export type
|
|
1521
|
-
export type
|
|
2059
|
+
export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
|
|
2060
|
+
export type GetBasicPriceConsentData = {
|
|
1522
2061
|
body?: never;
|
|
1523
|
-
path
|
|
1524
|
-
/**
|
|
1525
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1526
|
-
*/
|
|
1527
|
-
cluster_id: string;
|
|
1528
|
-
};
|
|
2062
|
+
path?: never;
|
|
1529
2063
|
query?: never;
|
|
1530
|
-
url: '/
|
|
2064
|
+
url: '/organization/basic-price-consent';
|
|
1531
2065
|
};
|
|
1532
|
-
export type
|
|
2066
|
+
export type GetBasicPriceConsentResponses = {
|
|
1533
2067
|
/**
|
|
1534
|
-
*
|
|
2068
|
+
* Returns the current consent status.
|
|
1535
2069
|
*/
|
|
1536
|
-
200:
|
|
2070
|
+
200: BasicPriceConsent;
|
|
1537
2071
|
};
|
|
1538
|
-
export type
|
|
1539
|
-
export type
|
|
1540
|
-
body
|
|
1541
|
-
path
|
|
1542
|
-
/**
|
|
1543
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1544
|
-
*/
|
|
1545
|
-
cluster_id: string;
|
|
1546
|
-
};
|
|
2072
|
+
export type GetBasicPriceConsentResponse = GetBasicPriceConsentResponses[keyof GetBasicPriceConsentResponses];
|
|
2073
|
+
export type SetBasicPriceConsentData = {
|
|
2074
|
+
body: BasicPriceConsentInput;
|
|
2075
|
+
path?: never;
|
|
1547
2076
|
query?: never;
|
|
1548
|
-
url: '/
|
|
2077
|
+
url: '/organization/basic-price-consent';
|
|
1549
2078
|
};
|
|
1550
|
-
export type
|
|
2079
|
+
export type SetBasicPriceConsentErrors = {
|
|
1551
2080
|
/**
|
|
1552
|
-
*
|
|
2081
|
+
* The authenticated principal has no email address (e.g. a service account) and cannot record this decision.
|
|
2082
|
+
*
|
|
1553
2083
|
*/
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
path: {
|
|
1560
|
-
/**
|
|
1561
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1562
|
-
*/
|
|
1563
|
-
cluster_id: string;
|
|
1564
|
-
};
|
|
1565
|
-
query?: never;
|
|
1566
|
-
url: '/clusters/{cluster_id}';
|
|
2084
|
+
401: unknown;
|
|
2085
|
+
/**
|
|
2086
|
+
* The consent flow does not apply to this organization.
|
|
2087
|
+
*/
|
|
2088
|
+
409: unknown;
|
|
1567
2089
|
};
|
|
1568
|
-
export type
|
|
2090
|
+
export type SetBasicPriceConsentResponses = {
|
|
1569
2091
|
/**
|
|
1570
|
-
*
|
|
2092
|
+
* Decision recorded. Returns the updated consent status.
|
|
1571
2093
|
*/
|
|
1572
|
-
200:
|
|
2094
|
+
200: BasicPriceConsent;
|
|
1573
2095
|
};
|
|
1574
|
-
export type
|
|
1575
|
-
export type
|
|
1576
|
-
|
|
1577
|
-
|
|
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;
|
|
1578
2105
|
/**
|
|
1579
|
-
*
|
|
2106
|
+
* Method-specific parameters
|
|
1580
2107
|
*/
|
|
1581
|
-
|
|
2108
|
+
params?: {
|
|
2109
|
+
[key: string]: unknown;
|
|
2110
|
+
};
|
|
1582
2111
|
};
|
|
2112
|
+
path?: never;
|
|
1583
2113
|
query?: never;
|
|
1584
|
-
url: '/
|
|
2114
|
+
url: '/mcp';
|
|
1585
2115
|
};
|
|
1586
|
-
export type
|
|
2116
|
+
export type PostMcpErrors = {
|
|
1587
2117
|
/**
|
|
1588
2118
|
* Not authenticated
|
|
1589
2119
|
*/
|
|
1590
2120
|
401: unknown;
|
|
1591
2121
|
};
|
|
1592
|
-
export type
|
|
2122
|
+
export type PostMcpResponses = {
|
|
1593
2123
|
/**
|
|
1594
|
-
*
|
|
2124
|
+
* JSON-RPC 2.0 success or error response
|
|
1595
2125
|
*/
|
|
1596
|
-
200:
|
|
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
|
+
};
|
|
2136
|
+
};
|
|
1597
2137
|
};
|
|
1598
|
-
export type
|
|
1599
|
-
export type
|
|
2138
|
+
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
2139
|
+
export type ListMarketplaceChartsData = {
|
|
1600
2140
|
body?: never;
|
|
1601
2141
|
path?: never;
|
|
1602
2142
|
query?: never;
|
|
1603
|
-
url: '/
|
|
2143
|
+
url: '/marketplace';
|
|
1604
2144
|
};
|
|
1605
|
-
export type
|
|
2145
|
+
export type ListMarketplaceChartsErrors = {
|
|
1606
2146
|
/**
|
|
1607
2147
|
* Not authenticated
|
|
1608
2148
|
*/
|
|
1609
2149
|
401: unknown;
|
|
1610
2150
|
};
|
|
1611
|
-
export type
|
|
2151
|
+
export type ListMarketplaceChartsResponses = {
|
|
1612
2152
|
/**
|
|
1613
|
-
* An array of
|
|
2153
|
+
* An array of chart listings in the marketplace.
|
|
1614
2154
|
*/
|
|
1615
|
-
200: Array<
|
|
2155
|
+
200: Array<MarketplaceListing>;
|
|
1616
2156
|
};
|
|
1617
|
-
export type
|
|
1618
|
-
export type
|
|
1619
|
-
body
|
|
2157
|
+
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
2158
|
+
export type GetMarketplaceChartFilesData = {
|
|
2159
|
+
body?: never;
|
|
2160
|
+
path: {
|
|
1620
2161
|
/**
|
|
1621
|
-
*
|
|
2162
|
+
* Name of the chart in the marketplace.
|
|
1622
2163
|
*/
|
|
1623
|
-
|
|
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;
|
|
1624
2169
|
};
|
|
1625
|
-
path?: never;
|
|
1626
2170
|
query?: never;
|
|
1627
|
-
url: '/
|
|
2171
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
1628
2172
|
};
|
|
1629
|
-
export type
|
|
2173
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
1630
2174
|
/**
|
|
1631
|
-
*
|
|
2175
|
+
* Chart not found or no version matches the channel
|
|
2176
|
+
*/
|
|
2177
|
+
404: unknown;
|
|
2178
|
+
};
|
|
2179
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
2180
|
+
/**
|
|
2181
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2182
|
+
*/
|
|
2183
|
+
200: MarketplaceListingFiles;
|
|
2184
|
+
};
|
|
2185
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
2186
|
+
export type ListInvitesData = {
|
|
2187
|
+
body?: never;
|
|
2188
|
+
path?: never;
|
|
2189
|
+
query?: never;
|
|
2190
|
+
url: '/invites';
|
|
2191
|
+
};
|
|
2192
|
+
export type ListInvitesErrors = {
|
|
2193
|
+
/**
|
|
2194
|
+
* Not authenticated
|
|
2195
|
+
*/
|
|
2196
|
+
401: unknown;
|
|
2197
|
+
};
|
|
2198
|
+
export type ListInvitesResponses = {
|
|
2199
|
+
/**
|
|
2200
|
+
* An array of invites
|
|
2201
|
+
*/
|
|
2202
|
+
200: Array<Invite>;
|
|
2203
|
+
};
|
|
2204
|
+
export type ListInvitesResponse = ListInvitesResponses[keyof ListInvitesResponses];
|
|
2205
|
+
export type CreateInviteData = {
|
|
2206
|
+
body: InviteCreateInput;
|
|
2207
|
+
path?: never;
|
|
2208
|
+
query?: never;
|
|
2209
|
+
url: '/invites';
|
|
2210
|
+
};
|
|
2211
|
+
export type CreateInviteResponses = {
|
|
2212
|
+
/**
|
|
2213
|
+
* Successfully created. Returns created invite details.
|
|
1632
2214
|
*/
|
|
1633
2215
|
200: Invite;
|
|
1634
2216
|
};
|
|
@@ -1646,9 +2228,18 @@ export type GetInviteData = {
|
|
|
1646
2228
|
};
|
|
1647
2229
|
export type GetInviteResponses = {
|
|
1648
2230
|
/**
|
|
1649
|
-
* Returns
|
|
2231
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
1650
2232
|
*/
|
|
1651
|
-
200:
|
|
2233
|
+
200: {
|
|
2234
|
+
/**
|
|
2235
|
+
* Email address the invite was issued to.
|
|
2236
|
+
*/
|
|
2237
|
+
email?: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* Identifier of the organization the invite grants access to.
|
|
2240
|
+
*/
|
|
2241
|
+
organization_id?: string;
|
|
2242
|
+
};
|
|
1652
2243
|
};
|
|
1653
2244
|
export type GetInviteResponse = GetInviteResponses[keyof GetInviteResponses];
|
|
1654
2245
|
export type DeleteInviteData = {
|
|
@@ -1668,512 +2259,654 @@ export type DeleteInviteResponses = {
|
|
|
1668
2259
|
*/
|
|
1669
2260
|
200: unknown;
|
|
1670
2261
|
};
|
|
1671
|
-
export type
|
|
2262
|
+
export type QueryClusterData = {
|
|
1672
2263
|
body?: never;
|
|
1673
|
-
path
|
|
2264
|
+
path: {
|
|
2265
|
+
/**
|
|
2266
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2267
|
+
*/
|
|
2268
|
+
cluster_id: string;
|
|
2269
|
+
};
|
|
1674
2270
|
query?: never;
|
|
1675
|
-
url: '/
|
|
2271
|
+
url: '/clusters/{cluster_id}/query';
|
|
1676
2272
|
};
|
|
1677
|
-
export type
|
|
2273
|
+
export type QueryClusterErrors = {
|
|
1678
2274
|
/**
|
|
1679
2275
|
* Not authenticated
|
|
1680
2276
|
*/
|
|
1681
2277
|
401: unknown;
|
|
1682
2278
|
};
|
|
1683
|
-
export type
|
|
2279
|
+
export type QueryClusterResponses = {
|
|
1684
2280
|
/**
|
|
1685
|
-
*
|
|
2281
|
+
* Kubernetes API response
|
|
1686
2282
|
*/
|
|
1687
|
-
200:
|
|
2283
|
+
200: unknown;
|
|
1688
2284
|
};
|
|
1689
|
-
export type
|
|
1690
|
-
export type GetMarketplaceChartFilesData = {
|
|
2285
|
+
export type ListFleetsData = {
|
|
1691
2286
|
body?: never;
|
|
1692
2287
|
path: {
|
|
1693
2288
|
/**
|
|
1694
|
-
*
|
|
2289
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1695
2290
|
*/
|
|
1696
|
-
|
|
2291
|
+
cluster_id: string;
|
|
2292
|
+
};
|
|
2293
|
+
query?: never;
|
|
2294
|
+
url: '/clusters/{cluster_id}/fleets';
|
|
2295
|
+
};
|
|
2296
|
+
export type ListFleetsErrors = {
|
|
2297
|
+
/**
|
|
2298
|
+
* Not authenticated
|
|
2299
|
+
*/
|
|
2300
|
+
401: unknown;
|
|
2301
|
+
};
|
|
2302
|
+
export type ListFleetsResponses = {
|
|
2303
|
+
/**
|
|
2304
|
+
* An array of fleets
|
|
2305
|
+
*/
|
|
2306
|
+
200: Array<Fleet>;
|
|
2307
|
+
};
|
|
2308
|
+
export type ListFleetsResponse = ListFleetsResponses[keyof ListFleetsResponses];
|
|
2309
|
+
export type CreateFleetData = {
|
|
2310
|
+
body: FleetCreateInput;
|
|
2311
|
+
path: {
|
|
1697
2312
|
/**
|
|
1698
|
-
*
|
|
2313
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1699
2314
|
*/
|
|
1700
|
-
|
|
2315
|
+
cluster_id: string;
|
|
1701
2316
|
};
|
|
1702
2317
|
query?: never;
|
|
1703
|
-
url: '/
|
|
2318
|
+
url: '/clusters/{cluster_id}/fleets';
|
|
1704
2319
|
};
|
|
1705
|
-
export type
|
|
2320
|
+
export type CreateFleetErrors = {
|
|
1706
2321
|
/**
|
|
1707
|
-
*
|
|
2322
|
+
* Cluster quota exceeded. Maximum number of fleets per cluster allowed in this organization is reached.
|
|
1708
2323
|
*/
|
|
1709
|
-
|
|
1710
|
-
};
|
|
1711
|
-
export type GetMarketplaceChartFilesResponses = {
|
|
2324
|
+
402: string;
|
|
1712
2325
|
/**
|
|
1713
|
-
*
|
|
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.
|
|
1714
2327
|
*/
|
|
1715
|
-
|
|
2328
|
+
409: string;
|
|
1716
2329
|
};
|
|
1717
|
-
export type
|
|
1718
|
-
export type
|
|
2330
|
+
export type CreateFleetError = CreateFleetErrors[keyof CreateFleetErrors];
|
|
2331
|
+
export type CreateFleetResponses = {
|
|
1719
2332
|
/**
|
|
1720
|
-
*
|
|
2333
|
+
* Successfully created. Returns created Fleet ID.
|
|
1721
2334
|
*/
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
2335
|
+
200: string;
|
|
2336
|
+
};
|
|
2337
|
+
export type CreateFleetResponse = CreateFleetResponses[keyof CreateFleetResponses];
|
|
2338
|
+
export type DeleteFleetData = {
|
|
2339
|
+
body?: never;
|
|
2340
|
+
path: {
|
|
1726
2341
|
/**
|
|
1727
|
-
*
|
|
2342
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1728
2343
|
*/
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
2344
|
+
cluster_id: string;
|
|
2345
|
+
/**
|
|
2346
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2347
|
+
*/
|
|
2348
|
+
fleet_name: string;
|
|
1732
2349
|
};
|
|
1733
|
-
path?: never;
|
|
1734
2350
|
query?: never;
|
|
1735
|
-
url: '/
|
|
2351
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
1736
2352
|
};
|
|
1737
|
-
export type
|
|
2353
|
+
export type DeleteFleetErrors = {
|
|
1738
2354
|
/**
|
|
1739
|
-
*
|
|
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.
|
|
1740
2356
|
*/
|
|
1741
|
-
|
|
2357
|
+
409: string;
|
|
1742
2358
|
};
|
|
1743
|
-
export type
|
|
2359
|
+
export type DeleteFleetError = DeleteFleetErrors[keyof DeleteFleetErrors];
|
|
2360
|
+
export type DeleteFleetResponses = {
|
|
1744
2361
|
/**
|
|
1745
|
-
*
|
|
2362
|
+
* Successfully deleted.
|
|
1746
2363
|
*/
|
|
1747
|
-
200:
|
|
1748
|
-
jsonrpc?: string;
|
|
1749
|
-
id?: string | number;
|
|
1750
|
-
result?: {
|
|
1751
|
-
[key: string]: unknown;
|
|
1752
|
-
};
|
|
1753
|
-
error?: {
|
|
1754
|
-
code?: number;
|
|
1755
|
-
message?: string;
|
|
1756
|
-
};
|
|
1757
|
-
};
|
|
2364
|
+
200: string;
|
|
1758
2365
|
};
|
|
1759
|
-
export type
|
|
1760
|
-
export type
|
|
2366
|
+
export type DeleteFleetResponse = DeleteFleetResponses[keyof DeleteFleetResponses];
|
|
2367
|
+
export type GetFleetData = {
|
|
1761
2368
|
body?: never;
|
|
1762
|
-
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
|
+
};
|
|
1763
2379
|
query?: never;
|
|
1764
|
-
url: '/
|
|
2380
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
1765
2381
|
};
|
|
1766
|
-
export type
|
|
2382
|
+
export type GetFleetResponses = {
|
|
1767
2383
|
/**
|
|
1768
|
-
* Returns a single object containing
|
|
2384
|
+
* Returns a single object containing fleet details.
|
|
1769
2385
|
*/
|
|
1770
|
-
200:
|
|
2386
|
+
200: Fleet;
|
|
1771
2387
|
};
|
|
1772
|
-
export type
|
|
1773
|
-
export type
|
|
1774
|
-
body:
|
|
1775
|
-
path
|
|
2388
|
+
export type GetFleetResponse = GetFleetResponses[keyof GetFleetResponses];
|
|
2389
|
+
export type UpdateFleetData = {
|
|
2390
|
+
body: FleetUpdateInput;
|
|
2391
|
+
path: {
|
|
2392
|
+
/**
|
|
2393
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2394
|
+
*/
|
|
2395
|
+
cluster_id: string;
|
|
2396
|
+
/**
|
|
2397
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2398
|
+
*/
|
|
2399
|
+
fleet_name: string;
|
|
2400
|
+
};
|
|
1776
2401
|
query?: never;
|
|
1777
|
-
url: '/
|
|
2402
|
+
url: '/clusters/{cluster_id}/fleets/{fleet_name}';
|
|
1778
2403
|
};
|
|
1779
|
-
export type
|
|
2404
|
+
export type UpdateFleetErrors = {
|
|
1780
2405
|
/**
|
|
1781
|
-
*
|
|
2406
|
+
* Organization must have a valid payment method configured to access this endpoint.
|
|
1782
2407
|
*/
|
|
1783
|
-
|
|
2408
|
+
402: string;
|
|
2409
|
+
/**
|
|
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.
|
|
2411
|
+
*/
|
|
2412
|
+
409: string;
|
|
1784
2413
|
};
|
|
1785
|
-
export type
|
|
2414
|
+
export type UpdateFleetError = UpdateFleetErrors[keyof UpdateFleetErrors];
|
|
2415
|
+
export type UpdateFleetResponses = {
|
|
2416
|
+
/**
|
|
2417
|
+
* Successfully updated.
|
|
2418
|
+
*/
|
|
2419
|
+
200: string;
|
|
2420
|
+
};
|
|
2421
|
+
export type UpdateFleetResponse = UpdateFleetResponses[keyof UpdateFleetResponses];
|
|
2422
|
+
export type ListChartsData = {
|
|
1786
2423
|
body?: never;
|
|
1787
|
-
path
|
|
2424
|
+
path: {
|
|
2425
|
+
/**
|
|
2426
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2427
|
+
*/
|
|
2428
|
+
cluster_id: string;
|
|
2429
|
+
};
|
|
1788
2430
|
query?: never;
|
|
1789
|
-
url: '/
|
|
2431
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1790
2432
|
};
|
|
1791
|
-
export type
|
|
2433
|
+
export type ListChartsErrors = {
|
|
1792
2434
|
/**
|
|
1793
2435
|
* Not authenticated
|
|
1794
2436
|
*/
|
|
1795
2437
|
401: unknown;
|
|
2438
|
+
};
|
|
2439
|
+
export type ListChartsResponses = {
|
|
1796
2440
|
/**
|
|
1797
|
-
*
|
|
2441
|
+
* An array of charts
|
|
1798
2442
|
*/
|
|
1799
|
-
|
|
2443
|
+
200: Array<Chart>;
|
|
1800
2444
|
};
|
|
1801
|
-
export type
|
|
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 = {
|
|
1802
2458
|
/**
|
|
1803
|
-
*
|
|
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.
|
|
1804
2460
|
*/
|
|
1805
|
-
|
|
2461
|
+
409: string;
|
|
1806
2462
|
};
|
|
1807
|
-
export type
|
|
1808
|
-
export type
|
|
2463
|
+
export type CreateChartError = CreateChartErrors[keyof CreateChartErrors];
|
|
2464
|
+
export type CreateChartResponses = {
|
|
2465
|
+
/**
|
|
2466
|
+
* Successfully created. Returns created Chart ID.
|
|
2467
|
+
*/
|
|
2468
|
+
200: string;
|
|
2469
|
+
};
|
|
2470
|
+
export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
|
|
2471
|
+
export type DeleteChartData = {
|
|
1809
2472
|
body?: never;
|
|
1810
2473
|
path: {
|
|
1811
2474
|
/**
|
|
1812
|
-
*
|
|
2475
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1813
2476
|
*/
|
|
1814
|
-
|
|
2477
|
+
cluster_id: string;
|
|
1815
2478
|
/**
|
|
1816
|
-
*
|
|
2479
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1817
2480
|
*/
|
|
1818
|
-
|
|
2481
|
+
chart_name: string;
|
|
1819
2482
|
};
|
|
1820
2483
|
query?: never;
|
|
1821
|
-
url: '/
|
|
2484
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1822
2485
|
};
|
|
1823
|
-
export type
|
|
2486
|
+
export type DeleteChartErrors = {
|
|
1824
2487
|
/**
|
|
1825
|
-
*
|
|
1826
|
-
*/
|
|
1827
|
-
401: unknown;
|
|
1828
|
-
/**
|
|
1829
|
-
* Repository not found
|
|
1830
|
-
*/
|
|
1831
|
-
404: unknown;
|
|
1832
|
-
/**
|
|
1833
|
-
* Internal server error
|
|
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.
|
|
1834
2489
|
*/
|
|
1835
|
-
|
|
2490
|
+
409: string;
|
|
1836
2491
|
};
|
|
1837
|
-
export type
|
|
2492
|
+
export type DeleteChartError = DeleteChartErrors[keyof DeleteChartErrors];
|
|
2493
|
+
export type DeleteChartResponses = {
|
|
1838
2494
|
/**
|
|
1839
|
-
*
|
|
2495
|
+
* Successfully deleted.
|
|
1840
2496
|
*/
|
|
1841
|
-
200:
|
|
2497
|
+
200: string;
|
|
1842
2498
|
};
|
|
1843
|
-
export type
|
|
1844
|
-
export type
|
|
2499
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
2500
|
+
export type GetChartData = {
|
|
1845
2501
|
body?: never;
|
|
1846
2502
|
path: {
|
|
1847
2503
|
/**
|
|
1848
|
-
*
|
|
2504
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1849
2505
|
*/
|
|
1850
|
-
|
|
2506
|
+
cluster_id: string;
|
|
1851
2507
|
/**
|
|
1852
|
-
*
|
|
2508
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1853
2509
|
*/
|
|
1854
|
-
|
|
2510
|
+
chart_name: string;
|
|
2511
|
+
};
|
|
2512
|
+
query?: never;
|
|
2513
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
2514
|
+
};
|
|
2515
|
+
export type GetChartResponses = {
|
|
2516
|
+
/**
|
|
2517
|
+
* Returns a single object containing chart details.
|
|
2518
|
+
*/
|
|
2519
|
+
200: Chart;
|
|
2520
|
+
};
|
|
2521
|
+
export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
|
|
2522
|
+
export type UpdateChartData = {
|
|
2523
|
+
body: ChartUpdateInput;
|
|
2524
|
+
path: {
|
|
1855
2525
|
/**
|
|
1856
|
-
*
|
|
2526
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1857
2527
|
*/
|
|
1858
|
-
|
|
2528
|
+
cluster_id: string;
|
|
2529
|
+
/**
|
|
2530
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
2531
|
+
*/
|
|
2532
|
+
chart_name: string;
|
|
1859
2533
|
};
|
|
1860
2534
|
query?: never;
|
|
1861
|
-
url: '/
|
|
2535
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1862
2536
|
};
|
|
1863
|
-
export type
|
|
2537
|
+
export type UpdateChartErrors = {
|
|
2538
|
+
/**
|
|
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.
|
|
2540
|
+
*/
|
|
2541
|
+
409: string;
|
|
2542
|
+
};
|
|
2543
|
+
export type UpdateChartError = UpdateChartErrors[keyof UpdateChartErrors];
|
|
2544
|
+
export type UpdateChartResponses = {
|
|
2545
|
+
/**
|
|
2546
|
+
* Successfully updated.
|
|
2547
|
+
*/
|
|
2548
|
+
200: string;
|
|
2549
|
+
};
|
|
2550
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
2551
|
+
export type ListClustersData = {
|
|
2552
|
+
body?: never;
|
|
2553
|
+
path?: never;
|
|
2554
|
+
query?: never;
|
|
2555
|
+
url: '/clusters';
|
|
2556
|
+
};
|
|
2557
|
+
export type ListClustersErrors = {
|
|
1864
2558
|
/**
|
|
1865
2559
|
* Not authenticated
|
|
1866
2560
|
*/
|
|
1867
2561
|
401: unknown;
|
|
2562
|
+
};
|
|
2563
|
+
export type ListClustersResponses = {
|
|
1868
2564
|
/**
|
|
1869
|
-
*
|
|
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;
|
|
2573
|
+
query?: never;
|
|
2574
|
+
url: '/clusters';
|
|
2575
|
+
};
|
|
2576
|
+
export type CreateClusterErrors = {
|
|
2577
|
+
/**
|
|
2578
|
+
* Cluster quota exceeded. Maximum number of clusters allowed in this organization is reached.
|
|
2579
|
+
*/
|
|
2580
|
+
402: string;
|
|
2581
|
+
};
|
|
2582
|
+
export type CreateClusterError = CreateClusterErrors[keyof CreateClusterErrors];
|
|
2583
|
+
export type CreateClusterResponses = {
|
|
2584
|
+
/**
|
|
2585
|
+
* Successfully created. Returns created Cluster ID.
|
|
2586
|
+
*/
|
|
2587
|
+
200: string;
|
|
2588
|
+
};
|
|
2589
|
+
export type CreateClusterResponse = CreateClusterResponses[keyof CreateClusterResponses];
|
|
2590
|
+
export type DeleteClusterData = {
|
|
2591
|
+
body?: never;
|
|
2592
|
+
path: {
|
|
2593
|
+
/**
|
|
2594
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2595
|
+
*/
|
|
2596
|
+
cluster_id: string;
|
|
2597
|
+
};
|
|
2598
|
+
query?: never;
|
|
2599
|
+
url: '/clusters/{cluster_id}';
|
|
2600
|
+
};
|
|
2601
|
+
export type DeleteClusterErrors = {
|
|
2602
|
+
/**
|
|
2603
|
+
* Cluster not found; it does not exist or has already been deleted.
|
|
1870
2604
|
*/
|
|
1871
2605
|
404: unknown;
|
|
1872
2606
|
/**
|
|
1873
|
-
*
|
|
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.
|
|
1874
2608
|
*/
|
|
1875
|
-
|
|
2609
|
+
409: string;
|
|
2610
|
+
/**
|
|
2611
|
+
* Transient failure tearing down the cluster; retry the request.
|
|
2612
|
+
*/
|
|
2613
|
+
503: unknown;
|
|
1876
2614
|
};
|
|
1877
|
-
export type
|
|
2615
|
+
export type DeleteClusterError = DeleteClusterErrors[keyof DeleteClusterErrors];
|
|
2616
|
+
export type DeleteClusterResponses = {
|
|
1878
2617
|
/**
|
|
1879
|
-
*
|
|
2618
|
+
* Successfully deleted. The cluster has been torn down.
|
|
1880
2619
|
*/
|
|
1881
|
-
200:
|
|
2620
|
+
200: string;
|
|
1882
2621
|
};
|
|
1883
|
-
export type
|
|
2622
|
+
export type DeleteClusterResponse = DeleteClusterResponses[keyof DeleteClusterResponses];
|
|
2623
|
+
export type GetClusterData = {
|
|
1884
2624
|
body?: never;
|
|
1885
2625
|
path: {
|
|
1886
2626
|
/**
|
|
1887
|
-
*
|
|
2627
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1888
2628
|
*/
|
|
1889
|
-
|
|
2629
|
+
cluster_id: string;
|
|
2630
|
+
};
|
|
2631
|
+
query?: never;
|
|
2632
|
+
url: '/clusters/{cluster_id}';
|
|
2633
|
+
};
|
|
2634
|
+
export type GetClusterResponses = {
|
|
2635
|
+
/**
|
|
2636
|
+
* Returns a single object containing cluster details.
|
|
2637
|
+
*/
|
|
2638
|
+
200: Cluster;
|
|
2639
|
+
};
|
|
2640
|
+
export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
|
|
2641
|
+
export type UpdateClusterData = {
|
|
2642
|
+
body: ClusterUpdateInput;
|
|
2643
|
+
path: {
|
|
1890
2644
|
/**
|
|
1891
|
-
*
|
|
2645
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1892
2646
|
*/
|
|
1893
|
-
|
|
2647
|
+
cluster_id: string;
|
|
2648
|
+
};
|
|
2649
|
+
query?: never;
|
|
2650
|
+
url: '/clusters/{cluster_id}';
|
|
2651
|
+
};
|
|
2652
|
+
export type UpdateClusterErrors = {
|
|
2653
|
+
/**
|
|
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.
|
|
2655
|
+
*/
|
|
2656
|
+
409: string;
|
|
2657
|
+
};
|
|
2658
|
+
export type UpdateClusterError = UpdateClusterErrors[keyof UpdateClusterErrors];
|
|
2659
|
+
export type UpdateClusterResponses = {
|
|
2660
|
+
/**
|
|
2661
|
+
* Successfully updated. Returns updated cluster details.
|
|
2662
|
+
*/
|
|
2663
|
+
200: Cluster;
|
|
2664
|
+
};
|
|
2665
|
+
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
2666
|
+
export type GetJoinInformationData = {
|
|
2667
|
+
body?: never;
|
|
2668
|
+
path: {
|
|
1894
2669
|
/**
|
|
1895
|
-
*
|
|
2670
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1896
2671
|
*/
|
|
1897
|
-
|
|
2672
|
+
cluster_id: string;
|
|
1898
2673
|
};
|
|
1899
2674
|
query?: never;
|
|
1900
|
-
url: '/
|
|
2675
|
+
url: '/clusters/{cluster_id}/join_information';
|
|
1901
2676
|
};
|
|
1902
|
-
export type
|
|
2677
|
+
export type GetJoinInformationErrors = {
|
|
1903
2678
|
/**
|
|
1904
2679
|
* Not authenticated
|
|
1905
2680
|
*/
|
|
1906
2681
|
401: unknown;
|
|
1907
2682
|
/**
|
|
1908
|
-
*
|
|
1909
|
-
*/
|
|
1910
|
-
404: unknown;
|
|
1911
|
-
/**
|
|
1912
|
-
* Internal server error
|
|
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.
|
|
1913
2684
|
*/
|
|
1914
|
-
|
|
2685
|
+
409: string;
|
|
1915
2686
|
};
|
|
1916
|
-
export type
|
|
2687
|
+
export type GetJoinInformationError = GetJoinInformationErrors[keyof GetJoinInformationErrors];
|
|
2688
|
+
export type GetJoinInformationResponses = {
|
|
1917
2689
|
/**
|
|
1918
|
-
*
|
|
2690
|
+
* An object of cluster join information
|
|
1919
2691
|
*/
|
|
1920
|
-
200:
|
|
2692
|
+
200: ClusterJoinInformation;
|
|
1921
2693
|
};
|
|
1922
|
-
export type
|
|
1923
|
-
export type
|
|
2694
|
+
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
2695
|
+
export type GetUsageData = {
|
|
1924
2696
|
body?: never;
|
|
1925
2697
|
path?: never;
|
|
1926
|
-
query?:
|
|
1927
|
-
|
|
2698
|
+
query?: {
|
|
2699
|
+
/**
|
|
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)
|
|
2701
|
+
*/
|
|
2702
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
2703
|
+
};
|
|
2704
|
+
url: '/billing/usage';
|
|
1928
2705
|
};
|
|
1929
|
-
export type
|
|
2706
|
+
export type GetUsageErrors = {
|
|
1930
2707
|
/**
|
|
1931
2708
|
* Not authenticated
|
|
1932
2709
|
*/
|
|
1933
2710
|
401: unknown;
|
|
1934
2711
|
};
|
|
1935
|
-
export type
|
|
2712
|
+
export type GetUsageResponses = {
|
|
1936
2713
|
/**
|
|
1937
|
-
*
|
|
2714
|
+
* Usage data with facets for filtering
|
|
1938
2715
|
*/
|
|
1939
|
-
200:
|
|
2716
|
+
200: UsageResponse;
|
|
1940
2717
|
};
|
|
1941
|
-
export type
|
|
1942
|
-
export type
|
|
1943
|
-
body
|
|
2718
|
+
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
2719
|
+
export type GetPaymentMethodSecretData = {
|
|
2720
|
+
body?: never;
|
|
1944
2721
|
path?: never;
|
|
1945
2722
|
query?: never;
|
|
1946
|
-
url: '/
|
|
1947
|
-
};
|
|
1948
|
-
export type CreateTokenErrors = {
|
|
1949
|
-
/**
|
|
1950
|
-
* Not authenticated
|
|
1951
|
-
*/
|
|
1952
|
-
401: unknown;
|
|
2723
|
+
url: '/billing/payment-method';
|
|
1953
2724
|
};
|
|
1954
|
-
export type
|
|
2725
|
+
export type GetPaymentMethodSecretResponses = {
|
|
1955
2726
|
/**
|
|
1956
|
-
*
|
|
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
|
+
*
|
|
1957
2729
|
*/
|
|
1958
|
-
200:
|
|
1959
|
-
};
|
|
1960
|
-
export type CreateTokenResponse = CreateTokenResponses[keyof CreateTokenResponses];
|
|
1961
|
-
export type DeleteTokenData = {
|
|
1962
|
-
body?: never;
|
|
1963
|
-
path: {
|
|
2730
|
+
200: {
|
|
1964
2731
|
/**
|
|
1965
|
-
*
|
|
2732
|
+
* The client secret.
|
|
1966
2733
|
*/
|
|
1967
|
-
|
|
2734
|
+
id?: string;
|
|
1968
2735
|
};
|
|
1969
|
-
query?: never;
|
|
1970
|
-
url: '/tokens/{token_id}';
|
|
1971
|
-
};
|
|
1972
|
-
export type DeleteTokenResponses = {
|
|
1973
|
-
/**
|
|
1974
|
-
* Successfully deleted.
|
|
1975
|
-
*/
|
|
1976
|
-
200: unknown;
|
|
1977
2736
|
};
|
|
1978
|
-
export type
|
|
2737
|
+
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
2738
|
+
export type ListPaymentMethodsData = {
|
|
1979
2739
|
body?: never;
|
|
1980
|
-
path
|
|
1981
|
-
/**
|
|
1982
|
-
* Generated unique identifier of the access token.
|
|
1983
|
-
*/
|
|
1984
|
-
token_id: string;
|
|
1985
|
-
};
|
|
2740
|
+
path?: never;
|
|
1986
2741
|
query?: never;
|
|
1987
|
-
url: '/
|
|
2742
|
+
url: '/billing/payment-methods';
|
|
1988
2743
|
};
|
|
1989
|
-
export type
|
|
2744
|
+
export type ListPaymentMethodsErrors = {
|
|
1990
2745
|
/**
|
|
1991
2746
|
* Not authenticated
|
|
1992
2747
|
*/
|
|
1993
2748
|
401: unknown;
|
|
1994
2749
|
};
|
|
1995
|
-
export type
|
|
2750
|
+
export type ListPaymentMethodsResponses = {
|
|
1996
2751
|
/**
|
|
1997
|
-
*
|
|
2752
|
+
* An array of payment methods.
|
|
1998
2753
|
*/
|
|
1999
|
-
200:
|
|
2754
|
+
200: Array<PaymentMethod>;
|
|
2000
2755
|
};
|
|
2001
|
-
export type
|
|
2002
|
-
export type
|
|
2003
|
-
body
|
|
2756
|
+
export type ListPaymentMethodsResponse = ListPaymentMethodsResponses[keyof ListPaymentMethodsResponses];
|
|
2757
|
+
export type SetDefaultPaymentMethodData = {
|
|
2758
|
+
body?: never;
|
|
2004
2759
|
path: {
|
|
2005
2760
|
/**
|
|
2006
|
-
*
|
|
2761
|
+
* Stripe payment method identifier.
|
|
2007
2762
|
*/
|
|
2008
|
-
|
|
2763
|
+
paymentMethodId: string;
|
|
2009
2764
|
};
|
|
2010
2765
|
query?: never;
|
|
2011
|
-
url: '/
|
|
2766
|
+
url: '/billing/payment-methods/{paymentMethodId}/default';
|
|
2012
2767
|
};
|
|
2013
|
-
export type
|
|
2768
|
+
export type SetDefaultPaymentMethodErrors = {
|
|
2769
|
+
/**
|
|
2770
|
+
* The bank transfer payment method cannot be set as the default.
|
|
2771
|
+
*/
|
|
2772
|
+
400: unknown;
|
|
2014
2773
|
/**
|
|
2015
2774
|
* Not authenticated
|
|
2016
2775
|
*/
|
|
2017
2776
|
401: unknown;
|
|
2777
|
+
/**
|
|
2778
|
+
* Payment method not found.
|
|
2779
|
+
*/
|
|
2780
|
+
404: unknown;
|
|
2018
2781
|
};
|
|
2019
|
-
export type
|
|
2782
|
+
export type SetDefaultPaymentMethodResponses = {
|
|
2020
2783
|
/**
|
|
2021
|
-
*
|
|
2784
|
+
* Default payment method updated.
|
|
2022
2785
|
*/
|
|
2023
|
-
|
|
2786
|
+
204: void;
|
|
2024
2787
|
};
|
|
2025
|
-
export type
|
|
2026
|
-
export type
|
|
2788
|
+
export type SetDefaultPaymentMethodResponse = SetDefaultPaymentMethodResponses[keyof SetDefaultPaymentMethodResponses];
|
|
2789
|
+
export type DeletePaymentMethodData = {
|
|
2027
2790
|
body?: never;
|
|
2028
2791
|
path: {
|
|
2029
2792
|
/**
|
|
2030
|
-
*
|
|
2793
|
+
* Stripe payment method identifier.
|
|
2031
2794
|
*/
|
|
2032
|
-
|
|
2795
|
+
paymentMethodId: string;
|
|
2033
2796
|
};
|
|
2034
2797
|
query?: never;
|
|
2035
|
-
url: '/
|
|
2798
|
+
url: '/billing/payment-methods/{paymentMethodId}';
|
|
2036
2799
|
};
|
|
2037
|
-
export type
|
|
2800
|
+
export type DeletePaymentMethodErrors = {
|
|
2801
|
+
/**
|
|
2802
|
+
* The bank transfer payment method cannot be removed.
|
|
2803
|
+
*/
|
|
2804
|
+
400: unknown;
|
|
2038
2805
|
/**
|
|
2039
2806
|
* Not authenticated
|
|
2040
2807
|
*/
|
|
2041
2808
|
401: unknown;
|
|
2042
|
-
};
|
|
2043
|
-
export type RegenerateTokenResponses = {
|
|
2044
2809
|
/**
|
|
2045
|
-
*
|
|
2810
|
+
* Payment method not found.
|
|
2046
2811
|
*/
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
path: {
|
|
2053
|
-
/**
|
|
2054
|
-
* User email address.
|
|
2055
|
-
*/
|
|
2056
|
-
email: string;
|
|
2057
|
-
};
|
|
2058
|
-
query?: never;
|
|
2059
|
-
url: '/users/organizations/{email}';
|
|
2812
|
+
404: unknown;
|
|
2813
|
+
/**
|
|
2814
|
+
* Cannot delete the only remaining payment method.
|
|
2815
|
+
*/
|
|
2816
|
+
409: unknown;
|
|
2060
2817
|
};
|
|
2061
|
-
export type
|
|
2818
|
+
export type DeletePaymentMethodResponses = {
|
|
2062
2819
|
/**
|
|
2063
|
-
*
|
|
2820
|
+
* Payment method deleted.
|
|
2064
2821
|
*/
|
|
2065
|
-
|
|
2066
|
-
/**
|
|
2067
|
-
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
2068
|
-
*/
|
|
2069
|
-
realm?: string;
|
|
2070
|
-
/**
|
|
2071
|
-
* Human-readable name of the organization
|
|
2072
|
-
*/
|
|
2073
|
-
displayName?: string;
|
|
2074
|
-
}>;
|
|
2822
|
+
204: void;
|
|
2075
2823
|
};
|
|
2076
|
-
export type
|
|
2077
|
-
export type
|
|
2824
|
+
export type DeletePaymentMethodResponse = DeletePaymentMethodResponses[keyof DeletePaymentMethodResponses];
|
|
2825
|
+
export type ListInvoicesData = {
|
|
2078
2826
|
body?: never;
|
|
2079
2827
|
path?: never;
|
|
2080
2828
|
query?: never;
|
|
2081
|
-
url: '/
|
|
2829
|
+
url: '/billing/invoices';
|
|
2082
2830
|
};
|
|
2083
|
-
export type
|
|
2831
|
+
export type ListInvoicesErrors = {
|
|
2084
2832
|
/**
|
|
2085
2833
|
* Not authenticated
|
|
2086
2834
|
*/
|
|
2087
2835
|
401: unknown;
|
|
2088
2836
|
};
|
|
2089
|
-
export type
|
|
2837
|
+
export type ListInvoicesResponses = {
|
|
2090
2838
|
/**
|
|
2091
|
-
* An array of
|
|
2839
|
+
* An array of usage records.
|
|
2092
2840
|
*/
|
|
2093
|
-
200: Array<
|
|
2841
|
+
200: Array<Invoice>;
|
|
2094
2842
|
};
|
|
2095
|
-
export type
|
|
2096
|
-
export type
|
|
2097
|
-
body
|
|
2843
|
+
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
2844
|
+
export type GetContactData = {
|
|
2845
|
+
body?: never;
|
|
2098
2846
|
path?: never;
|
|
2099
2847
|
query?: never;
|
|
2100
|
-
url: '/
|
|
2848
|
+
url: '/billing/contact';
|
|
2101
2849
|
};
|
|
2102
|
-
export type
|
|
2850
|
+
export type GetContactResponses = {
|
|
2103
2851
|
/**
|
|
2104
|
-
*
|
|
2852
|
+
* Returns a single object containing organization contact and billing address details.
|
|
2105
2853
|
*/
|
|
2106
|
-
200:
|
|
2854
|
+
200: BillingContact;
|
|
2107
2855
|
};
|
|
2108
|
-
export type
|
|
2109
|
-
export type
|
|
2110
|
-
body
|
|
2111
|
-
path
|
|
2112
|
-
/**
|
|
2113
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2114
|
-
*/
|
|
2115
|
-
user_id: string;
|
|
2116
|
-
};
|
|
2856
|
+
export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
|
|
2857
|
+
export type UpdateContactData = {
|
|
2858
|
+
body: BillingContact;
|
|
2859
|
+
path?: never;
|
|
2117
2860
|
query?: never;
|
|
2118
|
-
url: '/
|
|
2861
|
+
url: '/billing/contact';
|
|
2119
2862
|
};
|
|
2120
|
-
export type
|
|
2863
|
+
export type UpdateContactResponses = {
|
|
2121
2864
|
/**
|
|
2122
|
-
*
|
|
2865
|
+
* Successfully updated. Returns updated organization details.
|
|
2123
2866
|
*/
|
|
2124
|
-
|
|
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 = {
|
|
2125
2877
|
/**
|
|
2126
2878
|
* Not authenticated
|
|
2127
2879
|
*/
|
|
2128
2880
|
401: unknown;
|
|
2129
2881
|
};
|
|
2130
|
-
export type
|
|
2882
|
+
export type GetCreditsResponses = {
|
|
2131
2883
|
/**
|
|
2132
|
-
*
|
|
2884
|
+
* An array of the applied promotional credits records.
|
|
2133
2885
|
*/
|
|
2134
|
-
200:
|
|
2886
|
+
200: Array<BillingCredits>;
|
|
2135
2887
|
};
|
|
2136
|
-
export type
|
|
2137
|
-
export type
|
|
2138
|
-
body
|
|
2139
|
-
path: {
|
|
2888
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
2889
|
+
export type RedeemCreditsData = {
|
|
2890
|
+
body: {
|
|
2140
2891
|
/**
|
|
2141
|
-
*
|
|
2892
|
+
* Promotional code to redeem
|
|
2142
2893
|
*/
|
|
2143
|
-
|
|
2894
|
+
code?: string;
|
|
2144
2895
|
};
|
|
2896
|
+
path?: never;
|
|
2145
2897
|
query?: never;
|
|
2146
|
-
url: '/
|
|
2898
|
+
url: '/billing/credits';
|
|
2147
2899
|
};
|
|
2148
|
-
export type
|
|
2900
|
+
export type RedeemCreditsErrors = {
|
|
2149
2901
|
/**
|
|
2150
2902
|
* Not authenticated
|
|
2151
2903
|
*/
|
|
2152
2904
|
401: unknown;
|
|
2153
2905
|
};
|
|
2154
|
-
export type
|
|
2155
|
-
/**
|
|
2156
|
-
* User profile information
|
|
2157
|
-
*/
|
|
2158
|
-
200: User;
|
|
2159
|
-
};
|
|
2160
|
-
export type GetUserResponse = GetUserResponses[keyof GetUserResponses];
|
|
2161
|
-
export type UpdateUserData = {
|
|
2162
|
-
body: UserUpdateInput;
|
|
2163
|
-
path: {
|
|
2164
|
-
/**
|
|
2165
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2166
|
-
*/
|
|
2167
|
-
user_id: string;
|
|
2168
|
-
};
|
|
2169
|
-
query?: never;
|
|
2170
|
-
url: '/users/{user_id}';
|
|
2171
|
-
};
|
|
2172
|
-
export type UpdateUserResponses = {
|
|
2906
|
+
export type RedeemCreditsResponses = {
|
|
2173
2907
|
/**
|
|
2174
|
-
* Successfully created
|
|
2908
|
+
* Successfully created a new organization.
|
|
2175
2909
|
*/
|
|
2176
|
-
200:
|
|
2910
|
+
200: unknown;
|
|
2177
2911
|
};
|
|
2178
|
-
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
2179
2912
|
//# sourceMappingURL=types.gen.d.ts.map
|