twc-rs 0.3.1

Fast single-binary CLI and interactive TUI dashboard for Timeweb Cloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
// SPDX-FileCopyrightText: 2026 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

use std::fmt;

use rust_i18n::t;
use tabled::Tabled;
use timeweb_rs::{
    apis::{configuration::Configuration, kubernetes_api},
    models as k8s_models
};

use crate::{error::TwcError, output::OutputFormat};

/// Formats an i32 value as a string.
fn fmt_i32(v: i32) -> String {
    v.to_string()
}

/// Formats an f64 value as a string.
fn fmt_f64(v: f64) -> String {
    v.to_string()
}

/// Compact row for the cluster list table.
#[derive(Tabled)]
struct ClusterRow {
    #[tabled(rename = "ID")]
    id:             i32,
    #[tabled(rename = "Name")]
    name:           String,
    #[tabled(rename = "Status")]
    status:         String,
    #[tabled(rename = "Version")]
    k8s_version:    String,
    #[tabled(rename = "Driver")]
    network_driver: String,
    #[tabled(rename = "Created")]
    created_at:     String
}

impl fmt::Display for ClusterRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {} {}",
            self.id,
            self.name,
            self.status,
            self.k8s_version,
            self.network_driver,
            self.created_at
        )
    }
}

/// Compact row for the node group table.
#[derive(Tabled)]
struct NodeGroupRow {
    #[tabled(rename = "ID")]
    id:         i32,
    #[tabled(rename = "Name")]
    name:       String,
    #[tabled(rename = "Node Count")]
    node_count: i32,
    #[tabled(rename = "Preset")]
    preset_id:  i32,
    #[tabled(rename = "Created")]
    created_at: String
}

impl fmt::Display for NodeGroupRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {}",
            self.id, self.name, self.node_count, self.preset_id, self.created_at
        )
    }
}

/// Compact row for the node table.
#[derive(Tabled)]
struct NodeRow {
    #[tabled(rename = "ID")]
    id:      i32,
    #[tabled(rename = "Type")]
    type_:   String,
    #[tabled(rename = "Status")]
    status:  String,
    #[tabled(rename = "CPU")]
    cpu:     i32,
    #[tabled(rename = "RAM (MB)")]
    ram:     i32,
    #[tabled(rename = "Disk (GB)")]
    disk:    i32,
    #[tabled(rename = "IP")]
    node_ip: String
}

impl fmt::Display for NodeRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {} {} {}",
            self.id, self.type_, self.status, self.cpu, self.ram, self.disk, self.node_ip
        )
    }
}

/// Compact row for the addon table.
#[derive(Tabled)]
struct AddonRow {
    #[tabled(rename = "ID")]
    id:          i32,
    #[tabled(rename = "Type")]
    type_:       String,
    #[tabled(rename = "Status")]
    status:      String,
    #[tabled(rename = "Version")]
    version:     String,
    #[tabled(rename = "Config Type")]
    config_type: String
}

impl fmt::Display for AddonRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {}",
            self.id, self.type_, self.status, self.version, self.config_type
        )
    }
}

/// Compact row for the preset table.
#[derive(Tabled)]
struct PresetRow {
    #[tabled(rename = "Type")]
    preset_type: String,
    #[tabled(rename = "CPU")]
    cpu:         String,
    #[tabled(rename = "RAM (MB)")]
    ram:         String,
    #[tabled(rename = "Disk (GB)")]
    disk:        String,
    #[tabled(rename = "Price")]
    price:       String
}

impl fmt::Display for PresetRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {}",
            self.preset_type, self.cpu, self.ram, self.disk, self.price
        )
    }
}

/// Lists all Kubernetes clusters.
///
/// # Overview
///
/// Fetches clusters from the Timeweb Cloud API and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn list(
    config: &Configuration,
    limit: Option<i32>,
    offset: Option<i32>,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_clusters(config, limit, offset).await?;

    let rows: Vec<ClusterRow> = resp
        .clusters
        .iter()
        .map(|c| ClusterRow {
            id:             c.id,
            name:           c.name.clone(),
            status:         c.status.clone(),
            k8s_version:    c.k8s_version.clone(),
            network_driver: format!("{:?}", c.network_driver),
            created_at:     c.created_at.to_string()
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_clusters_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.clusters)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for c in &resp.clusters {
                println!("{}", c.id);
            }
        }
    }
    Ok(())
}

/// Shows detailed info for a single Kubernetes cluster.
///
/// # Overview
///
/// Fetches cluster details by ID and displays them.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn info(config: &Configuration, id: i32, format: OutputFormat) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_cluster(config, id).await?;
    let cluster = &resp.cluster;

    match format {
        OutputFormat::Table => {
            println!("ID:                 {}", cluster.id);
            println!("Name:               {}", cluster.name);
            println!("Status:             {}", cluster.status);
            println!("K8s Version:        {}", cluster.k8s_version);
            println!("Network Driver:     {:?}", cluster.network_driver);
            println!("Ingress:            {}", cluster.ingress);
            println!("Preset ID:          {}", cluster.preset_id);
            println!(
                "CPU:                {:?}",
                cluster.cpu.map(|c| c.to_string())
            );
            println!(
                "RAM:                {:?}",
                cluster.ram.map(|r| format!("{r} MB"))
            );
            println!(
                "Disk:               {:?}",
                cluster.disk.map(|d| format!("{d} GB"))
            );
            println!("Availability Zone:  {:?}", cluster.availability_zone);
            println!("Project ID:         {:?}", cluster.project_id);
            println!("Description:        {}", cluster.description);
            println!("Created at:         {}", cluster.created_at);
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.cluster)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!(
                "{}\t{}\t{}\t{}",
                cluster.id, cluster.name, cluster.status, cluster.k8s_version
            );
        }
    }
    Ok(())
}

/// Creates a new Kubernetes cluster.
///
/// # Overview
///
/// Creates a cluster with the given name, Kubernetes version, and network
/// driver. Uses default preset if not specified.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn create(
    config: &Configuration,
    name: &str,
    k8s_version: &str,
    format: OutputFormat
) -> Result<(), TwcError> {
    let mut req = k8s_models::ClusterIn::new(
        name.to_string(),
        k8s_version.to_string(),
        k8s_models::cluster_in::NetworkDriver::default()
    );
    req.is_ingress = Some(true);
    req.is_k8s_dashboard = Some(true);

    let resp = kubernetes_api::create_cluster(config, req).await?;
    let cluster = &resp.cluster;

    match format {
        OutputFormat::Table => {
            println!(
                "{}",
                t!("cli.cluster_created", name => cluster.name, id => cluster.id)
            );
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.cluster)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!("{}", cluster.id);
        }
    }
    Ok(())
}

/// Deletes a Kubernetes cluster by ID.
///
/// # Overview
///
/// Sends a delete request for the specified cluster.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn delete(config: &Configuration, id: i32) -> Result<(), TwcError> {
    kubernetes_api::delete_cluster(config, id, None, None).await?;
    println!("{}", t!("cli.cluster_deleted", id => id));
    Ok(())
}

/// Updates a Kubernetes cluster by ID.
///
/// # Overview
///
/// Updates the cluster name via the Timeweb Cloud API.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn update(
    config: &Configuration,
    id: i32,
    name: Option<&str>,
    format: OutputFormat
) -> Result<(), TwcError> {
    let mut edit = k8s_models::ClusterEdit::new();
    if let Some(n) = name {
        edit.name = Some(n.to_string());
    }
    let resp = kubernetes_api::update_cluster(config, id, edit).await?;
    let cluster = &resp.cluster;

    match format {
        OutputFormat::Table => {
            println!(
                "{}",
                t!("cli.cluster_updated", name => cluster.name, id => cluster.id)
            );
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.cluster)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!("{}\t{}", cluster.id, cluster.name);
        }
    }
    Ok(())
}

/// Lists node groups for a Kubernetes cluster.
///
/// # Overview
///
/// Fetches node groups for the specified cluster and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn nodegroup_list(
    config: &Configuration,
    id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_cluster_node_groups(config, id).await?;

    let rows: Vec<NodeGroupRow> = resp
        .node_groups
        .iter()
        .map(|g| NodeGroupRow {
            id:         g.id,
            name:       g.name.clone(),
            node_count: g.node_count,
            preset_id:  g.preset_id,
            created_at: g.created_at.to_string()
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_node_groups_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.node_groups)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for g in &resp.node_groups {
                println!("{}\t{}", g.id, g.name);
            }
        }
    }
    Ok(())
}

/// Creates a new node group for a Kubernetes cluster.
///
/// # Overview
///
/// Creates a node group with the given name and default node count (1).
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn nodegroup_create(
    config: &Configuration,
    cluster_id: i32,
    name: &str,
    format: OutputFormat
) -> Result<(), TwcError> {
    let mut req = k8s_models::NodeGroupIn::new(name.to_string(), 1);
    req.is_autohealing = Some(true);

    let resp = kubernetes_api::create_cluster_node_group(config, cluster_id, req).await?;
    let group = &resp.node_group;

    match format {
        OutputFormat::Table => {
            println!(
                "{}",
                t!("cli.node_group_created", name => group.name, cluster_id => cluster_id, id => group.id)
            );
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.node_group)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!("{}\t{}", group.id, group.name);
        }
    }
    Ok(())
}

/// Deletes a node group from a Kubernetes cluster.
///
/// # Overview
///
/// Sends a delete request for the specified node group.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn nodegroup_delete(
    config: &Configuration,
    cluster_id: i32,
    group_id: i32
) -> Result<(), TwcError> {
    kubernetes_api::delete_cluster_node_group(config, cluster_id, group_id).await?;
    println!(
        "{}",
        t!("cli.node_group_deleted", group_id => group_id, cluster_id => cluster_id)
    );
    Ok(())
}

/// Lists nodes for a Kubernetes cluster.
///
/// # Overview
///
/// Fetches all nodes for the specified cluster and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn node_list(
    config: &Configuration,
    id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_cluster_nodes(config, id).await?;

    let rows: Vec<NodeRow> = resp
        .nodes
        .iter()
        .map(|n| NodeRow {
            id:      n.id,
            type_:   n.r#type.clone(),
            status:  n.status.clone(),
            cpu:     n.cpu,
            ram:     n.ram,
            disk:    n.disk,
            node_ip: n.node_ip.clone()
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_nodes_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.nodes)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for n in &resp.nodes {
                println!("{}\t{}\t{}", n.id, n.node_ip, n.status);
            }
        }
    }
    Ok(())
}

/// Lists installed addons for a Kubernetes cluster.
///
/// # Overview
///
/// Fetches installed addons for the specified cluster and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn addon_list(
    config: &Configuration,
    id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_kubernetes_addons(config, id).await?;

    let rows: Vec<AddonRow> = resp
        .addons
        .iter()
        .map(|a| AddonRow {
            id:          a.id,
            type_:       a.r#type.clone(),
            status:      a.status.clone(),
            version:     a.version.clone(),
            config_type: a.config_type.clone()
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_addons_installed"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.addons)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for a in &resp.addons {
                println!("{}\t{}\t{}", a.id, a.r#type, a.status);
            }
        }
    }
    Ok(())
}

/// Installs an addon on a Kubernetes cluster.
///
/// # Overview
///
/// Installs an addon by name using default configuration (basic config type,
/// empty yaml config, latest version).
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn addon_install(
    config: &Configuration,
    cluster_id: i32,
    addon_name: &str
) -> Result<(), TwcError> {
    let req = k8s_models::ClusterIn1::new(
        addon_name.to_string(),
        k8s_models::cluster_in_1::ConfigType::Basic,
        String::new(),
        "latest".to_string()
    );
    kubernetes_api::post_kubernetes_addons(config, cluster_id, req).await?;
    println!(
        "{}",
        t!("cli.addon_install_started", name => addon_name, cluster_id => cluster_id)
    );
    Ok(())
}

/// Deletes an addon from a Kubernetes cluster.
///
/// # Overview
///
/// Looks up the addon by name and deletes it from the specified cluster.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn addon_delete(
    config: &Configuration,
    cluster_id: i32,
    addon_name: &str
) -> Result<(), TwcError> {
    let addons = kubernetes_api::get_kubernetes_addons(config, cluster_id).await?;

    let target = addons.addons.iter().find(|a| a.r#type == addon_name);

    let Some(addon) = target else {
        return Err(TwcError::Api(format!(
            "addon '{addon_name}' not found in cluster {cluster_id}"
        )));
    };

    kubernetes_api::delete_kubernetes_addons(config, cluster_id, addon.id).await?;
    println!(
        "{}",
        t!("cli.addon_deleted", name => addon_name, cluster_id => cluster_id)
    );
    Ok(())
}

/// Lists available Kubernetes presets.
///
/// # Overview
///
/// Fetches Kubernetes presets (worker and master node configurations)
/// from the Timeweb Cloud API and displays them in the requested format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn preset_list(config: &Configuration, format: OutputFormat) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_kubernetes_presets(config).await?;

    let rows: Vec<PresetRow> = resp
        .k8s_presets
        .iter()
        .map(|p| match p {
            k8s_models::K8SPresetsInner::Worker(w) => PresetRow {
                preset_type: "worker".to_string(),
                cpu:         fmt_i32(w.cpu),
                ram:         fmt_i32(w.ram),
                disk:        fmt_i32(w.disk),
                price:       fmt_f64(w.price)
            },
            k8s_models::K8SPresetsInner::Master(m) => PresetRow {
                preset_type: "master".to_string(),
                cpu:         fmt_i32(m.cpu),
                ram:         fmt_i32(m.ram),
                disk:        fmt_i32(m.disk),
                price:       fmt_f64(m.price)
            }
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_presets_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.k8s_presets)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for p in &resp.k8s_presets {
                match p {
                    k8s_models::K8SPresetsInner::Worker(w) => {
                        println!("worker\t{}\t{}", fmt_i32(w.cpu), fmt_i32(w.ram));
                    }
                    k8s_models::K8SPresetsInner::Master(m) => {
                        println!("master\t{}\t{}", fmt_i32(m.cpu), fmt_i32(m.ram));
                    }
                }
            }
        }
    }
    Ok(())
}

/// Lists available Kubernetes versions.
///
/// # Overview
///
/// Fetches available Kubernetes versions from the Timeweb Cloud API
/// and displays them in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn version_list(config: &Configuration, format: OutputFormat) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_k8_s_versions(config).await?;

    match format {
        OutputFormat::Table => {
            if resp.k8s_versions.is_empty() {
                println!("{}", t!("cli.no_versions_found"));
            } else {
                #[derive(Tabled)]
                struct VersionRow {
                    #[tabled(rename = "Version")]
                    version: String
                }
                let rows: Vec<VersionRow> = resp
                    .k8s_versions
                    .iter()
                    .map(|v| VersionRow {
                        version: v.clone()
                    })
                    .collect();
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.k8s_versions)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for v in &resp.k8s_versions {
                println!("{v}");
            }
        }
    }
    Ok(())
}

/// Lists available Kubernetes network drivers.
///
/// # Overview
///
/// Fetches the network drivers supported for Kubernetes clusters from the
/// Timeweb Cloud API and displays them in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn list_network_drivers(
    config: &Configuration,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_k8_s_network_drivers(config).await?;

    match format {
        OutputFormat::Table => {
            if resp.network_drivers.is_empty() {
                println!("{}", t!("cli.no_network_drivers_found"));
            } else {
                #[derive(Tabled)]
                struct NetworkDriverRow {
                    #[tabled(rename = "Network Driver")]
                    network_driver: String
                }
                let rows: Vec<NetworkDriverRow> = resp
                    .network_drivers
                    .iter()
                    .map(|d| NetworkDriverRow {
                        network_driver: d.clone()
                    })
                    .collect();
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            if let Some(out) = crate::output::serialized(format, &resp.network_drivers) {
                println!("{}", out?);
            }
        }
        OutputFormat::Quiet => {
            for d in &resp.network_drivers {
                println!("{d}");
            }
        }
    }
    Ok(())
}

/// Gets the kubeconfig for a Kubernetes cluster.
///
/// # Overview
///
/// Fetches the kubeconfig YAML file for the specified cluster.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn kubeconfig(config: &Configuration, id: i32) -> Result<(), TwcError> {
    let kubeconfig = kubernetes_api::get_cluster_kubeconfig(config, id).await?;
    println!("{kubeconfig}");
    Ok(())
}

/// Shows cluster resources (deprecated).
///
/// # Overview
///
/// Fetches cluster resources via the deprecated resources endpoint.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
#[allow(deprecated)]
pub async fn resources(
    config: &Configuration,
    id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = kubernetes_api::get_cluster_resources(config, id).await?;

    match format {
        OutputFormat::Table => {
            println!("{}", t!("cli.cluster_resources_header", id => id));
            let json = serde_json::to_string_pretty(&resp.resources)
                .map_err(|e| TwcError::Api(e.to_string()))?;
            println!("{json}");
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.resources)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            let json = serde_json::to_string(&resp.resources)
                .map_err(|e| TwcError::Api(e.to_string()))?;
            println!("{json}");
        }
    }
    Ok(())
}