kurtosis-sdk 0.89.0 → 0.89.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/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.d.ts +2 -2
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.js +1 -1
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.d.ts +12 -1
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.js +49 -1
- package/build/core/kurtosis_core_rpc_api_bindings/connect/api_container_service_pb.d.ts +8 -1
- package/build/core/kurtosis_core_rpc_api_bindings/connect/api_container_service_pb.js +54 -53
- package/build/engine/kurtosis_engine_rpc_api_bindings/connect/engine_service_pb.d.ts +1 -1
- package/build/engine/kurtosis_engine_rpc_api_bindings/connect/engine_service_pb.js +23 -23
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.d.ts +2 -2
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.js +1 -1
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.d.ts +2 -2
- package/build/kurtosis_version/kurtosis_version.js +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as grpcWeb from 'grpc-web';
|
|
2
2
|
|
|
3
|
-
import * as api_container_service_pb from './api_container_service_pb';
|
|
4
|
-
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
3
|
+
import * as api_container_service_pb from './api_container_service_pb';
|
|
4
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export class ApiContainerServiceClient {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
|
-
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
3
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
export class Port extends jspb.Message {
|
|
@@ -1447,6 +1447,11 @@ export class GetStarlarkRunResponse extends jspb.Message {
|
|
|
1447
1447
|
getRestartPolicy(): RestartPolicy;
|
|
1448
1448
|
setRestartPolicy(value: RestartPolicy): GetStarlarkRunResponse;
|
|
1449
1449
|
|
|
1450
|
+
getInitialSerializedParams(): string;
|
|
1451
|
+
setInitialSerializedParams(value: string): GetStarlarkRunResponse;
|
|
1452
|
+
hasInitialSerializedParams(): boolean;
|
|
1453
|
+
clearInitialSerializedParams(): GetStarlarkRunResponse;
|
|
1454
|
+
|
|
1450
1455
|
serializeBinary(): Uint8Array;
|
|
1451
1456
|
toObject(includeInstance?: boolean): GetStarlarkRunResponse.AsObject;
|
|
1452
1457
|
static toObject(includeInstance: boolean, msg: GetStarlarkRunResponse): GetStarlarkRunResponse.AsObject;
|
|
@@ -1465,6 +1470,12 @@ export namespace GetStarlarkRunResponse {
|
|
|
1465
1470
|
mainFunctionName: string,
|
|
1466
1471
|
experimentalFeaturesList: Array<KurtosisFeatureFlag>,
|
|
1467
1472
|
restartPolicy: RestartPolicy,
|
|
1473
|
+
initialSerializedParams?: string,
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
export enum InitialSerializedParamsCase {
|
|
1477
|
+
_INITIAL_SERIALIZED_PARAMS_NOT_SET = 0,
|
|
1478
|
+
INITIAL_SERIALIZED_PARAMS = 9,
|
|
1468
1479
|
}
|
|
1469
1480
|
}
|
|
1470
1481
|
|
|
@@ -10348,7 +10348,8 @@ proto.api_container_api.GetStarlarkRunResponse.toObject = function(includeInstan
|
|
|
10348
10348
|
relativePathToMainFile: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
10349
10349
|
mainFunctionName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
10350
10350
|
experimentalFeaturesList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
10351
|
-
restartPolicy: jspb.Message.getFieldWithDefault(msg, 8, 0)
|
|
10351
|
+
restartPolicy: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
10352
|
+
initialSerializedParams: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
10352
10353
|
};
|
|
10353
10354
|
|
|
10354
10355
|
if (includeInstance) {
|
|
@@ -10419,6 +10420,10 @@ proto.api_container_api.GetStarlarkRunResponse.deserializeBinaryFromReader = fun
|
|
|
10419
10420
|
var value = /** @type {!proto.api_container_api.RestartPolicy} */ (reader.readEnum());
|
|
10420
10421
|
msg.setRestartPolicy(value);
|
|
10421
10422
|
break;
|
|
10423
|
+
case 9:
|
|
10424
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10425
|
+
msg.setInitialSerializedParams(value);
|
|
10426
|
+
break;
|
|
10422
10427
|
default:
|
|
10423
10428
|
reader.skipField();
|
|
10424
10429
|
break;
|
|
@@ -10504,6 +10509,13 @@ proto.api_container_api.GetStarlarkRunResponse.serializeBinaryToWriter = functio
|
|
|
10504
10509
|
f
|
|
10505
10510
|
);
|
|
10506
10511
|
}
|
|
10512
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
10513
|
+
if (f != null) {
|
|
10514
|
+
writer.writeString(
|
|
10515
|
+
9,
|
|
10516
|
+
f
|
|
10517
|
+
);
|
|
10518
|
+
}
|
|
10507
10519
|
};
|
|
10508
10520
|
|
|
10509
10521
|
|
|
@@ -10670,6 +10682,42 @@ proto.api_container_api.GetStarlarkRunResponse.prototype.setRestartPolicy = func
|
|
|
10670
10682
|
};
|
|
10671
10683
|
|
|
10672
10684
|
|
|
10685
|
+
/**
|
|
10686
|
+
* optional string initial_serialized_params = 9;
|
|
10687
|
+
* @return {string}
|
|
10688
|
+
*/
|
|
10689
|
+
proto.api_container_api.GetStarlarkRunResponse.prototype.getInitialSerializedParams = function() {
|
|
10690
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
10691
|
+
};
|
|
10692
|
+
|
|
10693
|
+
|
|
10694
|
+
/**
|
|
10695
|
+
* @param {string} value
|
|
10696
|
+
* @return {!proto.api_container_api.GetStarlarkRunResponse} returns this
|
|
10697
|
+
*/
|
|
10698
|
+
proto.api_container_api.GetStarlarkRunResponse.prototype.setInitialSerializedParams = function(value) {
|
|
10699
|
+
return jspb.Message.setField(this, 9, value);
|
|
10700
|
+
};
|
|
10701
|
+
|
|
10702
|
+
|
|
10703
|
+
/**
|
|
10704
|
+
* Clears the field making it undefined.
|
|
10705
|
+
* @return {!proto.api_container_api.GetStarlarkRunResponse} returns this
|
|
10706
|
+
*/
|
|
10707
|
+
proto.api_container_api.GetStarlarkRunResponse.prototype.clearInitialSerializedParams = function() {
|
|
10708
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
10709
|
+
};
|
|
10710
|
+
|
|
10711
|
+
|
|
10712
|
+
/**
|
|
10713
|
+
* Returns whether this field is set.
|
|
10714
|
+
* @return {boolean}
|
|
10715
|
+
*/
|
|
10716
|
+
proto.api_container_api.GetStarlarkRunResponse.prototype.hasInitialSerializedParams = function() {
|
|
10717
|
+
return jspb.Message.getField(this, 9) != null;
|
|
10718
|
+
};
|
|
10719
|
+
|
|
10720
|
+
|
|
10673
10721
|
|
|
10674
10722
|
|
|
10675
10723
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v1.
|
|
1
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
2
2
|
// @generated from file api_container_service.proto (package api_container_api, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
@@ -1815,6 +1815,13 @@ export declare class GetStarlarkRunResponse extends Message<GetStarlarkRunRespon
|
|
|
1815
1815
|
*/
|
|
1816
1816
|
restartPolicy: RestartPolicy;
|
|
1817
1817
|
|
|
1818
|
+
/**
|
|
1819
|
+
* The params that were used for the very first run of the script
|
|
1820
|
+
*
|
|
1821
|
+
* @generated from field: optional string initial_serialized_params = 9;
|
|
1822
|
+
*/
|
|
1823
|
+
initialSerializedParams?: string;
|
|
1824
|
+
|
|
1818
1825
|
constructor(data?: PartialMessage<GetStarlarkRunResponse>);
|
|
1819
1826
|
|
|
1820
1827
|
static readonly runtime: typeof proto3;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v1.
|
|
1
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
2
2
|
// @generated from file api_container_service.proto (package api_container_api, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
@@ -8,7 +8,7 @@ import { proto3 } from "@bufbuild/protobuf";
|
|
|
8
8
|
/**
|
|
9
9
|
* @generated from enum api_container_api.ServiceStatus
|
|
10
10
|
*/
|
|
11
|
-
export const ServiceStatus =
|
|
11
|
+
export const ServiceStatus = proto3.makeEnum(
|
|
12
12
|
"api_container_api.ServiceStatus",
|
|
13
13
|
[
|
|
14
14
|
{no: 0, name: "STOPPED"},
|
|
@@ -20,7 +20,7 @@ export const ServiceStatus = /*@__PURE__*/ proto3.makeEnum(
|
|
|
20
20
|
/**
|
|
21
21
|
* @generated from enum api_container_api.ImageDownloadMode
|
|
22
22
|
*/
|
|
23
|
-
export const ImageDownloadMode =
|
|
23
|
+
export const ImageDownloadMode = proto3.makeEnum(
|
|
24
24
|
"api_container_api.ImageDownloadMode",
|
|
25
25
|
[
|
|
26
26
|
{no: 0, name: "always"},
|
|
@@ -33,7 +33,7 @@ export const ImageDownloadMode = /*@__PURE__*/ proto3.makeEnum(
|
|
|
33
33
|
*
|
|
34
34
|
* @generated from enum api_container_api.Connect
|
|
35
35
|
*/
|
|
36
|
-
export const Connect =
|
|
36
|
+
export const Connect = proto3.makeEnum(
|
|
37
37
|
"api_container_api.Connect",
|
|
38
38
|
[
|
|
39
39
|
{no: 0, name: "CONNECT"},
|
|
@@ -44,7 +44,7 @@ export const Connect = /*@__PURE__*/ proto3.makeEnum(
|
|
|
44
44
|
/**
|
|
45
45
|
* @generated from enum api_container_api.KurtosisFeatureFlag
|
|
46
46
|
*/
|
|
47
|
-
export const KurtosisFeatureFlag =
|
|
47
|
+
export const KurtosisFeatureFlag = proto3.makeEnum(
|
|
48
48
|
"api_container_api.KurtosisFeatureFlag",
|
|
49
49
|
[
|
|
50
50
|
{no: 0, name: "NO_INSTRUCTIONS_CACHING"},
|
|
@@ -54,7 +54,7 @@ export const KurtosisFeatureFlag = /*@__PURE__*/ proto3.makeEnum(
|
|
|
54
54
|
/**
|
|
55
55
|
* @generated from enum api_container_api.RestartPolicy
|
|
56
56
|
*/
|
|
57
|
-
export const RestartPolicy =
|
|
57
|
+
export const RestartPolicy = proto3.makeEnum(
|
|
58
58
|
"api_container_api.RestartPolicy",
|
|
59
59
|
[
|
|
60
60
|
{no: 0, name: "NEVER"},
|
|
@@ -69,7 +69,7 @@ export const RestartPolicy = /*@__PURE__*/ proto3.makeEnum(
|
|
|
69
69
|
*
|
|
70
70
|
* @generated from message api_container_api.Port
|
|
71
71
|
*/
|
|
72
|
-
export const Port =
|
|
72
|
+
export const Port = proto3.makeMessageType(
|
|
73
73
|
"api_container_api.Port",
|
|
74
74
|
() => [
|
|
75
75
|
{ no: 1, name: "number", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
@@ -84,7 +84,7 @@ export const Port = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
84
84
|
/**
|
|
85
85
|
* @generated from enum api_container_api.Port.TransportProtocol
|
|
86
86
|
*/
|
|
87
|
-
export const Port_TransportProtocol =
|
|
87
|
+
export const Port_TransportProtocol = proto3.makeEnum(
|
|
88
88
|
"api_container_api.Port.TransportProtocol",
|
|
89
89
|
[
|
|
90
90
|
{no: 0, name: "TCP"},
|
|
@@ -96,7 +96,7 @@ export const Port_TransportProtocol = /*@__PURE__*/ proto3.makeEnum(
|
|
|
96
96
|
/**
|
|
97
97
|
* @generated from message api_container_api.Container
|
|
98
98
|
*/
|
|
99
|
-
export const Container =
|
|
99
|
+
export const Container = proto3.makeMessageType(
|
|
100
100
|
"api_container_api.Container",
|
|
101
101
|
() => [
|
|
102
102
|
{ no: 1, name: "status", kind: "enum", T: proto3.getEnumType(Container_Status) },
|
|
@@ -110,7 +110,7 @@ export const Container = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
110
110
|
/**
|
|
111
111
|
* @generated from enum api_container_api.Container.Status
|
|
112
112
|
*/
|
|
113
|
-
export const Container_Status =
|
|
113
|
+
export const Container_Status = proto3.makeEnum(
|
|
114
114
|
"api_container_api.Container.Status",
|
|
115
115
|
[
|
|
116
116
|
{no: 0, name: "STOPPED"},
|
|
@@ -122,7 +122,7 @@ export const Container_Status = /*@__PURE__*/ proto3.makeEnum(
|
|
|
122
122
|
/**
|
|
123
123
|
* @generated from message api_container_api.ServiceInfo
|
|
124
124
|
*/
|
|
125
|
-
export const ServiceInfo =
|
|
125
|
+
export const ServiceInfo = proto3.makeMessageType(
|
|
126
126
|
"api_container_api.ServiceInfo",
|
|
127
127
|
() => [
|
|
128
128
|
{ no: 1, name: "service_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -140,7 +140,7 @@ export const ServiceInfo = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
140
140
|
/**
|
|
141
141
|
* @generated from message api_container_api.RunStarlarkScriptArgs
|
|
142
142
|
*/
|
|
143
|
-
export const RunStarlarkScriptArgs =
|
|
143
|
+
export const RunStarlarkScriptArgs = proto3.makeMessageType(
|
|
144
144
|
"api_container_api.RunStarlarkScriptArgs",
|
|
145
145
|
() => [
|
|
146
146
|
{ no: 1, name: "serialized_script", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -159,7 +159,7 @@ export const RunStarlarkScriptArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
159
159
|
/**
|
|
160
160
|
* @generated from message api_container_api.RunStarlarkPackageArgs
|
|
161
161
|
*/
|
|
162
|
-
export const RunStarlarkPackageArgs =
|
|
162
|
+
export const RunStarlarkPackageArgs = proto3.makeMessageType(
|
|
163
163
|
"api_container_api.RunStarlarkPackageArgs",
|
|
164
164
|
() => [
|
|
165
165
|
{ no: 1, name: "package_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -187,7 +187,7 @@ export const RunStarlarkPackageArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
187
187
|
*
|
|
188
188
|
* @generated from message api_container_api.StarlarkRunResponseLine
|
|
189
189
|
*/
|
|
190
|
-
export const StarlarkRunResponseLine =
|
|
190
|
+
export const StarlarkRunResponseLine = proto3.makeMessageType(
|
|
191
191
|
"api_container_api.StarlarkRunResponseLine",
|
|
192
192
|
() => [
|
|
193
193
|
{ no: 1, name: "instruction", kind: "message", T: StarlarkInstruction, oneof: "run_response_line" },
|
|
@@ -203,7 +203,7 @@ export const StarlarkRunResponseLine = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
203
203
|
/**
|
|
204
204
|
* @generated from message api_container_api.StarlarkInfo
|
|
205
205
|
*/
|
|
206
|
-
export const StarlarkInfo =
|
|
206
|
+
export const StarlarkInfo = proto3.makeMessageType(
|
|
207
207
|
"api_container_api.StarlarkInfo",
|
|
208
208
|
() => [
|
|
209
209
|
{ no: 1, name: "info_message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -213,7 +213,7 @@ export const StarlarkInfo = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
213
213
|
/**
|
|
214
214
|
* @generated from message api_container_api.StarlarkWarning
|
|
215
215
|
*/
|
|
216
|
-
export const StarlarkWarning =
|
|
216
|
+
export const StarlarkWarning = proto3.makeMessageType(
|
|
217
217
|
"api_container_api.StarlarkWarning",
|
|
218
218
|
() => [
|
|
219
219
|
{ no: 1, name: "warning_message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -223,7 +223,7 @@ export const StarlarkWarning = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
223
223
|
/**
|
|
224
224
|
* @generated from message api_container_api.StarlarkInstruction
|
|
225
225
|
*/
|
|
226
|
-
export const StarlarkInstruction =
|
|
226
|
+
export const StarlarkInstruction = proto3.makeMessageType(
|
|
227
227
|
"api_container_api.StarlarkInstruction",
|
|
228
228
|
() => [
|
|
229
229
|
{ no: 1, name: "position", kind: "message", T: StarlarkInstructionPosition },
|
|
@@ -238,7 +238,7 @@ export const StarlarkInstruction = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
238
238
|
/**
|
|
239
239
|
* @generated from message api_container_api.StarlarkInstructionResult
|
|
240
240
|
*/
|
|
241
|
-
export const StarlarkInstructionResult =
|
|
241
|
+
export const StarlarkInstructionResult = proto3.makeMessageType(
|
|
242
242
|
"api_container_api.StarlarkInstructionResult",
|
|
243
243
|
() => [
|
|
244
244
|
{ no: 1, name: "serialized_instruction_result", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -248,7 +248,7 @@ export const StarlarkInstructionResult = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
248
248
|
/**
|
|
249
249
|
* @generated from message api_container_api.StarlarkInstructionArg
|
|
250
250
|
*/
|
|
251
|
-
export const StarlarkInstructionArg =
|
|
251
|
+
export const StarlarkInstructionArg = proto3.makeMessageType(
|
|
252
252
|
"api_container_api.StarlarkInstructionArg",
|
|
253
253
|
() => [
|
|
254
254
|
{ no: 1, name: "serialized_arg_value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -260,7 +260,7 @@ export const StarlarkInstructionArg = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
260
260
|
/**
|
|
261
261
|
* @generated from message api_container_api.StarlarkInstructionPosition
|
|
262
262
|
*/
|
|
263
|
-
export const StarlarkInstructionPosition =
|
|
263
|
+
export const StarlarkInstructionPosition = proto3.makeMessageType(
|
|
264
264
|
"api_container_api.StarlarkInstructionPosition",
|
|
265
265
|
() => [
|
|
266
266
|
{ no: 1, name: "filename", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -272,7 +272,7 @@ export const StarlarkInstructionPosition = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
272
272
|
/**
|
|
273
273
|
* @generated from message api_container_api.StarlarkError
|
|
274
274
|
*/
|
|
275
|
-
export const StarlarkError =
|
|
275
|
+
export const StarlarkError = proto3.makeMessageType(
|
|
276
276
|
"api_container_api.StarlarkError",
|
|
277
277
|
() => [
|
|
278
278
|
{ no: 1, name: "interpretation_error", kind: "message", T: StarlarkInterpretationError, oneof: "error" },
|
|
@@ -284,7 +284,7 @@ export const StarlarkError = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
284
284
|
/**
|
|
285
285
|
* @generated from message api_container_api.StarlarkInterpretationError
|
|
286
286
|
*/
|
|
287
|
-
export const StarlarkInterpretationError =
|
|
287
|
+
export const StarlarkInterpretationError = proto3.makeMessageType(
|
|
288
288
|
"api_container_api.StarlarkInterpretationError",
|
|
289
289
|
() => [
|
|
290
290
|
{ no: 1, name: "error_message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -294,7 +294,7 @@ export const StarlarkInterpretationError = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
294
294
|
/**
|
|
295
295
|
* @generated from message api_container_api.StarlarkValidationError
|
|
296
296
|
*/
|
|
297
|
-
export const StarlarkValidationError =
|
|
297
|
+
export const StarlarkValidationError = proto3.makeMessageType(
|
|
298
298
|
"api_container_api.StarlarkValidationError",
|
|
299
299
|
() => [
|
|
300
300
|
{ no: 1, name: "error_message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -304,7 +304,7 @@ export const StarlarkValidationError = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
304
304
|
/**
|
|
305
305
|
* @generated from message api_container_api.StarlarkExecutionError
|
|
306
306
|
*/
|
|
307
|
-
export const StarlarkExecutionError =
|
|
307
|
+
export const StarlarkExecutionError = proto3.makeMessageType(
|
|
308
308
|
"api_container_api.StarlarkExecutionError",
|
|
309
309
|
() => [
|
|
310
310
|
{ no: 1, name: "error_message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -314,7 +314,7 @@ export const StarlarkExecutionError = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
314
314
|
/**
|
|
315
315
|
* @generated from message api_container_api.StarlarkRunProgress
|
|
316
316
|
*/
|
|
317
|
-
export const StarlarkRunProgress =
|
|
317
|
+
export const StarlarkRunProgress = proto3.makeMessageType(
|
|
318
318
|
"api_container_api.StarlarkRunProgress",
|
|
319
319
|
() => [
|
|
320
320
|
{ no: 1, name: "current_step_info", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
@@ -326,7 +326,7 @@ export const StarlarkRunProgress = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
326
326
|
/**
|
|
327
327
|
* @generated from message api_container_api.StarlarkRunFinishedEvent
|
|
328
328
|
*/
|
|
329
|
-
export const StarlarkRunFinishedEvent =
|
|
329
|
+
export const StarlarkRunFinishedEvent = proto3.makeMessageType(
|
|
330
330
|
"api_container_api.StarlarkRunFinishedEvent",
|
|
331
331
|
() => [
|
|
332
332
|
{ no: 1, name: "is_run_successful", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
@@ -341,7 +341,7 @@ export const StarlarkRunFinishedEvent = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
341
341
|
*
|
|
342
342
|
* @generated from message api_container_api.GetServicesArgs
|
|
343
343
|
*/
|
|
344
|
-
export const GetServicesArgs =
|
|
344
|
+
export const GetServicesArgs = proto3.makeMessageType(
|
|
345
345
|
"api_container_api.GetServicesArgs",
|
|
346
346
|
() => [
|
|
347
347
|
{ no: 1, name: "service_identifiers", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "scalar", T: 8 /* ScalarType.BOOL */} },
|
|
@@ -351,7 +351,7 @@ export const GetServicesArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
351
351
|
/**
|
|
352
352
|
* @generated from message api_container_api.GetServicesResponse
|
|
353
353
|
*/
|
|
354
|
-
export const GetServicesResponse =
|
|
354
|
+
export const GetServicesResponse = proto3.makeMessageType(
|
|
355
355
|
"api_container_api.GetServicesResponse",
|
|
356
356
|
() => [
|
|
357
357
|
{ no: 1, name: "service_info", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "message", T: ServiceInfo} },
|
|
@@ -363,7 +363,7 @@ export const GetServicesResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
363
363
|
*
|
|
364
364
|
* @generated from message api_container_api.ServiceIdentifiers
|
|
365
365
|
*/
|
|
366
|
-
export const ServiceIdentifiers =
|
|
366
|
+
export const ServiceIdentifiers = proto3.makeMessageType(
|
|
367
367
|
"api_container_api.ServiceIdentifiers",
|
|
368
368
|
() => [
|
|
369
369
|
{ no: 1, name: "service_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -375,7 +375,7 @@ export const ServiceIdentifiers = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
375
375
|
/**
|
|
376
376
|
* @generated from message api_container_api.GetExistingAndHistoricalServiceIdentifiersResponse
|
|
377
377
|
*/
|
|
378
|
-
export const GetExistingAndHistoricalServiceIdentifiersResponse =
|
|
378
|
+
export const GetExistingAndHistoricalServiceIdentifiersResponse = proto3.makeMessageType(
|
|
379
379
|
"api_container_api.GetExistingAndHistoricalServiceIdentifiersResponse",
|
|
380
380
|
() => [
|
|
381
381
|
{ no: 1, name: "allIdentifiers", kind: "message", T: ServiceIdentifiers, repeated: true },
|
|
@@ -389,7 +389,7 @@ export const GetExistingAndHistoricalServiceIdentifiersResponse = /*@__PURE__*/
|
|
|
389
389
|
*
|
|
390
390
|
* @generated from message api_container_api.ExecCommandArgs
|
|
391
391
|
*/
|
|
392
|
-
export const ExecCommandArgs =
|
|
392
|
+
export const ExecCommandArgs = proto3.makeMessageType(
|
|
393
393
|
"api_container_api.ExecCommandArgs",
|
|
394
394
|
() => [
|
|
395
395
|
{ no: 1, name: "service_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -400,7 +400,7 @@ export const ExecCommandArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
400
400
|
/**
|
|
401
401
|
* @generated from message api_container_api.ExecCommandResponse
|
|
402
402
|
*/
|
|
403
|
-
export const ExecCommandResponse =
|
|
403
|
+
export const ExecCommandResponse = proto3.makeMessageType(
|
|
404
404
|
"api_container_api.ExecCommandResponse",
|
|
405
405
|
() => [
|
|
406
406
|
{ no: 1, name: "exit_code", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
@@ -415,7 +415,7 @@ export const ExecCommandResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
415
415
|
*
|
|
416
416
|
* @generated from message api_container_api.WaitForHttpGetEndpointAvailabilityArgs
|
|
417
417
|
*/
|
|
418
|
-
export const WaitForHttpGetEndpointAvailabilityArgs =
|
|
418
|
+
export const WaitForHttpGetEndpointAvailabilityArgs = proto3.makeMessageType(
|
|
419
419
|
"api_container_api.WaitForHttpGetEndpointAvailabilityArgs",
|
|
420
420
|
() => [
|
|
421
421
|
{ no: 1, name: "service_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -435,7 +435,7 @@ export const WaitForHttpGetEndpointAvailabilityArgs = /*@__PURE__*/ proto3.makeM
|
|
|
435
435
|
*
|
|
436
436
|
* @generated from message api_container_api.WaitForHttpPostEndpointAvailabilityArgs
|
|
437
437
|
*/
|
|
438
|
-
export const WaitForHttpPostEndpointAvailabilityArgs =
|
|
438
|
+
export const WaitForHttpPostEndpointAvailabilityArgs = proto3.makeMessageType(
|
|
439
439
|
"api_container_api.WaitForHttpPostEndpointAvailabilityArgs",
|
|
440
440
|
() => [
|
|
441
441
|
{ no: 1, name: "service_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -456,7 +456,7 @@ export const WaitForHttpPostEndpointAvailabilityArgs = /*@__PURE__*/ proto3.make
|
|
|
456
456
|
*
|
|
457
457
|
* @generated from message api_container_api.StreamedDataChunk
|
|
458
458
|
*/
|
|
459
|
-
export const StreamedDataChunk =
|
|
459
|
+
export const StreamedDataChunk = proto3.makeMessageType(
|
|
460
460
|
"api_container_api.StreamedDataChunk",
|
|
461
461
|
() => [
|
|
462
462
|
{ no: 1, name: "data", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
@@ -468,7 +468,7 @@ export const StreamedDataChunk = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
468
468
|
/**
|
|
469
469
|
* @generated from message api_container_api.DataChunkMetadata
|
|
470
470
|
*/
|
|
471
|
-
export const DataChunkMetadata =
|
|
471
|
+
export const DataChunkMetadata = proto3.makeMessageType(
|
|
472
472
|
"api_container_api.DataChunkMetadata",
|
|
473
473
|
() => [
|
|
474
474
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -482,7 +482,7 @@ export const DataChunkMetadata = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
482
482
|
*
|
|
483
483
|
* @generated from message api_container_api.UploadFilesArtifactResponse
|
|
484
484
|
*/
|
|
485
|
-
export const UploadFilesArtifactResponse =
|
|
485
|
+
export const UploadFilesArtifactResponse = proto3.makeMessageType(
|
|
486
486
|
"api_container_api.UploadFilesArtifactResponse",
|
|
487
487
|
() => [
|
|
488
488
|
{ no: 1, name: "uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -497,7 +497,7 @@ export const UploadFilesArtifactResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
497
497
|
*
|
|
498
498
|
* @generated from message api_container_api.DownloadFilesArtifactArgs
|
|
499
499
|
*/
|
|
500
|
-
export const DownloadFilesArtifactArgs =
|
|
500
|
+
export const DownloadFilesArtifactArgs = proto3.makeMessageType(
|
|
501
501
|
"api_container_api.DownloadFilesArtifactArgs",
|
|
502
502
|
() => [
|
|
503
503
|
{ no: 1, name: "identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -511,7 +511,7 @@ export const DownloadFilesArtifactArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
511
511
|
*
|
|
512
512
|
* @generated from message api_container_api.StoreWebFilesArtifactArgs
|
|
513
513
|
*/
|
|
514
|
-
export const StoreWebFilesArtifactArgs =
|
|
514
|
+
export const StoreWebFilesArtifactArgs = proto3.makeMessageType(
|
|
515
515
|
"api_container_api.StoreWebFilesArtifactArgs",
|
|
516
516
|
() => [
|
|
517
517
|
{ no: 1, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -522,7 +522,7 @@ export const StoreWebFilesArtifactArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
522
522
|
/**
|
|
523
523
|
* @generated from message api_container_api.StoreWebFilesArtifactResponse
|
|
524
524
|
*/
|
|
525
|
-
export const StoreWebFilesArtifactResponse =
|
|
525
|
+
export const StoreWebFilesArtifactResponse = proto3.makeMessageType(
|
|
526
526
|
"api_container_api.StoreWebFilesArtifactResponse",
|
|
527
527
|
() => [
|
|
528
528
|
{ no: 1, name: "uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -532,7 +532,7 @@ export const StoreWebFilesArtifactResponse = /*@__PURE__*/ proto3.makeMessageTyp
|
|
|
532
532
|
/**
|
|
533
533
|
* @generated from message api_container_api.StoreFilesArtifactFromServiceArgs
|
|
534
534
|
*/
|
|
535
|
-
export const StoreFilesArtifactFromServiceArgs =
|
|
535
|
+
export const StoreFilesArtifactFromServiceArgs = proto3.makeMessageType(
|
|
536
536
|
"api_container_api.StoreFilesArtifactFromServiceArgs",
|
|
537
537
|
() => [
|
|
538
538
|
{ no: 1, name: "service_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -544,7 +544,7 @@ export const StoreFilesArtifactFromServiceArgs = /*@__PURE__*/ proto3.makeMessag
|
|
|
544
544
|
/**
|
|
545
545
|
* @generated from message api_container_api.StoreFilesArtifactFromServiceResponse
|
|
546
546
|
*/
|
|
547
|
-
export const StoreFilesArtifactFromServiceResponse =
|
|
547
|
+
export const StoreFilesArtifactFromServiceResponse = proto3.makeMessageType(
|
|
548
548
|
"api_container_api.StoreFilesArtifactFromServiceResponse",
|
|
549
549
|
() => [
|
|
550
550
|
{ no: 1, name: "uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -554,7 +554,7 @@ export const StoreFilesArtifactFromServiceResponse = /*@__PURE__*/ proto3.makeMe
|
|
|
554
554
|
/**
|
|
555
555
|
* @generated from message api_container_api.FilesArtifactNameAndUuid
|
|
556
556
|
*/
|
|
557
|
-
export const FilesArtifactNameAndUuid =
|
|
557
|
+
export const FilesArtifactNameAndUuid = proto3.makeMessageType(
|
|
558
558
|
"api_container_api.FilesArtifactNameAndUuid",
|
|
559
559
|
() => [
|
|
560
560
|
{ no: 1, name: "fileName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -565,7 +565,7 @@ export const FilesArtifactNameAndUuid = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
565
565
|
/**
|
|
566
566
|
* @generated from message api_container_api.ListFilesArtifactNamesAndUuidsResponse
|
|
567
567
|
*/
|
|
568
|
-
export const ListFilesArtifactNamesAndUuidsResponse =
|
|
568
|
+
export const ListFilesArtifactNamesAndUuidsResponse = proto3.makeMessageType(
|
|
569
569
|
"api_container_api.ListFilesArtifactNamesAndUuidsResponse",
|
|
570
570
|
() => [
|
|
571
571
|
{ no: 1, name: "file_names_and_uuids", kind: "message", T: FilesArtifactNameAndUuid, repeated: true },
|
|
@@ -575,7 +575,7 @@ export const ListFilesArtifactNamesAndUuidsResponse = /*@__PURE__*/ proto3.makeM
|
|
|
575
575
|
/**
|
|
576
576
|
* @generated from message api_container_api.InspectFilesArtifactContentsRequest
|
|
577
577
|
*/
|
|
578
|
-
export const InspectFilesArtifactContentsRequest =
|
|
578
|
+
export const InspectFilesArtifactContentsRequest = proto3.makeMessageType(
|
|
579
579
|
"api_container_api.InspectFilesArtifactContentsRequest",
|
|
580
580
|
() => [
|
|
581
581
|
{ no: 1, name: "file_names_and_uuid", kind: "message", T: FilesArtifactNameAndUuid },
|
|
@@ -585,7 +585,7 @@ export const InspectFilesArtifactContentsRequest = /*@__PURE__*/ proto3.makeMess
|
|
|
585
585
|
/**
|
|
586
586
|
* @generated from message api_container_api.InspectFilesArtifactContentsResponse
|
|
587
587
|
*/
|
|
588
|
-
export const InspectFilesArtifactContentsResponse =
|
|
588
|
+
export const InspectFilesArtifactContentsResponse = proto3.makeMessageType(
|
|
589
589
|
"api_container_api.InspectFilesArtifactContentsResponse",
|
|
590
590
|
() => [
|
|
591
591
|
{ no: 1, name: "file_descriptions", kind: "message", T: FileArtifactContentsFileDescription, repeated: true },
|
|
@@ -595,7 +595,7 @@ export const InspectFilesArtifactContentsResponse = /*@__PURE__*/ proto3.makeMes
|
|
|
595
595
|
/**
|
|
596
596
|
* @generated from message api_container_api.FileArtifactContentsFileDescription
|
|
597
597
|
*/
|
|
598
|
-
export const FileArtifactContentsFileDescription =
|
|
598
|
+
export const FileArtifactContentsFileDescription = proto3.makeMessageType(
|
|
599
599
|
"api_container_api.FileArtifactContentsFileDescription",
|
|
600
600
|
() => [
|
|
601
601
|
{ no: 1, name: "path", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -607,7 +607,7 @@ export const FileArtifactContentsFileDescription = /*@__PURE__*/ proto3.makeMess
|
|
|
607
607
|
/**
|
|
608
608
|
* @generated from message api_container_api.ConnectServicesArgs
|
|
609
609
|
*/
|
|
610
|
-
export const ConnectServicesArgs =
|
|
610
|
+
export const ConnectServicesArgs = proto3.makeMessageType(
|
|
611
611
|
"api_container_api.ConnectServicesArgs",
|
|
612
612
|
() => [
|
|
613
613
|
{ no: 1, name: "connect", kind: "enum", T: proto3.getEnumType(Connect) },
|
|
@@ -617,7 +617,7 @@ export const ConnectServicesArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
617
617
|
/**
|
|
618
618
|
* @generated from message api_container_api.ConnectServicesResponse
|
|
619
619
|
*/
|
|
620
|
-
export const ConnectServicesResponse =
|
|
620
|
+
export const ConnectServicesResponse = proto3.makeMessageType(
|
|
621
621
|
"api_container_api.ConnectServicesResponse",
|
|
622
622
|
[],
|
|
623
623
|
);
|
|
@@ -625,7 +625,7 @@ export const ConnectServicesResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
625
625
|
/**
|
|
626
626
|
* @generated from message api_container_api.GetStarlarkRunResponse
|
|
627
627
|
*/
|
|
628
|
-
export const GetStarlarkRunResponse =
|
|
628
|
+
export const GetStarlarkRunResponse = proto3.makeMessageType(
|
|
629
629
|
"api_container_api.GetStarlarkRunResponse",
|
|
630
630
|
() => [
|
|
631
631
|
{ no: 1, name: "package_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -636,13 +636,14 @@ export const GetStarlarkRunResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
636
636
|
{ no: 6, name: "main_function_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
637
637
|
{ no: 7, name: "experimental_features", kind: "enum", T: proto3.getEnumType(KurtosisFeatureFlag), repeated: true },
|
|
638
638
|
{ no: 8, name: "restart_policy", kind: "enum", T: proto3.getEnumType(RestartPolicy) },
|
|
639
|
+
{ no: 9, name: "initial_serialized_params", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
639
640
|
],
|
|
640
641
|
);
|
|
641
642
|
|
|
642
643
|
/**
|
|
643
644
|
* @generated from message api_container_api.PlanYaml
|
|
644
645
|
*/
|
|
645
|
-
export const PlanYaml =
|
|
646
|
+
export const PlanYaml = proto3.makeMessageType(
|
|
646
647
|
"api_container_api.PlanYaml",
|
|
647
648
|
() => [
|
|
648
649
|
{ no: 1, name: "plan_yaml", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -652,7 +653,7 @@ export const PlanYaml = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
652
653
|
/**
|
|
653
654
|
* @generated from message api_container_api.StarlarkScriptPlanYamlArgs
|
|
654
655
|
*/
|
|
655
|
-
export const StarlarkScriptPlanYamlArgs =
|
|
656
|
+
export const StarlarkScriptPlanYamlArgs = proto3.makeMessageType(
|
|
656
657
|
"api_container_api.StarlarkScriptPlanYamlArgs",
|
|
657
658
|
() => [
|
|
658
659
|
{ no: 1, name: "serialized_script", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -664,7 +665,7 @@ export const StarlarkScriptPlanYamlArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
664
665
|
/**
|
|
665
666
|
* @generated from message api_container_api.StarlarkPackagePlanYamlArgs
|
|
666
667
|
*/
|
|
667
|
-
export const StarlarkPackagePlanYamlArgs =
|
|
668
|
+
export const StarlarkPackagePlanYamlArgs = proto3.makeMessageType(
|
|
668
669
|
"api_container_api.StarlarkPackagePlanYamlArgs",
|
|
669
670
|
() => [
|
|
670
671
|
{ no: 1, name: "package_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v1.
|
|
1
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
2
2
|
// @generated from file engine_service.proto (package engine_api, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
@@ -8,7 +8,7 @@ import { proto3, Timestamp } from "@bufbuild/protobuf";
|
|
|
8
8
|
/**
|
|
9
9
|
* @generated from enum engine_api.EnclaveMode
|
|
10
10
|
*/
|
|
11
|
-
export const EnclaveMode =
|
|
11
|
+
export const EnclaveMode = proto3.makeEnum(
|
|
12
12
|
"engine_api.EnclaveMode",
|
|
13
13
|
[
|
|
14
14
|
{no: 0, name: "TEST"},
|
|
@@ -25,7 +25,7 @@ export const EnclaveMode = /*@__PURE__*/ proto3.makeEnum(
|
|
|
25
25
|
*
|
|
26
26
|
* @generated from enum engine_api.EnclaveContainersStatus
|
|
27
27
|
*/
|
|
28
|
-
export const EnclaveContainersStatus =
|
|
28
|
+
export const EnclaveContainersStatus = proto3.makeEnum(
|
|
29
29
|
"engine_api.EnclaveContainersStatus",
|
|
30
30
|
[
|
|
31
31
|
{no: 0, name: "EnclaveContainersStatus_EMPTY"},
|
|
@@ -39,7 +39,7 @@ export const EnclaveContainersStatus = /*@__PURE__*/ proto3.makeEnum(
|
|
|
39
39
|
*
|
|
40
40
|
* @generated from enum engine_api.EnclaveAPIContainerStatus
|
|
41
41
|
*/
|
|
42
|
-
export const EnclaveAPIContainerStatus =
|
|
42
|
+
export const EnclaveAPIContainerStatus = proto3.makeEnum(
|
|
43
43
|
"engine_api.EnclaveAPIContainerStatus",
|
|
44
44
|
[
|
|
45
45
|
{no: 0, name: "EnclaveAPIContainerStatus_NONEXISTENT"},
|
|
@@ -54,7 +54,7 @@ export const EnclaveAPIContainerStatus = /*@__PURE__*/ proto3.makeEnum(
|
|
|
54
54
|
*
|
|
55
55
|
* @generated from enum engine_api.LogLineOperator
|
|
56
56
|
*/
|
|
57
|
-
export const LogLineOperator =
|
|
57
|
+
export const LogLineOperator = proto3.makeEnum(
|
|
58
58
|
"engine_api.LogLineOperator",
|
|
59
59
|
[
|
|
60
60
|
{no: 0, name: "LogLineOperator_DOES_CONTAIN_TEXT"},
|
|
@@ -71,7 +71,7 @@ export const LogLineOperator = /*@__PURE__*/ proto3.makeEnum(
|
|
|
71
71
|
*
|
|
72
72
|
* @generated from message engine_api.GetEngineInfoResponse
|
|
73
73
|
*/
|
|
74
|
-
export const GetEngineInfoResponse =
|
|
74
|
+
export const GetEngineInfoResponse = proto3.makeMessageType(
|
|
75
75
|
"engine_api.GetEngineInfoResponse",
|
|
76
76
|
() => [
|
|
77
77
|
{ no: 1, name: "engine_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -85,7 +85,7 @@ export const GetEngineInfoResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
85
85
|
*
|
|
86
86
|
* @generated from message engine_api.CreateEnclaveArgs
|
|
87
87
|
*/
|
|
88
|
-
export const CreateEnclaveArgs =
|
|
88
|
+
export const CreateEnclaveArgs = proto3.makeMessageType(
|
|
89
89
|
"engine_api.CreateEnclaveArgs",
|
|
90
90
|
() => [
|
|
91
91
|
{ no: 1, name: "enclave_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
@@ -99,7 +99,7 @@ export const CreateEnclaveArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
99
99
|
/**
|
|
100
100
|
* @generated from message engine_api.CreateEnclaveResponse
|
|
101
101
|
*/
|
|
102
|
-
export const CreateEnclaveResponse =
|
|
102
|
+
export const CreateEnclaveResponse = proto3.makeMessageType(
|
|
103
103
|
"engine_api.CreateEnclaveResponse",
|
|
104
104
|
() => [
|
|
105
105
|
{ no: 1, name: "enclave_info", kind: "message", T: EnclaveInfo },
|
|
@@ -109,7 +109,7 @@ export const CreateEnclaveResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
109
109
|
/**
|
|
110
110
|
* @generated from message engine_api.EnclaveAPIContainerInfo
|
|
111
111
|
*/
|
|
112
|
-
export const EnclaveAPIContainerInfo =
|
|
112
|
+
export const EnclaveAPIContainerInfo = proto3.makeMessageType(
|
|
113
113
|
"engine_api.EnclaveAPIContainerInfo",
|
|
114
114
|
() => [
|
|
115
115
|
{ no: 1, name: "container_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -124,7 +124,7 @@ export const EnclaveAPIContainerInfo = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
124
124
|
*
|
|
125
125
|
* @generated from message engine_api.EnclaveAPIContainerHostMachineInfo
|
|
126
126
|
*/
|
|
127
|
-
export const EnclaveAPIContainerHostMachineInfo =
|
|
127
|
+
export const EnclaveAPIContainerHostMachineInfo = proto3.makeMessageType(
|
|
128
128
|
"engine_api.EnclaveAPIContainerHostMachineInfo",
|
|
129
129
|
() => [
|
|
130
130
|
{ no: 4, name: "ip_on_host_machine", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -137,7 +137,7 @@ export const EnclaveAPIContainerHostMachineInfo = /*@__PURE__*/ proto3.makeMessa
|
|
|
137
137
|
*
|
|
138
138
|
* @generated from message engine_api.EnclaveInfo
|
|
139
139
|
*/
|
|
140
|
-
export const EnclaveInfo =
|
|
140
|
+
export const EnclaveInfo = proto3.makeMessageType(
|
|
141
141
|
"engine_api.EnclaveInfo",
|
|
142
142
|
() => [
|
|
143
143
|
{ no: 1, name: "enclave_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -155,7 +155,7 @@ export const EnclaveInfo = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
155
155
|
/**
|
|
156
156
|
* @generated from message engine_api.GetEnclavesResponse
|
|
157
157
|
*/
|
|
158
|
-
export const GetEnclavesResponse =
|
|
158
|
+
export const GetEnclavesResponse = proto3.makeMessageType(
|
|
159
159
|
"engine_api.GetEnclavesResponse",
|
|
160
160
|
() => [
|
|
161
161
|
{ no: 1, name: "enclave_info", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "message", T: EnclaveInfo} },
|
|
@@ -167,7 +167,7 @@ export const GetEnclavesResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
167
167
|
*
|
|
168
168
|
* @generated from message engine_api.EnclaveIdentifiers
|
|
169
169
|
*/
|
|
170
|
-
export const EnclaveIdentifiers =
|
|
170
|
+
export const EnclaveIdentifiers = proto3.makeMessageType(
|
|
171
171
|
"engine_api.EnclaveIdentifiers",
|
|
172
172
|
() => [
|
|
173
173
|
{ no: 1, name: "enclave_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -179,7 +179,7 @@ export const EnclaveIdentifiers = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
179
179
|
/**
|
|
180
180
|
* @generated from message engine_api.GetExistingAndHistoricalEnclaveIdentifiersResponse
|
|
181
181
|
*/
|
|
182
|
-
export const GetExistingAndHistoricalEnclaveIdentifiersResponse =
|
|
182
|
+
export const GetExistingAndHistoricalEnclaveIdentifiersResponse = proto3.makeMessageType(
|
|
183
183
|
"engine_api.GetExistingAndHistoricalEnclaveIdentifiersResponse",
|
|
184
184
|
() => [
|
|
185
185
|
{ no: 1, name: "allIdentifiers", kind: "message", T: EnclaveIdentifiers, repeated: true },
|
|
@@ -193,7 +193,7 @@ export const GetExistingAndHistoricalEnclaveIdentifiersResponse = /*@__PURE__*/
|
|
|
193
193
|
*
|
|
194
194
|
* @generated from message engine_api.StopEnclaveArgs
|
|
195
195
|
*/
|
|
196
|
-
export const StopEnclaveArgs =
|
|
196
|
+
export const StopEnclaveArgs = proto3.makeMessageType(
|
|
197
197
|
"engine_api.StopEnclaveArgs",
|
|
198
198
|
() => [
|
|
199
199
|
{ no: 1, name: "enclave_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -207,7 +207,7 @@ export const StopEnclaveArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
207
207
|
*
|
|
208
208
|
* @generated from message engine_api.DestroyEnclaveArgs
|
|
209
209
|
*/
|
|
210
|
-
export const DestroyEnclaveArgs =
|
|
210
|
+
export const DestroyEnclaveArgs = proto3.makeMessageType(
|
|
211
211
|
"engine_api.DestroyEnclaveArgs",
|
|
212
212
|
() => [
|
|
213
213
|
{ no: 1, name: "enclave_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -221,7 +221,7 @@ export const DestroyEnclaveArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
221
221
|
*
|
|
222
222
|
* @generated from message engine_api.CleanArgs
|
|
223
223
|
*/
|
|
224
|
-
export const CleanArgs =
|
|
224
|
+
export const CleanArgs = proto3.makeMessageType(
|
|
225
225
|
"engine_api.CleanArgs",
|
|
226
226
|
() => [
|
|
227
227
|
{ no: 1, name: "should_clean_all", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
@@ -231,7 +231,7 @@ export const CleanArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
231
231
|
/**
|
|
232
232
|
* @generated from message engine_api.EnclaveNameAndUuid
|
|
233
233
|
*/
|
|
234
|
-
export const EnclaveNameAndUuid =
|
|
234
|
+
export const EnclaveNameAndUuid = proto3.makeMessageType(
|
|
235
235
|
"engine_api.EnclaveNameAndUuid",
|
|
236
236
|
() => [
|
|
237
237
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -242,7 +242,7 @@ export const EnclaveNameAndUuid = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
242
242
|
/**
|
|
243
243
|
* @generated from message engine_api.CleanResponse
|
|
244
244
|
*/
|
|
245
|
-
export const CleanResponse =
|
|
245
|
+
export const CleanResponse = proto3.makeMessageType(
|
|
246
246
|
"engine_api.CleanResponse",
|
|
247
247
|
() => [
|
|
248
248
|
{ no: 1, name: "removed_enclave_name_and_uuids", kind: "message", T: EnclaveNameAndUuid, repeated: true },
|
|
@@ -256,7 +256,7 @@ export const CleanResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
256
256
|
*
|
|
257
257
|
* @generated from message engine_api.GetServiceLogsArgs
|
|
258
258
|
*/
|
|
259
|
-
export const GetServiceLogsArgs =
|
|
259
|
+
export const GetServiceLogsArgs = proto3.makeMessageType(
|
|
260
260
|
"engine_api.GetServiceLogsArgs",
|
|
261
261
|
() => [
|
|
262
262
|
{ no: 1, name: "enclave_identifier", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -271,7 +271,7 @@ export const GetServiceLogsArgs = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
271
271
|
/**
|
|
272
272
|
* @generated from message engine_api.GetServiceLogsResponse
|
|
273
273
|
*/
|
|
274
|
-
export const GetServiceLogsResponse =
|
|
274
|
+
export const GetServiceLogsResponse = proto3.makeMessageType(
|
|
275
275
|
"engine_api.GetServiceLogsResponse",
|
|
276
276
|
() => [
|
|
277
277
|
{ no: 1, name: "service_logs_by_service_uuid", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "message", T: LogLine} },
|
|
@@ -282,7 +282,7 @@ export const GetServiceLogsResponse = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
282
282
|
/**
|
|
283
283
|
* @generated from message engine_api.LogLine
|
|
284
284
|
*/
|
|
285
|
-
export const LogLine =
|
|
285
|
+
export const LogLine = proto3.makeMessageType(
|
|
286
286
|
"engine_api.LogLine",
|
|
287
287
|
() => [
|
|
288
288
|
{ no: 1, name: "line", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
@@ -293,7 +293,7 @@ export const LogLine = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
293
293
|
/**
|
|
294
294
|
* @generated from message engine_api.LogLineFilter
|
|
295
295
|
*/
|
|
296
|
-
export const LogLineFilter =
|
|
296
|
+
export const LogLineFilter = proto3.makeMessageType(
|
|
297
297
|
"engine_api.LogLineFilter",
|
|
298
298
|
() => [
|
|
299
299
|
{ no: 1, name: "operator", kind: "enum", T: proto3.getEnumType(LogLineOperator) },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as grpcWeb from 'grpc-web';
|
|
2
2
|
|
|
3
|
-
import * as engine_service_pb from './engine_service_pb';
|
|
4
|
-
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
3
|
+
import * as engine_service_pb from './engine_service_pb';
|
|
4
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export class EngineServiceClient {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
|
-
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
4
|
-
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
|
|
3
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
4
|
+
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export class GetEngineInfoResponse extends jspb.Message {
|
|
@@ -4,5 +4,5 @@ exports.KURTOSIS_VERSION = void 0;
|
|
|
4
4
|
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
|
|
5
5
|
// This is necessary so that Kurt Core consumers (e.g. modules) will know if they're compatible with the currently-running
|
|
6
6
|
// API container
|
|
7
|
-
exports.KURTOSIS_VERSION = "0.89.
|
|
7
|
+
exports.KURTOSIS_VERSION = "0.89.1";
|
|
8
8
|
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kurtosis-sdk",
|
|
3
3
|
"//": "NOTE: DO NOT UPDATE THIS VERSION MANUALLY - IT WILL BE UPDATED DURING THE RELEASE PROCESS!",
|
|
4
|
-
"version": "0.89.
|
|
4
|
+
"version": "0.89.1",
|
|
5
5
|
"main": "./build/index",
|
|
6
6
|
"description": "This repo contains a Typescript client for communicating with the Kurtosis Engine server, which is responsible for creating, managing and destroying Kurtosis Enclaves.",
|
|
7
7
|
"types": "./build/index",
|