persistent class %SYS.ML.Configuration
extends %Persistent
ML Configuration Definitions. This super class should be extended by different providers
to allow for custom configurations. Any configuration settings common to all providers should be defined in this class.
parameter SQLPUBLICSECURITY = "{""%GetDefault"":""E""}";
property Description
as %String(MAXLEN=256);
Description of this Configurtion
property Name
as %String(MAXLEN=256) [ Required ];
Configuration name
property Owner
as %String(MAXLEN=160);
Username/Rolename that is the owner of this ML Configuration
The owner will always implicitly have USE privilege for the configuration
property Type
as %EnumString(DISPLAYLIST=",AutoML,H2O,DataRobot,PMML",VALUELIST=",0,1,2,3") [ InitialExpression = 0,Required ];
Provider
0 = AutoML, 1 = H2O, 2 = DataRobot, 3 = PMML
property Using
as %String(MAXLEN=4096);
Default USING clause for the provider
classmethod %Create(name As %String(MAXLEN=256), desc As %String(MAXLEN=256)="", using As %String(MAXLEN=4096)="", owner As %String(MAXLEN=160)="")
as %Status
Create default ML configuration
name - Name of the configuration, required, must be unique. String with MAXLEN=256
desc - Optional description for the configuration
using - default USING clause for the configuration. This is a JSON string of key:value pairs (See CREATE MODEL for examples)
final classmethod %GetDefault()
as %String
[ SQLProc = %GetDefault ]
Returns the current process's default ML Configuration
Returns "" if an error or the ML Configuration no longer exists and there is no system default
final classmethod %GetProviderFromName(name As %String(MAXLEN=256), ByRef sc As %Status)
as %String
Given the name of a ML Configuration, return the name of the provider
final classmethod %GetSystemDefault()
as %String
Returns the system-wide default ML Configuration
if no system wide default is defined (which really should not happen), "" is returned
final classmethod %GetUsingFromName(name As %String(MAXLEN=256))
as %Library.DynamicObject
Given the name of a ML Configuration, return the using property value
"" returned upon error
classmethod %Modify(name As %String(MAXLEN=256), desc As %String(MAXLEN=256), using As %String(MAXLEN=4096), owner As %String(MAXLEN=160))
as %Status
Modify an ML configuration
name - Name of the configuration to modify
desc - Description for the configuration
using - default USING clause for the configuration. This is a JSON string of key:value pairs (See CREATE MODEL for examples)
owner - Username/Rolename that owns this ML Configuration
To change Description, Using, or Owner, supply a new value (including "" to set the new value to null).
To leave the value alone, don't pass any value for the parameter
Name and Type cannot be modified
classmethod %Remove(name As %String(MAXLEN=256), tempDrop As %Boolean = 0)
as %Status
Remove configuration
final classmethod %SetDefault(name As %String(MAXLEN=256))
as %Status
Sets the current process's default ML Configuration
final classmethod %SetSystemDefault(name As %String(MAXLEN=256))
as %Status
Sets the system-wide default ML Configuration
index (NameIndex on Name) [PrimaryKey,Unique];
trigger %NoSQLFiling
(BEFORE event INSERT/UPDATE/DELETE)