| 18 | ) |
| 19 | |
| 20 | type createRequest struct { |
| 21 | projectName string |
| 22 | imageID string |
| 23 | instanceType string |
| 24 | diskSize int |
| 25 | bootingPrivateKeyFilePath string |
| 26 | ocpPullSecretFilePath string |
| 27 | networkName string |
| 28 | } |
| 29 | |
| 30 | func fillCreateRequest(projectName, bootingPrivateKeyFilePath, ocpPullSecretFilePath string, |
| 31 | args map[string]string) (*createRequest, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected