(functionConfig *utils.FunctionConfig, pkgURL string, updateOptions *utils.UpdateOptions)
| 666 | } |
| 667 | |
| 668 | func (f *functions) UpdateFunctionWithURL(functionConfig *utils.FunctionConfig, pkgURL string, |
| 669 | updateOptions *utils.UpdateOptions) error { |
| 670 | return f.UpdateFunctionWithURLWithContext(context.Background(), functionConfig, pkgURL, updateOptions) |
| 671 | } |
| 672 | |
| 673 | func (f *functions) UpdateFunctionWithURLWithContext( |
| 674 | ctx context.Context, |
nothing calls this directly
no test coverage detected