ModelFunction struct for ModelFunction
| 21 | |
| 22 | // ModelFunction struct for ModelFunction |
| 23 | type ModelFunction struct { |
| 24 | Config *map[string]string `json:"config,omitempty"` |
| 25 | Name string `json:"name"` |
| 26 | Namespace *string `json:"namespace,omitempty"` |
| 27 | Replicas int32 `json:"replicas"` |
| 28 | Runtime ModelRuntimeConfig `json:"runtime"` |
| 29 | Sink ModelTubeConfig `json:"sink"` |
| 30 | Source []ModelTubeConfig `json:"source"` |
| 31 | } |
| 32 | |
| 33 | type _ModelFunction ModelFunction |
| 34 |