@deephaven-enterprise/jsapi-types 2026.1.39 → 2026.1.41
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/package.json +1 -1
- package/types/Iris.d.ts +39 -3
package/package.json
CHANGED
package/types/Iris.d.ts
CHANGED
|
@@ -38,12 +38,21 @@ export type BaseQueryInfo = {
|
|
|
38
38
|
dbServerName: string;
|
|
39
39
|
enabled: boolean;
|
|
40
40
|
enableGcLogs: boolean;
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
/** @deprecated Use `envVarEntries` instead. */
|
|
42
|
+
envVars?: string;
|
|
43
|
+
/** Flat alternating key/value array: ["KEY1", "VALUE1", "KEY2", "VALUE2", ...] */
|
|
44
|
+
envVarEntries: string[];
|
|
45
|
+
/** @deprecated Use `classpathAdditions` instead. */
|
|
46
|
+
extraClasspaths?: string;
|
|
47
|
+
/** Array of classpath entries, one path per element. */
|
|
48
|
+
classpathAdditions: string[];
|
|
43
49
|
|
|
44
50
|
heapSize: number;
|
|
45
51
|
additionalMemory: number;
|
|
46
|
-
|
|
52
|
+
/** @deprecated Use `jvmArguments` instead. */
|
|
53
|
+
jvmArgs?: string;
|
|
54
|
+
/** Array of JVM arguments, one argument per element (e.g. ["-Xmx4g", "-DsomeProp=value"]). */
|
|
55
|
+
jvmArguments: string[];
|
|
47
56
|
jvmProfile: string;
|
|
48
57
|
name: string;
|
|
49
58
|
owner: string;
|
|
@@ -139,14 +148,28 @@ export declare class EditableQueryInfo implements PlainEditableQueryInfo {
|
|
|
139
148
|
|
|
140
149
|
set enableGcLogs(value: boolean);
|
|
141
150
|
|
|
151
|
+
/** @deprecated Use `envVarEntries` instead. */
|
|
142
152
|
get envVars(): string;
|
|
143
153
|
|
|
154
|
+
/** @deprecated Use `envVarEntries` instead. */
|
|
144
155
|
set envVars(value: string);
|
|
145
156
|
|
|
157
|
+
/** Flat alternating key/value array: ["KEY1", "VALUE1", "KEY2", "VALUE2", ...] */
|
|
158
|
+
get envVarEntries(): string[];
|
|
159
|
+
|
|
160
|
+
set envVarEntries(value: string[]);
|
|
161
|
+
|
|
162
|
+
/** @deprecated Use `classpathAdditions` instead. */
|
|
146
163
|
get extraClasspaths(): string;
|
|
147
164
|
|
|
165
|
+
/** @deprecated Use `classpathAdditions` instead. */
|
|
148
166
|
set extraClasspaths(value: string);
|
|
149
167
|
|
|
168
|
+
/** Array of classpath entries, one path per element. */
|
|
169
|
+
get classpathAdditions(): string[];
|
|
170
|
+
|
|
171
|
+
set classpathAdditions(value: string[]);
|
|
172
|
+
|
|
150
173
|
get heapSize(): number;
|
|
151
174
|
|
|
152
175
|
set heapSize(value: number);
|
|
@@ -155,10 +178,17 @@ export declare class EditableQueryInfo implements PlainEditableQueryInfo {
|
|
|
155
178
|
|
|
156
179
|
set additionalMemory(value: number);
|
|
157
180
|
|
|
181
|
+
/** @deprecated Use `jvmArguments` instead. */
|
|
158
182
|
get jvmArgs(): string;
|
|
159
183
|
|
|
184
|
+
/** @deprecated Use `jvmArguments` instead. */
|
|
160
185
|
set jvmArgs(value: string);
|
|
161
186
|
|
|
187
|
+
/** Array of JVM arguments, one argument per element (e.g. ["-Xmx4g", "-DsomeProp=value"]). */
|
|
188
|
+
get jvmArguments(): string[];
|
|
189
|
+
|
|
190
|
+
set jvmArguments(value: string[]);
|
|
191
|
+
|
|
162
192
|
get jvmProfile(): string;
|
|
163
193
|
|
|
164
194
|
set jvmProfile(value: string);
|
|
@@ -292,6 +322,12 @@ export interface ReplicaStatus {
|
|
|
292
322
|
export interface QueryInfo extends BaseQueryInfoReadonly {
|
|
293
323
|
designated?: ReplicaStatus;
|
|
294
324
|
displayable: boolean;
|
|
325
|
+
/** @deprecated Use `envVarEntries` instead. */
|
|
326
|
+
envVars: string;
|
|
327
|
+
/** @deprecated Use `jvmArguments` instead. */
|
|
328
|
+
jvmArgs: string;
|
|
329
|
+
/** @deprecated Use `classpathAdditions` instead. */
|
|
330
|
+
extraClasspaths: string;
|
|
295
331
|
/**
|
|
296
332
|
* @deprecated Use `designated.envoyPrefix` instead
|
|
297
333
|
*/
|