Interface InferenceMBean
-
@ProviderType public interface InferenceMBeanAn MBean that provides the inference configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetConfigJson()Get the inference configuration as a Json string.StringgetConfigNodeStateJson()Get the inference configuration as a Json string.voidsetConfigJson(String path, String configJson)
-
-
-
Field Detail
-
TYPE
static final String TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getConfigJson
String getConfigJson()
Get the inference configuration as a Json string.
-
getConfigNodeStateJson
String getConfigNodeStateJson()
Get the inference configuration as a Json string.
-
setConfigJson
@Description("Adds or replaces the inference configuration at the specified path with the provided JSON. If saved successful, the system reInitializes with the updated configuration.") void setConfigJson(@Name("path") @Description("The node path where the configuration should be stored.") String path, @Name("configJson") @Description("The inferenceConfig as a JSON sting.") String configJson)
-
-