(
configId: string,
config: OpenConfig,
requestConfig?: AxiosRequestConfig,
)
| 347 | ); |
| 348 | }, |
| 349 | update( |
| 350 | configId: string, |
| 351 | config: OpenConfig, |
| 352 | requestConfig?: AxiosRequestConfig, |
| 353 | ) { |
| 354 | return typed<OpenConfig>( |
| 355 | openApiV1.updateConfigProfileContent( |
| 356 | generatedOptions( |
| 357 | { |
| 358 | path: { config_id: configId }, |
| 359 | body: config, |
| 360 | }, |
| 361 | requestConfig, |
| 362 | ), |
| 363 | ), |
| 364 | ); |
| 365 | }, |
| 366 | rename(configId: string, name: string | null) { |
| 367 | return typed<OpenConfig>( |
| 368 | openApiV1.renameConfigProfile({ |
nothing calls this directly
no test coverage detected