(projectName, bootingPrivateKeyFilePath, ocpPullSecretFilePath string, args map[string]string)
| 35 | } |
| 36 | |
| 37 | func (a *Provider) CreateRunFunc(projectName, bootingPrivateKeyFilePath, ocpPullSecretFilePath string, |
| 38 | args map[string]string) (pulumi.RunFunc, error) { |
| 39 | r, err := fillCreateRequest(projectName, bootingPrivateKeyFilePath, ocpPullSecretFilePath, args) |
| 40 | if err != nil { |
| 41 | return nil, err |
| 42 | } |
| 43 | return r.runFunc, nil |
| 44 | } |
nothing calls this directly
no test coverage detected