Micro Analytic Score

Loading...
The Micro Analytic Score API provides stateless, memory-resident, high-performance program execution.

Modules

Contains the operations for module resources.
get
Get loaded modules
Internal-Use OnlyRetrieves the collection of modules that are loaded in memory by the service. Standard paging options are supported. The returned collection items are of type application/vnd.sas.microanalytic.module.
/modules
post
Create a module
Internal-Use OnlyCreates and loads a module from the provided module definition and returns a representation of the loaded module. Note that the name assigned to a module ID, package, public method, or submodule must not include any of the following characters: forward slash, backslash, period, and semicolon.
/modules
get
Get module
Internal-Use OnlyFor the specified module, returns detailed information including the steps that are contained in the module.
/modules/{moduleId}
head
Get headers for module
Internal-Use OnlyFor the specified module, returns header information for subsequent PUT or check for existence.
/modules/{moduleId}
put
Update a module
Internal-Use OnlyFor the specified module, replaces the existing module with values from the request body. Please note, the source of the module is not replaced.
/modules/{moduleId}
delete
Delete a module
Internal-Use OnlyDeletes the specified module.
/modules/{moduleId}
get
Get module source
Internal-Use OnlyReturns the source code of the specified module.
/modules/{moduleId}/source
head
Get headers for module source
Internal-Use OnlyFor the specified module, returns header information for subsequent PUT or check for existence. Since the module source is persisted as part of the module, the ETag and Last Modified Date as the same as that of the module.
/modules/{moduleId}/source
put
Update module source
Internal-Use OnlyReplaces the module source of the specified module with values in the request body.
/modules/{moduleId}/source

Submodules

Contains the operations for submodule resources.

Steps

Contains the operations for step resources.