Optional
config: Partial<SASjsConfig>Checks whether a session is active, or login is required.
isLoggedIn
, and a string userName
.Creates a compute context on the given server.
the name of the context to be created.
the name of the launcher context used by the compute service.
the ID of the account to run the servers for this context as.
the lines of code to execute during session initialization.
an access token for an authorised user.
Optional
authorisedUsers: string[]an optional list of authorised user IDs.
Creates a file in the logical SAS folder tree
name of the file to be created.
content of the file to be created.
the full path (eg /Public/example/myFolder
) of the parent folder.
Optional
parentFolderUri: stringthe URI of the parent folder.
Optional
accessToken: stringthe access token to authorizing the request.
Optional
sasApiClient: SASViyaApiClienta client for interfacing with SAS API.
Creates a folder in the logical SAS folder tree
name of the folder to be created.
the full path (eg /Public/example/myFolder
) of the parent folder.
Optional
parentFolderUri: stringthe URI of the parent folder.
Optional
accessToken: stringthe access token to authorizing the request.
Optional
sasApiClient: SASViyaApiClienta client for interfacing with SAS API.
Optional
isForced: booleanflag that indicates if target folder already exists, it and all subfolders have to be deleted. Applicable for SAS VIYA only.
Optional
parentFolderPath: stringOptional
parentFolderUri: stringOptional
accessToken: stringOptional
sasApiClient: SASViyaApiClientCreates a launcher context on the given server.
the name of the context to be created.
the description of the context to be created.
launch type of the context to be created.
an access token for an authorised user.
Deletes a compute context on the given server.
the name of the context to be deleted.
Optional
accessToken: stringan access token for an authorised user.
For performance (and in case of accidental error) the deleteFolder
function does not actually delete the folder (and all its content and subfolder content). Instead the folder is simply moved to the recycle bin. Deletion time will be added to the folder name.
the full path (eg /Public/example/deleteThis
) of the folder to be deleted.
an access token for authorizing the request.
Creates the folders and services at the given location appLoc
on the given server serverUrl
.
the JSON specifying the folders and services to be created.
Optional
appLoc: stringthe base folder in which to create the new folders and services. If not provided, is taken from SASjsConfig.
Optional
serverUrl: stringthe server on which to deploy the folders and services. If not provided, is taken from SASjsConfig.
Optional
accessToken: stringan optional access token to be passed in when using this function from the command line.
flag that indicates if target folder already exists, it and all subfolders have to be deleted.
Updates a compute context on the given server.
the original name of the context to be deleted.
an object with the properties to be updated.
Optional
accessToken: stringan access token for an authorised user.
Enables verbose mode that will log a summary of every HTTP response.
Optional
successCallBack: ((response: AxiosResponse<any, any> | AxiosError<unknown, any>) => AxiosResponse<any, any>)function that should be triggered on every HTTP response with the status 2**.
Optional
errorCallBack: ((response: AxiosResponse<any, any> | AxiosError<unknown, any>) => AxiosResponse<any, any>)function that should be triggered on every HTTP response with the status different from 2**.
Executes job on SASJS server.
a promise that resolves into job execution result and log.
an object containing job path and debug level.
an application path.
Optional
authConfig: AuthConfigan object for authentication.
Exchanges the auth code for an access token for the given client.
the client ID to authenticate with.
the client secret to authenticate with.
the auth code received from the server.
Returns a JSON representation of a compute context.
an id of the context to return.
Optional
accessToken: stringan access token for an authorised user.
Returns a JSON representation of a compute context. @example: { "createdBy": "admin", "links": [...], "id": "ID", "version": 2, "name": "context1" }
the name of the context to return.
Optional
accessToken: stringan access token for an authorised user.
Gets compute contexts.
an access token for an authorised user.
Gets launcher contexts.
an access token for an authorised user.
this method returns an array of SASjsRequest
SASjsRequest[]
Returns the current SASjs configuration.
Lists children folders for given Viya folder.
the full path (eg /Public/example/myFolder
) or URI of the source folder listed. Providing URI instead of path will save one extra request.
Optional
accessToken: stringan access token for authorizing the request.
Optional
limit: numberLogs into the SAS server with the supplied credentials.
Optional
username: stringa string representing the username.
Optional
password: stringa string representing the password.
Optional
clientId: stringa string representing the client ID.
Moves folder to a new location. The folder may be renamed at the same time.
the full path (eg /Public/example/myFolder
) or URI of the source folder to be moved. Providing URI instead of path will save one extra request.
the full path or URI of the parent folder to which the sourceFolder
will be moved (eg /Public/newDestination
). To move a folder, a user has to have write permissions in targetParentFolder. Providing URI instead of path will save one extra request.
the name of the "moved" folder. If left blank, the original folder name will be used (eg myFolder
in /Public/newDestination/myFolder
for the example above). Optional field.
an access token for authorizing the request.
Exchanges the refresh token for an access token for the given client.
the client ID to authenticate with.
the client secret to authenticate with.
the refresh token received from the server.
Makes a request to program specified in SASjob
(could be a Viya Job, a
SAS 9 Stored Process, or a SASjs Server Stored Program). The response
object will always contain table names in lowercase, and column names in
uppercase. Values are returned formatted by default, unformatted
values can be configured as an option in the %webout
macro.
the path to the SAS program (ultimately resolves to
the SAS _program
parameter to run a Job Definition or SAS 9 Stored
Process). Is prepended at runtime with the value of appLoc
.
a JSON object containing one or more tables to be sent to
SAS. For an example of the table structure, see the project README. This
value can be null
if no inputs are required.
provide any changes to the config here, for instance to
enable/disable debug
. Any change provided will override the global config,
for that particular function call.
Optional
loginRequiredCallback: (() => any)a function that is called if the
user is not logged in (eg to display a login form). The request will be
resubmitted after successful login.
When using a loginRequiredCallback
, the call to the request will look, for example, like so:
await request(sasJobPath, data, config, () => setIsLoggedIn(false))
If you are not passing in any data and configuration, it will look like so:
await request(sasJobPath, {}, {}, () => setIsLoggedIn(false))
Optional
authConfig: AuthConfiga array of predefined values that are used to provide extra attributes (same names as those values) to be added in response Supported values are declared in ExtraResponseAttributes type.
Sets the SASjs configuration.
SASjs configuration.
Sets verbose mode.
value of the verbose mode, can be true, false or bleached(without extra colors).
Kicks off execution of the given job via the compute API.
an object representing the compute session created for the given job.
the path to the SAS program (ultimately resolves to
the SAS _program
parameter to run a Job Definition or SAS 9 Stored
Process). Is prepended at runtime with the value of appLoc
.
a JSON object containing one or more tables to be sent to
SAS. Can be null
if no inputs required.
provide any changes to the config here, for instance to
enable/disable debug
. Any change provided will override the global config,
for that particular function call.
Optional
authConfig: AuthConfiga valid client, secret, refresh and access tokens that are authorised to execute compute jobs. The access token is not required when the user is authenticated via the browser.
Optional
waitForResult: booleana boolean that indicates whether the function needs to wait for execution to complete.
Optional
pollOptions: PollOptionsan object that represents poll interval(milliseconds) and maximum amount of attempts. Object example: { maxPollCount: 24 * 60 * 60, pollInterval: 1000 }. More information available at src/api/viya/pollJobState.ts.
a boolean that indicates whether the function should print (PID) of the started job.
Optional
variables: MacroVaran object that represents macro variables.
Optional
verboseMode: VerboseModeboolean or a string equal to 'bleached' to enable verbose mode (log every HTTP response).
Uploads a file to the given service.
the path to the SAS program (ultimately resolves to
the SAS _program
parameter to run a Job Definition or SAS 9 Stored
Process). Is prepended at runtime with the value of appLoc
.
array of files to be uploaded, including File object and file name.
request URL parameters.
provide any changes to the config here, for instance to
enable/disable debug
. Any change provided will override the global config,
for that particular function call.
Optional
loginRequiredCallback: (() => any)a function that is called if the user is not logged in (eg to display a login form). The request will be resubmitted after successful login.
Generated using TypeDoc
SASjs is a JavaScript adapter for SAS.