@cloudfleet/sdk 0.0.1-e2d1408 → 0.0.1-e80cef7

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.
@@ -1,3 +1,169 @@
1
+ export type BillingContact = {
2
+ /**
3
+ * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
4
+ */
5
+ company?: string;
6
+ /**
7
+ * Street address, P.O. box, c/o
8
+ */
9
+ address1?: string;
10
+ /**
11
+ * Apartment, suite, unit, building, floor, etc.
12
+ */
13
+ address2?: string;
14
+ /**
15
+ * Postal code as a string.
16
+ */
17
+ postalCode?: string;
18
+ /**
19
+ * City or town name.
20
+ */
21
+ city?: string;
22
+ /**
23
+ * State, province, or region name.
24
+ */
25
+ state?: string;
26
+ /**
27
+ * Country as a ISO 3166-1 alpha-2 country code.
28
+ */
29
+ country?: string;
30
+ /**
31
+ * Phone number as a string.
32
+ */
33
+ phone?: string;
34
+ /**
35
+ * Email address used for billing as a string.
36
+ */
37
+ email: string;
38
+ /**
39
+ * First name of the billing contact person.
40
+ */
41
+ first_name: string;
42
+ /**
43
+ * Last name of the billing contact person.
44
+ */
45
+ last_name: string;
46
+ /**
47
+ * Tax ID of the organization.
48
+ */
49
+ tax_id?: string;
50
+ /**
51
+ * Type of the tax ID.
52
+ */
53
+ tax_id_type?: 'ad_nrt' | 'ae_trn' | 'al_tin' | 'am_tin' | 'ao_tin' | 'ar_cuit' | 'at_vat' | 'au_abn' | 'au_arn' | 'ba_tin' | 'bb_tin' | 'be_vat' | 'bg_uic' | 'bg_vat' | 'bh_vat' | 'bo_tin' | 'br_cnpj' | 'br_cpf' | 'bs_tin' | 'by_tin' | 'ca_bn' | 'ca_gst_hst' | 'ca_pst_bc' | 'ca_pst_mb' | 'ca_pst_sk' | 'ca_qst' | 'cd_nif' | 'ch_uid' | 'ch_vat' | 'cl_tin' | 'cn_tin' | 'co_nit' | 'cr_tin' | 'cy_vat' | 'cz_vat' | 'de_stn' | 'de_vat' | 'dk_vat' | 'do_rcn' | 'ec_ruc' | 'ee_vat' | 'eg_tin' | 'es_cif' | 'es_vat' | 'eu_oss_vat' | 'fi_vat' | 'fr_vat' | 'gb_vat' | 'ge_vat' | 'gn_nif' | 'gr_vat' | 'hk_br' | 'hr_oib' | 'hr_vat' | 'hu_tin' | 'hu_vat' | 'id_npwp' | 'ie_vat' | 'il_vat' | 'in_gst' | 'is_vat' | 'it_vat' | 'jp_cn' | 'jp_rn' | 'jp_trn' | 'ke_pin' | 'kh_tin' | 'kr_brn' | 'kz_bin' | 'li_uid' | 'li_vat' | 'lt_vat' | 'lu_vat' | 'lv_vat' | 'ma_vat' | 'md_vat' | 'me_pib' | 'mk_vat' | 'mr_nif' | 'mt_vat' | 'mx_rfc' | 'my_frp' | 'my_itn' | 'my_sst' | 'ng_tin' | 'nl_vat' | 'no_vat' | 'no_voec' | 'np_pan' | 'nz_gst' | 'om_vat' | 'pe_ruc' | 'ph_tin' | 'pl_vat' | 'pt_vat' | 'ro_tin' | 'ro_vat' | 'rs_pib' | 'ru_inn' | 'ru_kpp' | 'sa_vat' | 'se_vat' | 'sg_gst' | 'sg_uen' | 'si_tin' | 'si_vat' | 'sk_vat' | 'sn_ninea' | 'sr_fin' | 'sv_nit' | 'th_vat' | 'tj_tin' | 'tr_tin' | 'tw_vat' | 'tz_vat' | 'ua_vat' | 'ug_tin' | 'us_ein' | 'uy_ruc' | 'uz_tin' | 'uz_vat' | 've_rif' | 'vn_tin' | 'xi_vat' | 'za_vat' | 'zm_tin' | 'zw_tin' | '';
54
+ };
55
+ export type BillingCredits = {
56
+ /**
57
+ * Generated unique identifier of the promotional code.
58
+ */
59
+ id?: string;
60
+ /**
61
+ * Date of the credit application. ISO 8601 date string in the UTC timezone.
62
+ */
63
+ date_created: string;
64
+ /**
65
+ * Promotional code used by the customer.
66
+ */
67
+ code: string;
68
+ /**
69
+ * Description of the promotional code.
70
+ */
71
+ description?: string;
72
+ /**
73
+ * List of product SKUs that the promotional code can be used on.
74
+ */
75
+ products?: Array<string>;
76
+ /**
77
+ * Type of the promotional code.
78
+ */
79
+ type: 'credit' | 'discount';
80
+ /**
81
+ * Value of the promotional code.
82
+ */
83
+ value: number;
84
+ /**
85
+ * Date of the billing cycle. An ISO 8601 date string in the UTC timezone.
86
+ */
87
+ billing_period: string;
88
+ /**
89
+ * Value of the promotional code.
90
+ */
91
+ value_remaining?: number;
92
+ };
93
+ export type ChartCreateInput = {
94
+ /**
95
+ * Values to be used in the chart encoded as a JSON string.
96
+ */
97
+ values: string;
98
+ /**
99
+ * Desired version range or channel for the chart.
100
+ */
101
+ version_channel: string;
102
+ /**
103
+ * Unique identifier of the chart deployment aka name of the helm release.
104
+ */
105
+ name: string;
106
+ /**
107
+ * Namespace of the chart deployment
108
+ */
109
+ namespace: string;
110
+ /**
111
+ * Name of the chart listing
112
+ */
113
+ chart: string;
114
+ };
115
+ export type Chart = {
116
+ /**
117
+ * Values to be used in the chart encoded as a JSON string.
118
+ */
119
+ values: string;
120
+ /**
121
+ * Desired version range or channel for the chart.
122
+ */
123
+ version_channel: string;
124
+ /**
125
+ * Unique identifier of the chart deployment aka name of the helm release.
126
+ */
127
+ name: string;
128
+ /**
129
+ * Namespace of the chart deployment
130
+ */
131
+ namespace: string;
132
+ /**
133
+ * Name of the chart listing
134
+ */
135
+ chart: string;
136
+ /**
137
+ * Status of the chart deployment.
138
+ */
139
+ status: 'InstallSucceeded' | 'InstallFailed' | 'UpgradeSucceeded' | 'UpgradeFailed' | 'TestSucceeded' | 'TestFailed' | 'RollbackSucceeded' | 'RollbackFailed' | 'UninstallSucceeded' | 'UninstallFailed' | 'ArtifactFailed' | 'DependencyNotReady' | 'Progressing' | 'SourceNotReady';
140
+ /**
141
+ * Current version of the chart deployment.
142
+ */
143
+ version_current: string;
144
+ /**
145
+ * Creation date and time of the chart deployment.
146
+ */
147
+ created_at: string;
148
+ /**
149
+ * Last update date and time of the chart deployment.
150
+ */
151
+ updated_at: string;
152
+ /**
153
+ * Indicates if the chart deployment is ready to be used.
154
+ */
155
+ ready: boolean;
156
+ };
157
+ export type ChartUpdateInput = {
158
+ /**
159
+ * Values to be used in the chart encoded as a JSON string.
160
+ */
161
+ values: string;
162
+ /**
163
+ * Desired version range or channel for the chart.
164
+ */
165
+ version_channel: string;
166
+ };
1
167
  export type ClusterCreateInput = {
2
168
  /**
3
169
  * Name of the cluster.
@@ -144,10 +310,10 @@ export type FleetCreateInput = {
144
310
  };
145
311
  hetzner?: {
146
312
  enabled?: boolean;
147
- apiKey?: string;
148
- } | {
149
- apiKey?: string;
150
- enabled?: boolean;
313
+ /**
314
+ * Hetzner Cloud API key with read / write access
315
+ */
316
+ apiKey: string;
151
317
  };
152
318
  aws?: {
153
319
  enabled?: boolean;
@@ -160,10 +326,6 @@ export type FleetCreateInput = {
160
326
  * Unique identifier of the kubernetes fleet.
161
327
  */
162
328
  id: string;
163
- /**
164
- * Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
165
- */
166
- type: 'managed' | 'connected';
167
329
  };
168
330
  export type Fleet = {
169
331
  /**
@@ -184,10 +346,10 @@ export type Fleet = {
184
346
  };
185
347
  hetzner?: {
186
348
  enabled?: boolean;
187
- apiKey?: string;
188
- } | {
189
- apiKey?: string;
190
- enabled?: boolean;
349
+ /**
350
+ * Hetzner Cloud API key with read / write access
351
+ */
352
+ apiKey: string;
191
353
  };
192
354
  aws?: {
193
355
  enabled?: boolean;
@@ -200,10 +362,6 @@ export type Fleet = {
200
362
  * Unique identifier of the kubernetes fleet.
201
363
  */
202
364
  id: string;
203
- /**
204
- * Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
205
- */
206
- type: 'managed' | 'connected';
207
365
  };
208
366
  export type FleetUpdateInput = {
209
367
  /**
@@ -224,10 +382,10 @@ export type FleetUpdateInput = {
224
382
  };
225
383
  hetzner?: {
226
384
  enabled?: boolean;
227
- apiKey?: string;
228
- } | {
229
- apiKey?: string;
230
- enabled?: boolean;
385
+ /**
386
+ * Hetzner Cloud API key with read / write access
387
+ */
388
+ apiKey: string;
231
389
  };
232
390
  aws?: {
233
391
  enabled?: boolean;
@@ -237,178 +395,6 @@ export type FleetUpdateInput = {
237
395
  controllerRoleArn: string;
238
396
  };
239
397
  };
240
- export type InfrastructureFilter = {
241
- /**
242
- * Version of the infrastructure filter definition. Currently only version 1 is supported.
243
- */
244
- version?: 1;
245
- /**
246
- * Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
247
- */
248
- provider?: Array<string>;
249
- /**
250
- * Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
251
- */
252
- region?: Array<string>;
253
- /**
254
- * Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
255
- */
256
- sub_region?: Array<string>;
257
- /**
258
- * Limits selection of cloud regions to this list of canonical provider regions
259
- */
260
- csp_region?: Array<string>;
261
- /**
262
- * Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
263
- */
264
- instance_type?: Array<string>;
265
- /**
266
- * List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
267
- */
268
- accelerator_name?: Array<string>;
269
- /**
270
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
271
- */
272
- accelerator_manufacturer?: Array<string>;
273
- /**
274
- * Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
275
- */
276
- accelerator_count_min?: number;
277
- /**
278
- * Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
279
- */
280
- accelerator_count_max?: number;
281
- /**
282
- * Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
283
- */
284
- accelerator_memory_min?: number;
285
- /**
286
- * Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
287
- */
288
- accelerator_memory_max?: number;
289
- /**
290
- * Minimum amount of RAM in gibibytes (GiB)
291
- */
292
- memory_min?: number;
293
- /**
294
- * Maximum amount of RAM in gibibytes (GiB)
295
- */
296
- memory_max?: number;
297
- /**
298
- * Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
299
- */
300
- vcpu_min?: number;
301
- /**
302
- * Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
303
- */
304
- vcpu_max?: number;
305
- /**
306
- * Minimum total storage in GiB (attached and local)
307
- */
308
- storage_total_min?: number;
309
- /**
310
- * Maximum total storage in GiB (attached and local)
311
- */
312
- storage_total_max?: number;
313
- /**
314
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
315
- */
316
- storage_local_min?: number;
317
- /**
318
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
319
- */
320
- storage_local_max?: number;
321
- /**
322
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
323
- */
324
- price_min?: number;
325
- /**
326
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
327
- */
328
- price_max?: number;
329
- };
330
- export type InfrastructureInstance = {
331
- /**
332
- * Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.
333
- */
334
- sku: string;
335
- /**
336
- * Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
337
- */
338
- provider: string;
339
- /**
340
- * Normalized region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
341
- */
342
- region: string;
343
- /**
344
- * Normalized sub-region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
345
- */
346
- sub_region: string;
347
- /**
348
- * Region as defined by the cloud service provider
349
- */
350
- csp_region: string;
351
- /**
352
- * Availability zone as defined by the cloud service provider
353
- */
354
- csp_zone: string;
355
- /**
356
- * Instance / VM type as defined by the cloud service provider
357
- */
358
- instance_type: string;
359
- /**
360
- * Instance CPU architecture
361
- */
362
- architecture: string;
363
- /**
364
- * Instance operating system
365
- */
366
- os: string;
367
- /**
368
- * CPU count as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
369
- */
370
- vcpu: number;
371
- /**
372
- * Total amount of RAM in gibibytes (GiB)
373
- */
374
- memory: number;
375
- /**
376
- * Volume of directly attached, block-device local storage in gibibytes (GiB)
377
- */
378
- local_storage: number;
379
- /**
380
- * Normalized model name of accelerator. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
381
- */
382
- accelerator_name?: string;
383
- /**
384
- * Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
385
- */
386
- accelerator_manufacturer?: string;
387
- /**
388
- * Number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
389
- */
390
- accelerator_count?: number;
391
- /**
392
- * Ammount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
393
- */
394
- accelerator_memory?: number;
395
- /**
396
- * Maximum number of pods that can be run on this instance type.
397
- */
398
- pods_capacity?: number;
399
- /**
400
- * Capacity type of the instance. E.g. `on-demand`, `spot`.
401
- */
402
- capacity_type?: string;
403
- /**
404
- * Price of running the inctance per hour in USD as defined by the cloud service provider
405
- */
406
- price: number;
407
- /**
408
- * Whether this instance type is available.
409
- */
410
- available?: boolean;
411
- };
412
398
  export type Invite = {
413
399
  /**
414
400
  * Unique identifier of the invitation.
@@ -663,35 +649,52 @@ export type Invoice = {
663
649
  } | string>;
664
650
  }>;
665
651
  };
666
- export type OrganizationContactInfo = {
652
+ export type MarketplaceListing = {
667
653
  /**
668
- * Street address, P.O. box, c/o
654
+ * Id of the chart listing
669
655
  */
670
- address1?: string;
656
+ id: string;
671
657
  /**
672
- * Apartment, suite, unit, building, floor, etc.
658
+ * Name of the chart listing
673
659
  */
674
- address2?: string;
660
+ name: string;
675
661
  /**
676
- * Postal code as a string.
662
+ * Author of the chart listing
677
663
  */
678
- postalCode?: string;
664
+ developer: string;
679
665
  /**
680
- * City or town name.
666
+ * Short description of the chart listing
681
667
  */
682
- city?: string;
668
+ description: string;
683
669
  /**
684
- * State, province, or region name.
670
+ * Logo of the chart listing
685
671
  */
686
- state?: string;
672
+ logoUrl: string;
687
673
  /**
688
- * Country as a ISO 3166-1 alpha-2 country code.
674
+ * Long description of the chart listing
689
675
  */
690
- country?: string;
676
+ longDescription: string;
691
677
  /**
692
- * Phone number as a string.
678
+ * Tags of the chart
693
679
  */
694
- phone?: string;
680
+ categories: Array<string>;
681
+ version_channels: Array<string>;
682
+ value_schemas: Array<{
683
+ /**
684
+ * Version of the chart.
685
+ */
686
+ version: string;
687
+ /**
688
+ * Schema of the chart values. JSON Schema as string
689
+ */
690
+ schema: string;
691
+ /**
692
+ * Schema of the chart values
693
+ */
694
+ placeholder: string;
695
+ }>;
696
+ };
697
+ export type OrganizationCreateInput = {
695
698
  /**
696
699
  * Email address used for billing as a string.
697
700
  */
@@ -704,116 +707,24 @@ export type OrganizationContactInfo = {
704
707
  * Last name of the billing contact person.
705
708
  */
706
709
  last_name: string;
707
- };
708
- export type OrganizationCreateInput = {
709
710
  /**
710
711
  * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
711
712
  */
712
- name: string;
713
- /**
714
- * Organization contact information and billing address.
715
- */
716
- contactInfo: {
717
- /**
718
- * Street address, P.O. box, c/o
719
- */
720
- address1?: string;
721
- /**
722
- * Apartment, suite, unit, building, floor, etc.
723
- */
724
- address2?: string;
725
- /**
726
- * Postal code as a string.
727
- */
728
- postalCode?: string;
729
- /**
730
- * City or town name.
731
- */
732
- city?: string;
733
- /**
734
- * State, province, or region name.
735
- */
736
- state?: string;
737
- /**
738
- * Country as a ISO 3166-1 alpha-2 country code.
739
- */
740
- country?: string;
741
- /**
742
- * Phone number as a string.
743
- */
744
- phone?: string;
745
- /**
746
- * Email address used for billing as a string.
747
- */
748
- email: string;
749
- /**
750
- * First name of the billing contact person.
751
- */
752
- first_name: string;
753
- /**
754
- * Last name of the billing contact person.
755
- */
756
- last_name: string;
757
- };
713
+ company_name: string;
758
714
  /**
759
715
  * Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
760
716
  */
761
717
  password: string;
762
718
  };
763
719
  export type Organization = {
764
- /**
765
- * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
766
- */
767
- name: string;
768
- /**
769
- * Organization contact information and billing address.
770
- */
771
- contactInfo: {
772
- /**
773
- * Street address, P.O. box, c/o
774
- */
775
- address1?: string;
776
- /**
777
- * Apartment, suite, unit, building, floor, etc.
778
- */
779
- address2?: string;
780
- /**
781
- * Postal code as a string.
782
- */
783
- postalCode?: string;
784
- /**
785
- * City or town name.
786
- */
787
- city?: string;
788
- /**
789
- * State, province, or region name.
790
- */
791
- state?: string;
792
- /**
793
- * Country as a ISO 3166-1 alpha-2 country code.
794
- */
795
- country?: string;
796
- /**
797
- * Phone number as a string.
798
- */
799
- phone?: string;
800
- /**
801
- * Email address used for billing as a string.
802
- */
803
- email: string;
804
- /**
805
- * First name of the billing contact person.
806
- */
807
- first_name: string;
808
- /**
809
- * Last name of the billing contact person.
810
- */
811
- last_name: string;
812
- };
813
720
  /**
814
721
  * Unique identifier of the organization. UUID v4 string in canonical form
815
722
  */
816
723
  id: string;
724
+ /**
725
+ * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
726
+ */
727
+ name?: string;
817
728
  /**
818
729
  * Creation date of the organization. ISO 8601 date string in UTC timezone
819
730
  */
@@ -842,10 +753,6 @@ export type Organization = {
842
753
  * Maximum number of fleets that can be created per cluster.
843
754
  */
844
755
  fleets_max: number;
845
- /**
846
- * Maximum number of CPU cores per managed fleet.
847
- */
848
- managed_fleets_cpu_max: number;
849
756
  /**
850
757
  * List of Cloudfleet cluster tiers available for the organization.
851
758
  */
@@ -868,66 +775,11 @@ export type Organization = {
868
775
  label: string;
869
776
  }>;
870
777
  };
871
- /**
872
- * List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.
873
- */
874
- pending_actions: Array<'signup-billing-address' | 'signup-payment-method' | 'signup-invite-team' | 'signup-create-cluster'>;
875
778
  /**
876
779
  * Status of the organization. Can be `active` or `closed`, or `suspended`.
877
780
  */
878
781
  status: 'active' | 'closed' | 'suspended';
879
782
  };
880
- export type OrganizationUpdateInput = {
881
- /**
882
- * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
883
- */
884
- name?: string;
885
- /**
886
- * Organization contact information and billing address.
887
- */
888
- contactInfo: {
889
- /**
890
- * Street address, P.O. box, c/o
891
- */
892
- address1?: string;
893
- /**
894
- * Apartment, suite, unit, building, floor, etc.
895
- */
896
- address2?: string;
897
- /**
898
- * Postal code as a string.
899
- */
900
- postalCode?: string;
901
- /**
902
- * City or town name.
903
- */
904
- city?: string;
905
- /**
906
- * State, province, or region name.
907
- */
908
- state?: string;
909
- /**
910
- * Country as a ISO 3166-1 alpha-2 country code.
911
- */
912
- country?: string;
913
- /**
914
- * Phone number as a string.
915
- */
916
- phone?: string;
917
- /**
918
- * Email address used for billing as a string.
919
- */
920
- email: string;
921
- /**
922
- * First name of the billing contact person.
923
- */
924
- first_name: string;
925
- /**
926
- * Last name of the billing contact person.
927
- */
928
- last_name: string;
929
- };
930
- };
931
783
  export type PaymentMethod = {
932
784
  /**
933
785
  * Unique identifier of the organization. UUID v4 string in canonical form.
@@ -1001,18 +853,22 @@ export type TokenUpdateInput = {
1001
853
  role?: 'Administrator' | 'User';
1002
854
  };
1003
855
  export type Usage = {
856
+ /**
857
+ * Hour of the usage
858
+ */
859
+ hour?: string;
1004
860
  /**
1005
861
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
1006
862
  */
1007
863
  cluster_id: string;
1008
864
  /**
1009
- * Hour of the usage
865
+ * Tier of the cluster.
1010
866
  */
1011
- hour?: string;
867
+ cluster_tier: 'basic' | 'pro' | '';
1012
868
  /**
1013
- * Tier of the cluster.
869
+ * The product the usage is associated with
1014
870
  */
1015
- cluster_tier: '';
871
+ product: 'cfke_controlplane' | 'cfke_connected_nodes' | 'infra_compute' | 'infra_storage' | 'infra_loadbalancing' | 'infra_traffic' | 'cfcr_storage';
1016
872
  /**
1017
873
  * Name of the Kubernetes node
1018
874
  */
@@ -1023,12 +879,8 @@ export type Usage = {
1023
879
  sku: string;
1024
880
  cpu: number | '';
1025
881
  price: number | '';
1026
- volume: number | '';
882
+ value: number | '';
1027
883
  total: number | '';
1028
- /**
1029
- * Type of usage.
1030
- */
1031
- usage_type: 'managed-compute' | 'control-plane-nodes' | 'control-plane';
1032
884
  };
1033
885
  export type UserCreateInput = {
1034
886
  /**
@@ -1048,7 +900,7 @@ export type UserCreateInput = {
1048
900
  */
1049
901
  code: string;
1050
902
  /**
1051
- * User password. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
903
+ * User password. Must be at least 8 characters long.
1052
904
  */
1053
905
  password: string;
1054
906
  /**
@@ -1089,16 +941,6 @@ export type User = {
1089
941
  * Creation date of the user. ISO 8601 date string in UTC timezone
1090
942
  */
1091
943
  date_created: string;
1092
- cluster_permissions?: Array<{
1093
- /**
1094
- * Unique identifier of the cluster. UUID v4 string in canonical form
1095
- */
1096
- cluster_id: string;
1097
- /**
1098
- * User permissions to access the cluster. Can be `readwrite` or `readonly`.
1099
- */
1100
- permissions: 'readwrite' | 'readonly';
1101
- }>;
1102
944
  };
1103
945
  export type UserUpdateInput = {
1104
946
  /**
@@ -1184,62 +1026,238 @@ export type GetPaymentMethodSecretResponses = {
1184
1026
  * 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.
1185
1027
  *
1186
1028
  */
1187
- 200: {
1029
+ 200: {
1030
+ /**
1031
+ * The client secret.
1032
+ */
1033
+ id?: string;
1034
+ };
1035
+ };
1036
+ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
1037
+ export type ListInvoicesData = {
1038
+ body?: never;
1039
+ path?: never;
1040
+ query: {
1041
+ /**
1042
+ * Start date for the usage. Date of oldest data point to retrieve.
1043
+ */
1044
+ start_date: string;
1045
+ /**
1046
+ * End date for the usage. Date of newest data point to retrieve.
1047
+ */
1048
+ end_date: string;
1049
+ };
1050
+ url: '/billing/invoices';
1051
+ };
1052
+ export type ListInvoicesErrors = {
1053
+ /**
1054
+ * Not authenticated
1055
+ */
1056
+ 401: unknown;
1057
+ };
1058
+ export type ListInvoicesResponses = {
1059
+ /**
1060
+ * An array of usage records.
1061
+ */
1062
+ 200: Array<Invoice>;
1063
+ };
1064
+ export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1065
+ export type GetInvoiceData = {
1066
+ body?: never;
1067
+ path: {
1068
+ /**
1069
+ * Unique invoice identifier. UUID v4 string in canonical form
1070
+ */
1071
+ id: string;
1072
+ };
1073
+ query?: never;
1074
+ url: '/billing/invoices/{id}';
1075
+ };
1076
+ export type GetInvoiceResponses = {
1077
+ /**
1078
+ * Returns a single Invoice HTML representation under `html` property.
1079
+ */
1080
+ 200: {
1081
+ html?: string;
1082
+ };
1083
+ };
1084
+ export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1085
+ export type GetContactData = {
1086
+ body?: never;
1087
+ path?: never;
1088
+ query?: never;
1089
+ url: '/billing/contact';
1090
+ };
1091
+ export type GetContactResponses = {
1092
+ /**
1093
+ * Returns a single object containing organization contact and billing address details.
1094
+ */
1095
+ 200: BillingContact;
1096
+ };
1097
+ export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
1098
+ export type UpdateContactData = {
1099
+ body: BillingContact;
1100
+ path?: never;
1101
+ query?: never;
1102
+ url: '/billing/contact';
1103
+ };
1104
+ export type UpdateContactResponses = {
1105
+ /**
1106
+ * Successfully updated. Returns updated organization details.
1107
+ */
1108
+ 200: BillingContact;
1109
+ };
1110
+ export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
1111
+ export type GetCreditsData = {
1112
+ body?: never;
1113
+ path?: never;
1114
+ query?: never;
1115
+ url: '/billing/credits';
1116
+ };
1117
+ export type GetCreditsErrors = {
1118
+ /**
1119
+ * Not authenticated
1120
+ */
1121
+ 401: unknown;
1122
+ };
1123
+ export type GetCreditsResponses = {
1124
+ /**
1125
+ * An array of the applied promotional credits records.
1126
+ */
1127
+ 200: Array<BillingCredits>;
1128
+ };
1129
+ export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
1130
+ export type RedeemCreditsData = {
1131
+ body: {
1132
+ /**
1133
+ * Promotional code to redeem
1134
+ */
1135
+ code?: string;
1136
+ };
1137
+ path?: never;
1138
+ query?: never;
1139
+ url: '/billing/credits';
1140
+ };
1141
+ export type RedeemCreditsErrors = {
1142
+ /**
1143
+ * Not authenticated
1144
+ */
1145
+ 401: unknown;
1146
+ };
1147
+ export type RedeemCreditsResponses = {
1148
+ /**
1149
+ * Successfully created a new organization.
1150
+ */
1151
+ 200: unknown;
1152
+ };
1153
+ export type ListChartsData = {
1154
+ body?: never;
1155
+ path: {
1156
+ /**
1157
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1158
+ */
1159
+ cluster_id: string;
1160
+ };
1161
+ query?: never;
1162
+ url: '/clusters/{cluster_id}/charts';
1163
+ };
1164
+ export type ListChartsErrors = {
1165
+ /**
1166
+ * Not authenticated
1167
+ */
1168
+ 401: unknown;
1169
+ };
1170
+ export type ListChartsResponses = {
1171
+ /**
1172
+ * An array of charts
1173
+ */
1174
+ 200: Array<Chart>;
1175
+ };
1176
+ export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
1177
+ export type CreateChartData = {
1178
+ body: ChartCreateInput;
1179
+ path: {
1188
1180
  /**
1189
- * The client secret.
1181
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1190
1182
  */
1191
- id?: string;
1183
+ cluster_id: string;
1192
1184
  };
1185
+ query?: never;
1186
+ url: '/clusters/{cluster_id}/charts';
1193
1187
  };
1194
- export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
1195
- export type ListInvoicesData = {
1188
+ export type CreateChartResponses = {
1189
+ /**
1190
+ * Successfully created. Returns created Chart ID.
1191
+ */
1192
+ 200: string;
1193
+ };
1194
+ export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
1195
+ export type DeleteChartData = {
1196
1196
  body?: never;
1197
- path?: never;
1198
- query: {
1197
+ path: {
1199
1198
  /**
1200
- * Start date for the usage. Date of oldest data point to retrieve.
1199
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1201
1200
  */
1202
- start_date: string;
1201
+ cluster_id: string;
1203
1202
  /**
1204
- * End date for the usage. Date of newest data point to retrieve.
1203
+ * Chart deployment name as the unique identifier of the chart.
1205
1204
  */
1206
- end_date: string;
1205
+ chart_name: string;
1207
1206
  };
1208
- url: '/billing/invoices';
1207
+ query?: never;
1208
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1209
1209
  };
1210
- export type ListInvoicesErrors = {
1210
+ export type DeleteChartResponses = {
1211
1211
  /**
1212
- * Not authenticated
1212
+ * Successfully deleted.
1213
1213
  */
1214
- 401: unknown;
1214
+ 200: string;
1215
1215
  };
1216
- export type ListInvoicesResponses = {
1216
+ export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
1217
+ export type GetChartData = {
1218
+ body?: never;
1219
+ path: {
1220
+ /**
1221
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1222
+ */
1223
+ cluster_id: string;
1224
+ /**
1225
+ * Chart deployment name as the unique identifier of the chart.
1226
+ */
1227
+ chart_name: string;
1228
+ };
1229
+ query?: never;
1230
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1231
+ };
1232
+ export type GetChartResponses = {
1217
1233
  /**
1218
- * An array of usage records.
1234
+ * Returns a single object containing chart details.
1219
1235
  */
1220
- 200: Array<Invoice>;
1236
+ 200: Chart;
1221
1237
  };
1222
- export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1223
- export type GetInvoiceData = {
1224
- body?: never;
1238
+ export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
1239
+ export type UpdateChartData = {
1240
+ body: ChartUpdateInput;
1225
1241
  path: {
1226
1242
  /**
1227
- * Unique invoice identifier. UUID v4 string in canonical form
1243
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1228
1244
  */
1229
- id: string;
1245
+ cluster_id: string;
1246
+ /**
1247
+ * Chart deployment name as the unique identifier of the chart.
1248
+ */
1249
+ chart_name: string;
1230
1250
  };
1231
1251
  query?: never;
1232
- url: '/billing/invoices/{id}';
1252
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1233
1253
  };
1234
- export type GetInvoiceResponses = {
1254
+ export type UpdateChartResponses = {
1235
1255
  /**
1236
- * Returns a single Invoice HTML representation under `html` property.
1256
+ * Successfully updated.
1237
1257
  */
1238
- 200: {
1239
- html?: string;
1240
- };
1258
+ 200: string;
1241
1259
  };
1242
- export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1260
+ export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
1243
1261
  export type ListFleetsData = {
1244
1262
  body?: never;
1245
1263
  path: {
@@ -1502,252 +1520,6 @@ export type GetJoinInformationResponses = {
1502
1520
  200: Cluster;
1503
1521
  };
1504
1522
  export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
1505
- export type GetInfrastructureData = {
1506
- body?: never;
1507
- path?: never;
1508
- query?: {
1509
- /**
1510
- * Version of the task definition. Currently only version 1 is supported.
1511
- */
1512
- version?: 1;
1513
- /**
1514
- * Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
1515
- */
1516
- provider?: Array<string>;
1517
- /**
1518
- * Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
1519
- */
1520
- region?: Array<string>;
1521
- /**
1522
- * Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
1523
- */
1524
- sub_region?: Array<string>;
1525
- /**
1526
- * Limits selection of cloud regions to this list of canonical provider regions
1527
- */
1528
- csp_region?: Array<string>;
1529
- /**
1530
- * Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
1531
- */
1532
- instance_type?: Array<string>;
1533
- /**
1534
- * List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
1535
- */
1536
- accelerator_name?: Array<string>;
1537
- /**
1538
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
1539
- */
1540
- accelerator_manufacturer?: Array<string>;
1541
- /**
1542
- * Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
1543
- */
1544
- accelerator_count_min?: number;
1545
- /**
1546
- * Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
1547
- */
1548
- accelerator_count_max?: number;
1549
- /**
1550
- * Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
1551
- */
1552
- accelerator_memory_min?: number;
1553
- /**
1554
- * Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
1555
- */
1556
- accelerator_memory_max?: number;
1557
- /**
1558
- * Minimum amount of RAM in gibibytes (GiB)
1559
- */
1560
- memory_min?: number;
1561
- /**
1562
- * Maximum amount of RAM in gibibytes (GiB)
1563
- */
1564
- memory_max?: number;
1565
- /**
1566
- * Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
1567
- */
1568
- vcpu_min?: number;
1569
- /**
1570
- * Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
1571
- */
1572
- vcpu_max?: number;
1573
- /**
1574
- * Minimum total storage in GiB (attached and local)
1575
- */
1576
- storage_total_min?: number;
1577
- /**
1578
- * Maximum total storage in GiB (attached and local)
1579
- */
1580
- storage_total_max?: number;
1581
- /**
1582
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
1583
- */
1584
- storage_local_min?: number;
1585
- /**
1586
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
1587
- */
1588
- storage_local_max?: number;
1589
- /**
1590
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1591
- */
1592
- price_min?: number;
1593
- /**
1594
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1595
- */
1596
- price_max?: number;
1597
- };
1598
- url: '/infrastructure';
1599
- };
1600
- export type GetInfrastructureErrors = {
1601
- /**
1602
- * Returns a validation error if any of the search parameters in the request are invalid
1603
- */
1604
- 400: Blob | File;
1605
- };
1606
- export type GetInfrastructureError = GetInfrastructureErrors[keyof GetInfrastructureErrors];
1607
- export type GetInfrastructureResponses = {
1608
- /**
1609
- * An array of instances returned by the search
1610
- */
1611
- 200: Array<InfrastructureInstance>;
1612
- };
1613
- export type GetInfrastructureResponse = GetInfrastructureResponses[keyof GetInfrastructureResponses];
1614
- export type GetFacetsData = {
1615
- body?: never;
1616
- path?: never;
1617
- query?: never;
1618
- url: '/infrastructure/facets';
1619
- };
1620
- export type GetFacetsResponses = {
1621
- /**
1622
- * Calculates search facets of the infrastructure catalog
1623
- */
1624
- 200: Array<{
1625
- /**
1626
- * Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
1627
- */
1628
- provider?: Array<string>;
1629
- /**
1630
- * Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
1631
- */
1632
- region?: Array<string>;
1633
- /**
1634
- * Limits selection of cloud sub-regions to this list of Cloudfleet sub-regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
1635
- */
1636
- sub_region?: Array<string>;
1637
- /**
1638
- * Limits selection of cloud regions to this list of canonical provider regions
1639
- */
1640
- csp_region?: Array<string>;
1641
- /**
1642
- * Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
1643
- */
1644
- vcpu_min?: number;
1645
- /**
1646
- * Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
1647
- */
1648
- vcpu_max?: number;
1649
- /**
1650
- * Minimum amount of RAM in gibibytes (GiB)
1651
- */
1652
- memory_min?: number;
1653
- /**
1654
- * Maximum amount of RAM in gibibytes (GiB)
1655
- */
1656
- memory_max?: number;
1657
- /**
1658
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
1659
- */
1660
- storage_local_min?: number;
1661
- /**
1662
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
1663
- */
1664
- storage_local_max?: number;
1665
- /**
1666
- * List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
1667
- */
1668
- accelerator_name?: Array<string>;
1669
- /**
1670
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
1671
- */
1672
- accelerator_manufacturer?: Array<string>;
1673
- /**
1674
- * Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
1675
- */
1676
- accelerator_count_min?: number;
1677
- /**
1678
- * Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
1679
- */
1680
- accelerator_count_max?: number;
1681
- /**
1682
- * Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
1683
- */
1684
- accelerator_memory_min?: number;
1685
- /**
1686
- * Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
1687
- */
1688
- accelerator_memory_max?: number;
1689
- /**
1690
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1691
- */
1692
- price_min?: number;
1693
- /**
1694
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1695
- */
1696
- price_max?: number;
1697
- /**
1698
- * Structured array of regions and sub-regions
1699
- */
1700
- regions_struct?: Array<{
1701
- /**
1702
- * Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
1703
- */
1704
- region?: string;
1705
- sub_region?: Array<string>;
1706
- }>;
1707
- /**
1708
- * Structured array of regions and sub-regions
1709
- */
1710
- accelerators_struct?: Array<{
1711
- /**
1712
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
1713
- */
1714
- accelerator_manufacturer?: string;
1715
- accelerator_name?: Array<string>;
1716
- }>;
1717
- /**
1718
- * Total number of instances in the catalog
1719
- */
1720
- count_total?: number;
1721
- /**
1722
- * Total number of instances in the catalog with at least 1 accelerator
1723
- */
1724
- count_accelerators?: number;
1725
- /**
1726
- * Total number of unique instances types in the catalog
1727
- */
1728
- count_instance_types?: number;
1729
- /**
1730
- * Total number of unique instances types in the catalog with at least 1 accelerator
1731
- */
1732
- count_accelerators_instance_types?: number;
1733
- }>;
1734
- };
1735
- export type GetFacetsResponse = GetFacetsResponses[keyof GetFacetsResponses];
1736
- export type GetRegionsData = {
1737
- body?: never;
1738
- path?: never;
1739
- query?: never;
1740
- url: '/infrastructure/regions';
1741
- };
1742
- export type GetRegionsResponses = {
1743
- /**
1744
- * Available Cloudfleet regions and Kubernetes versions.
1745
- */
1746
- 200: {
1747
- [key: string]: unknown;
1748
- };
1749
- };
1750
- export type GetRegionsResponse = GetRegionsResponses[keyof GetRegionsResponses];
1751
1523
  export type ListInvitesData = {
1752
1524
  body?: never;
1753
1525
  path?: never;
@@ -1820,6 +1592,43 @@ export type DeleteInviteResponses = {
1820
1592
  */
1821
1593
  200: unknown;
1822
1594
  };
1595
+ export type ListMarketplaceChartsData = {
1596
+ body?: never;
1597
+ path?: never;
1598
+ query?: never;
1599
+ url: '/marketplace';
1600
+ };
1601
+ export type ListMarketplaceChartsErrors = {
1602
+ /**
1603
+ * Not authenticated
1604
+ */
1605
+ 401: unknown;
1606
+ };
1607
+ export type ListMarketplaceChartsResponses = {
1608
+ /**
1609
+ * An array of chart listings in the marketplace.
1610
+ */
1611
+ 200: Array<MarketplaceListing>;
1612
+ };
1613
+ export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
1614
+ export type GetMarketplaceChartData = {
1615
+ body?: never;
1616
+ path: {
1617
+ /**
1618
+ * Unique identifier of the chart listing in the marketplace.
1619
+ */
1620
+ listing_id: string;
1621
+ };
1622
+ query?: never;
1623
+ url: '/marketplace/{listing_id}';
1624
+ };
1625
+ export type GetMarketplaceChartResponses = {
1626
+ /**
1627
+ * Returns an object containing the chart listing details.
1628
+ */
1629
+ 200: MarketplaceListing;
1630
+ };
1631
+ export type GetMarketplaceChartResponse = GetMarketplaceChartResponses[keyof GetMarketplaceChartResponses];
1823
1632
  export type GetOrganizationData = {
1824
1633
  body?: never;
1825
1634
  path?: never;
@@ -1841,24 +1650,10 @@ export type CreateOrganizationData = {
1841
1650
  };
1842
1651
  export type CreateOrganizationResponses = {
1843
1652
  /**
1844
- * Successfully created a new organization. Returns organization details.
1845
- */
1846
- 200: Organization;
1847
- };
1848
- export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
1849
- export type UpdateOrganizationData = {
1850
- body: OrganizationUpdateInput;
1851
- path?: never;
1852
- query?: never;
1853
- url: '/organization';
1854
- };
1855
- export type UpdateOrganizationResponses = {
1856
- /**
1857
- * Successfully updated. Returns updated organization details.
1653
+ * Successfully created a new organization.
1858
1654
  */
1859
- 200: Organization;
1655
+ 200: unknown;
1860
1656
  };
1861
- export type UpdateOrganizationResponse = UpdateOrganizationResponses[keyof UpdateOrganizationResponses];
1862
1657
  export type ListTokensData = {
1863
1658
  body?: never;
1864
1659
  path?: never;
@@ -2115,53 +1910,7 @@ export type UpdateUserResponses = {
2115
1910
  200: User;
2116
1911
  };
2117
1912
  export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
2118
- export type DeleteClusterPermissionsData = {
2119
- body?: never;
2120
- path: {
2121
- /**
2122
- * Unique user identifier. UUID v4 string in canonical form
2123
- */
2124
- user_id: string;
2125
- /**
2126
- * Unique cluster identifier. UUID v4 string in canonical form
2127
- */
2128
- cluster_id: string;
2129
- };
2130
- query?: never;
2131
- url: '/users/{user_id}/clusters/{cluster_id}';
2132
- };
2133
- export type DeleteClusterPermissionsResponses = {
2134
- /**
2135
- * Successfully removed user from the cluster. Returns updated user details.
2136
- */
2137
- 200: User;
2138
- };
2139
- export type DeleteClusterPermissionsResponse = DeleteClusterPermissionsResponses[keyof DeleteClusterPermissionsResponses];
2140
- export type SetClusterPermissionsData = {
2141
- body: {
2142
- /**
2143
- * Level of permissions for the user to access the cluster
2144
- */
2145
- permissions?: 'readwrite' | 'readonly';
2146
- };
2147
- path: {
2148
- /**
2149
- * Unique user identifier. UUID v4 string in canonical form
2150
- */
2151
- user_id: string;
2152
- /**
2153
- * Unique cluster identifier. UUID v4 string in canonical form
2154
- */
2155
- cluster_id: string;
2156
- };
2157
- query?: never;
2158
- url: '/users/{user_id}/clusters/{cluster_id}';
2159
- };
2160
- export type SetClusterPermissionsResponses = {
2161
- /**
2162
- * Successfully created. Returns created user details.
2163
- */
2164
- 200: User;
1913
+ export type ClientOptions = {
1914
+ baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
2165
1915
  };
2166
- export type SetClusterPermissionsResponse = SetClusterPermissionsResponses[keyof SetClusterPermissionsResponses];
2167
1916
  //# sourceMappingURL=types.gen.d.ts.map