package configrefresh // Mode represents the refresh operation mode. type Mode string const ( ModeDryRun Mode = "dry_run" ModeApply Mode = "apply" ) // Request is the refresh operation request. type Request struct { Mode Mode `json:"mode"` ConfigPath string `json:"config_path"` RequestID string `json:"request_id,omitempty"` }