()
| 38 | } |
| 39 | |
| 40 | func NewCreateFlags() *CreateFlags { |
| 41 | return &CreateFlags{ |
| 42 | Name: flag.New[string](FlagName, false), |
| 43 | SshCommonFlags: machinescommon.NewSshCommonFlags(), |
| 44 | CreateTargetProxyFlags: machinescommon.NewCreateTargetProxyFlags(), |
| 45 | CreateTargetMachinePolicyFlags: machinescommon.NewCreateTargetMachinePolicyFlags(), |
| 46 | WorkerPoolFlags: shared.NewWorkerPoolFlags(), |
| 47 | WebFlags: machinescommon.NewWebFlags(), |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func NewCreateOptions(createFlags *CreateFlags, dependencies *cmd.Dependencies) *CreateOptions { |
| 52 | return &CreateOptions{ |
no test coverage detected