rkubectl_kubeapi/dryrun.rs
1// use super::*;
2
3#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, clap::ValueEnum)]
4pub enum DryRun {
5 /// Default value, just show the object
6 #[default]
7 None,
8 /// If server strategy, submit server-side request without persisting the resource.
9 Server,
10 /// If client strategy, only print the object that would be sent, without sending it.
11 Client,
12}