kurtosis-sdk 0.84.13 → 0.85.0

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.
@@ -141,6 +141,8 @@ export class RunStarlarkScriptArgs extends jspb.Message {
141
141
 
142
142
  getSerializedParams(): string;
143
143
  setSerializedParams(value: string): RunStarlarkScriptArgs;
144
+ hasSerializedParams(): boolean;
145
+ clearSerializedParams(): RunStarlarkScriptArgs;
144
146
 
145
147
  getDryRun(): boolean;
146
148
  setDryRun(value: boolean): RunStarlarkScriptArgs;
@@ -154,6 +156,8 @@ export class RunStarlarkScriptArgs extends jspb.Message {
154
156
 
155
157
  getMainFunctionName(): string;
156
158
  setMainFunctionName(value: string): RunStarlarkScriptArgs;
159
+ hasMainFunctionName(): boolean;
160
+ clearMainFunctionName(): RunStarlarkScriptArgs;
157
161
 
158
162
  getExperimentalFeaturesList(): Array<KurtosisFeatureFlag>;
159
163
  setExperimentalFeaturesList(value: Array<KurtosisFeatureFlag>): RunStarlarkScriptArgs;
@@ -170,6 +174,11 @@ export class RunStarlarkScriptArgs extends jspb.Message {
170
174
  hasCloudUserId(): boolean;
171
175
  clearCloudUserId(): RunStarlarkScriptArgs;
172
176
 
177
+ getImageDownloadMode(): ImageDownloadMode;
178
+ setImageDownloadMode(value: ImageDownloadMode): RunStarlarkScriptArgs;
179
+ hasImageDownloadMode(): boolean;
180
+ clearImageDownloadMode(): RunStarlarkScriptArgs;
181
+
173
182
  serializeBinary(): Uint8Array;
174
183
  toObject(includeInstance?: boolean): RunStarlarkScriptArgs.AsObject;
175
184
  static toObject(includeInstance: boolean, msg: RunStarlarkScriptArgs): RunStarlarkScriptArgs.AsObject;
@@ -181,13 +190,19 @@ export class RunStarlarkScriptArgs extends jspb.Message {
181
190
  export namespace RunStarlarkScriptArgs {
182
191
  export type AsObject = {
183
192
  serializedScript: string,
184
- serializedParams: string,
193
+ serializedParams?: string,
185
194
  dryRun?: boolean,
186
195
  parallelism?: number,
187
- mainFunctionName: string,
196
+ mainFunctionName?: string,
188
197
  experimentalFeaturesList: Array<KurtosisFeatureFlag>,
189
198
  cloudInstanceId?: string,
190
199
  cloudUserId?: string,
200
+ imageDownloadMode?: ImageDownloadMode,
201
+ }
202
+
203
+ export enum SerializedParamsCase {
204
+ _SERIALIZED_PARAMS_NOT_SET = 0,
205
+ SERIALIZED_PARAMS = 2,
191
206
  }
192
207
 
193
208
  export enum DryRunCase {
@@ -200,6 +215,11 @@ export namespace RunStarlarkScriptArgs {
200
215
  PARALLELISM = 4,
201
216
  }
202
217
 
218
+ export enum MainFunctionNameCase {
219
+ _MAIN_FUNCTION_NAME_NOT_SET = 0,
220
+ MAIN_FUNCTION_NAME = 5,
221
+ }
222
+
203
223
  export enum CloudInstanceIdCase {
204
224
  _CLOUD_INSTANCE_ID_NOT_SET = 0,
205
225
  CLOUD_INSTANCE_ID = 7,
@@ -209,6 +229,11 @@ export namespace RunStarlarkScriptArgs {
209
229
  _CLOUD_USER_ID_NOT_SET = 0,
210
230
  CLOUD_USER_ID = 8,
211
231
  }
232
+
233
+ export enum ImageDownloadModeCase {
234
+ _IMAGE_DOWNLOAD_MODE_NOT_SET = 0,
235
+ IMAGE_DOWNLOAD_MODE = 9,
236
+ }
212
237
  }
213
238
 
214
239
  export class RunStarlarkPackageArgs extends jspb.Message {
@@ -225,6 +250,8 @@ export class RunStarlarkPackageArgs extends jspb.Message {
225
250
 
226
251
  getSerializedParams(): string;
227
252
  setSerializedParams(value: string): RunStarlarkPackageArgs;
253
+ hasSerializedParams(): boolean;
254
+ clearSerializedParams(): RunStarlarkPackageArgs;
228
255
 
229
256
  getDryRun(): boolean;
230
257
  setDryRun(value: boolean): RunStarlarkPackageArgs;
@@ -243,9 +270,13 @@ export class RunStarlarkPackageArgs extends jspb.Message {
243
270
 
244
271
  getRelativePathToMainFile(): string;
245
272
  setRelativePathToMainFile(value: string): RunStarlarkPackageArgs;
273
+ hasRelativePathToMainFile(): boolean;
274
+ clearRelativePathToMainFile(): RunStarlarkPackageArgs;
246
275
 
247
276
  getMainFunctionName(): string;
248
277
  setMainFunctionName(value: string): RunStarlarkPackageArgs;
278
+ hasMainFunctionName(): boolean;
279
+ clearMainFunctionName(): RunStarlarkPackageArgs;
249
280
 
250
281
  getExperimentalFeaturesList(): Array<KurtosisFeatureFlag>;
251
282
  setExperimentalFeaturesList(value: Array<KurtosisFeatureFlag>): RunStarlarkPackageArgs;
@@ -262,6 +293,11 @@ export class RunStarlarkPackageArgs extends jspb.Message {
262
293
  hasCloudUserId(): boolean;
263
294
  clearCloudUserId(): RunStarlarkPackageArgs;
264
295
 
296
+ getImageDownloadMode(): ImageDownloadMode;
297
+ setImageDownloadMode(value: ImageDownloadMode): RunStarlarkPackageArgs;
298
+ hasImageDownloadMode(): boolean;
299
+ clearImageDownloadMode(): RunStarlarkPackageArgs;
300
+
265
301
  getStarlarkPackageContentCase(): RunStarlarkPackageArgs.StarlarkPackageContentCase;
266
302
 
267
303
  serializeBinary(): Uint8Array;
@@ -277,15 +313,16 @@ export namespace RunStarlarkPackageArgs {
277
313
  packageId: string,
278
314
  local: Uint8Array | string,
279
315
  remote: boolean,
280
- serializedParams: string,
316
+ serializedParams?: string,
281
317
  dryRun?: boolean,
282
318
  parallelism?: number,
283
319
  clonePackage?: boolean,
284
- relativePathToMainFile: string,
285
- mainFunctionName: string,
320
+ relativePathToMainFile?: string,
321
+ mainFunctionName?: string,
286
322
  experimentalFeaturesList: Array<KurtosisFeatureFlag>,
287
323
  cloudInstanceId?: string,
288
324
  cloudUserId?: string,
325
+ imageDownloadMode?: ImageDownloadMode,
289
326
  }
290
327
 
291
328
  export enum StarlarkPackageContentCase {
@@ -294,6 +331,11 @@ export namespace RunStarlarkPackageArgs {
294
331
  REMOTE = 4,
295
332
  }
296
333
 
334
+ export enum SerializedParamsCase {
335
+ _SERIALIZED_PARAMS_NOT_SET = 0,
336
+ SERIALIZED_PARAMS = 5,
337
+ }
338
+
297
339
  export enum DryRunCase {
298
340
  _DRY_RUN_NOT_SET = 0,
299
341
  DRY_RUN = 6,
@@ -309,6 +351,16 @@ export namespace RunStarlarkPackageArgs {
309
351
  CLONE_PACKAGE = 8,
310
352
  }
311
353
 
354
+ export enum RelativePathToMainFileCase {
355
+ _RELATIVE_PATH_TO_MAIN_FILE_NOT_SET = 0,
356
+ RELATIVE_PATH_TO_MAIN_FILE = 9,
357
+ }
358
+
359
+ export enum MainFunctionNameCase {
360
+ _MAIN_FUNCTION_NAME_NOT_SET = 0,
361
+ MAIN_FUNCTION_NAME = 10,
362
+ }
363
+
312
364
  export enum CloudInstanceIdCase {
313
365
  _CLOUD_INSTANCE_ID_NOT_SET = 0,
314
366
  CLOUD_INSTANCE_ID = 12,
@@ -318,6 +370,11 @@ export namespace RunStarlarkPackageArgs {
318
370
  _CLOUD_USER_ID_NOT_SET = 0,
319
371
  CLOUD_USER_ID = 13,
320
372
  }
373
+
374
+ export enum ImageDownloadModeCase {
375
+ _IMAGE_DOWNLOAD_MODE_NOT_SET = 0,
376
+ IMAGE_DOWNLOAD_MODE = 14,
377
+ }
321
378
  }
322
379
 
323
380
  export class StarlarkRunResponseLine extends jspb.Message {
@@ -829,18 +886,28 @@ export class WaitForHttpGetEndpointAvailabilityArgs extends jspb.Message {
829
886
 
830
887
  getPath(): string;
831
888
  setPath(value: string): WaitForHttpGetEndpointAvailabilityArgs;
889
+ hasPath(): boolean;
890
+ clearPath(): WaitForHttpGetEndpointAvailabilityArgs;
832
891
 
833
892
  getInitialDelayMilliseconds(): number;
834
893
  setInitialDelayMilliseconds(value: number): WaitForHttpGetEndpointAvailabilityArgs;
894
+ hasInitialDelayMilliseconds(): boolean;
895
+ clearInitialDelayMilliseconds(): WaitForHttpGetEndpointAvailabilityArgs;
835
896
 
836
897
  getRetries(): number;
837
898
  setRetries(value: number): WaitForHttpGetEndpointAvailabilityArgs;
899
+ hasRetries(): boolean;
900
+ clearRetries(): WaitForHttpGetEndpointAvailabilityArgs;
838
901
 
839
902
  getRetriesDelayMilliseconds(): number;
840
903
  setRetriesDelayMilliseconds(value: number): WaitForHttpGetEndpointAvailabilityArgs;
904
+ hasRetriesDelayMilliseconds(): boolean;
905
+ clearRetriesDelayMilliseconds(): WaitForHttpGetEndpointAvailabilityArgs;
841
906
 
842
907
  getBodyText(): string;
843
908
  setBodyText(value: string): WaitForHttpGetEndpointAvailabilityArgs;
909
+ hasBodyText(): boolean;
910
+ clearBodyText(): WaitForHttpGetEndpointAvailabilityArgs;
844
911
 
845
912
  serializeBinary(): Uint8Array;
846
913
  toObject(includeInstance?: boolean): WaitForHttpGetEndpointAvailabilityArgs.AsObject;
@@ -854,11 +921,36 @@ export namespace WaitForHttpGetEndpointAvailabilityArgs {
854
921
  export type AsObject = {
855
922
  serviceIdentifier: string,
856
923
  port: number,
857
- path: string,
858
- initialDelayMilliseconds: number,
859
- retries: number,
860
- retriesDelayMilliseconds: number,
861
- bodyText: string,
924
+ path?: string,
925
+ initialDelayMilliseconds?: number,
926
+ retries?: number,
927
+ retriesDelayMilliseconds?: number,
928
+ bodyText?: string,
929
+ }
930
+
931
+ export enum PathCase {
932
+ _PATH_NOT_SET = 0,
933
+ PATH = 3,
934
+ }
935
+
936
+ export enum InitialDelayMillisecondsCase {
937
+ _INITIAL_DELAY_MILLISECONDS_NOT_SET = 0,
938
+ INITIAL_DELAY_MILLISECONDS = 4,
939
+ }
940
+
941
+ export enum RetriesCase {
942
+ _RETRIES_NOT_SET = 0,
943
+ RETRIES = 5,
944
+ }
945
+
946
+ export enum RetriesDelayMillisecondsCase {
947
+ _RETRIES_DELAY_MILLISECONDS_NOT_SET = 0,
948
+ RETRIES_DELAY_MILLISECONDS = 6,
949
+ }
950
+
951
+ export enum BodyTextCase {
952
+ _BODY_TEXT_NOT_SET = 0,
953
+ BODY_TEXT = 7,
862
954
  }
863
955
  }
864
956
 
@@ -871,21 +963,33 @@ export class WaitForHttpPostEndpointAvailabilityArgs extends jspb.Message {
871
963
 
872
964
  getPath(): string;
873
965
  setPath(value: string): WaitForHttpPostEndpointAvailabilityArgs;
966
+ hasPath(): boolean;
967
+ clearPath(): WaitForHttpPostEndpointAvailabilityArgs;
874
968
 
875
969
  getRequestBody(): string;
876
970
  setRequestBody(value: string): WaitForHttpPostEndpointAvailabilityArgs;
971
+ hasRequestBody(): boolean;
972
+ clearRequestBody(): WaitForHttpPostEndpointAvailabilityArgs;
877
973
 
878
974
  getInitialDelayMilliseconds(): number;
879
975
  setInitialDelayMilliseconds(value: number): WaitForHttpPostEndpointAvailabilityArgs;
976
+ hasInitialDelayMilliseconds(): boolean;
977
+ clearInitialDelayMilliseconds(): WaitForHttpPostEndpointAvailabilityArgs;
880
978
 
881
979
  getRetries(): number;
882
980
  setRetries(value: number): WaitForHttpPostEndpointAvailabilityArgs;
981
+ hasRetries(): boolean;
982
+ clearRetries(): WaitForHttpPostEndpointAvailabilityArgs;
883
983
 
884
984
  getRetriesDelayMilliseconds(): number;
885
985
  setRetriesDelayMilliseconds(value: number): WaitForHttpPostEndpointAvailabilityArgs;
986
+ hasRetriesDelayMilliseconds(): boolean;
987
+ clearRetriesDelayMilliseconds(): WaitForHttpPostEndpointAvailabilityArgs;
886
988
 
887
989
  getBodyText(): string;
888
990
  setBodyText(value: string): WaitForHttpPostEndpointAvailabilityArgs;
991
+ hasBodyText(): boolean;
992
+ clearBodyText(): WaitForHttpPostEndpointAvailabilityArgs;
889
993
 
890
994
  serializeBinary(): Uint8Array;
891
995
  toObject(includeInstance?: boolean): WaitForHttpPostEndpointAvailabilityArgs.AsObject;
@@ -899,12 +1003,42 @@ export namespace WaitForHttpPostEndpointAvailabilityArgs {
899
1003
  export type AsObject = {
900
1004
  serviceIdentifier: string,
901
1005
  port: number,
902
- path: string,
903
- requestBody: string,
904
- initialDelayMilliseconds: number,
905
- retries: number,
906
- retriesDelayMilliseconds: number,
907
- bodyText: string,
1006
+ path?: string,
1007
+ requestBody?: string,
1008
+ initialDelayMilliseconds?: number,
1009
+ retries?: number,
1010
+ retriesDelayMilliseconds?: number,
1011
+ bodyText?: string,
1012
+ }
1013
+
1014
+ export enum PathCase {
1015
+ _PATH_NOT_SET = 0,
1016
+ PATH = 3,
1017
+ }
1018
+
1019
+ export enum RequestBodyCase {
1020
+ _REQUEST_BODY_NOT_SET = 0,
1021
+ REQUEST_BODY = 4,
1022
+ }
1023
+
1024
+ export enum InitialDelayMillisecondsCase {
1025
+ _INITIAL_DELAY_MILLISECONDS_NOT_SET = 0,
1026
+ INITIAL_DELAY_MILLISECONDS = 5,
1027
+ }
1028
+
1029
+ export enum RetriesCase {
1030
+ _RETRIES_NOT_SET = 0,
1031
+ RETRIES = 6,
1032
+ }
1033
+
1034
+ export enum RetriesDelayMillisecondsCase {
1035
+ _RETRIES_DELAY_MILLISECONDS_NOT_SET = 0,
1036
+ RETRIES_DELAY_MILLISECONDS = 7,
1037
+ }
1038
+
1039
+ export enum BodyTextCase {
1040
+ _BODY_TEXT_NOT_SET = 0,
1041
+ BODY_TEXT = 8,
908
1042
  }
909
1043
  }
910
1044
 
@@ -1280,6 +1414,10 @@ export enum ServiceStatus {
1280
1414
  RUNNING = 1,
1281
1415
  UNKNOWN = 2,
1282
1416
  }
1417
+ export enum ImageDownloadMode {
1418
+ ALWAYS = 0,
1419
+ MISSING = 1,
1420
+ }
1283
1421
  export enum Connect {
1284
1422
  CONNECT = 0,
1285
1423
  NO_CONNECT = 1,