Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%SYS] >  [ML] >  [Configuration]
Private  Storage   

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.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
1 5 14 1 1


Summary

Properties
Description Name Owner Type Using

Methods
%%CLASSNAMELogicalToStorage %%CLASSNAMEStorageToLogical %AddToSaveSet %AddToSyncSet
%BMEBuilt %BuildIndicesAsync %BuildIndicesAsyncResponse %CheckConstraints
%CheckConstraintsForExtent %ClassIsLatestVersion %ClassName %ComposeOid
%ConstructClone %Create %Delete %DeleteExtent
%DeleteId %DispatchClassMethod %DispatchGetModified %DispatchGetProperty
%DispatchMethod %DispatchSetModified %DispatchSetMultidimProperty %DispatchSetProperty
%Exists %ExistsId %Extends %GUID
%GUIDSet %GetDefault %GetLock %GetParameter
%GetProviderFromName %GetSwizzleObject %GetSystemDefault %GetUsingFromName
%Id %InsertBatch %IsA %IsModified
%IsNull %KillExtent %KillExtentData %LoadFromMemory
%LockExtent %LockId %Modify %New
%NormalizeObject %ObjectIsNull %ObjectModified %Oid
%OnBeforeAddToSync %OnDeleteFinally %OnDetermineClass %OnOpenFinally
%OnSaveFinally %Open %OpenId %OriginalNamespace
%PackageName %PhysicalAddress %PurgeIndices %Reload
%Remove %RemoveFromSaveSet %ResolveConcurrencyConflict %RollBack
%Save %SaveDirect %SaveIndices %SerializeObject
%SetDefault %SetModified %SetSystemDefault %SortBegin
%SortEnd %SyncObjectIn %SyncTransport %UnlockExtent
%UnlockId %ValidateIndices %ValidateObject %ValidateTable

Subclasses
%SYS.ML.AutoML.Configuration %SYS.ML.DataRobot.Configuration %SYS.ML.H2O.Configuration
%SYS.ML.PMML.Configuration

Parameters

• parameter SQLPUBLICSECURITY = "{""%GetDefault"":""E""}";

Properties

• 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

Methods

• 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

Indices

•index (NameIndex on Name) [PrimaryKey,Unique];

Triggers

•trigger %NoSQLFiling (BEFORE event INSERT/UPDATE/DELETE)


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.