redisctl 0.10.1

Unified CLI for Redis Cloud and Enterprise
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
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
//! Enterprise CRDB (Active-Active) command implementations

#![allow(dead_code)]

use crate::error::RedisCtlError;

use crate::cli::OutputFormat;
use crate::connection::ConnectionManager;
use crate::error::Result as CliResult;
use anyhow::Context;
use serde_json::Value;

use super::utils::*;

/// List all CRDBs
pub async fn list_crdbs(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw("/v1/crdbs")
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get CRDB details
pub async fn get_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}", id))
        .await
        .context(format!("Failed to get CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Create a new CRDB
#[allow(clippy::too_many_arguments)]
pub async fn create_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    name: Option<&str>,
    memory_size: Option<u64>,
    default_db_name: Option<&str>,
    encryption: Option<bool>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut json_data = if let Some(data_str) = data {
        read_json_data(data_str)?
    } else {
        serde_json::json!({})
    };

    let data_obj = json_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(n) = name {
        data_obj.insert("name".to_string(), serde_json::json!(n));
    }
    if let Some(mem) = memory_size {
        data_obj.insert("memory_size".to_string(), serde_json::json!(mem));
    }
    if let Some(db_name) = default_db_name {
        data_obj.insert("default_db_name".to_string(), serde_json::json!(db_name));
    }
    if let Some(enc) = encryption {
        data_obj.insert("encryption".to_string(), serde_json::json!(enc));
    }

    let response = client
        .post_raw("/v1/crdbs", json_data)
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Update CRDB configuration
#[allow(clippy::too_many_arguments)]
pub async fn update_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    memory_size: Option<u64>,
    encryption: Option<bool>,
    data_persistence: Option<&str>,
    replication: Option<bool>,
    eviction_policy: Option<&str>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    use crate::error::RedisCtlError;

    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON data if provided, otherwise empty object
    let mut request_obj: serde_json::Map<String, serde_json::Value> = if let Some(json_data) = data
    {
        let parsed = read_json_data(json_data)?;
        parsed
            .as_object()
            .cloned()
            .unwrap_or_else(serde_json::Map::new)
    } else {
        serde_json::Map::new()
    };

    // Override with first-class parameters if provided
    if let Some(mem) = memory_size {
        request_obj.insert("memory_size".to_string(), serde_json::json!(mem));
    }
    if let Some(enc) = encryption {
        request_obj.insert("encryption".to_string(), serde_json::json!(enc));
    }
    if let Some(persist) = data_persistence {
        request_obj.insert("data_persistence".to_string(), serde_json::json!(persist));
    }
    if let Some(repl) = replication {
        request_obj.insert("replication".to_string(), serde_json::json!(repl));
    }
    if let Some(evict) = eviction_policy {
        request_obj.insert("eviction_policy".to_string(), serde_json::json!(evict));
    }

    // Validate at least one update field is provided
    if request_obj.is_empty() {
        return Err(RedisCtlError::InvalidInput {
            message: "At least one update field is required (--memory-size, --encryption, --data-persistence, --replication, --eviction-policy, or --data)".to_string(),
        });
    }

    let json_data = serde_json::Value::Object(request_obj);
    let response = client
        .put_raw(&format!("/v1/crdbs/{}", id), json_data)
        .await
        .context(format!("Failed to update CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Delete a CRDB
pub async fn delete_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    force: bool,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    if !force && !confirm_action(&format!("Delete CRDB {}?", id))? {
        println!("Operation cancelled");
        return Ok(());
    }

    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .delete_raw(&format!("/v1/crdbs/{}", id))
        .await
        .context(format!("Failed to delete CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get participating clusters
pub async fn get_participating_clusters(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/participating_clusters", id))
        .await
        .context(format!(
            "Failed to get participating clusters for CRDB {}",
            id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Add cluster to CRDB
#[allow(clippy::too_many_arguments)]
pub async fn add_cluster_to_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    url: Option<&str>,
    name: Option<&str>,
    username: Option<&str>,
    password: Option<&str>,
    compression: Option<bool>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut json_data = if let Some(data_str) = data {
        read_json_data(data_str)?
    } else {
        serde_json::json!({})
    };

    let data_obj = json_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(u) = url {
        data_obj.insert("url".to_string(), serde_json::json!(u));
    }
    if let Some(n) = name {
        data_obj.insert("name".to_string(), serde_json::json!(n));
    }
    if let Some(user) = username {
        let credentials = data_obj
            .entry("credentials")
            .or_insert(serde_json::json!({}));
        if let Some(cred_obj) = credentials.as_object_mut() {
            cred_obj.insert("username".to_string(), serde_json::json!(user));
        }
    }
    if let Some(pass) = password {
        let credentials = data_obj
            .entry("credentials")
            .or_insert(serde_json::json!({}));
        if let Some(cred_obj) = credentials.as_object_mut() {
            cred_obj.insert("password".to_string(), serde_json::json!(pass));
        }
    }
    if let Some(comp) = compression {
        data_obj.insert("compression".to_string(), serde_json::json!(comp));
    }

    let response = client
        .post_raw(
            &format!("/v1/crdbs/{}/participating_clusters", id),
            json_data,
        )
        .await
        .context(format!("Failed to add cluster to CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Remove cluster from CRDB
pub async fn remove_cluster_from_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    cluster_id: u32,
    force: bool,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    if !force && !confirm_action(&format!("Remove cluster {} from CRDB {}?", cluster_id, id))? {
        println!("Operation cancelled");
        return Ok(());
    }

    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .delete_raw(&format!(
            "/v1/crdbs/{}/participating_clusters/{}",
            id, cluster_id
        ))
        .await
        .context(format!(
            "Failed to remove cluster {} from CRDB {}",
            cluster_id, id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get CRDB instances
pub async fn get_crdb_instances(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/instances", id))
        .await
        .context(format!("Failed to get instances for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get specific CRDB instance
pub async fn get_crdb_instance(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    crdb_id: u32,
    instance_id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/instances/{}", crdb_id, instance_id))
        .await
        .context(format!(
            "Failed to get instance {} for CRDB {}",
            instance_id, crdb_id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Update CRDB instance
#[allow(clippy::too_many_arguments)]
pub async fn update_crdb_instance(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    crdb_id: u32,
    instance_id: u32,
    memory_size: Option<u64>,
    port: Option<u16>,
    enabled: Option<bool>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut json_data = if let Some(data_str) = data {
        read_json_data(data_str)?
    } else {
        serde_json::json!({})
    };

    let data_obj = json_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(mem) = memory_size {
        data_obj.insert("memory_size".to_string(), serde_json::json!(mem));
    }
    if let Some(p) = port {
        data_obj.insert("port".to_string(), serde_json::json!(p));
    }
    if let Some(e) = enabled {
        data_obj.insert("enabled".to_string(), serde_json::json!(e));
    }

    let response = client
        .put_raw(
            &format!("/v1/crdbs/{}/instances/{}", crdb_id, instance_id),
            json_data,
        )
        .await
        .context(format!(
            "Failed to update instance {} for CRDB {}",
            instance_id, crdb_id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Flush CRDB instance data
pub async fn flush_crdb_instance(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    crdb_id: u32,
    instance_id: u32,
    force: bool,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    if !force
        && !confirm_action(&format!(
            "Flush data for instance {} in CRDB {}? This will delete all data!",
            instance_id, crdb_id
        ))?
    {
        println!("Operation cancelled");
        return Ok(());
    }

    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .put_raw(
            &format!("/v1/crdbs/{}/instances/{}/flush", crdb_id, instance_id),
            Value::Null,
        )
        .await
        .context(format!(
            "Failed to flush instance {} for CRDB {}",
            instance_id, crdb_id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get replication status
pub async fn get_replication_status(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/replication_status", id))
        .await
        .context(format!("Failed to get replication status for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get replication lag
pub async fn get_replication_lag(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/lag", id))
        .await
        .context(format!("Failed to get replication lag for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Force sync CRDB
pub async fn force_sync_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    source_cluster: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let json_data = serde_json::json!({
        "source_cluster": source_cluster
    });

    let response = client
        .post_raw(&format!("/v1/crdbs/{}/sync", id), json_data)
        .await
        .context(format!("Failed to force sync CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Pause replication
pub async fn pause_replication(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .put_raw(&format!("/v1/crdbs/{}/replication/pause", id), Value::Null)
        .await
        .context(format!("Failed to pause replication for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Resume replication
pub async fn resume_replication(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .put_raw(&format!("/v1/crdbs/{}/replication/resume", id), Value::Null)
        .await
        .context(format!("Failed to resume replication for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get CRDB tasks
pub async fn get_crdb_tasks(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/tasks", id))
        .await
        .context(format!("Failed to get tasks for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get specific CRDB task
pub async fn get_crdb_task(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    crdb_id: u32,
    task_id: String,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/tasks/{}", crdb_id, task_id))
        .await
        .context(format!(
            "Failed to get task {} for CRDB {}",
            task_id, crdb_id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Retry failed CRDB task
pub async fn retry_crdb_task(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    crdb_id: u32,
    task_id: String,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .post_raw(
            &format!("/v1/crdbs/{}/tasks/{}/retry", crdb_id, task_id),
            Value::Null,
        )
        .await
        .context(format!(
            "Failed to retry task {} for CRDB {}",
            task_id, crdb_id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Cancel running CRDB task
pub async fn cancel_crdb_task(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    crdb_id: u32,
    task_id: String,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .post_raw(
            &format!("/v1/crdbs/{}/tasks/{}/cancel", crdb_id, task_id),
            Value::Null,
        )
        .await
        .context(format!(
            "Failed to cancel task {} for CRDB {}",
            task_id, crdb_id
        ))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get CRDB statistics
pub async fn get_crdb_stats(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/stats", id))
        .await
        .context(format!("Failed to get statistics for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Get CRDB metrics
pub async fn get_crdb_metrics(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    interval: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let mut path = format!("/v1/crdbs/{}/metrics", id);
    if let Some(interval) = interval {
        path.push_str(&format!("?interval={}", interval));
    }

    let response = client
        .get_raw(&path)
        .await
        .context(format!("Failed to get metrics for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

/// Run health check on CRDB
pub async fn health_check_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;
    let response = client
        .get_raw(&format!("/v1/crdbs/{}/health", id))
        .await
        .context(format!("Failed to run health check for CRDB {}", id))?;

    let data = handle_output(response, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

// Additional missing functions

#[allow(clippy::too_many_arguments)]
pub async fn update_cluster_in_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    cluster_id: u32,
    url: Option<&str>,
    compression: Option<bool>,
    proxy_policy: Option<&str>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut update_data = if let Some(data_str) = data {
        read_json_data(data_str).context("Failed to parse update data")?
    } else {
        serde_json::json!({})
    };

    let data_obj = update_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(u) = url {
        data_obj.insert("url".to_string(), serde_json::json!(u));
    }
    if let Some(comp) = compression {
        data_obj.insert("compression".to_string(), serde_json::json!(comp));
    }
    if let Some(policy) = proxy_policy {
        data_obj.insert("proxy_policy".to_string(), serde_json::json!(policy));
    }

    let result = client
        .put_raw(
            &format!("/v1/crdbs/{}/participating_clusters/{}", id, cluster_id),
            update_data,
        )
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn get_conflicts(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    limit: Option<u32>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    let url = if let Some(limit) = limit {
        format!("/v1/crdbs/{}/conflicts?limit={}", id, limit)
    } else {
        format!("/v1/crdbs/{}/conflicts", id)
    };

    let result = client.get_raw(&url).await.map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn get_conflict_policy(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    let result = client
        .get_raw(&format!("/v1/crdbs/{}/conflict_policy", id))
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

#[allow(clippy::too_many_arguments)]
pub async fn update_conflict_policy(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    policy: Option<&str>,
    source_id: Option<u32>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut policy_data = if let Some(data_str) = data {
        read_json_data(data_str).context("Failed to parse policy data")?
    } else {
        serde_json::json!({})
    };

    let data_obj = policy_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(p) = policy {
        data_obj.insert("policy".to_string(), serde_json::json!(p));
    }
    if let Some(src) = source_id {
        data_obj.insert("source_id".to_string(), serde_json::json!(src));
    }

    let result = client
        .put_raw(&format!("/v1/crdbs/{}/conflict_policy", id), policy_data)
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn resolve_conflict(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    conflict_id: &str,
    resolution: &str,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    let resolution_data = serde_json::json!({
        "resolution": resolution
    });

    let result = client
        .post_raw(
            &format!("/v1/crdbs/{}/conflicts/{}/resolve", id, conflict_id),
            resolution_data,
        )
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn get_crdb_connections(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    let result = client
        .get_raw(&format!("/v1/crdbs/{}/connections", id))
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn get_crdb_throughput(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    let result = client
        .get_raw(&format!("/v1/crdbs/{}/throughput", id))
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn backup_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    location: Option<&str>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut backup_data = if let Some(data_str) = data {
        read_json_data(data_str).context("Failed to parse backup data")?
    } else {
        serde_json::json!({})
    };

    let backup_obj = backup_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(loc) = location {
        backup_obj.insert("location".to_string(), serde_json::json!(loc));
    }

    let result = client
        .post_raw(&format!("/v1/crdbs/{}/backup", id), backup_data)
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

#[allow(clippy::too_many_arguments)]
pub async fn restore_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    backup_uid: Option<&str>,
    location: Option<&str>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut restore_data = if let Some(data_str) = data {
        read_json_data(data_str).context("Failed to parse restore data")?
    } else {
        serde_json::json!({})
    };

    let restore_obj = restore_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(uid) = backup_uid {
        restore_obj.insert("backup_uid".to_string(), serde_json::json!(uid));
    }
    if let Some(loc) = location {
        restore_obj.insert("location".to_string(), serde_json::json!(loc));
    }

    let result = client
        .post_raw(&format!("/v1/crdbs/{}/restore", id), restore_data)
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn get_crdb_backups(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    let result = client
        .get_raw(&format!("/v1/crdbs/{}/backups", id))
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}

pub async fn export_crdb(
    conn_mgr: &ConnectionManager,
    profile_name: Option<&str>,
    id: u32,
    location: Option<&str>,
    data: Option<&str>,
    output_format: OutputFormat,
    query: Option<&str>,
) -> CliResult<()> {
    let client = conn_mgr.create_enterprise_client(profile_name).await?;

    // Start with JSON from --data if provided, otherwise empty object
    let mut export_data = if let Some(data_str) = data {
        read_json_data(data_str).context("Failed to parse export data")?
    } else {
        serde_json::json!({})
    };

    let export_obj = export_data.as_object_mut().unwrap();

    // CLI parameters override JSON values
    if let Some(loc) = location {
        export_obj.insert("location".to_string(), serde_json::json!(loc));
    }

    let result = client
        .post_raw(&format!("/v1/crdbs/{}/export", id), export_data)
        .await
        .map_err(RedisCtlError::from)?;

    let data = handle_output(result, output_format, query)?;
    print_formatted_output(data, output_format)?;
    Ok(())
}