@superblocksteam/sabs-types-js 0.0.1-demo-databricks-deploy
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/v1/service_grpc_pb.d.ts +128 -0
- package/build/v1/service_grpc_pb.js +212 -0
- package/build/v1/service_pb.d.ts +394 -0
- package/build/v1/service_pb.js +3062 -0
- package/google/api/annotations_grpc_pb.js +1 -0
- package/google/api/annotations_pb.d.ts +11 -0
- package/google/api/annotations_pb.js +48 -0
- package/google/api/http_grpc_pb.js +1 -0
- package/google/api/http_pb.d.ts +135 -0
- package/google/api/http_pb.js +1006 -0
- package/health/v1/service_grpc_pb.d.ts +42 -0
- package/health/v1/service_grpc_pb.js +46 -0
- package/health/v1/service_pb.d.ts +51 -0
- package/health/v1/service_pb.js +357 -0
- package/liveedit/v1/service_grpc_pb.d.ts +60 -0
- package/liveedit/v1/service_grpc_pb.js +80 -0
- package/liveedit/v1/service_pb.d.ts +166 -0
- package/liveedit/v1/service_pb.js +1232 -0
- package/package.json +18 -0
- package/protoc-gen-openapiv2/options/annotations_grpc_pb.js +1 -0
- package/protoc-gen-openapiv2/options/annotations_pb.d.ts +19 -0
- package/protoc-gen-openapiv2/options/annotations_pb.js +152 -0
- package/protoc-gen-openapiv2/options/openapiv2_grpc_pb.js +1 -0
- package/protoc-gen-openapiv2/options/openapiv2_pb.d.ts +800 -0
- package/protoc-gen-openapiv2/options/openapiv2_pb.js +6323 -0
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
// package: build.v1
|
|
2
|
+
// file: build/v1/service.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
8
|
+
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
9
|
+
import * as protoc_gen_openapiv2_options_annotations_pb from "../../protoc-gen-openapiv2/options/annotations_pb";
|
|
10
|
+
|
|
11
|
+
export class BuildRequest extends jspb.Message {
|
|
12
|
+
getDirectoryHash(): string;
|
|
13
|
+
setDirectoryHash(value: string): BuildRequest;
|
|
14
|
+
|
|
15
|
+
hasApplicationMetadata(): boolean;
|
|
16
|
+
clearApplicationMetadata(): void;
|
|
17
|
+
getApplicationMetadata(): ApplicationMetadata | undefined;
|
|
18
|
+
setApplicationMetadata(value?: ApplicationMetadata): BuildRequest;
|
|
19
|
+
getBuildKey(): string;
|
|
20
|
+
setBuildKey(value: string): BuildRequest;
|
|
21
|
+
|
|
22
|
+
serializeBinary(): Uint8Array;
|
|
23
|
+
toObject(includeInstance?: boolean): BuildRequest.AsObject;
|
|
24
|
+
static toObject(includeInstance: boolean, msg: BuildRequest): BuildRequest.AsObject;
|
|
25
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
26
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
27
|
+
static serializeBinaryToWriter(message: BuildRequest, writer: jspb.BinaryWriter): void;
|
|
28
|
+
static deserializeBinary(bytes: Uint8Array): BuildRequest;
|
|
29
|
+
static deserializeBinaryFromReader(message: BuildRequest, reader: jspb.BinaryReader): BuildRequest;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export namespace BuildRequest {
|
|
33
|
+
export type AsObject = {
|
|
34
|
+
directoryHash: string,
|
|
35
|
+
applicationMetadata?: ApplicationMetadata.AsObject,
|
|
36
|
+
buildKey: string,
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export class ApplicationMetadata extends jspb.Message {
|
|
41
|
+
getId(): string;
|
|
42
|
+
setId(value: string): ApplicationMetadata;
|
|
43
|
+
getOrganizationId(): string;
|
|
44
|
+
setOrganizationId(value: string): ApplicationMetadata;
|
|
45
|
+
|
|
46
|
+
serializeBinary(): Uint8Array;
|
|
47
|
+
toObject(includeInstance?: boolean): ApplicationMetadata.AsObject;
|
|
48
|
+
static toObject(includeInstance: boolean, msg: ApplicationMetadata): ApplicationMetadata.AsObject;
|
|
49
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
50
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
51
|
+
static serializeBinaryToWriter(message: ApplicationMetadata, writer: jspb.BinaryWriter): void;
|
|
52
|
+
static deserializeBinary(bytes: Uint8Array): ApplicationMetadata;
|
|
53
|
+
static deserializeBinaryFromReader(message: ApplicationMetadata, reader: jspb.BinaryReader): ApplicationMetadata;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export namespace ApplicationMetadata {
|
|
57
|
+
export type AsObject = {
|
|
58
|
+
id: string,
|
|
59
|
+
organizationId: string,
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export class BuildResponse extends jspb.Message {
|
|
64
|
+
getBuildId(): string;
|
|
65
|
+
setBuildId(value: string): BuildResponse;
|
|
66
|
+
|
|
67
|
+
hasCreated(): boolean;
|
|
68
|
+
clearCreated(): void;
|
|
69
|
+
getCreated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
70
|
+
setCreated(value?: google_protobuf_timestamp_pb.Timestamp): BuildResponse;
|
|
71
|
+
|
|
72
|
+
hasUpdated(): boolean;
|
|
73
|
+
clearUpdated(): void;
|
|
74
|
+
getUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
75
|
+
setUpdated(value?: google_protobuf_timestamp_pb.Timestamp): BuildResponse;
|
|
76
|
+
|
|
77
|
+
serializeBinary(): Uint8Array;
|
|
78
|
+
toObject(includeInstance?: boolean): BuildResponse.AsObject;
|
|
79
|
+
static toObject(includeInstance: boolean, msg: BuildResponse): BuildResponse.AsObject;
|
|
80
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
81
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
82
|
+
static serializeBinaryToWriter(message: BuildResponse, writer: jspb.BinaryWriter): void;
|
|
83
|
+
static deserializeBinary(bytes: Uint8Array): BuildResponse;
|
|
84
|
+
static deserializeBinaryFromReader(message: BuildResponse, reader: jspb.BinaryReader): BuildResponse;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export namespace BuildResponse {
|
|
88
|
+
export type AsObject = {
|
|
89
|
+
buildId: string,
|
|
90
|
+
created?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
91
|
+
updated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export class DeployDatabricksRequest extends jspb.Message {
|
|
96
|
+
getDirectoryHash(): string;
|
|
97
|
+
setDirectoryHash(value: string): DeployDatabricksRequest;
|
|
98
|
+
|
|
99
|
+
hasApplicationMetadata(): boolean;
|
|
100
|
+
clearApplicationMetadata(): void;
|
|
101
|
+
getApplicationMetadata(): ApplicationMetadata | undefined;
|
|
102
|
+
setApplicationMetadata(value?: ApplicationMetadata): DeployDatabricksRequest;
|
|
103
|
+
getBuildKey(): string;
|
|
104
|
+
setBuildKey(value: string): DeployDatabricksRequest;
|
|
105
|
+
|
|
106
|
+
serializeBinary(): Uint8Array;
|
|
107
|
+
toObject(includeInstance?: boolean): DeployDatabricksRequest.AsObject;
|
|
108
|
+
static toObject(includeInstance: boolean, msg: DeployDatabricksRequest): DeployDatabricksRequest.AsObject;
|
|
109
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
110
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
111
|
+
static serializeBinaryToWriter(message: DeployDatabricksRequest, writer: jspb.BinaryWriter): void;
|
|
112
|
+
static deserializeBinary(bytes: Uint8Array): DeployDatabricksRequest;
|
|
113
|
+
static deserializeBinaryFromReader(message: DeployDatabricksRequest, reader: jspb.BinaryReader): DeployDatabricksRequest;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export namespace DeployDatabricksRequest {
|
|
117
|
+
export type AsObject = {
|
|
118
|
+
directoryHash: string,
|
|
119
|
+
applicationMetadata?: ApplicationMetadata.AsObject,
|
|
120
|
+
buildKey: string,
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export class DeployDatabricksResponse extends jspb.Message {
|
|
125
|
+
getBuildId(): string;
|
|
126
|
+
setBuildId(value: string): DeployDatabricksResponse;
|
|
127
|
+
|
|
128
|
+
hasCreated(): boolean;
|
|
129
|
+
clearCreated(): void;
|
|
130
|
+
getCreated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
131
|
+
setCreated(value?: google_protobuf_timestamp_pb.Timestamp): DeployDatabricksResponse;
|
|
132
|
+
|
|
133
|
+
hasUpdated(): boolean;
|
|
134
|
+
clearUpdated(): void;
|
|
135
|
+
getUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
136
|
+
setUpdated(value?: google_protobuf_timestamp_pb.Timestamp): DeployDatabricksResponse;
|
|
137
|
+
|
|
138
|
+
serializeBinary(): Uint8Array;
|
|
139
|
+
toObject(includeInstance?: boolean): DeployDatabricksResponse.AsObject;
|
|
140
|
+
static toObject(includeInstance: boolean, msg: DeployDatabricksResponse): DeployDatabricksResponse.AsObject;
|
|
141
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
142
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
143
|
+
static serializeBinaryToWriter(message: DeployDatabricksResponse, writer: jspb.BinaryWriter): void;
|
|
144
|
+
static deserializeBinary(bytes: Uint8Array): DeployDatabricksResponse;
|
|
145
|
+
static deserializeBinaryFromReader(message: DeployDatabricksResponse, reader: jspb.BinaryReader): DeployDatabricksResponse;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export namespace DeployDatabricksResponse {
|
|
149
|
+
export type AsObject = {
|
|
150
|
+
buildId: string,
|
|
151
|
+
created?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
152
|
+
updated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export class ListRequest extends jspb.Message {
|
|
157
|
+
getOrganizationId(): string;
|
|
158
|
+
setOrganizationId(value: string): ListRequest;
|
|
159
|
+
getApplicationId(): string;
|
|
160
|
+
setApplicationId(value: string): ListRequest;
|
|
161
|
+
getDirectoryHash(): string;
|
|
162
|
+
setDirectoryHash(value: string): ListRequest;
|
|
163
|
+
|
|
164
|
+
serializeBinary(): Uint8Array;
|
|
165
|
+
toObject(includeInstance?: boolean): ListRequest.AsObject;
|
|
166
|
+
static toObject(includeInstance: boolean, msg: ListRequest): ListRequest.AsObject;
|
|
167
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
168
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
169
|
+
static serializeBinaryToWriter(message: ListRequest, writer: jspb.BinaryWriter): void;
|
|
170
|
+
static deserializeBinary(bytes: Uint8Array): ListRequest;
|
|
171
|
+
static deserializeBinaryFromReader(message: ListRequest, reader: jspb.BinaryReader): ListRequest;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export namespace ListRequest {
|
|
175
|
+
export type AsObject = {
|
|
176
|
+
organizationId: string,
|
|
177
|
+
applicationId: string,
|
|
178
|
+
directoryHash: string,
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export class ListResponse extends jspb.Message {
|
|
183
|
+
clearBuildsList(): void;
|
|
184
|
+
getBuildsList(): Array<StatusResponse>;
|
|
185
|
+
setBuildsList(value: Array<StatusResponse>): ListResponse;
|
|
186
|
+
addBuilds(value?: StatusResponse, index?: number): StatusResponse;
|
|
187
|
+
|
|
188
|
+
serializeBinary(): Uint8Array;
|
|
189
|
+
toObject(includeInstance?: boolean): ListResponse.AsObject;
|
|
190
|
+
static toObject(includeInstance: boolean, msg: ListResponse): ListResponse.AsObject;
|
|
191
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
192
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
193
|
+
static serializeBinaryToWriter(message: ListResponse, writer: jspb.BinaryWriter): void;
|
|
194
|
+
static deserializeBinary(bytes: Uint8Array): ListResponse;
|
|
195
|
+
static deserializeBinaryFromReader(message: ListResponse, reader: jspb.BinaryReader): ListResponse;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export namespace ListResponse {
|
|
199
|
+
export type AsObject = {
|
|
200
|
+
buildsList: Array<StatusResponse.AsObject>,
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export class StatusRequest extends jspb.Message {
|
|
205
|
+
getBuildId(): string;
|
|
206
|
+
setBuildId(value: string): StatusRequest;
|
|
207
|
+
|
|
208
|
+
serializeBinary(): Uint8Array;
|
|
209
|
+
toObject(includeInstance?: boolean): StatusRequest.AsObject;
|
|
210
|
+
static toObject(includeInstance: boolean, msg: StatusRequest): StatusRequest.AsObject;
|
|
211
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
212
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
213
|
+
static serializeBinaryToWriter(message: StatusRequest, writer: jspb.BinaryWriter): void;
|
|
214
|
+
static deserializeBinary(bytes: Uint8Array): StatusRequest;
|
|
215
|
+
static deserializeBinaryFromReader(message: StatusRequest, reader: jspb.BinaryReader): StatusRequest;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export namespace StatusRequest {
|
|
219
|
+
export type AsObject = {
|
|
220
|
+
buildId: string,
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export class BulkStatusRequest extends jspb.Message {
|
|
225
|
+
getOrganizationId(): string;
|
|
226
|
+
setOrganizationId(value: string): BulkStatusRequest;
|
|
227
|
+
getApplicationId(): string;
|
|
228
|
+
setApplicationId(value: string): BulkStatusRequest;
|
|
229
|
+
clearDirectoryHashesList(): void;
|
|
230
|
+
getDirectoryHashesList(): Array<string>;
|
|
231
|
+
setDirectoryHashesList(value: Array<string>): BulkStatusRequest;
|
|
232
|
+
addDirectoryHashes(value: string, index?: number): string;
|
|
233
|
+
|
|
234
|
+
serializeBinary(): Uint8Array;
|
|
235
|
+
toObject(includeInstance?: boolean): BulkStatusRequest.AsObject;
|
|
236
|
+
static toObject(includeInstance: boolean, msg: BulkStatusRequest): BulkStatusRequest.AsObject;
|
|
237
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
238
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
239
|
+
static serializeBinaryToWriter(message: BulkStatusRequest, writer: jspb.BinaryWriter): void;
|
|
240
|
+
static deserializeBinary(bytes: Uint8Array): BulkStatusRequest;
|
|
241
|
+
static deserializeBinaryFromReader(message: BulkStatusRequest, reader: jspb.BinaryReader): BulkStatusRequest;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export namespace BulkStatusRequest {
|
|
245
|
+
export type AsObject = {
|
|
246
|
+
organizationId: string,
|
|
247
|
+
applicationId: string,
|
|
248
|
+
directoryHashesList: Array<string>,
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export class BulkStatusResponse extends jspb.Message {
|
|
253
|
+
|
|
254
|
+
getDirectoryHashToStatusMap(): jspb.Map<string, StatusResponse>;
|
|
255
|
+
clearDirectoryHashToStatusMap(): void;
|
|
256
|
+
|
|
257
|
+
serializeBinary(): Uint8Array;
|
|
258
|
+
toObject(includeInstance?: boolean): BulkStatusResponse.AsObject;
|
|
259
|
+
static toObject(includeInstance: boolean, msg: BulkStatusResponse): BulkStatusResponse.AsObject;
|
|
260
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
261
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
262
|
+
static serializeBinaryToWriter(message: BulkStatusResponse, writer: jspb.BinaryWriter): void;
|
|
263
|
+
static deserializeBinary(bytes: Uint8Array): BulkStatusResponse;
|
|
264
|
+
static deserializeBinaryFromReader(message: BulkStatusResponse, reader: jspb.BinaryReader): BulkStatusResponse;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export namespace BulkStatusResponse {
|
|
268
|
+
export type AsObject = {
|
|
269
|
+
|
|
270
|
+
directoryHashToStatusMap: Array<[string, StatusResponse.AsObject]>,
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
export class StatusResponse extends jspb.Message {
|
|
275
|
+
getBuildId(): string;
|
|
276
|
+
setBuildId(value: string): StatusResponse;
|
|
277
|
+
getStatus(): BuildStatus;
|
|
278
|
+
setStatus(value: BuildStatus): StatusResponse;
|
|
279
|
+
|
|
280
|
+
hasError(): boolean;
|
|
281
|
+
clearError(): void;
|
|
282
|
+
getError(): string | undefined;
|
|
283
|
+
setError(value: string): StatusResponse;
|
|
284
|
+
|
|
285
|
+
hasCreated(): boolean;
|
|
286
|
+
clearCreated(): void;
|
|
287
|
+
getCreated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
288
|
+
setCreated(value?: google_protobuf_timestamp_pb.Timestamp): StatusResponse;
|
|
289
|
+
|
|
290
|
+
hasUpdated(): boolean;
|
|
291
|
+
clearUpdated(): void;
|
|
292
|
+
getUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
293
|
+
setUpdated(value?: google_protobuf_timestamp_pb.Timestamp): StatusResponse;
|
|
294
|
+
|
|
295
|
+
serializeBinary(): Uint8Array;
|
|
296
|
+
toObject(includeInstance?: boolean): StatusResponse.AsObject;
|
|
297
|
+
static toObject(includeInstance: boolean, msg: StatusResponse): StatusResponse.AsObject;
|
|
298
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
299
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
300
|
+
static serializeBinaryToWriter(message: StatusResponse, writer: jspb.BinaryWriter): void;
|
|
301
|
+
static deserializeBinary(bytes: Uint8Array): StatusResponse;
|
|
302
|
+
static deserializeBinaryFromReader(message: StatusResponse, reader: jspb.BinaryReader): StatusResponse;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export namespace StatusResponse {
|
|
306
|
+
export type AsObject = {
|
|
307
|
+
buildId: string,
|
|
308
|
+
status: BuildStatus,
|
|
309
|
+
error?: string,
|
|
310
|
+
created?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
311
|
+
updated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
export class TerminateRequest extends jspb.Message {
|
|
316
|
+
getBuildId(): string;
|
|
317
|
+
setBuildId(value: string): TerminateRequest;
|
|
318
|
+
getStatus(): BuildStatus;
|
|
319
|
+
setStatus(value: BuildStatus): TerminateRequest;
|
|
320
|
+
|
|
321
|
+
hasError(): boolean;
|
|
322
|
+
clearError(): void;
|
|
323
|
+
getError(): string | undefined;
|
|
324
|
+
setError(value: string): TerminateRequest;
|
|
325
|
+
getBuildKey(): string;
|
|
326
|
+
setBuildKey(value: string): TerminateRequest;
|
|
327
|
+
|
|
328
|
+
serializeBinary(): Uint8Array;
|
|
329
|
+
toObject(includeInstance?: boolean): TerminateRequest.AsObject;
|
|
330
|
+
static toObject(includeInstance: boolean, msg: TerminateRequest): TerminateRequest.AsObject;
|
|
331
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
332
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
333
|
+
static serializeBinaryToWriter(message: TerminateRequest, writer: jspb.BinaryWriter): void;
|
|
334
|
+
static deserializeBinary(bytes: Uint8Array): TerminateRequest;
|
|
335
|
+
static deserializeBinaryFromReader(message: TerminateRequest, reader: jspb.BinaryReader): TerminateRequest;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
export namespace TerminateRequest {
|
|
339
|
+
export type AsObject = {
|
|
340
|
+
buildId: string,
|
|
341
|
+
status: BuildStatus,
|
|
342
|
+
error?: string,
|
|
343
|
+
buildKey: string,
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
export class TerminateResponse extends jspb.Message {
|
|
348
|
+
getBuildId(): string;
|
|
349
|
+
setBuildId(value: string): TerminateResponse;
|
|
350
|
+
getStatus(): BuildStatus;
|
|
351
|
+
setStatus(value: BuildStatus): TerminateResponse;
|
|
352
|
+
|
|
353
|
+
hasError(): boolean;
|
|
354
|
+
clearError(): void;
|
|
355
|
+
getError(): string | undefined;
|
|
356
|
+
setError(value: string): TerminateResponse;
|
|
357
|
+
|
|
358
|
+
hasCreated(): boolean;
|
|
359
|
+
clearCreated(): void;
|
|
360
|
+
getCreated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
361
|
+
setCreated(value?: google_protobuf_timestamp_pb.Timestamp): TerminateResponse;
|
|
362
|
+
|
|
363
|
+
hasUpdated(): boolean;
|
|
364
|
+
clearUpdated(): void;
|
|
365
|
+
getUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
366
|
+
setUpdated(value?: google_protobuf_timestamp_pb.Timestamp): TerminateResponse;
|
|
367
|
+
|
|
368
|
+
serializeBinary(): Uint8Array;
|
|
369
|
+
toObject(includeInstance?: boolean): TerminateResponse.AsObject;
|
|
370
|
+
static toObject(includeInstance: boolean, msg: TerminateResponse): TerminateResponse.AsObject;
|
|
371
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
372
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
373
|
+
static serializeBinaryToWriter(message: TerminateResponse, writer: jspb.BinaryWriter): void;
|
|
374
|
+
static deserializeBinary(bytes: Uint8Array): TerminateResponse;
|
|
375
|
+
static deserializeBinaryFromReader(message: TerminateResponse, reader: jspb.BinaryReader): TerminateResponse;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
export namespace TerminateResponse {
|
|
379
|
+
export type AsObject = {
|
|
380
|
+
buildId: string,
|
|
381
|
+
status: BuildStatus,
|
|
382
|
+
error?: string,
|
|
383
|
+
created?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
384
|
+
updated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
export enum BuildStatus {
|
|
389
|
+
BUILD_STATUS_UNSPECIFIED = 0,
|
|
390
|
+
BUILD_STATUS_RUNNING = 1,
|
|
391
|
+
BUILD_STATUS_SUCCESS = 2,
|
|
392
|
+
BUILD_STATUS_FAILED = 3,
|
|
393
|
+
BUILD_STATUS_TIMED_OUT = 4,
|
|
394
|
+
}
|