Get an engine definition

get/providers/{providerId}/sources/{sourceId}/engines/{engineName}/definition
Internal-Use Only

Returns the definition of the engine as application or schema+json. This definition includes all available engine options.

Request Samples

1

Response Samples

1{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "title": "SASE7",
4 "type": "object",
5 "additionalProperties": false,
6 "required": [
7 "engineName"
8 ],
9 "properties": {
10 "engineName": {
11 "label": "V9",
12 "type": "string",
13 "default": "SASE7",
14 "enum": [
15 "SASE7"
16 ]
17 }
18 }
19}

Path Parameters

NameTypeRequiredDescription
engineName
string
true

The unique name of this engine within its data source.

providerId
string
true

The ID for the provider.

sourceId
string
true

The ID for the source.

Query Parameters

NameTypeRequiredDescription
preserveSession
boolean
false

This only has effect when the sessionId query parameter is not specified. If this is set to true, no sessionId is provided and the session created by the data service provider is not destroyed. All returned links, except the "self" link, have the sessionId query parameter added to their respective URIs. Also, they contain an additional session link to the application/vnd.sas.data.session resource that corresponds to the provided sessionId. If set to false or not specified, the session is destroyed after the request is complete. Defaults to false.

sessionId
string
false

The unique identifier of the session used to access the data service provider's backing service. When this is not specified, the data service provider creates a temporary session and then destroys it after the request is complete. If this is specified, all returned links, except the "self" link, have the sessionId query parameter added to their respective URIs. Also, they contain an additional session link to the application/vnd.sas.data.session resource that corresponds to the provided sessionId.

Responses

StatusMeaningDescription
200OKThe request succeeded.Schema
404Not FoundNo provider, data source, or engine exists at the requested path. Schema