dataiku-sdk 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/cli.js
CHANGED
|
@@ -3139,7 +3139,9 @@ function doctorEnvironment(projectKey) {
|
|
|
3139
3139
|
...(projectKey ? { projectKey, } : {}),
|
|
3140
3140
|
integrationFlags: {
|
|
3141
3141
|
mutating: integrationFlag("RUN_DATAIKU_INTEGRATION_MUTATING"),
|
|
3142
|
+
adminMutating: integrationFlag("RUN_DATAIKU_ADMIN_MUTATING"),
|
|
3142
3143
|
variables: integrationFlag("RUN_DATAIKU_INTEGRATION_VARIABLES"),
|
|
3144
|
+
sqlLive: integrationFlag("RUN_DATAIKU_SQL_LIVE"),
|
|
3143
3145
|
bundles: integrationFlag("RUN_DATAIKU_INTEGRATION_BUNDLES"),
|
|
3144
3146
|
apiServices: integrationFlag("RUN_DATAIKU_INTEGRATION_API_SERVICES"),
|
|
3145
3147
|
},
|
|
@@ -10,8 +10,9 @@ export declare class NotebooksResource extends BaseResource {
|
|
|
10
10
|
/**
|
|
11
11
|
* Delete a Jupyter notebook.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
13
|
+
* The SDK intentionally does not expose notebook creation as a first-class
|
|
14
|
+
* resource method yet; integration tests create disposable notebooks through
|
|
15
|
+
* the documented project-level create endpoint.
|
|
15
16
|
*/
|
|
16
17
|
deleteJupyter(name: string, projectKey?: string): Promise<void>;
|
|
17
18
|
/**
|
|
@@ -26,8 +27,9 @@ export declare class NotebooksResource extends BaseResource {
|
|
|
26
27
|
/**
|
|
27
28
|
* Unload (stop) a running Jupyter notebook session.
|
|
28
29
|
*
|
|
29
|
-
* DSS public APIs
|
|
30
|
-
*
|
|
30
|
+
* DSS public APIs expose session listing and unloading, but this SDK has no
|
|
31
|
+
* path to start a disposable kernel session; live unload coverage therefore
|
|
32
|
+
* requires an externally-started disposable session fixture.
|
|
31
33
|
*/
|
|
32
34
|
unloadJupyter(name: string, sessionId: string, projectKey?: string): Promise<void>;
|
|
33
35
|
/** List all SQL notebooks in a project. */
|
|
@@ -21,8 +21,9 @@ export class NotebooksResource extends BaseResource {
|
|
|
21
21
|
/**
|
|
22
22
|
* Delete a Jupyter notebook.
|
|
23
23
|
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
24
|
+
* The SDK intentionally does not expose notebook creation as a first-class
|
|
25
|
+
* resource method yet; integration tests create disposable notebooks through
|
|
26
|
+
* the documented project-level create endpoint.
|
|
26
27
|
*/
|
|
27
28
|
async deleteJupyter(name, projectKey) {
|
|
28
29
|
const nameEnc = encodeURIComponent(name);
|
|
@@ -52,8 +53,9 @@ export class NotebooksResource extends BaseResource {
|
|
|
52
53
|
/**
|
|
53
54
|
* Unload (stop) a running Jupyter notebook session.
|
|
54
55
|
*
|
|
55
|
-
* DSS public APIs
|
|
56
|
-
*
|
|
56
|
+
* DSS public APIs expose session listing and unloading, but this SDK has no
|
|
57
|
+
* path to start a disposable kernel session; live unload coverage therefore
|
|
58
|
+
* requires an externally-started disposable session fixture.
|
|
57
59
|
*/
|
|
58
60
|
async unloadJupyter(name, sessionId, projectKey) {
|
|
59
61
|
const nameEnc = encodeURIComponent(name);
|