kurtosis-sdk 0.49.5
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_pb.d.ts +110 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_pb.js +581 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.d.ts +236 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.js +1174 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.d.ts +918 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.js +7616 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_pb.d.ts +30 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_pb.js +70 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_web_pb.d.ts +44 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_web_pb.js +198 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_pb.d.ts +41 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_pb.js +324 -0
- package/build/core/lib/constructor_calls.d.ts +33 -0
- package/build/core/lib/constructor_calls.js +328 -0
- package/build/core/lib/enclaves/enclave_context.d.ts +39 -0
- package/build/core/lib/enclaves/enclave_context.js +501 -0
- package/build/core/lib/enclaves/generic_api_container_client.d.ts +23 -0
- package/build/core/lib/enclaves/generic_api_container_client.js +6 -0
- package/build/core/lib/enclaves/generic_path_joiner.d.ts +3 -0
- package/build/core/lib/enclaves/generic_path_joiner.js +6 -0
- package/build/core/lib/enclaves/generic_tgz_archiver.d.ts +4 -0
- package/build/core/lib/enclaves/generic_tgz_archiver.js +2 -0
- package/build/core/lib/enclaves/grpc_node_api_container_client.d.ts +29 -0
- package/build/core/lib/enclaves/grpc_node_api_container_client.js +415 -0
- package/build/core/lib/enclaves/grpc_web_api_container_client.d.ts +28 -0
- package/build/core/lib/enclaves/grpc_web_api_container_client.js +415 -0
- package/build/core/lib/enclaves/node_tgz_archiver.d.ts +6 -0
- package/build/core/lib/enclaves/node_tgz_archiver.js +94 -0
- package/build/core/lib/enclaves/partition_connection.d.ts +20 -0
- package/build/core/lib/enclaves/partition_connection.js +62 -0
- package/build/core/lib/enclaves/template_and_data.d.ts +5 -0
- package/build/core/lib/enclaves/template_and_data.js +11 -0
- package/build/core/lib/enclaves/web_tgz_archiver.d.ts +5 -0
- package/build/core/lib/enclaves/web_tgz_archiver.js +26 -0
- package/build/core/lib/modules/module_context.d.ts +9 -0
- package/build/core/lib/modules/module_context.js +34 -0
- package/build/core/lib/services/container_config.d.ts +39 -0
- package/build/core/lib/services/container_config.js +85 -0
- package/build/core/lib/services/port_spec.d.ts +11 -0
- package/build/core/lib/services/port_spec.js +16 -0
- package/build/core/lib/services/service.d.ts +1 -0
- package/build/core/lib/services/service.js +6 -0
- package/build/core/lib/services/service_context.d.ts +19 -0
- package/build/core/lib/services/service_context.js +58 -0
- package/build/core/module_launch_api/args_io.d.ts +4 -0
- package/build/core/module_launch_api/args_io.js +60 -0
- package/build/core/module_launch_api/module_container_args.d.ts +8 -0
- package/build/core/module_launch_api/module_container_args.js +24 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_pb.d.ts +50 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_pb.js +186 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.d.ts +92 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.js +442 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.d.ts +267 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.js +2141 -0
- package/build/engine/lib/constructor_calls.d.ts +5 -0
- package/build/engine/lib/constructor_calls.js +34 -0
- package/build/engine/lib/kurtosis_context/generic_engine_client.d.ts +10 -0
- package/build/engine/lib/kurtosis_context/generic_engine_client.js +2 -0
- package/build/engine/lib/kurtosis_context/grpc_node_engine_client.d.ts +14 -0
- package/build/engine/lib/kurtosis_context/grpc_node_engine_client.js +165 -0
- package/build/engine/lib/kurtosis_context/grpc_web_engine_client.d.ts +14 -0
- package/build/engine/lib/kurtosis_context/grpc_web_engine_client.js +165 -0
- package/build/engine/lib/kurtosis_context/kurtosis_context.d.ts +19 -0
- package/build/engine/lib/kurtosis_context/kurtosis_context.js +236 -0
- package/build/index.d.ts +19 -0
- package/build/index.js +55 -0
- package/build/kurtosis_version/kurtosis_version.d.ts +1 -0
- package/build/kurtosis_version/kurtosis_version.js +8 -0
- package/package.json +59 -0
|
@@ -0,0 +1,918 @@
|
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
|
+
|
|
3
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class Port extends jspb.Message {
|
|
7
|
+
getNumber(): number;
|
|
8
|
+
setNumber(value: number): Port;
|
|
9
|
+
|
|
10
|
+
getProtocol(): Port.Protocol;
|
|
11
|
+
setProtocol(value: Port.Protocol): Port;
|
|
12
|
+
|
|
13
|
+
serializeBinary(): Uint8Array;
|
|
14
|
+
toObject(includeInstance?: boolean): Port.AsObject;
|
|
15
|
+
static toObject(includeInstance: boolean, msg: Port): Port.AsObject;
|
|
16
|
+
static serializeBinaryToWriter(message: Port, writer: jspb.BinaryWriter): void;
|
|
17
|
+
static deserializeBinary(bytes: Uint8Array): Port;
|
|
18
|
+
static deserializeBinaryFromReader(message: Port, reader: jspb.BinaryReader): Port;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export namespace Port {
|
|
22
|
+
export type AsObject = {
|
|
23
|
+
number: number,
|
|
24
|
+
protocol: Port.Protocol,
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export enum Protocol {
|
|
28
|
+
TCP = 0,
|
|
29
|
+
SCTP = 1,
|
|
30
|
+
UDP = 2,
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class ServiceInfo extends jspb.Message {
|
|
35
|
+
getServiceGuid(): string;
|
|
36
|
+
setServiceGuid(value: string): ServiceInfo;
|
|
37
|
+
|
|
38
|
+
getPrivateIpAddr(): string;
|
|
39
|
+
setPrivateIpAddr(value: string): ServiceInfo;
|
|
40
|
+
|
|
41
|
+
getPrivatePortsMap(): jspb.Map<string, Port>;
|
|
42
|
+
clearPrivatePortsMap(): ServiceInfo;
|
|
43
|
+
|
|
44
|
+
getMaybePublicIpAddr(): string;
|
|
45
|
+
setMaybePublicIpAddr(value: string): ServiceInfo;
|
|
46
|
+
|
|
47
|
+
getMaybePublicPortsMap(): jspb.Map<string, Port>;
|
|
48
|
+
clearMaybePublicPortsMap(): ServiceInfo;
|
|
49
|
+
|
|
50
|
+
serializeBinary(): Uint8Array;
|
|
51
|
+
toObject(includeInstance?: boolean): ServiceInfo.AsObject;
|
|
52
|
+
static toObject(includeInstance: boolean, msg: ServiceInfo): ServiceInfo.AsObject;
|
|
53
|
+
static serializeBinaryToWriter(message: ServiceInfo, writer: jspb.BinaryWriter): void;
|
|
54
|
+
static deserializeBinary(bytes: Uint8Array): ServiceInfo;
|
|
55
|
+
static deserializeBinaryFromReader(message: ServiceInfo, reader: jspb.BinaryReader): ServiceInfo;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export namespace ServiceInfo {
|
|
59
|
+
export type AsObject = {
|
|
60
|
+
serviceGuid: string,
|
|
61
|
+
privateIpAddr: string,
|
|
62
|
+
privatePortsMap: Array<[string, Port.AsObject]>,
|
|
63
|
+
maybePublicIpAddr: string,
|
|
64
|
+
maybePublicPortsMap: Array<[string, Port.AsObject]>,
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export class ServiceConfig extends jspb.Message {
|
|
69
|
+
getContainerImageName(): string;
|
|
70
|
+
setContainerImageName(value: string): ServiceConfig;
|
|
71
|
+
|
|
72
|
+
getPrivatePortsMap(): jspb.Map<string, Port>;
|
|
73
|
+
clearPrivatePortsMap(): ServiceConfig;
|
|
74
|
+
|
|
75
|
+
getPublicPortsMap(): jspb.Map<string, Port>;
|
|
76
|
+
clearPublicPortsMap(): ServiceConfig;
|
|
77
|
+
|
|
78
|
+
getEntrypointArgsList(): Array<string>;
|
|
79
|
+
setEntrypointArgsList(value: Array<string>): ServiceConfig;
|
|
80
|
+
clearEntrypointArgsList(): ServiceConfig;
|
|
81
|
+
addEntrypointArgs(value: string, index?: number): ServiceConfig;
|
|
82
|
+
|
|
83
|
+
getCmdArgsList(): Array<string>;
|
|
84
|
+
setCmdArgsList(value: Array<string>): ServiceConfig;
|
|
85
|
+
clearCmdArgsList(): ServiceConfig;
|
|
86
|
+
addCmdArgs(value: string, index?: number): ServiceConfig;
|
|
87
|
+
|
|
88
|
+
getEnvVarsMap(): jspb.Map<string, string>;
|
|
89
|
+
clearEnvVarsMap(): ServiceConfig;
|
|
90
|
+
|
|
91
|
+
getFilesArtifactMountpointsMap(): jspb.Map<string, string>;
|
|
92
|
+
clearFilesArtifactMountpointsMap(): ServiceConfig;
|
|
93
|
+
|
|
94
|
+
getCpuAllocationMillicpus(): number;
|
|
95
|
+
setCpuAllocationMillicpus(value: number): ServiceConfig;
|
|
96
|
+
|
|
97
|
+
getMemoryAllocationMegabytes(): number;
|
|
98
|
+
setMemoryAllocationMegabytes(value: number): ServiceConfig;
|
|
99
|
+
|
|
100
|
+
getPrivateIpAddrPlaceholder(): string;
|
|
101
|
+
setPrivateIpAddrPlaceholder(value: string): ServiceConfig;
|
|
102
|
+
|
|
103
|
+
serializeBinary(): Uint8Array;
|
|
104
|
+
toObject(includeInstance?: boolean): ServiceConfig.AsObject;
|
|
105
|
+
static toObject(includeInstance: boolean, msg: ServiceConfig): ServiceConfig.AsObject;
|
|
106
|
+
static serializeBinaryToWriter(message: ServiceConfig, writer: jspb.BinaryWriter): void;
|
|
107
|
+
static deserializeBinary(bytes: Uint8Array): ServiceConfig;
|
|
108
|
+
static deserializeBinaryFromReader(message: ServiceConfig, reader: jspb.BinaryReader): ServiceConfig;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export namespace ServiceConfig {
|
|
112
|
+
export type AsObject = {
|
|
113
|
+
containerImageName: string,
|
|
114
|
+
privatePortsMap: Array<[string, Port.AsObject]>,
|
|
115
|
+
publicPortsMap: Array<[string, Port.AsObject]>,
|
|
116
|
+
entrypointArgsList: Array<string>,
|
|
117
|
+
cmdArgsList: Array<string>,
|
|
118
|
+
envVarsMap: Array<[string, string]>,
|
|
119
|
+
filesArtifactMountpointsMap: Array<[string, string]>,
|
|
120
|
+
cpuAllocationMillicpus: number,
|
|
121
|
+
memoryAllocationMegabytes: number,
|
|
122
|
+
privateIpAddrPlaceholder: string,
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export class ModuleInfo extends jspb.Message {
|
|
127
|
+
getGuid(): string;
|
|
128
|
+
setGuid(value: string): ModuleInfo;
|
|
129
|
+
|
|
130
|
+
getPrivateIpAddr(): string;
|
|
131
|
+
setPrivateIpAddr(value: string): ModuleInfo;
|
|
132
|
+
|
|
133
|
+
getPrivateGrpcPort(): Port | undefined;
|
|
134
|
+
setPrivateGrpcPort(value?: Port): ModuleInfo;
|
|
135
|
+
hasPrivateGrpcPort(): boolean;
|
|
136
|
+
clearPrivateGrpcPort(): ModuleInfo;
|
|
137
|
+
|
|
138
|
+
getMaybePublicIpAddr(): string;
|
|
139
|
+
setMaybePublicIpAddr(value: string): ModuleInfo;
|
|
140
|
+
|
|
141
|
+
getMaybePublicGrpcPort(): Port | undefined;
|
|
142
|
+
setMaybePublicGrpcPort(value?: Port): ModuleInfo;
|
|
143
|
+
hasMaybePublicGrpcPort(): boolean;
|
|
144
|
+
clearMaybePublicGrpcPort(): ModuleInfo;
|
|
145
|
+
|
|
146
|
+
serializeBinary(): Uint8Array;
|
|
147
|
+
toObject(includeInstance?: boolean): ModuleInfo.AsObject;
|
|
148
|
+
static toObject(includeInstance: boolean, msg: ModuleInfo): ModuleInfo.AsObject;
|
|
149
|
+
static serializeBinaryToWriter(message: ModuleInfo, writer: jspb.BinaryWriter): void;
|
|
150
|
+
static deserializeBinary(bytes: Uint8Array): ModuleInfo;
|
|
151
|
+
static deserializeBinaryFromReader(message: ModuleInfo, reader: jspb.BinaryReader): ModuleInfo;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export namespace ModuleInfo {
|
|
155
|
+
export type AsObject = {
|
|
156
|
+
guid: string,
|
|
157
|
+
privateIpAddr: string,
|
|
158
|
+
privateGrpcPort?: Port.AsObject,
|
|
159
|
+
maybePublicIpAddr: string,
|
|
160
|
+
maybePublicGrpcPort?: Port.AsObject,
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export class LoadModuleArgs extends jspb.Message {
|
|
165
|
+
getModuleId(): string;
|
|
166
|
+
setModuleId(value: string): LoadModuleArgs;
|
|
167
|
+
|
|
168
|
+
getContainerImage(): string;
|
|
169
|
+
setContainerImage(value: string): LoadModuleArgs;
|
|
170
|
+
|
|
171
|
+
getSerializedParams(): string;
|
|
172
|
+
setSerializedParams(value: string): LoadModuleArgs;
|
|
173
|
+
|
|
174
|
+
serializeBinary(): Uint8Array;
|
|
175
|
+
toObject(includeInstance?: boolean): LoadModuleArgs.AsObject;
|
|
176
|
+
static toObject(includeInstance: boolean, msg: LoadModuleArgs): LoadModuleArgs.AsObject;
|
|
177
|
+
static serializeBinaryToWriter(message: LoadModuleArgs, writer: jspb.BinaryWriter): void;
|
|
178
|
+
static deserializeBinary(bytes: Uint8Array): LoadModuleArgs;
|
|
179
|
+
static deserializeBinaryFromReader(message: LoadModuleArgs, reader: jspb.BinaryReader): LoadModuleArgs;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export namespace LoadModuleArgs {
|
|
183
|
+
export type AsObject = {
|
|
184
|
+
moduleId: string,
|
|
185
|
+
containerImage: string,
|
|
186
|
+
serializedParams: string,
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export class LoadModuleResponse extends jspb.Message {
|
|
191
|
+
getPrivateIpAddr(): string;
|
|
192
|
+
setPrivateIpAddr(value: string): LoadModuleResponse;
|
|
193
|
+
|
|
194
|
+
getPrivatePort(): Port | undefined;
|
|
195
|
+
setPrivatePort(value?: Port): LoadModuleResponse;
|
|
196
|
+
hasPrivatePort(): boolean;
|
|
197
|
+
clearPrivatePort(): LoadModuleResponse;
|
|
198
|
+
|
|
199
|
+
getPublicIpAddr(): string;
|
|
200
|
+
setPublicIpAddr(value: string): LoadModuleResponse;
|
|
201
|
+
|
|
202
|
+
getPublicPort(): Port | undefined;
|
|
203
|
+
setPublicPort(value?: Port): LoadModuleResponse;
|
|
204
|
+
hasPublicPort(): boolean;
|
|
205
|
+
clearPublicPort(): LoadModuleResponse;
|
|
206
|
+
|
|
207
|
+
getGuid(): string;
|
|
208
|
+
setGuid(value: string): LoadModuleResponse;
|
|
209
|
+
|
|
210
|
+
serializeBinary(): Uint8Array;
|
|
211
|
+
toObject(includeInstance?: boolean): LoadModuleResponse.AsObject;
|
|
212
|
+
static toObject(includeInstance: boolean, msg: LoadModuleResponse): LoadModuleResponse.AsObject;
|
|
213
|
+
static serializeBinaryToWriter(message: LoadModuleResponse, writer: jspb.BinaryWriter): void;
|
|
214
|
+
static deserializeBinary(bytes: Uint8Array): LoadModuleResponse;
|
|
215
|
+
static deserializeBinaryFromReader(message: LoadModuleResponse, reader: jspb.BinaryReader): LoadModuleResponse;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export namespace LoadModuleResponse {
|
|
219
|
+
export type AsObject = {
|
|
220
|
+
privateIpAddr: string,
|
|
221
|
+
privatePort?: Port.AsObject,
|
|
222
|
+
publicIpAddr: string,
|
|
223
|
+
publicPort?: Port.AsObject,
|
|
224
|
+
guid: string,
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
export class GetModulesArgs extends jspb.Message {
|
|
229
|
+
getIdsMap(): jspb.Map<string, boolean>;
|
|
230
|
+
clearIdsMap(): GetModulesArgs;
|
|
231
|
+
|
|
232
|
+
serializeBinary(): Uint8Array;
|
|
233
|
+
toObject(includeInstance?: boolean): GetModulesArgs.AsObject;
|
|
234
|
+
static toObject(includeInstance: boolean, msg: GetModulesArgs): GetModulesArgs.AsObject;
|
|
235
|
+
static serializeBinaryToWriter(message: GetModulesArgs, writer: jspb.BinaryWriter): void;
|
|
236
|
+
static deserializeBinary(bytes: Uint8Array): GetModulesArgs;
|
|
237
|
+
static deserializeBinaryFromReader(message: GetModulesArgs, reader: jspb.BinaryReader): GetModulesArgs;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export namespace GetModulesArgs {
|
|
241
|
+
export type AsObject = {
|
|
242
|
+
idsMap: Array<[string, boolean]>,
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export class GetModulesResponse extends jspb.Message {
|
|
247
|
+
getModuleInfoMap(): jspb.Map<string, ModuleInfo>;
|
|
248
|
+
clearModuleInfoMap(): GetModulesResponse;
|
|
249
|
+
|
|
250
|
+
serializeBinary(): Uint8Array;
|
|
251
|
+
toObject(includeInstance?: boolean): GetModulesResponse.AsObject;
|
|
252
|
+
static toObject(includeInstance: boolean, msg: GetModulesResponse): GetModulesResponse.AsObject;
|
|
253
|
+
static serializeBinaryToWriter(message: GetModulesResponse, writer: jspb.BinaryWriter): void;
|
|
254
|
+
static deserializeBinary(bytes: Uint8Array): GetModulesResponse;
|
|
255
|
+
static deserializeBinaryFromReader(message: GetModulesResponse, reader: jspb.BinaryReader): GetModulesResponse;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export namespace GetModulesResponse {
|
|
259
|
+
export type AsObject = {
|
|
260
|
+
moduleInfoMap: Array<[string, ModuleInfo.AsObject]>,
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export class UnloadModuleArgs extends jspb.Message {
|
|
265
|
+
getModuleId(): string;
|
|
266
|
+
setModuleId(value: string): UnloadModuleArgs;
|
|
267
|
+
|
|
268
|
+
serializeBinary(): Uint8Array;
|
|
269
|
+
toObject(includeInstance?: boolean): UnloadModuleArgs.AsObject;
|
|
270
|
+
static toObject(includeInstance: boolean, msg: UnloadModuleArgs): UnloadModuleArgs.AsObject;
|
|
271
|
+
static serializeBinaryToWriter(message: UnloadModuleArgs, writer: jspb.BinaryWriter): void;
|
|
272
|
+
static deserializeBinary(bytes: Uint8Array): UnloadModuleArgs;
|
|
273
|
+
static deserializeBinaryFromReader(message: UnloadModuleArgs, reader: jspb.BinaryReader): UnloadModuleArgs;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export namespace UnloadModuleArgs {
|
|
277
|
+
export type AsObject = {
|
|
278
|
+
moduleId: string,
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
export class UnloadModuleResponse extends jspb.Message {
|
|
283
|
+
getModuleGuid(): string;
|
|
284
|
+
setModuleGuid(value: string): UnloadModuleResponse;
|
|
285
|
+
|
|
286
|
+
serializeBinary(): Uint8Array;
|
|
287
|
+
toObject(includeInstance?: boolean): UnloadModuleResponse.AsObject;
|
|
288
|
+
static toObject(includeInstance: boolean, msg: UnloadModuleResponse): UnloadModuleResponse.AsObject;
|
|
289
|
+
static serializeBinaryToWriter(message: UnloadModuleResponse, writer: jspb.BinaryWriter): void;
|
|
290
|
+
static deserializeBinary(bytes: Uint8Array): UnloadModuleResponse;
|
|
291
|
+
static deserializeBinaryFromReader(message: UnloadModuleResponse, reader: jspb.BinaryReader): UnloadModuleResponse;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export namespace UnloadModuleResponse {
|
|
295
|
+
export type AsObject = {
|
|
296
|
+
moduleGuid: string,
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export class ExecuteModuleArgs extends jspb.Message {
|
|
301
|
+
getModuleId(): string;
|
|
302
|
+
setModuleId(value: string): ExecuteModuleArgs;
|
|
303
|
+
|
|
304
|
+
getSerializedParams(): string;
|
|
305
|
+
setSerializedParams(value: string): ExecuteModuleArgs;
|
|
306
|
+
|
|
307
|
+
serializeBinary(): Uint8Array;
|
|
308
|
+
toObject(includeInstance?: boolean): ExecuteModuleArgs.AsObject;
|
|
309
|
+
static toObject(includeInstance: boolean, msg: ExecuteModuleArgs): ExecuteModuleArgs.AsObject;
|
|
310
|
+
static serializeBinaryToWriter(message: ExecuteModuleArgs, writer: jspb.BinaryWriter): void;
|
|
311
|
+
static deserializeBinary(bytes: Uint8Array): ExecuteModuleArgs;
|
|
312
|
+
static deserializeBinaryFromReader(message: ExecuteModuleArgs, reader: jspb.BinaryReader): ExecuteModuleArgs;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
export namespace ExecuteModuleArgs {
|
|
316
|
+
export type AsObject = {
|
|
317
|
+
moduleId: string,
|
|
318
|
+
serializedParams: string,
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export class ExecuteModuleResponse extends jspb.Message {
|
|
323
|
+
getSerializedResult(): string;
|
|
324
|
+
setSerializedResult(value: string): ExecuteModuleResponse;
|
|
325
|
+
|
|
326
|
+
serializeBinary(): Uint8Array;
|
|
327
|
+
toObject(includeInstance?: boolean): ExecuteModuleResponse.AsObject;
|
|
328
|
+
static toObject(includeInstance: boolean, msg: ExecuteModuleResponse): ExecuteModuleResponse.AsObject;
|
|
329
|
+
static serializeBinaryToWriter(message: ExecuteModuleResponse, writer: jspb.BinaryWriter): void;
|
|
330
|
+
static deserializeBinary(bytes: Uint8Array): ExecuteModuleResponse;
|
|
331
|
+
static deserializeBinaryFromReader(message: ExecuteModuleResponse, reader: jspb.BinaryReader): ExecuteModuleResponse;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export namespace ExecuteModuleResponse {
|
|
335
|
+
export type AsObject = {
|
|
336
|
+
serializedResult: string,
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
export class StartServicesArgs extends jspb.Message {
|
|
341
|
+
getServiceIdsToConfigsMap(): jspb.Map<string, ServiceConfig>;
|
|
342
|
+
clearServiceIdsToConfigsMap(): StartServicesArgs;
|
|
343
|
+
|
|
344
|
+
getPartitionId(): string;
|
|
345
|
+
setPartitionId(value: string): StartServicesArgs;
|
|
346
|
+
|
|
347
|
+
serializeBinary(): Uint8Array;
|
|
348
|
+
toObject(includeInstance?: boolean): StartServicesArgs.AsObject;
|
|
349
|
+
static toObject(includeInstance: boolean, msg: StartServicesArgs): StartServicesArgs.AsObject;
|
|
350
|
+
static serializeBinaryToWriter(message: StartServicesArgs, writer: jspb.BinaryWriter): void;
|
|
351
|
+
static deserializeBinary(bytes: Uint8Array): StartServicesArgs;
|
|
352
|
+
static deserializeBinaryFromReader(message: StartServicesArgs, reader: jspb.BinaryReader): StartServicesArgs;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export namespace StartServicesArgs {
|
|
356
|
+
export type AsObject = {
|
|
357
|
+
serviceIdsToConfigsMap: Array<[string, ServiceConfig.AsObject]>,
|
|
358
|
+
partitionId: string,
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export class StartServicesResponse extends jspb.Message {
|
|
363
|
+
getSuccessfulServiceIdsToServiceInfoMap(): jspb.Map<string, ServiceInfo>;
|
|
364
|
+
clearSuccessfulServiceIdsToServiceInfoMap(): StartServicesResponse;
|
|
365
|
+
|
|
366
|
+
getFailedServiceIdsToErrorMap(): jspb.Map<string, string>;
|
|
367
|
+
clearFailedServiceIdsToErrorMap(): StartServicesResponse;
|
|
368
|
+
|
|
369
|
+
serializeBinary(): Uint8Array;
|
|
370
|
+
toObject(includeInstance?: boolean): StartServicesResponse.AsObject;
|
|
371
|
+
static toObject(includeInstance: boolean, msg: StartServicesResponse): StartServicesResponse.AsObject;
|
|
372
|
+
static serializeBinaryToWriter(message: StartServicesResponse, writer: jspb.BinaryWriter): void;
|
|
373
|
+
static deserializeBinary(bytes: Uint8Array): StartServicesResponse;
|
|
374
|
+
static deserializeBinaryFromReader(message: StartServicesResponse, reader: jspb.BinaryReader): StartServicesResponse;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
export namespace StartServicesResponse {
|
|
378
|
+
export type AsObject = {
|
|
379
|
+
successfulServiceIdsToServiceInfoMap: Array<[string, ServiceInfo.AsObject]>,
|
|
380
|
+
failedServiceIdsToErrorMap: Array<[string, string]>,
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export class GetServicesArgs extends jspb.Message {
|
|
385
|
+
getServiceIdsMap(): jspb.Map<string, boolean>;
|
|
386
|
+
clearServiceIdsMap(): GetServicesArgs;
|
|
387
|
+
|
|
388
|
+
serializeBinary(): Uint8Array;
|
|
389
|
+
toObject(includeInstance?: boolean): GetServicesArgs.AsObject;
|
|
390
|
+
static toObject(includeInstance: boolean, msg: GetServicesArgs): GetServicesArgs.AsObject;
|
|
391
|
+
static serializeBinaryToWriter(message: GetServicesArgs, writer: jspb.BinaryWriter): void;
|
|
392
|
+
static deserializeBinary(bytes: Uint8Array): GetServicesArgs;
|
|
393
|
+
static deserializeBinaryFromReader(message: GetServicesArgs, reader: jspb.BinaryReader): GetServicesArgs;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
export namespace GetServicesArgs {
|
|
397
|
+
export type AsObject = {
|
|
398
|
+
serviceIdsMap: Array<[string, boolean]>,
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
export class GetServicesResponse extends jspb.Message {
|
|
403
|
+
getServiceInfoMap(): jspb.Map<string, ServiceInfo>;
|
|
404
|
+
clearServiceInfoMap(): GetServicesResponse;
|
|
405
|
+
|
|
406
|
+
serializeBinary(): Uint8Array;
|
|
407
|
+
toObject(includeInstance?: boolean): GetServicesResponse.AsObject;
|
|
408
|
+
static toObject(includeInstance: boolean, msg: GetServicesResponse): GetServicesResponse.AsObject;
|
|
409
|
+
static serializeBinaryToWriter(message: GetServicesResponse, writer: jspb.BinaryWriter): void;
|
|
410
|
+
static deserializeBinary(bytes: Uint8Array): GetServicesResponse;
|
|
411
|
+
static deserializeBinaryFromReader(message: GetServicesResponse, reader: jspb.BinaryReader): GetServicesResponse;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
export namespace GetServicesResponse {
|
|
415
|
+
export type AsObject = {
|
|
416
|
+
serviceInfoMap: Array<[string, ServiceInfo.AsObject]>,
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
export class RemoveServiceArgs extends jspb.Message {
|
|
421
|
+
getServiceId(): string;
|
|
422
|
+
setServiceId(value: string): RemoveServiceArgs;
|
|
423
|
+
|
|
424
|
+
serializeBinary(): Uint8Array;
|
|
425
|
+
toObject(includeInstance?: boolean): RemoveServiceArgs.AsObject;
|
|
426
|
+
static toObject(includeInstance: boolean, msg: RemoveServiceArgs): RemoveServiceArgs.AsObject;
|
|
427
|
+
static serializeBinaryToWriter(message: RemoveServiceArgs, writer: jspb.BinaryWriter): void;
|
|
428
|
+
static deserializeBinary(bytes: Uint8Array): RemoveServiceArgs;
|
|
429
|
+
static deserializeBinaryFromReader(message: RemoveServiceArgs, reader: jspb.BinaryReader): RemoveServiceArgs;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export namespace RemoveServiceArgs {
|
|
433
|
+
export type AsObject = {
|
|
434
|
+
serviceId: string,
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export class RemoveServiceResponse extends jspb.Message {
|
|
439
|
+
getServiceGuid(): string;
|
|
440
|
+
setServiceGuid(value: string): RemoveServiceResponse;
|
|
441
|
+
|
|
442
|
+
serializeBinary(): Uint8Array;
|
|
443
|
+
toObject(includeInstance?: boolean): RemoveServiceResponse.AsObject;
|
|
444
|
+
static toObject(includeInstance: boolean, msg: RemoveServiceResponse): RemoveServiceResponse.AsObject;
|
|
445
|
+
static serializeBinaryToWriter(message: RemoveServiceResponse, writer: jspb.BinaryWriter): void;
|
|
446
|
+
static deserializeBinary(bytes: Uint8Array): RemoveServiceResponse;
|
|
447
|
+
static deserializeBinaryFromReader(message: RemoveServiceResponse, reader: jspb.BinaryReader): RemoveServiceResponse;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export namespace RemoveServiceResponse {
|
|
451
|
+
export type AsObject = {
|
|
452
|
+
serviceGuid: string,
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
export class RepartitionArgs extends jspb.Message {
|
|
457
|
+
getPartitionServicesMap(): jspb.Map<string, PartitionServices>;
|
|
458
|
+
clearPartitionServicesMap(): RepartitionArgs;
|
|
459
|
+
|
|
460
|
+
getPartitionConnectionsMap(): jspb.Map<string, PartitionConnections>;
|
|
461
|
+
clearPartitionConnectionsMap(): RepartitionArgs;
|
|
462
|
+
|
|
463
|
+
getDefaultConnection(): PartitionConnectionInfo | undefined;
|
|
464
|
+
setDefaultConnection(value?: PartitionConnectionInfo): RepartitionArgs;
|
|
465
|
+
hasDefaultConnection(): boolean;
|
|
466
|
+
clearDefaultConnection(): RepartitionArgs;
|
|
467
|
+
|
|
468
|
+
serializeBinary(): Uint8Array;
|
|
469
|
+
toObject(includeInstance?: boolean): RepartitionArgs.AsObject;
|
|
470
|
+
static toObject(includeInstance: boolean, msg: RepartitionArgs): RepartitionArgs.AsObject;
|
|
471
|
+
static serializeBinaryToWriter(message: RepartitionArgs, writer: jspb.BinaryWriter): void;
|
|
472
|
+
static deserializeBinary(bytes: Uint8Array): RepartitionArgs;
|
|
473
|
+
static deserializeBinaryFromReader(message: RepartitionArgs, reader: jspb.BinaryReader): RepartitionArgs;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
export namespace RepartitionArgs {
|
|
477
|
+
export type AsObject = {
|
|
478
|
+
partitionServicesMap: Array<[string, PartitionServices.AsObject]>,
|
|
479
|
+
partitionConnectionsMap: Array<[string, PartitionConnections.AsObject]>,
|
|
480
|
+
defaultConnection?: PartitionConnectionInfo.AsObject,
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
export class PartitionServices extends jspb.Message {
|
|
485
|
+
getServiceIdSetMap(): jspb.Map<string, boolean>;
|
|
486
|
+
clearServiceIdSetMap(): PartitionServices;
|
|
487
|
+
|
|
488
|
+
serializeBinary(): Uint8Array;
|
|
489
|
+
toObject(includeInstance?: boolean): PartitionServices.AsObject;
|
|
490
|
+
static toObject(includeInstance: boolean, msg: PartitionServices): PartitionServices.AsObject;
|
|
491
|
+
static serializeBinaryToWriter(message: PartitionServices, writer: jspb.BinaryWriter): void;
|
|
492
|
+
static deserializeBinary(bytes: Uint8Array): PartitionServices;
|
|
493
|
+
static deserializeBinaryFromReader(message: PartitionServices, reader: jspb.BinaryReader): PartitionServices;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
export namespace PartitionServices {
|
|
497
|
+
export type AsObject = {
|
|
498
|
+
serviceIdSetMap: Array<[string, boolean]>,
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
export class PartitionConnections extends jspb.Message {
|
|
503
|
+
getConnectionInfoMap(): jspb.Map<string, PartitionConnectionInfo>;
|
|
504
|
+
clearConnectionInfoMap(): PartitionConnections;
|
|
505
|
+
|
|
506
|
+
serializeBinary(): Uint8Array;
|
|
507
|
+
toObject(includeInstance?: boolean): PartitionConnections.AsObject;
|
|
508
|
+
static toObject(includeInstance: boolean, msg: PartitionConnections): PartitionConnections.AsObject;
|
|
509
|
+
static serializeBinaryToWriter(message: PartitionConnections, writer: jspb.BinaryWriter): void;
|
|
510
|
+
static deserializeBinary(bytes: Uint8Array): PartitionConnections;
|
|
511
|
+
static deserializeBinaryFromReader(message: PartitionConnections, reader: jspb.BinaryReader): PartitionConnections;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
export namespace PartitionConnections {
|
|
515
|
+
export type AsObject = {
|
|
516
|
+
connectionInfoMap: Array<[string, PartitionConnectionInfo.AsObject]>,
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
export class PartitionConnectionInfo extends jspb.Message {
|
|
521
|
+
getPacketLossPercentage(): number;
|
|
522
|
+
setPacketLossPercentage(value: number): PartitionConnectionInfo;
|
|
523
|
+
|
|
524
|
+
serializeBinary(): Uint8Array;
|
|
525
|
+
toObject(includeInstance?: boolean): PartitionConnectionInfo.AsObject;
|
|
526
|
+
static toObject(includeInstance: boolean, msg: PartitionConnectionInfo): PartitionConnectionInfo.AsObject;
|
|
527
|
+
static serializeBinaryToWriter(message: PartitionConnectionInfo, writer: jspb.BinaryWriter): void;
|
|
528
|
+
static deserializeBinary(bytes: Uint8Array): PartitionConnectionInfo;
|
|
529
|
+
static deserializeBinaryFromReader(message: PartitionConnectionInfo, reader: jspb.BinaryReader): PartitionConnectionInfo;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
export namespace PartitionConnectionInfo {
|
|
533
|
+
export type AsObject = {
|
|
534
|
+
packetLossPercentage: number,
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
export class ExecCommandArgs extends jspb.Message {
|
|
539
|
+
getServiceId(): string;
|
|
540
|
+
setServiceId(value: string): ExecCommandArgs;
|
|
541
|
+
|
|
542
|
+
getCommandArgsList(): Array<string>;
|
|
543
|
+
setCommandArgsList(value: Array<string>): ExecCommandArgs;
|
|
544
|
+
clearCommandArgsList(): ExecCommandArgs;
|
|
545
|
+
addCommandArgs(value: string, index?: number): ExecCommandArgs;
|
|
546
|
+
|
|
547
|
+
serializeBinary(): Uint8Array;
|
|
548
|
+
toObject(includeInstance?: boolean): ExecCommandArgs.AsObject;
|
|
549
|
+
static toObject(includeInstance: boolean, msg: ExecCommandArgs): ExecCommandArgs.AsObject;
|
|
550
|
+
static serializeBinaryToWriter(message: ExecCommandArgs, writer: jspb.BinaryWriter): void;
|
|
551
|
+
static deserializeBinary(bytes: Uint8Array): ExecCommandArgs;
|
|
552
|
+
static deserializeBinaryFromReader(message: ExecCommandArgs, reader: jspb.BinaryReader): ExecCommandArgs;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
export namespace ExecCommandArgs {
|
|
556
|
+
export type AsObject = {
|
|
557
|
+
serviceId: string,
|
|
558
|
+
commandArgsList: Array<string>,
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
export class PauseServiceArgs extends jspb.Message {
|
|
563
|
+
getServiceId(): string;
|
|
564
|
+
setServiceId(value: string): PauseServiceArgs;
|
|
565
|
+
|
|
566
|
+
serializeBinary(): Uint8Array;
|
|
567
|
+
toObject(includeInstance?: boolean): PauseServiceArgs.AsObject;
|
|
568
|
+
static toObject(includeInstance: boolean, msg: PauseServiceArgs): PauseServiceArgs.AsObject;
|
|
569
|
+
static serializeBinaryToWriter(message: PauseServiceArgs, writer: jspb.BinaryWriter): void;
|
|
570
|
+
static deserializeBinary(bytes: Uint8Array): PauseServiceArgs;
|
|
571
|
+
static deserializeBinaryFromReader(message: PauseServiceArgs, reader: jspb.BinaryReader): PauseServiceArgs;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
export namespace PauseServiceArgs {
|
|
575
|
+
export type AsObject = {
|
|
576
|
+
serviceId: string,
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
export class UnpauseServiceArgs extends jspb.Message {
|
|
581
|
+
getServiceId(): string;
|
|
582
|
+
setServiceId(value: string): UnpauseServiceArgs;
|
|
583
|
+
|
|
584
|
+
serializeBinary(): Uint8Array;
|
|
585
|
+
toObject(includeInstance?: boolean): UnpauseServiceArgs.AsObject;
|
|
586
|
+
static toObject(includeInstance: boolean, msg: UnpauseServiceArgs): UnpauseServiceArgs.AsObject;
|
|
587
|
+
static serializeBinaryToWriter(message: UnpauseServiceArgs, writer: jspb.BinaryWriter): void;
|
|
588
|
+
static deserializeBinary(bytes: Uint8Array): UnpauseServiceArgs;
|
|
589
|
+
static deserializeBinaryFromReader(message: UnpauseServiceArgs, reader: jspb.BinaryReader): UnpauseServiceArgs;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export namespace UnpauseServiceArgs {
|
|
593
|
+
export type AsObject = {
|
|
594
|
+
serviceId: string,
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
export class ExecCommandResponse extends jspb.Message {
|
|
599
|
+
getExitCode(): number;
|
|
600
|
+
setExitCode(value: number): ExecCommandResponse;
|
|
601
|
+
|
|
602
|
+
getLogOutput(): string;
|
|
603
|
+
setLogOutput(value: string): ExecCommandResponse;
|
|
604
|
+
|
|
605
|
+
serializeBinary(): Uint8Array;
|
|
606
|
+
toObject(includeInstance?: boolean): ExecCommandResponse.AsObject;
|
|
607
|
+
static toObject(includeInstance: boolean, msg: ExecCommandResponse): ExecCommandResponse.AsObject;
|
|
608
|
+
static serializeBinaryToWriter(message: ExecCommandResponse, writer: jspb.BinaryWriter): void;
|
|
609
|
+
static deserializeBinary(bytes: Uint8Array): ExecCommandResponse;
|
|
610
|
+
static deserializeBinaryFromReader(message: ExecCommandResponse, reader: jspb.BinaryReader): ExecCommandResponse;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
export namespace ExecCommandResponse {
|
|
614
|
+
export type AsObject = {
|
|
615
|
+
exitCode: number,
|
|
616
|
+
logOutput: string,
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
export class WaitForHttpGetEndpointAvailabilityArgs extends jspb.Message {
|
|
621
|
+
getServiceId(): string;
|
|
622
|
+
setServiceId(value: string): WaitForHttpGetEndpointAvailabilityArgs;
|
|
623
|
+
|
|
624
|
+
getPort(): number;
|
|
625
|
+
setPort(value: number): WaitForHttpGetEndpointAvailabilityArgs;
|
|
626
|
+
|
|
627
|
+
getPath(): string;
|
|
628
|
+
setPath(value: string): WaitForHttpGetEndpointAvailabilityArgs;
|
|
629
|
+
|
|
630
|
+
getInitialDelayMilliseconds(): number;
|
|
631
|
+
setInitialDelayMilliseconds(value: number): WaitForHttpGetEndpointAvailabilityArgs;
|
|
632
|
+
|
|
633
|
+
getRetries(): number;
|
|
634
|
+
setRetries(value: number): WaitForHttpGetEndpointAvailabilityArgs;
|
|
635
|
+
|
|
636
|
+
getRetriesDelayMilliseconds(): number;
|
|
637
|
+
setRetriesDelayMilliseconds(value: number): WaitForHttpGetEndpointAvailabilityArgs;
|
|
638
|
+
|
|
639
|
+
getBodyText(): string;
|
|
640
|
+
setBodyText(value: string): WaitForHttpGetEndpointAvailabilityArgs;
|
|
641
|
+
|
|
642
|
+
serializeBinary(): Uint8Array;
|
|
643
|
+
toObject(includeInstance?: boolean): WaitForHttpGetEndpointAvailabilityArgs.AsObject;
|
|
644
|
+
static toObject(includeInstance: boolean, msg: WaitForHttpGetEndpointAvailabilityArgs): WaitForHttpGetEndpointAvailabilityArgs.AsObject;
|
|
645
|
+
static serializeBinaryToWriter(message: WaitForHttpGetEndpointAvailabilityArgs, writer: jspb.BinaryWriter): void;
|
|
646
|
+
static deserializeBinary(bytes: Uint8Array): WaitForHttpGetEndpointAvailabilityArgs;
|
|
647
|
+
static deserializeBinaryFromReader(message: WaitForHttpGetEndpointAvailabilityArgs, reader: jspb.BinaryReader): WaitForHttpGetEndpointAvailabilityArgs;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
export namespace WaitForHttpGetEndpointAvailabilityArgs {
|
|
651
|
+
export type AsObject = {
|
|
652
|
+
serviceId: string,
|
|
653
|
+
port: number,
|
|
654
|
+
path: string,
|
|
655
|
+
initialDelayMilliseconds: number,
|
|
656
|
+
retries: number,
|
|
657
|
+
retriesDelayMilliseconds: number,
|
|
658
|
+
bodyText: string,
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
export class WaitForHttpPostEndpointAvailabilityArgs extends jspb.Message {
|
|
663
|
+
getServiceId(): string;
|
|
664
|
+
setServiceId(value: string): WaitForHttpPostEndpointAvailabilityArgs;
|
|
665
|
+
|
|
666
|
+
getPort(): number;
|
|
667
|
+
setPort(value: number): WaitForHttpPostEndpointAvailabilityArgs;
|
|
668
|
+
|
|
669
|
+
getPath(): string;
|
|
670
|
+
setPath(value: string): WaitForHttpPostEndpointAvailabilityArgs;
|
|
671
|
+
|
|
672
|
+
getRequestBody(): string;
|
|
673
|
+
setRequestBody(value: string): WaitForHttpPostEndpointAvailabilityArgs;
|
|
674
|
+
|
|
675
|
+
getInitialDelayMilliseconds(): number;
|
|
676
|
+
setInitialDelayMilliseconds(value: number): WaitForHttpPostEndpointAvailabilityArgs;
|
|
677
|
+
|
|
678
|
+
getRetries(): number;
|
|
679
|
+
setRetries(value: number): WaitForHttpPostEndpointAvailabilityArgs;
|
|
680
|
+
|
|
681
|
+
getRetriesDelayMilliseconds(): number;
|
|
682
|
+
setRetriesDelayMilliseconds(value: number): WaitForHttpPostEndpointAvailabilityArgs;
|
|
683
|
+
|
|
684
|
+
getBodyText(): string;
|
|
685
|
+
setBodyText(value: string): WaitForHttpPostEndpointAvailabilityArgs;
|
|
686
|
+
|
|
687
|
+
serializeBinary(): Uint8Array;
|
|
688
|
+
toObject(includeInstance?: boolean): WaitForHttpPostEndpointAvailabilityArgs.AsObject;
|
|
689
|
+
static toObject(includeInstance: boolean, msg: WaitForHttpPostEndpointAvailabilityArgs): WaitForHttpPostEndpointAvailabilityArgs.AsObject;
|
|
690
|
+
static serializeBinaryToWriter(message: WaitForHttpPostEndpointAvailabilityArgs, writer: jspb.BinaryWriter): void;
|
|
691
|
+
static deserializeBinary(bytes: Uint8Array): WaitForHttpPostEndpointAvailabilityArgs;
|
|
692
|
+
static deserializeBinaryFromReader(message: WaitForHttpPostEndpointAvailabilityArgs, reader: jspb.BinaryReader): WaitForHttpPostEndpointAvailabilityArgs;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
export namespace WaitForHttpPostEndpointAvailabilityArgs {
|
|
696
|
+
export type AsObject = {
|
|
697
|
+
serviceId: string,
|
|
698
|
+
port: number,
|
|
699
|
+
path: string,
|
|
700
|
+
requestBody: string,
|
|
701
|
+
initialDelayMilliseconds: number,
|
|
702
|
+
retries: number,
|
|
703
|
+
retriesDelayMilliseconds: number,
|
|
704
|
+
bodyText: string,
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
export class UploadFilesArtifactArgs extends jspb.Message {
|
|
709
|
+
getData(): Uint8Array | string;
|
|
710
|
+
getData_asU8(): Uint8Array;
|
|
711
|
+
getData_asB64(): string;
|
|
712
|
+
setData(value: Uint8Array | string): UploadFilesArtifactArgs;
|
|
713
|
+
|
|
714
|
+
serializeBinary(): Uint8Array;
|
|
715
|
+
toObject(includeInstance?: boolean): UploadFilesArtifactArgs.AsObject;
|
|
716
|
+
static toObject(includeInstance: boolean, msg: UploadFilesArtifactArgs): UploadFilesArtifactArgs.AsObject;
|
|
717
|
+
static serializeBinaryToWriter(message: UploadFilesArtifactArgs, writer: jspb.BinaryWriter): void;
|
|
718
|
+
static deserializeBinary(bytes: Uint8Array): UploadFilesArtifactArgs;
|
|
719
|
+
static deserializeBinaryFromReader(message: UploadFilesArtifactArgs, reader: jspb.BinaryReader): UploadFilesArtifactArgs;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
export namespace UploadFilesArtifactArgs {
|
|
723
|
+
export type AsObject = {
|
|
724
|
+
data: Uint8Array | string,
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
export class UploadFilesArtifactResponse extends jspb.Message {
|
|
729
|
+
getUuid(): string;
|
|
730
|
+
setUuid(value: string): UploadFilesArtifactResponse;
|
|
731
|
+
|
|
732
|
+
serializeBinary(): Uint8Array;
|
|
733
|
+
toObject(includeInstance?: boolean): UploadFilesArtifactResponse.AsObject;
|
|
734
|
+
static toObject(includeInstance: boolean, msg: UploadFilesArtifactResponse): UploadFilesArtifactResponse.AsObject;
|
|
735
|
+
static serializeBinaryToWriter(message: UploadFilesArtifactResponse, writer: jspb.BinaryWriter): void;
|
|
736
|
+
static deserializeBinary(bytes: Uint8Array): UploadFilesArtifactResponse;
|
|
737
|
+
static deserializeBinaryFromReader(message: UploadFilesArtifactResponse, reader: jspb.BinaryReader): UploadFilesArtifactResponse;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
export namespace UploadFilesArtifactResponse {
|
|
741
|
+
export type AsObject = {
|
|
742
|
+
uuid: string,
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
export class DownloadFilesArtifactArgs extends jspb.Message {
|
|
747
|
+
getId(): string;
|
|
748
|
+
setId(value: string): DownloadFilesArtifactArgs;
|
|
749
|
+
|
|
750
|
+
serializeBinary(): Uint8Array;
|
|
751
|
+
toObject(includeInstance?: boolean): DownloadFilesArtifactArgs.AsObject;
|
|
752
|
+
static toObject(includeInstance: boolean, msg: DownloadFilesArtifactArgs): DownloadFilesArtifactArgs.AsObject;
|
|
753
|
+
static serializeBinaryToWriter(message: DownloadFilesArtifactArgs, writer: jspb.BinaryWriter): void;
|
|
754
|
+
static deserializeBinary(bytes: Uint8Array): DownloadFilesArtifactArgs;
|
|
755
|
+
static deserializeBinaryFromReader(message: DownloadFilesArtifactArgs, reader: jspb.BinaryReader): DownloadFilesArtifactArgs;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
export namespace DownloadFilesArtifactArgs {
|
|
759
|
+
export type AsObject = {
|
|
760
|
+
id: string,
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
export class DownloadFilesArtifactResponse extends jspb.Message {
|
|
765
|
+
getData(): Uint8Array | string;
|
|
766
|
+
getData_asU8(): Uint8Array;
|
|
767
|
+
getData_asB64(): string;
|
|
768
|
+
setData(value: Uint8Array | string): DownloadFilesArtifactResponse;
|
|
769
|
+
|
|
770
|
+
serializeBinary(): Uint8Array;
|
|
771
|
+
toObject(includeInstance?: boolean): DownloadFilesArtifactResponse.AsObject;
|
|
772
|
+
static toObject(includeInstance: boolean, msg: DownloadFilesArtifactResponse): DownloadFilesArtifactResponse.AsObject;
|
|
773
|
+
static serializeBinaryToWriter(message: DownloadFilesArtifactResponse, writer: jspb.BinaryWriter): void;
|
|
774
|
+
static deserializeBinary(bytes: Uint8Array): DownloadFilesArtifactResponse;
|
|
775
|
+
static deserializeBinaryFromReader(message: DownloadFilesArtifactResponse, reader: jspb.BinaryReader): DownloadFilesArtifactResponse;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
export namespace DownloadFilesArtifactResponse {
|
|
779
|
+
export type AsObject = {
|
|
780
|
+
data: Uint8Array | string,
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
export class StoreWebFilesArtifactArgs extends jspb.Message {
|
|
785
|
+
getUrl(): string;
|
|
786
|
+
setUrl(value: string): StoreWebFilesArtifactArgs;
|
|
787
|
+
|
|
788
|
+
serializeBinary(): Uint8Array;
|
|
789
|
+
toObject(includeInstance?: boolean): StoreWebFilesArtifactArgs.AsObject;
|
|
790
|
+
static toObject(includeInstance: boolean, msg: StoreWebFilesArtifactArgs): StoreWebFilesArtifactArgs.AsObject;
|
|
791
|
+
static serializeBinaryToWriter(message: StoreWebFilesArtifactArgs, writer: jspb.BinaryWriter): void;
|
|
792
|
+
static deserializeBinary(bytes: Uint8Array): StoreWebFilesArtifactArgs;
|
|
793
|
+
static deserializeBinaryFromReader(message: StoreWebFilesArtifactArgs, reader: jspb.BinaryReader): StoreWebFilesArtifactArgs;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
export namespace StoreWebFilesArtifactArgs {
|
|
797
|
+
export type AsObject = {
|
|
798
|
+
url: string,
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
export class StoreWebFilesArtifactResponse extends jspb.Message {
|
|
803
|
+
getUuid(): string;
|
|
804
|
+
setUuid(value: string): StoreWebFilesArtifactResponse;
|
|
805
|
+
|
|
806
|
+
serializeBinary(): Uint8Array;
|
|
807
|
+
toObject(includeInstance?: boolean): StoreWebFilesArtifactResponse.AsObject;
|
|
808
|
+
static toObject(includeInstance: boolean, msg: StoreWebFilesArtifactResponse): StoreWebFilesArtifactResponse.AsObject;
|
|
809
|
+
static serializeBinaryToWriter(message: StoreWebFilesArtifactResponse, writer: jspb.BinaryWriter): void;
|
|
810
|
+
static deserializeBinary(bytes: Uint8Array): StoreWebFilesArtifactResponse;
|
|
811
|
+
static deserializeBinaryFromReader(message: StoreWebFilesArtifactResponse, reader: jspb.BinaryReader): StoreWebFilesArtifactResponse;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
export namespace StoreWebFilesArtifactResponse {
|
|
815
|
+
export type AsObject = {
|
|
816
|
+
uuid: string,
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
export class StoreFilesArtifactFromServiceArgs extends jspb.Message {
|
|
821
|
+
getServiceId(): string;
|
|
822
|
+
setServiceId(value: string): StoreFilesArtifactFromServiceArgs;
|
|
823
|
+
|
|
824
|
+
getSourcePath(): string;
|
|
825
|
+
setSourcePath(value: string): StoreFilesArtifactFromServiceArgs;
|
|
826
|
+
|
|
827
|
+
serializeBinary(): Uint8Array;
|
|
828
|
+
toObject(includeInstance?: boolean): StoreFilesArtifactFromServiceArgs.AsObject;
|
|
829
|
+
static toObject(includeInstance: boolean, msg: StoreFilesArtifactFromServiceArgs): StoreFilesArtifactFromServiceArgs.AsObject;
|
|
830
|
+
static serializeBinaryToWriter(message: StoreFilesArtifactFromServiceArgs, writer: jspb.BinaryWriter): void;
|
|
831
|
+
static deserializeBinary(bytes: Uint8Array): StoreFilesArtifactFromServiceArgs;
|
|
832
|
+
static deserializeBinaryFromReader(message: StoreFilesArtifactFromServiceArgs, reader: jspb.BinaryReader): StoreFilesArtifactFromServiceArgs;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
export namespace StoreFilesArtifactFromServiceArgs {
|
|
836
|
+
export type AsObject = {
|
|
837
|
+
serviceId: string,
|
|
838
|
+
sourcePath: string,
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
export class StoreFilesArtifactFromServiceResponse extends jspb.Message {
|
|
843
|
+
getUuid(): string;
|
|
844
|
+
setUuid(value: string): StoreFilesArtifactFromServiceResponse;
|
|
845
|
+
|
|
846
|
+
serializeBinary(): Uint8Array;
|
|
847
|
+
toObject(includeInstance?: boolean): StoreFilesArtifactFromServiceResponse.AsObject;
|
|
848
|
+
static toObject(includeInstance: boolean, msg: StoreFilesArtifactFromServiceResponse): StoreFilesArtifactFromServiceResponse.AsObject;
|
|
849
|
+
static serializeBinaryToWriter(message: StoreFilesArtifactFromServiceResponse, writer: jspb.BinaryWriter): void;
|
|
850
|
+
static deserializeBinary(bytes: Uint8Array): StoreFilesArtifactFromServiceResponse;
|
|
851
|
+
static deserializeBinaryFromReader(message: StoreFilesArtifactFromServiceResponse, reader: jspb.BinaryReader): StoreFilesArtifactFromServiceResponse;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
export namespace StoreFilesArtifactFromServiceResponse {
|
|
855
|
+
export type AsObject = {
|
|
856
|
+
uuid: string,
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
export class RenderTemplatesToFilesArtifactArgs extends jspb.Message {
|
|
861
|
+
getTemplatesAndDataByDestinationRelFilepathMap(): jspb.Map<string, RenderTemplatesToFilesArtifactArgs.TemplateAndData>;
|
|
862
|
+
clearTemplatesAndDataByDestinationRelFilepathMap(): RenderTemplatesToFilesArtifactArgs;
|
|
863
|
+
|
|
864
|
+
serializeBinary(): Uint8Array;
|
|
865
|
+
toObject(includeInstance?: boolean): RenderTemplatesToFilesArtifactArgs.AsObject;
|
|
866
|
+
static toObject(includeInstance: boolean, msg: RenderTemplatesToFilesArtifactArgs): RenderTemplatesToFilesArtifactArgs.AsObject;
|
|
867
|
+
static serializeBinaryToWriter(message: RenderTemplatesToFilesArtifactArgs, writer: jspb.BinaryWriter): void;
|
|
868
|
+
static deserializeBinary(bytes: Uint8Array): RenderTemplatesToFilesArtifactArgs;
|
|
869
|
+
static deserializeBinaryFromReader(message: RenderTemplatesToFilesArtifactArgs, reader: jspb.BinaryReader): RenderTemplatesToFilesArtifactArgs;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
export namespace RenderTemplatesToFilesArtifactArgs {
|
|
873
|
+
export type AsObject = {
|
|
874
|
+
templatesAndDataByDestinationRelFilepathMap: Array<[string, RenderTemplatesToFilesArtifactArgs.TemplateAndData.AsObject]>,
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
export class TemplateAndData extends jspb.Message {
|
|
878
|
+
getTemplate(): string;
|
|
879
|
+
setTemplate(value: string): TemplateAndData;
|
|
880
|
+
|
|
881
|
+
getDataAsJson(): string;
|
|
882
|
+
setDataAsJson(value: string): TemplateAndData;
|
|
883
|
+
|
|
884
|
+
serializeBinary(): Uint8Array;
|
|
885
|
+
toObject(includeInstance?: boolean): TemplateAndData.AsObject;
|
|
886
|
+
static toObject(includeInstance: boolean, msg: TemplateAndData): TemplateAndData.AsObject;
|
|
887
|
+
static serializeBinaryToWriter(message: TemplateAndData, writer: jspb.BinaryWriter): void;
|
|
888
|
+
static deserializeBinary(bytes: Uint8Array): TemplateAndData;
|
|
889
|
+
static deserializeBinaryFromReader(message: TemplateAndData, reader: jspb.BinaryReader): TemplateAndData;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
export namespace TemplateAndData {
|
|
893
|
+
export type AsObject = {
|
|
894
|
+
template: string,
|
|
895
|
+
dataAsJson: string,
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
export class RenderTemplatesToFilesArtifactResponse extends jspb.Message {
|
|
902
|
+
getUuid(): string;
|
|
903
|
+
setUuid(value: string): RenderTemplatesToFilesArtifactResponse;
|
|
904
|
+
|
|
905
|
+
serializeBinary(): Uint8Array;
|
|
906
|
+
toObject(includeInstance?: boolean): RenderTemplatesToFilesArtifactResponse.AsObject;
|
|
907
|
+
static toObject(includeInstance: boolean, msg: RenderTemplatesToFilesArtifactResponse): RenderTemplatesToFilesArtifactResponse.AsObject;
|
|
908
|
+
static serializeBinaryToWriter(message: RenderTemplatesToFilesArtifactResponse, writer: jspb.BinaryWriter): void;
|
|
909
|
+
static deserializeBinary(bytes: Uint8Array): RenderTemplatesToFilesArtifactResponse;
|
|
910
|
+
static deserializeBinaryFromReader(message: RenderTemplatesToFilesArtifactResponse, reader: jspb.BinaryReader): RenderTemplatesToFilesArtifactResponse;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
export namespace RenderTemplatesToFilesArtifactResponse {
|
|
914
|
+
export type AsObject = {
|
|
915
|
+
uuid: string,
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
|