@velum-labs/cursorkit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DISCLAIMER.md +12 -0
- package/README.md +157 -0
- package/dist/src/agentTools/diff.d.ts +11 -0
- package/dist/src/agentTools/diff.js +88 -0
- package/dist/src/agentTools/policy.d.ts +3 -0
- package/dist/src/agentTools/policy.js +12 -0
- package/dist/src/agentTools/registry.d.ts +114 -0
- package/dist/src/agentTools/registry.js +663 -0
- package/dist/src/agentTools/results.d.ts +14 -0
- package/dist/src/agentTools/results.js +117 -0
- package/dist/src/agentTools/schemas.d.ts +3 -0
- package/dist/src/agentTools/schemas.js +89 -0
- package/dist/src/agentTools/surface.d.ts +11 -0
- package/dist/src/agentTools/surface.js +251 -0
- package/dist/src/certs.d.ts +8 -0
- package/dist/src/certs.js +34 -0
- package/dist/src/ck.d.ts +2 -0
- package/dist/src/ck.js +6 -0
- package/dist/src/ckLauncher.d.ts +150 -0
- package/dist/src/ckLauncher.js +1496 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +265 -0
- package/dist/src/config.d.ts +52 -0
- package/dist/src/config.js +210 -0
- package/dist/src/connectEnvelope.d.ts +16 -0
- package/dist/src/connectEnvelope.js +70 -0
- package/dist/src/desktop.d.ts +19 -0
- package/dist/src/desktop.js +167 -0
- package/dist/src/desktopConnectProxy.d.ts +26 -0
- package/dist/src/desktopConnectProxy.js +175 -0
- package/dist/src/extensions/index.d.ts +2 -0
- package/dist/src/extensions/index.js +1 -0
- package/dist/src/extensions/registry.d.ts +8 -0
- package/dist/src/extensions/registry.js +52 -0
- package/dist/src/extensions/types.d.ts +42 -0
- package/dist/src/extensions/types.js +1 -0
- package/dist/src/fixtures/modelFusion.d.ts +103 -0
- package/dist/src/fixtures/modelFusion.js +404 -0
- package/dist/src/fixtures/replay.d.ts +9 -0
- package/dist/src/fixtures/replay.js +41 -0
- package/dist/src/fixtures/sanitizer.d.ts +9 -0
- package/dist/src/fixtures/sanitizer.js +43 -0
- package/dist/src/fixtures/schema.d.ts +38 -0
- package/dist/src/fixtures/schema.js +33 -0
- package/dist/src/gen/agent/v1/agent_pb.d.ts +21577 -0
- package/dist/src/gen/agent/v1/agent_pb.js +5325 -0
- package/dist/src/gen/aiserver/v1/aiserver_pb.d.ts +135242 -0
- package/dist/src/gen/aiserver/v1/aiserver_pb.js +34430 -0
- package/dist/src/gen/anyrun/v1/anyrun_pb.d.ts +1163 -0
- package/dist/src/gen/anyrun/v1/anyrun_pb.js +374 -0
- package/dist/src/gen/google/protobuf/google_pb.d.ts +142 -0
- package/dist/src/gen/google/protobuf/google_pb.js +54 -0
- package/dist/src/gen/internapi/v1/internapi_pb.d.ts +121 -0
- package/dist/src/gen/internapi/v1/internapi_pb.js +79 -0
- package/dist/src/logger.d.ts +8 -0
- package/dist/src/logger.js +37 -0
- package/dist/src/modelFusion/cursorHarness.d.ts +146 -0
- package/dist/src/modelFusion/cursorHarness.js +647 -0
- package/dist/src/modelFusion/index.d.ts +4 -0
- package/dist/src/modelFusion/index.js +2 -0
- package/dist/src/models/registry.d.ts +22 -0
- package/dist/src/models/registry.js +30 -0
- package/dist/src/proto.d.ts +13 -0
- package/dist/src/proto.js +61 -0
- package/dist/src/providers/openai.d.ts +64 -0
- package/dist/src/providers/openai.js +355 -0
- package/dist/src/redaction.d.ts +4 -0
- package/dist/src/redaction.js +65 -0
- package/dist/src/routeInventory.d.ts +16 -0
- package/dist/src/routeInventory.js +39 -0
- package/dist/src/routes.d.ts +37 -0
- package/dist/src/routes.js +227 -0
- package/dist/src/server.d.ts +50 -0
- package/dist/src/server.js +1353 -0
- package/dist/src/services/agent.d.ts +1 -0
- package/dist/src/services/agent.js +7 -0
- package/dist/src/services/agentRun.d.ts +60 -0
- package/dist/src/services/agentRun.js +391 -0
- package/dist/src/services/chat.d.ts +11 -0
- package/dist/src/services/chat.js +47 -0
- package/dist/src/services/models.d.ts +10 -0
- package/dist/src/services/models.js +216 -0
- package/dist/src/services/serverConfig.d.ts +2 -0
- package/dist/src/services/serverConfig.js +19 -0
- package/dist/src/testing/artifacts.d.ts +14 -0
- package/dist/src/testing/artifacts.js +92 -0
- package/dist/src/testing/cli.d.ts +4 -0
- package/dist/src/testing/cli.js +192 -0
- package/dist/src/testing/localBackend.d.ts +24 -0
- package/dist/src/testing/localBackend.js +310 -0
- package/dist/src/testing/processRunner.d.ts +7 -0
- package/dist/src/testing/processRunner.js +74 -0
- package/dist/src/testing/runner.d.ts +9 -0
- package/dist/src/testing/runner.js +85 -0
- package/dist/src/testing/scenarios.d.ts +3 -0
- package/dist/src/testing/scenarios.js +2535 -0
- package/dist/src/testing/types.d.ts +66 -0
- package/dist/src/testing/types.js +1 -0
- package/dist/src/tools/baselineInventory.d.ts +12 -0
- package/dist/src/tools/baselineInventory.js +680 -0
- package/dist/src/tools/checkModelFusionProtocol.d.ts +1 -0
- package/dist/src/tools/checkModelFusionProtocol.js +274 -0
- package/dist/src/tools/checkReleasePublishConfig.d.ts +1 -0
- package/dist/src/tools/checkReleasePublishConfig.js +99 -0
- package/dist/src/tools/generateProtoInventory.d.ts +1 -0
- package/dist/src/tools/generateProtoInventory.js +89 -0
- package/dist/src/tools/normalizeGeneratedCode.d.ts +1 -0
- package/dist/src/tools/normalizeGeneratedCode.js +18 -0
- package/dist/src/tools/releaseCheck.d.ts +26 -0
- package/dist/src/tools/releaseCheck.js +367 -0
- package/dist/src/trace.d.ts +39 -0
- package/dist/src/trace.js +106 -0
- package/dist/src/translation.d.ts +6 -0
- package/dist/src/translation.js +22 -0
- package/dist/src/upstream.d.ts +20 -0
- package/dist/src/upstream.js +270 -0
- package/docs/configuration.md +55 -0
- package/docs/cursor-app.md +263 -0
- package/docs/implementation-inventory.json +609 -0
- package/docs/learnings.md +363 -0
- package/docs/model-fusion-protocol-origin.json +126 -0
- package/docs/model-fusion-protocol.md +110 -0
- package/docs/plugin-authoring.md +24 -0
- package/docs/proto-inventory.md +1477 -0
- package/docs/protocol-surface-audit.md +92 -0
- package/docs/protocol.md +52 -0
- package/docs/refreshing-protos.md +78 -0
- package/docs/release-gates.md +110 -0
- package/docs/release-summary.json +86 -0
- package/docs/route-contract-manifest.json +288 -0
- package/docs/route-policy.json +133 -0
- package/docs/service-manifest.json +9490 -0
- package/docs/test-manifest.json +155 -0
- package/docs/testing-harness.md +204 -0
- package/docs/troubleshooting.md +36 -0
- package/docs/type-manifest-summary.json +28927 -0
- package/package.json +93 -0
- package/proto/agent/v1/agent.proto +5371 -0
- package/proto/aiserver/v1/aiserver.proto +32944 -0
- package/proto/anyrun/v1/anyrun.proto +294 -0
- package/proto/google/protobuf/google.proto +37 -0
- package/proto/internapi/v1/internapi.proto +32 -0
|
@@ -0,0 +1,1163 @@
|
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file anyrun/v1/anyrun.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_anyrun_v1_anyrun: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* anyrun.v1.PodErrorEvent
|
|
9
|
+
*
|
|
10
|
+
* @generated from message anyrun.v1.PodErrorEvent
|
|
11
|
+
*/
|
|
12
|
+
export type PodErrorEvent = Message<"anyrun.v1.PodErrorEvent"> & {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: string error_message = 1;
|
|
15
|
+
*/
|
|
16
|
+
errorMessage: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message anyrun.v1.PodErrorEvent.
|
|
20
|
+
* Use `create(PodErrorEventSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
export declare const PodErrorEventSchema: GenMessage<PodErrorEvent>;
|
|
23
|
+
/**
|
|
24
|
+
* google.protobuf.Empty
|
|
25
|
+
*
|
|
26
|
+
* @generated from message anyrun.v1.GoogleProtobuf_Empty
|
|
27
|
+
*/
|
|
28
|
+
export type GoogleProtobuf_Empty = Message<"anyrun.v1.GoogleProtobuf_Empty"> & {};
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message anyrun.v1.GoogleProtobuf_Empty.
|
|
31
|
+
* Use `create(GoogleProtobuf_EmptySchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export declare const GoogleProtobuf_EmptySchema: GenMessage<GoogleProtobuf_Empty>;
|
|
34
|
+
/**
|
|
35
|
+
* anyrun.v1.HydrationProgress
|
|
36
|
+
*
|
|
37
|
+
* @generated from message anyrun.v1.HydrationProgress
|
|
38
|
+
*/
|
|
39
|
+
export type HydrationProgress = Message<"anyrun.v1.HydrationProgress"> & {
|
|
40
|
+
/**
|
|
41
|
+
* @generated from field: uint64 transferred = 1;
|
|
42
|
+
*/
|
|
43
|
+
transferred: bigint;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: uint64 total = 2;
|
|
46
|
+
*/
|
|
47
|
+
total: bigint;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message anyrun.v1.HydrationProgress.
|
|
51
|
+
* Use `create(HydrationProgressSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export declare const HydrationProgressSchema: GenMessage<HydrationProgress>;
|
|
54
|
+
/**
|
|
55
|
+
* anyrun.v1.CloneStarted
|
|
56
|
+
*
|
|
57
|
+
* @generated from message anyrun.v1.CloneStarted
|
|
58
|
+
*/
|
|
59
|
+
export type CloneStarted = Message<"anyrun.v1.CloneStarted"> & {
|
|
60
|
+
/**
|
|
61
|
+
* @generated from field: anyrun.v1.ClonePurpose purpose = 1;
|
|
62
|
+
*/
|
|
63
|
+
purpose: ClonePurpose;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Describes the message anyrun.v1.CloneStarted.
|
|
67
|
+
* Use `create(CloneStartedSchema)` to create a new message.
|
|
68
|
+
*/
|
|
69
|
+
export declare const CloneStartedSchema: GenMessage<CloneStarted>;
|
|
70
|
+
/**
|
|
71
|
+
* anyrun.v1.CloneCompleted
|
|
72
|
+
*
|
|
73
|
+
* @generated from message anyrun.v1.CloneCompleted
|
|
74
|
+
*/
|
|
75
|
+
export type CloneCompleted = Message<"anyrun.v1.CloneCompleted"> & {
|
|
76
|
+
/**
|
|
77
|
+
* @generated from field: anyrun.v1.ClonePurpose purpose = 1;
|
|
78
|
+
*/
|
|
79
|
+
purpose: ClonePurpose;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Describes the message anyrun.v1.CloneCompleted.
|
|
83
|
+
* Use `create(CloneCompletedSchema)` to create a new message.
|
|
84
|
+
*/
|
|
85
|
+
export declare const CloneCompletedSchema: GenMessage<CloneCompleted>;
|
|
86
|
+
/**
|
|
87
|
+
* anyrun.v1.BuildStepStarted
|
|
88
|
+
*
|
|
89
|
+
* @generated from message anyrun.v1.BuildStepStarted
|
|
90
|
+
*/
|
|
91
|
+
export type BuildStepStarted = Message<"anyrun.v1.BuildStepStarted"> & {
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: uint32 stream_id = 1;
|
|
94
|
+
*/
|
|
95
|
+
streamId: number;
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: uint32 step = 2;
|
|
98
|
+
*/
|
|
99
|
+
step: number;
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: uint32 total_steps = 3;
|
|
102
|
+
*/
|
|
103
|
+
totalSteps: number;
|
|
104
|
+
/**
|
|
105
|
+
* @generated from field: string command = 4;
|
|
106
|
+
*/
|
|
107
|
+
command: string;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* Describes the message anyrun.v1.BuildStepStarted.
|
|
111
|
+
* Use `create(BuildStepStartedSchema)` to create a new message.
|
|
112
|
+
*/
|
|
113
|
+
export declare const BuildStepStartedSchema: GenMessage<BuildStepStarted>;
|
|
114
|
+
/**
|
|
115
|
+
* anyrun.v1.BuildStatusLine
|
|
116
|
+
*
|
|
117
|
+
* @generated from message anyrun.v1.BuildStatusLine
|
|
118
|
+
*/
|
|
119
|
+
export type BuildStatusLine = Message<"anyrun.v1.BuildStatusLine"> & {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: uint32 stream_id = 1;
|
|
122
|
+
*/
|
|
123
|
+
streamId: number;
|
|
124
|
+
/**
|
|
125
|
+
* @generated from field: string timestamp = 2;
|
|
126
|
+
*/
|
|
127
|
+
timestamp: string;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: string content = 3;
|
|
130
|
+
*/
|
|
131
|
+
content: string;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Describes the message anyrun.v1.BuildStatusLine.
|
|
135
|
+
* Use `create(BuildStatusLineSchema)` to create a new message.
|
|
136
|
+
*/
|
|
137
|
+
export declare const BuildStatusLineSchema: GenMessage<BuildStatusLine>;
|
|
138
|
+
/**
|
|
139
|
+
* anyrun.v1.InternalBuildMessage
|
|
140
|
+
*
|
|
141
|
+
* @generated from message anyrun.v1.InternalBuildMessage
|
|
142
|
+
*/
|
|
143
|
+
export type InternalBuildMessage = Message<"anyrun.v1.InternalBuildMessage"> & {
|
|
144
|
+
/**
|
|
145
|
+
* @generated from field: uint32 stream_id = 1;
|
|
146
|
+
*/
|
|
147
|
+
streamId: number;
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: string content = 2;
|
|
150
|
+
*/
|
|
151
|
+
content: string;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Describes the message anyrun.v1.InternalBuildMessage.
|
|
155
|
+
* Use `create(InternalBuildMessageSchema)` to create a new message.
|
|
156
|
+
*/
|
|
157
|
+
export declare const InternalBuildMessageSchema: GenMessage<InternalBuildMessage>;
|
|
158
|
+
/**
|
|
159
|
+
* anyrun.v1.InstallCommand
|
|
160
|
+
*
|
|
161
|
+
* @generated from message anyrun.v1.InstallCommand
|
|
162
|
+
*/
|
|
163
|
+
export type InstallCommand = Message<"anyrun.v1.InstallCommand"> & {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: string name = 1;
|
|
166
|
+
*/
|
|
167
|
+
name: string;
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: string command = 2;
|
|
170
|
+
*/
|
|
171
|
+
command: string;
|
|
172
|
+
/**
|
|
173
|
+
* @generated from field: optional string user = 3;
|
|
174
|
+
*/
|
|
175
|
+
user?: string | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* @generated from field: bool is_system = 4;
|
|
178
|
+
*/
|
|
179
|
+
isSystem: boolean;
|
|
180
|
+
/**
|
|
181
|
+
* @generated from field: bool failure_tolerant = 5;
|
|
182
|
+
*/
|
|
183
|
+
failureTolerant: boolean;
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* Describes the message anyrun.v1.InstallCommand.
|
|
187
|
+
* Use `create(InstallCommandSchema)` to create a new message.
|
|
188
|
+
*/
|
|
189
|
+
export declare const InstallCommandSchema: GenMessage<InstallCommand>;
|
|
190
|
+
/**
|
|
191
|
+
* anyrun.v1.FeatureOutput
|
|
192
|
+
*
|
|
193
|
+
* @generated from message anyrun.v1.FeatureOutput
|
|
194
|
+
*/
|
|
195
|
+
export type FeatureOutput = Message<"anyrun.v1.FeatureOutput"> & {
|
|
196
|
+
/**
|
|
197
|
+
* @generated from field: string feature_id = 1;
|
|
198
|
+
*/
|
|
199
|
+
featureId: string;
|
|
200
|
+
/**
|
|
201
|
+
* @generated from field: string output = 2;
|
|
202
|
+
*/
|
|
203
|
+
output: string;
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* Describes the message anyrun.v1.FeatureOutput.
|
|
207
|
+
* Use `create(FeatureOutputSchema)` to create a new message.
|
|
208
|
+
*/
|
|
209
|
+
export declare const FeatureOutputSchema: GenMessage<FeatureOutput>;
|
|
210
|
+
/**
|
|
211
|
+
* anyrun.v1.FeatureExitCode
|
|
212
|
+
*
|
|
213
|
+
* @generated from message anyrun.v1.FeatureExitCode
|
|
214
|
+
*/
|
|
215
|
+
export type FeatureExitCode = Message<"anyrun.v1.FeatureExitCode"> & {
|
|
216
|
+
/**
|
|
217
|
+
* @generated from field: string feature_id = 1;
|
|
218
|
+
*/
|
|
219
|
+
featureId: string;
|
|
220
|
+
/**
|
|
221
|
+
* @generated from field: int64 exit_code = 2;
|
|
222
|
+
*/
|
|
223
|
+
exitCode: bigint;
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* Describes the message anyrun.v1.FeatureExitCode.
|
|
227
|
+
* Use `create(FeatureExitCodeSchema)` to create a new message.
|
|
228
|
+
*/
|
|
229
|
+
export declare const FeatureExitCodeSchema: GenMessage<FeatureExitCode>;
|
|
230
|
+
/**
|
|
231
|
+
* anyrun.v1.ImagePullStarted
|
|
232
|
+
*
|
|
233
|
+
* @generated from message anyrun.v1.ImagePullStarted
|
|
234
|
+
*/
|
|
235
|
+
export type ImagePullStarted = Message<"anyrun.v1.ImagePullStarted"> & {
|
|
236
|
+
/**
|
|
237
|
+
* @generated from field: string image_name = 1;
|
|
238
|
+
*/
|
|
239
|
+
imageName: string;
|
|
240
|
+
/**
|
|
241
|
+
* @generated from field: string pull_id = 2;
|
|
242
|
+
*/
|
|
243
|
+
pullId: string;
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* Describes the message anyrun.v1.ImagePullStarted.
|
|
247
|
+
* Use `create(ImagePullStartedSchema)` to create a new message.
|
|
248
|
+
*/
|
|
249
|
+
export declare const ImagePullStartedSchema: GenMessage<ImagePullStarted>;
|
|
250
|
+
/**
|
|
251
|
+
* anyrun.v1.ProgressDetail
|
|
252
|
+
*
|
|
253
|
+
* @generated from message anyrun.v1.ProgressDetail
|
|
254
|
+
*/
|
|
255
|
+
export type ProgressDetail = Message<"anyrun.v1.ProgressDetail"> & {
|
|
256
|
+
/**
|
|
257
|
+
* @generated from field: uint64 current = 1;
|
|
258
|
+
*/
|
|
259
|
+
current: bigint;
|
|
260
|
+
/**
|
|
261
|
+
* @generated from field: uint64 total = 2;
|
|
262
|
+
*/
|
|
263
|
+
total: bigint;
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* Describes the message anyrun.v1.ProgressDetail.
|
|
267
|
+
* Use `create(ProgressDetailSchema)` to create a new message.
|
|
268
|
+
*/
|
|
269
|
+
export declare const ProgressDetailSchema: GenMessage<ProgressDetail>;
|
|
270
|
+
/**
|
|
271
|
+
* anyrun.v1.ImagePullLayerUpdate
|
|
272
|
+
*
|
|
273
|
+
* @generated from message anyrun.v1.ImagePullLayerUpdate
|
|
274
|
+
*/
|
|
275
|
+
export type ImagePullLayerUpdate = Message<"anyrun.v1.ImagePullLayerUpdate"> & {
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: string image_name = 1;
|
|
278
|
+
*/
|
|
279
|
+
imageName: string;
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: string pull_id = 2;
|
|
282
|
+
*/
|
|
283
|
+
pullId: string;
|
|
284
|
+
/**
|
|
285
|
+
* @generated from field: string layer_id = 3;
|
|
286
|
+
*/
|
|
287
|
+
layerId: string;
|
|
288
|
+
/**
|
|
289
|
+
* @generated from field: bool pulling_fs_layer = 4;
|
|
290
|
+
*/
|
|
291
|
+
pullingFsLayer: boolean;
|
|
292
|
+
/**
|
|
293
|
+
* @generated from field: bool waiting = 5;
|
|
294
|
+
*/
|
|
295
|
+
waiting: boolean;
|
|
296
|
+
/**
|
|
297
|
+
* @generated from field: bool verifying_checksum = 6;
|
|
298
|
+
*/
|
|
299
|
+
verifyingChecksum: boolean;
|
|
300
|
+
/**
|
|
301
|
+
* @generated from field: bool download_complete = 7;
|
|
302
|
+
*/
|
|
303
|
+
downloadComplete: boolean;
|
|
304
|
+
/**
|
|
305
|
+
* @generated from field: bool pull_complete = 8;
|
|
306
|
+
*/
|
|
307
|
+
pullComplete: boolean;
|
|
308
|
+
/**
|
|
309
|
+
* @generated from field: anyrun.v1.ProgressDetail downloading = 9;
|
|
310
|
+
*/
|
|
311
|
+
downloading?: ProgressDetail | undefined;
|
|
312
|
+
/**
|
|
313
|
+
* @generated from field: anyrun.v1.ProgressDetail extracting = 10;
|
|
314
|
+
*/
|
|
315
|
+
extracting?: ProgressDetail | undefined;
|
|
316
|
+
/**
|
|
317
|
+
* @generated from field: string other = 11;
|
|
318
|
+
*/
|
|
319
|
+
other: string;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Describes the message anyrun.v1.ImagePullLayerUpdate.
|
|
323
|
+
* Use `create(ImagePullLayerUpdateSchema)` to create a new message.
|
|
324
|
+
*/
|
|
325
|
+
export declare const ImagePullLayerUpdateSchema: GenMessage<ImagePullLayerUpdate>;
|
|
326
|
+
/**
|
|
327
|
+
* anyrun.v1.ImagePullStatusUpdate
|
|
328
|
+
*
|
|
329
|
+
* @generated from message anyrun.v1.ImagePullStatusUpdate
|
|
330
|
+
*/
|
|
331
|
+
export type ImagePullStatusUpdate = Message<"anyrun.v1.ImagePullStatusUpdate"> & {
|
|
332
|
+
/**
|
|
333
|
+
* @generated from field: string image_name = 1;
|
|
334
|
+
*/
|
|
335
|
+
imageName: string;
|
|
336
|
+
/**
|
|
337
|
+
* @generated from field: string pull_id = 2;
|
|
338
|
+
*/
|
|
339
|
+
pullId: string;
|
|
340
|
+
/**
|
|
341
|
+
* @generated from field: string status = 3;
|
|
342
|
+
*/
|
|
343
|
+
status: string;
|
|
344
|
+
};
|
|
345
|
+
/**
|
|
346
|
+
* Describes the message anyrun.v1.ImagePullStatusUpdate.
|
|
347
|
+
* Use `create(ImagePullStatusUpdateSchema)` to create a new message.
|
|
348
|
+
*/
|
|
349
|
+
export declare const ImagePullStatusUpdateSchema: GenMessage<ImagePullStatusUpdate>;
|
|
350
|
+
/**
|
|
351
|
+
* anyrun.v1.ImagePullCompleted
|
|
352
|
+
*
|
|
353
|
+
* @generated from message anyrun.v1.ImagePullCompleted
|
|
354
|
+
*/
|
|
355
|
+
export type ImagePullCompleted = Message<"anyrun.v1.ImagePullCompleted"> & {
|
|
356
|
+
/**
|
|
357
|
+
* @generated from field: string image_name = 1;
|
|
358
|
+
*/
|
|
359
|
+
imageName: string;
|
|
360
|
+
/**
|
|
361
|
+
* @generated from field: string pull_id = 2;
|
|
362
|
+
*/
|
|
363
|
+
pullId: string;
|
|
364
|
+
};
|
|
365
|
+
/**
|
|
366
|
+
* Describes the message anyrun.v1.ImagePullCompleted.
|
|
367
|
+
* Use `create(ImagePullCompletedSchema)` to create a new message.
|
|
368
|
+
*/
|
|
369
|
+
export declare const ImagePullCompletedSchema: GenMessage<ImagePullCompleted>;
|
|
370
|
+
/**
|
|
371
|
+
* anyrun.v1.PodIdentity
|
|
372
|
+
*
|
|
373
|
+
* @generated from message anyrun.v1.PodIdentity
|
|
374
|
+
*/
|
|
375
|
+
export type PodIdentity = Message<"anyrun.v1.PodIdentity"> & {
|
|
376
|
+
/**
|
|
377
|
+
* @generated from field: string tenant_id = 1;
|
|
378
|
+
*/
|
|
379
|
+
tenantId: string;
|
|
380
|
+
/**
|
|
381
|
+
* @generated from field: string pod_id = 2;
|
|
382
|
+
*/
|
|
383
|
+
podId: string;
|
|
384
|
+
};
|
|
385
|
+
/**
|
|
386
|
+
* Describes the message anyrun.v1.PodIdentity.
|
|
387
|
+
* Use `create(PodIdentitySchema)` to create a new message.
|
|
388
|
+
*/
|
|
389
|
+
export declare const PodIdentitySchema: GenMessage<PodIdentity>;
|
|
390
|
+
/**
|
|
391
|
+
* anyrun.v1.WaitingForWorkerStatus
|
|
392
|
+
*
|
|
393
|
+
* @generated from message anyrun.v1.WaitingForWorkerStatus
|
|
394
|
+
*/
|
|
395
|
+
export type WaitingForWorkerStatus = Message<"anyrun.v1.WaitingForWorkerStatus"> & {
|
|
396
|
+
/**
|
|
397
|
+
* @generated from field: int32 retry_count = 1;
|
|
398
|
+
*/
|
|
399
|
+
retryCount: number;
|
|
400
|
+
/**
|
|
401
|
+
* @generated from field: int32 max_retries = 2;
|
|
402
|
+
*/
|
|
403
|
+
maxRetries: number;
|
|
404
|
+
/**
|
|
405
|
+
* @generated from field: anyrun.v1.PrivateWorkerWaitReason wait_reason = 3;
|
|
406
|
+
*/
|
|
407
|
+
waitReason: PrivateWorkerWaitReason;
|
|
408
|
+
};
|
|
409
|
+
/**
|
|
410
|
+
* Describes the message anyrun.v1.WaitingForWorkerStatus.
|
|
411
|
+
* Use `create(WaitingForWorkerStatusSchema)` to create a new message.
|
|
412
|
+
*/
|
|
413
|
+
export declare const WaitingForWorkerStatusSchema: GenMessage<WaitingForWorkerStatus>;
|
|
414
|
+
/**
|
|
415
|
+
* anyrun.v1.SpanStarted
|
|
416
|
+
*
|
|
417
|
+
* @generated from message anyrun.v1.SpanStarted
|
|
418
|
+
*/
|
|
419
|
+
export type SpanStarted = Message<"anyrun.v1.SpanStarted"> & {
|
|
420
|
+
/**
|
|
421
|
+
* @generated from field: string span_id = 1;
|
|
422
|
+
*/
|
|
423
|
+
spanId: string;
|
|
424
|
+
/**
|
|
425
|
+
* @generated from field: string name = 2;
|
|
426
|
+
*/
|
|
427
|
+
name: string;
|
|
428
|
+
/**
|
|
429
|
+
* @generated from field: optional string parent_span_id = 3;
|
|
430
|
+
*/
|
|
431
|
+
parentSpanId?: string | undefined;
|
|
432
|
+
/**
|
|
433
|
+
* @generated from field: optional string href = 5;
|
|
434
|
+
*/
|
|
435
|
+
href?: string | undefined;
|
|
436
|
+
};
|
|
437
|
+
/**
|
|
438
|
+
* Describes the message anyrun.v1.SpanStarted.
|
|
439
|
+
* Use `create(SpanStartedSchema)` to create a new message.
|
|
440
|
+
*/
|
|
441
|
+
export declare const SpanStartedSchema: GenMessage<SpanStarted>;
|
|
442
|
+
/**
|
|
443
|
+
* anyrun.v1.SpanEnded
|
|
444
|
+
*
|
|
445
|
+
* @generated from message anyrun.v1.SpanEnded
|
|
446
|
+
*/
|
|
447
|
+
export type SpanEnded = Message<"anyrun.v1.SpanEnded"> & {
|
|
448
|
+
/**
|
|
449
|
+
* @generated from field: string span_id = 1;
|
|
450
|
+
*/
|
|
451
|
+
spanId: string;
|
|
452
|
+
};
|
|
453
|
+
/**
|
|
454
|
+
* Describes the message anyrun.v1.SpanEnded.
|
|
455
|
+
* Use `create(SpanEndedSchema)` to create a new message.
|
|
456
|
+
*/
|
|
457
|
+
export declare const SpanEndedSchema: GenMessage<SpanEnded>;
|
|
458
|
+
/**
|
|
459
|
+
* anyrun.v1.LifecycleProcessRestarted
|
|
460
|
+
*
|
|
461
|
+
* @generated from message anyrun.v1.LifecycleProcessRestarted
|
|
462
|
+
*/
|
|
463
|
+
export type LifecycleProcessRestarted = Message<"anyrun.v1.LifecycleProcessRestarted"> & {
|
|
464
|
+
/**
|
|
465
|
+
* @generated from field: uint32 attempt = 1;
|
|
466
|
+
*/
|
|
467
|
+
attempt: number;
|
|
468
|
+
/**
|
|
469
|
+
* @generated from field: int32 previous_exit_code = 2;
|
|
470
|
+
*/
|
|
471
|
+
previousExitCode: number;
|
|
472
|
+
/**
|
|
473
|
+
* @generated from field: anyrun.v1.RestartReason reason = 3;
|
|
474
|
+
*/
|
|
475
|
+
reason: RestartReason;
|
|
476
|
+
/**
|
|
477
|
+
* @generated from field: string command_name = 4;
|
|
478
|
+
*/
|
|
479
|
+
commandName: string;
|
|
480
|
+
};
|
|
481
|
+
/**
|
|
482
|
+
* Describes the message anyrun.v1.LifecycleProcessRestarted.
|
|
483
|
+
* Use `create(LifecycleProcessRestartedSchema)` to create a new message.
|
|
484
|
+
*/
|
|
485
|
+
export declare const LifecycleProcessRestartedSchema: GenMessage<LifecycleProcessRestarted>;
|
|
486
|
+
/**
|
|
487
|
+
* anyrun.v1.LifecycleProcessExited
|
|
488
|
+
*
|
|
489
|
+
* @generated from message anyrun.v1.LifecycleProcessExited
|
|
490
|
+
*/
|
|
491
|
+
export type LifecycleProcessExited = Message<"anyrun.v1.LifecycleProcessExited"> & {
|
|
492
|
+
/**
|
|
493
|
+
* @generated from field: int32 exit_code = 1;
|
|
494
|
+
*/
|
|
495
|
+
exitCode: number;
|
|
496
|
+
/**
|
|
497
|
+
* @generated from field: string command_name = 2;
|
|
498
|
+
*/
|
|
499
|
+
commandName: string;
|
|
500
|
+
};
|
|
501
|
+
/**
|
|
502
|
+
* Describes the message anyrun.v1.LifecycleProcessExited.
|
|
503
|
+
* Use `create(LifecycleProcessExitedSchema)` to create a new message.
|
|
504
|
+
*/
|
|
505
|
+
export declare const LifecycleProcessExitedSchema: GenMessage<LifecycleProcessExited>;
|
|
506
|
+
/**
|
|
507
|
+
* anyrun.v1.PodEvent
|
|
508
|
+
*
|
|
509
|
+
* @generated from message anyrun.v1.PodEvent
|
|
510
|
+
*/
|
|
511
|
+
export type PodEvent = Message<"anyrun.v1.PodEvent"> & {
|
|
512
|
+
/**
|
|
513
|
+
* @generated from field: uint64 creation_timestamp = 49;
|
|
514
|
+
*/
|
|
515
|
+
creationTimestamp: bigint;
|
|
516
|
+
/**
|
|
517
|
+
* @generated from field: anyrun.v1.PodErrorEvent error = 26;
|
|
518
|
+
*/
|
|
519
|
+
error?: PodErrorEvent | undefined;
|
|
520
|
+
/**
|
|
521
|
+
* @generated from field: string debug_event = 1;
|
|
522
|
+
*/
|
|
523
|
+
debugEvent: string;
|
|
524
|
+
/**
|
|
525
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty hydration_started = 43;
|
|
526
|
+
*/
|
|
527
|
+
hydrationStarted?: GoogleProtobuf_Empty | undefined;
|
|
528
|
+
/**
|
|
529
|
+
* @generated from field: anyrun.v1.HydrationProgress hydration_progress = 44;
|
|
530
|
+
*/
|
|
531
|
+
hydrationProgress?: HydrationProgress | undefined;
|
|
532
|
+
/**
|
|
533
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty hydration_completed = 45;
|
|
534
|
+
*/
|
|
535
|
+
hydrationCompleted?: GoogleProtobuf_Empty | undefined;
|
|
536
|
+
/**
|
|
537
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty clone_started = 31;
|
|
538
|
+
*/
|
|
539
|
+
cloneStarted?: GoogleProtobuf_Empty | undefined;
|
|
540
|
+
/**
|
|
541
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty clone_completed = 32;
|
|
542
|
+
*/
|
|
543
|
+
cloneCompleted?: GoogleProtobuf_Empty | undefined;
|
|
544
|
+
/**
|
|
545
|
+
* @generated from field: anyrun.v1.CloneStarted clone_started_v2 = 51;
|
|
546
|
+
*/
|
|
547
|
+
cloneStartedV2?: CloneStarted | undefined;
|
|
548
|
+
/**
|
|
549
|
+
* @generated from field: anyrun.v1.CloneCompleted clone_completed_v2 = 52;
|
|
550
|
+
*/
|
|
551
|
+
cloneCompletedV2?: CloneCompleted | undefined;
|
|
552
|
+
/**
|
|
553
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty checkout_started = 33;
|
|
554
|
+
*/
|
|
555
|
+
checkoutStarted?: GoogleProtobuf_Empty | undefined;
|
|
556
|
+
/**
|
|
557
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty checkout_completed = 34;
|
|
558
|
+
*/
|
|
559
|
+
checkoutCompleted?: GoogleProtobuf_Empty | undefined;
|
|
560
|
+
/**
|
|
561
|
+
* @generated from field: string build_started = 2;
|
|
562
|
+
*/
|
|
563
|
+
buildStarted: string;
|
|
564
|
+
/**
|
|
565
|
+
* @generated from field: string build_status_message = 3;
|
|
566
|
+
*/
|
|
567
|
+
buildStatusMessage: string;
|
|
568
|
+
/**
|
|
569
|
+
* @generated from field: anyrun.v1.BuildStepStarted build_step_started = 27;
|
|
570
|
+
*/
|
|
571
|
+
buildStepStarted?: BuildStepStarted | undefined;
|
|
572
|
+
/**
|
|
573
|
+
* @generated from field: anyrun.v1.BuildStatusLine build_status_line = 28;
|
|
574
|
+
*/
|
|
575
|
+
buildStatusLine?: BuildStatusLine | undefined;
|
|
576
|
+
/**
|
|
577
|
+
* @generated from field: anyrun.v1.InternalBuildMessage internal_build_message = 29;
|
|
578
|
+
*/
|
|
579
|
+
internalBuildMessage?: InternalBuildMessage | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* @generated from field: int32 build_exit_code = 30;
|
|
582
|
+
*/
|
|
583
|
+
buildExitCode: number;
|
|
584
|
+
/**
|
|
585
|
+
* @generated from field: string prepare_stdout = 14;
|
|
586
|
+
*/
|
|
587
|
+
prepareStdout: string;
|
|
588
|
+
/**
|
|
589
|
+
* @generated from field: string prepare_stderr = 15;
|
|
590
|
+
*/
|
|
591
|
+
prepareStderr: string;
|
|
592
|
+
/**
|
|
593
|
+
* @generated from field: int64 prepare_exit_code = 16;
|
|
594
|
+
*/
|
|
595
|
+
prepareExitCode: bigint;
|
|
596
|
+
/**
|
|
597
|
+
* @generated from field: anyrun.v1.InstallCommand install_command = 50;
|
|
598
|
+
*/
|
|
599
|
+
installCommand?: InstallCommand | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* @generated from field: string install_stdout = 17;
|
|
602
|
+
*/
|
|
603
|
+
installStdout: string;
|
|
604
|
+
/**
|
|
605
|
+
* @generated from field: string install_stderr = 18;
|
|
606
|
+
*/
|
|
607
|
+
installStderr: string;
|
|
608
|
+
/**
|
|
609
|
+
* @generated from field: int64 install_exit_code = 19;
|
|
610
|
+
*/
|
|
611
|
+
installExitCode: bigint;
|
|
612
|
+
/**
|
|
613
|
+
* @generated from field: string verify_stdout = 46;
|
|
614
|
+
*/
|
|
615
|
+
verifyStdout: string;
|
|
616
|
+
/**
|
|
617
|
+
* @generated from field: string verify_stderr = 47;
|
|
618
|
+
*/
|
|
619
|
+
verifyStderr: string;
|
|
620
|
+
/**
|
|
621
|
+
* @generated from field: int64 verify_exit_code = 48;
|
|
622
|
+
*/
|
|
623
|
+
verifyExitCode: bigint;
|
|
624
|
+
/**
|
|
625
|
+
* @generated from field: string start_stdout = 6;
|
|
626
|
+
*/
|
|
627
|
+
startStdout: string;
|
|
628
|
+
/**
|
|
629
|
+
* @generated from field: string start_stderr = 7;
|
|
630
|
+
*/
|
|
631
|
+
startStderr: string;
|
|
632
|
+
/**
|
|
633
|
+
* @generated from field: int64 start_exit_code = 8;
|
|
634
|
+
*/
|
|
635
|
+
startExitCode: bigint;
|
|
636
|
+
/**
|
|
637
|
+
* @generated from field: anyrun.v1.FeatureOutput extension_install_stdout = 20;
|
|
638
|
+
*/
|
|
639
|
+
extensionInstallStdout?: FeatureOutput | undefined;
|
|
640
|
+
/**
|
|
641
|
+
* @generated from field: anyrun.v1.FeatureOutput extension_install_stderr = 21;
|
|
642
|
+
*/
|
|
643
|
+
extensionInstallStderr?: FeatureOutput | undefined;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from field: anyrun.v1.FeatureExitCode extension_install_exit_code = 22;
|
|
646
|
+
*/
|
|
647
|
+
extensionInstallExitCode?: FeatureExitCode | undefined;
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty snapshot_started = 35;
|
|
650
|
+
*/
|
|
651
|
+
snapshotStarted?: GoogleProtobuf_Empty | undefined;
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty snapshot_completed = 36;
|
|
654
|
+
*/
|
|
655
|
+
snapshotCompleted?: GoogleProtobuf_Empty | undefined;
|
|
656
|
+
/**
|
|
657
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty creation_completed = 9;
|
|
658
|
+
*/
|
|
659
|
+
creationCompleted?: GoogleProtobuf_Empty | undefined;
|
|
660
|
+
/**
|
|
661
|
+
* @generated from field: string post_start_stdout = 10;
|
|
662
|
+
*/
|
|
663
|
+
postStartStdout: string;
|
|
664
|
+
/**
|
|
665
|
+
* @generated from field: string post_start_stderr = 11;
|
|
666
|
+
*/
|
|
667
|
+
postStartStderr: string;
|
|
668
|
+
/**
|
|
669
|
+
* @generated from field: int64 post_start_exit_code = 12;
|
|
670
|
+
*/
|
|
671
|
+
postStartExitCode: bigint;
|
|
672
|
+
/**
|
|
673
|
+
* @generated from field: anyrun.v1.FeatureOutput extension_start_stdout = 23;
|
|
674
|
+
*/
|
|
675
|
+
extensionStartStdout?: FeatureOutput | undefined;
|
|
676
|
+
/**
|
|
677
|
+
* @generated from field: anyrun.v1.FeatureOutput extension_start_stderr = 24;
|
|
678
|
+
*/
|
|
679
|
+
extensionStartStderr?: FeatureOutput | undefined;
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: anyrun.v1.FeatureExitCode extension_start_exit_code = 25;
|
|
682
|
+
*/
|
|
683
|
+
extensionStartExitCode?: FeatureExitCode | undefined;
|
|
684
|
+
/**
|
|
685
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty startup_completed = 13;
|
|
686
|
+
*/
|
|
687
|
+
startupCompleted?: GoogleProtobuf_Empty | undefined;
|
|
688
|
+
/**
|
|
689
|
+
* @generated from field: anyrun.v1.ImagePullStarted image_pull_started = 37;
|
|
690
|
+
*/
|
|
691
|
+
imagePullStarted?: ImagePullStarted | undefined;
|
|
692
|
+
/**
|
|
693
|
+
* @generated from field: anyrun.v1.ImagePullLayerUpdate image_pull_layer_update = 38;
|
|
694
|
+
*/
|
|
695
|
+
imagePullLayerUpdate?: ImagePullLayerUpdate | undefined;
|
|
696
|
+
/**
|
|
697
|
+
* @generated from field: anyrun.v1.ImagePullStatusUpdate image_pull_status_update = 39;
|
|
698
|
+
*/
|
|
699
|
+
imagePullStatusUpdate?: ImagePullStatusUpdate | undefined;
|
|
700
|
+
/**
|
|
701
|
+
* @generated from field: anyrun.v1.ImagePullCompleted image_pull_completed = 40;
|
|
702
|
+
*/
|
|
703
|
+
imagePullCompleted?: ImagePullCompleted | undefined;
|
|
704
|
+
/**
|
|
705
|
+
* @generated from field: anyrun.v1.PodIdentity blocked_repo_state = 41;
|
|
706
|
+
*/
|
|
707
|
+
blockedRepoState?: PodIdentity | undefined;
|
|
708
|
+
/**
|
|
709
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty acquired_repo_state = 42;
|
|
710
|
+
*/
|
|
711
|
+
acquiredRepoState?: GoogleProtobuf_Empty | undefined;
|
|
712
|
+
/**
|
|
713
|
+
* @generated from field: anyrun.v1.GoogleProtobuf_Empty private_worker_ready = 53;
|
|
714
|
+
*/
|
|
715
|
+
privateWorkerReady?: GoogleProtobuf_Empty | undefined;
|
|
716
|
+
/**
|
|
717
|
+
* @generated from field: anyrun.v1.WaitingForWorkerStatus waiting_for_worker = 54;
|
|
718
|
+
*/
|
|
719
|
+
waitingForWorker?: WaitingForWorkerStatus | undefined;
|
|
720
|
+
/**
|
|
721
|
+
* @generated from field: anyrun.v1.SpanStarted span_started = 55;
|
|
722
|
+
*/
|
|
723
|
+
spanStarted?: SpanStarted | undefined;
|
|
724
|
+
/**
|
|
725
|
+
* @generated from field: anyrun.v1.SpanEnded span_ended = 56;
|
|
726
|
+
*/
|
|
727
|
+
spanEnded?: SpanEnded | undefined;
|
|
728
|
+
/**
|
|
729
|
+
* @generated from field: anyrun.v1.LifecycleProcessRestarted lifecycle_process_restarted = 57;
|
|
730
|
+
*/
|
|
731
|
+
lifecycleProcessRestarted?: LifecycleProcessRestarted | undefined;
|
|
732
|
+
/**
|
|
733
|
+
* @generated from field: anyrun.v1.LifecycleProcessExited lifecycle_process_exited = 58;
|
|
734
|
+
*/
|
|
735
|
+
lifecycleProcessExited?: LifecycleProcessExited | undefined;
|
|
736
|
+
};
|
|
737
|
+
/**
|
|
738
|
+
* Describes the message anyrun.v1.PodEvent.
|
|
739
|
+
* Use `create(PodEventSchema)` to create a new message.
|
|
740
|
+
*/
|
|
741
|
+
export declare const PodEventSchema: GenMessage<PodEvent>;
|
|
742
|
+
/**
|
|
743
|
+
* anyrun.v1.PodCreatingStatus
|
|
744
|
+
*
|
|
745
|
+
* @generated from message anyrun.v1.PodCreatingStatus
|
|
746
|
+
*/
|
|
747
|
+
export type PodCreatingStatus = Message<"anyrun.v1.PodCreatingStatus"> & {
|
|
748
|
+
/**
|
|
749
|
+
* @generated from field: anyrun.v1.PodCreatingPhase phase = 1;
|
|
750
|
+
*/
|
|
751
|
+
phase: PodCreatingPhase;
|
|
752
|
+
};
|
|
753
|
+
/**
|
|
754
|
+
* Describes the message anyrun.v1.PodCreatingStatus.
|
|
755
|
+
* Use `create(PodCreatingStatusSchema)` to create a new message.
|
|
756
|
+
*/
|
|
757
|
+
export declare const PodCreatingStatusSchema: GenMessage<PodCreatingStatus>;
|
|
758
|
+
/**
|
|
759
|
+
* anyrun.v1.PodRunningStatus
|
|
760
|
+
*
|
|
761
|
+
* @generated from message anyrun.v1.PodRunningStatus
|
|
762
|
+
*/
|
|
763
|
+
export type PodRunningStatus = Message<"anyrun.v1.PodRunningStatus"> & {
|
|
764
|
+
/**
|
|
765
|
+
* @generated from field: optional uint64 missed_heartbeat_deadline = 1;
|
|
766
|
+
*/
|
|
767
|
+
missedHeartbeatDeadline?: bigint | undefined;
|
|
768
|
+
};
|
|
769
|
+
/**
|
|
770
|
+
* Describes the message anyrun.v1.PodRunningStatus.
|
|
771
|
+
* Use `create(PodRunningStatusSchema)` to create a new message.
|
|
772
|
+
*/
|
|
773
|
+
export declare const PodRunningStatusSchema: GenMessage<PodRunningStatus>;
|
|
774
|
+
/**
|
|
775
|
+
* anyrun.v1.InstallCommandFailure
|
|
776
|
+
*
|
|
777
|
+
* @generated from message anyrun.v1.InstallCommandFailure
|
|
778
|
+
*/
|
|
779
|
+
export type InstallCommandFailure = Message<"anyrun.v1.InstallCommandFailure"> & {
|
|
780
|
+
/**
|
|
781
|
+
* @generated from field: bool is_system = 1;
|
|
782
|
+
*/
|
|
783
|
+
isSystem: boolean;
|
|
784
|
+
};
|
|
785
|
+
/**
|
|
786
|
+
* Describes the message anyrun.v1.InstallCommandFailure.
|
|
787
|
+
* Use `create(InstallCommandFailureSchema)` to create a new message.
|
|
788
|
+
*/
|
|
789
|
+
export declare const InstallCommandFailureSchema: GenMessage<InstallCommandFailure>;
|
|
790
|
+
/**
|
|
791
|
+
* anyrun.v1.DockerBuildFailure
|
|
792
|
+
*
|
|
793
|
+
* @generated from message anyrun.v1.DockerBuildFailure
|
|
794
|
+
*/
|
|
795
|
+
export type DockerBuildFailure = Message<"anyrun.v1.DockerBuildFailure"> & {
|
|
796
|
+
/**
|
|
797
|
+
* @generated from field: int64 exit_code = 1;
|
|
798
|
+
*/
|
|
799
|
+
exitCode: bigint;
|
|
800
|
+
};
|
|
801
|
+
/**
|
|
802
|
+
* Describes the message anyrun.v1.DockerBuildFailure.
|
|
803
|
+
* Use `create(DockerBuildFailureSchema)` to create a new message.
|
|
804
|
+
*/
|
|
805
|
+
export declare const DockerBuildFailureSchema: GenMessage<DockerBuildFailure>;
|
|
806
|
+
/**
|
|
807
|
+
* anyrun.v1.GitCloneFailure
|
|
808
|
+
*
|
|
809
|
+
* @generated from message anyrun.v1.GitCloneFailure
|
|
810
|
+
*/
|
|
811
|
+
export type GitCloneFailure = Message<"anyrun.v1.GitCloneFailure"> & {
|
|
812
|
+
/**
|
|
813
|
+
* @generated from field: int64 exit_code = 1;
|
|
814
|
+
*/
|
|
815
|
+
exitCode: bigint;
|
|
816
|
+
/**
|
|
817
|
+
* @generated from field: anyrun.v1.GitCloneFailureCategory category = 2;
|
|
818
|
+
*/
|
|
819
|
+
category: GitCloneFailureCategory;
|
|
820
|
+
/**
|
|
821
|
+
* @generated from field: bool retryable = 3;
|
|
822
|
+
*/
|
|
823
|
+
retryable: boolean;
|
|
824
|
+
/**
|
|
825
|
+
* @generated from field: optional string remote_host = 4;
|
|
826
|
+
*/
|
|
827
|
+
remoteHost?: string | undefined;
|
|
828
|
+
/**
|
|
829
|
+
* @generated from field: optional int32 http_status = 5;
|
|
830
|
+
*/
|
|
831
|
+
httpStatus?: number | undefined;
|
|
832
|
+
};
|
|
833
|
+
/**
|
|
834
|
+
* Describes the message anyrun.v1.GitCloneFailure.
|
|
835
|
+
* Use `create(GitCloneFailureSchema)` to create a new message.
|
|
836
|
+
*/
|
|
837
|
+
export declare const GitCloneFailureSchema: GenMessage<GitCloneFailure>;
|
|
838
|
+
/**
|
|
839
|
+
* anyrun.v1.GitCheckoutFailure
|
|
840
|
+
*
|
|
841
|
+
* @generated from message anyrun.v1.GitCheckoutFailure
|
|
842
|
+
*/
|
|
843
|
+
export type GitCheckoutFailure = Message<"anyrun.v1.GitCheckoutFailure"> & {
|
|
844
|
+
/**
|
|
845
|
+
* @generated from field: int64 exit_code = 1;
|
|
846
|
+
*/
|
|
847
|
+
exitCode: bigint;
|
|
848
|
+
};
|
|
849
|
+
/**
|
|
850
|
+
* Describes the message anyrun.v1.GitCheckoutFailure.
|
|
851
|
+
* Use `create(GitCheckoutFailureSchema)` to create a new message.
|
|
852
|
+
*/
|
|
853
|
+
export declare const GitCheckoutFailureSchema: GenMessage<GitCheckoutFailure>;
|
|
854
|
+
/**
|
|
855
|
+
* anyrun.v1.ContainerWaitFailure
|
|
856
|
+
*
|
|
857
|
+
* @generated from message anyrun.v1.ContainerWaitFailure
|
|
858
|
+
*/
|
|
859
|
+
export type ContainerWaitFailure = Message<"anyrun.v1.ContainerWaitFailure"> & {
|
|
860
|
+
/**
|
|
861
|
+
* @generated from field: int64 exit_code = 1;
|
|
862
|
+
*/
|
|
863
|
+
exitCode: bigint;
|
|
864
|
+
/**
|
|
865
|
+
* @generated from field: string message = 2;
|
|
866
|
+
*/
|
|
867
|
+
message: string;
|
|
868
|
+
};
|
|
869
|
+
/**
|
|
870
|
+
* Describes the message anyrun.v1.ContainerWaitFailure.
|
|
871
|
+
* Use `create(ContainerWaitFailureSchema)` to create a new message.
|
|
872
|
+
*/
|
|
873
|
+
export declare const ContainerWaitFailureSchema: GenMessage<ContainerWaitFailure>;
|
|
874
|
+
/**
|
|
875
|
+
* anyrun.v1.PodFailureDetails
|
|
876
|
+
*
|
|
877
|
+
* @generated from message anyrun.v1.PodFailureDetails
|
|
878
|
+
*/
|
|
879
|
+
export type PodFailureDetails = Message<"anyrun.v1.PodFailureDetails"> & {
|
|
880
|
+
/**
|
|
881
|
+
* @generated from field: anyrun.v1.InstallCommandFailure install_command_failure = 1;
|
|
882
|
+
*/
|
|
883
|
+
installCommandFailure?: InstallCommandFailure | undefined;
|
|
884
|
+
/**
|
|
885
|
+
* @generated from field: anyrun.v1.DockerBuildFailure docker_build_failure = 2;
|
|
886
|
+
*/
|
|
887
|
+
dockerBuildFailure?: DockerBuildFailure | undefined;
|
|
888
|
+
/**
|
|
889
|
+
* @generated from field: anyrun.v1.GitCloneFailure git_clone_failure = 3;
|
|
890
|
+
*/
|
|
891
|
+
gitCloneFailure?: GitCloneFailure | undefined;
|
|
892
|
+
/**
|
|
893
|
+
* @generated from field: anyrun.v1.GitCheckoutFailure git_checkout_failure = 4;
|
|
894
|
+
*/
|
|
895
|
+
gitCheckoutFailure?: GitCheckoutFailure | undefined;
|
|
896
|
+
/**
|
|
897
|
+
* @generated from field: anyrun.v1.ContainerWaitFailure container_wait_failure = 5;
|
|
898
|
+
*/
|
|
899
|
+
containerWaitFailure?: ContainerWaitFailure | undefined;
|
|
900
|
+
};
|
|
901
|
+
/**
|
|
902
|
+
* Describes the message anyrun.v1.PodFailureDetails.
|
|
903
|
+
* Use `create(PodFailureDetailsSchema)` to create a new message.
|
|
904
|
+
*/
|
|
905
|
+
export declare const PodFailureDetailsSchema: GenMessage<PodFailureDetails>;
|
|
906
|
+
/**
|
|
907
|
+
* anyrun.v1.PodFailedStatus
|
|
908
|
+
*
|
|
909
|
+
* @generated from message anyrun.v1.PodFailedStatus
|
|
910
|
+
*/
|
|
911
|
+
export type PodFailedStatus = Message<"anyrun.v1.PodFailedStatus"> & {
|
|
912
|
+
/**
|
|
913
|
+
* @generated from field: string reason = 1;
|
|
914
|
+
*/
|
|
915
|
+
reason: string;
|
|
916
|
+
/**
|
|
917
|
+
* @generated from field: optional anyrun.v1.PodFailureDetails failure_details = 2;
|
|
918
|
+
*/
|
|
919
|
+
failureDetails?: PodFailureDetails | undefined;
|
|
920
|
+
};
|
|
921
|
+
/**
|
|
922
|
+
* Describes the message anyrun.v1.PodFailedStatus.
|
|
923
|
+
* Use `create(PodFailedStatusSchema)` to create a new message.
|
|
924
|
+
*/
|
|
925
|
+
export declare const PodFailedStatusSchema: GenMessage<PodFailedStatus>;
|
|
926
|
+
/**
|
|
927
|
+
* anyrun.v1.PodTerminatedStatus
|
|
928
|
+
*
|
|
929
|
+
* @generated from message anyrun.v1.PodTerminatedStatus
|
|
930
|
+
*/
|
|
931
|
+
export type PodTerminatedStatus = Message<"anyrun.v1.PodTerminatedStatus"> & {
|
|
932
|
+
/**
|
|
933
|
+
* @generated from field: string reason = 1;
|
|
934
|
+
*/
|
|
935
|
+
reason: string;
|
|
936
|
+
/**
|
|
937
|
+
* @generated from field: optional uint32 exit_code = 2;
|
|
938
|
+
*/
|
|
939
|
+
exitCode?: number | undefined;
|
|
940
|
+
};
|
|
941
|
+
/**
|
|
942
|
+
* Describes the message anyrun.v1.PodTerminatedStatus.
|
|
943
|
+
* Use `create(PodTerminatedStatusSchema)` to create a new message.
|
|
944
|
+
*/
|
|
945
|
+
export declare const PodTerminatedStatusSchema: GenMessage<PodTerminatedStatus>;
|
|
946
|
+
/**
|
|
947
|
+
* anyrun.v1.PodStatus
|
|
948
|
+
*
|
|
949
|
+
* @generated from message anyrun.v1.PodStatus
|
|
950
|
+
*/
|
|
951
|
+
export type PodStatus = Message<"anyrun.v1.PodStatus"> & {
|
|
952
|
+
/**
|
|
953
|
+
* @generated from field: anyrun.v1.PodCreatingStatus creating = 1;
|
|
954
|
+
*/
|
|
955
|
+
creating?: PodCreatingStatus | undefined;
|
|
956
|
+
/**
|
|
957
|
+
* @generated from field: anyrun.v1.PodRunningStatus running = 2;
|
|
958
|
+
*/
|
|
959
|
+
running?: PodRunningStatus | undefined;
|
|
960
|
+
/**
|
|
961
|
+
* @generated from field: anyrun.v1.PodFailedStatus failed = 3;
|
|
962
|
+
*/
|
|
963
|
+
failed?: PodFailedStatus | undefined;
|
|
964
|
+
/**
|
|
965
|
+
* @generated from field: anyrun.v1.PodTerminatedStatus terminated = 4;
|
|
966
|
+
*/
|
|
967
|
+
terminated?: PodTerminatedStatus | undefined;
|
|
968
|
+
};
|
|
969
|
+
/**
|
|
970
|
+
* Describes the message anyrun.v1.PodStatus.
|
|
971
|
+
* Use `create(PodStatusSchema)` to create a new message.
|
|
972
|
+
*/
|
|
973
|
+
export declare const PodStatusSchema: GenMessage<PodStatus>;
|
|
974
|
+
/**
|
|
975
|
+
* anyrun.v1.ClonePurpose
|
|
976
|
+
*
|
|
977
|
+
* @generated from enum anyrun.v1.ClonePurpose
|
|
978
|
+
*/
|
|
979
|
+
export declare enum ClonePurpose {
|
|
980
|
+
/**
|
|
981
|
+
* @generated from enum value: CLONE_PURPOSE_CLONE_PURPOSE_UNSPECIFIED = 0;
|
|
982
|
+
*/
|
|
983
|
+
CLONE_PURPOSE_UNSPECIFIED = 0,
|
|
984
|
+
/**
|
|
985
|
+
* @generated from enum value: CLONE_PURPOSE_CLONE_PURPOSE_DOCKER_BUILD = 1;
|
|
986
|
+
*/
|
|
987
|
+
CLONE_PURPOSE_DOCKER_BUILD = 1,
|
|
988
|
+
/**
|
|
989
|
+
* @generated from enum value: CLONE_PURPOSE_CLONE_PURPOSE_WORKSPACE_SETUP = 2;
|
|
990
|
+
*/
|
|
991
|
+
CLONE_PURPOSE_WORKSPACE_SETUP = 2
|
|
992
|
+
}
|
|
993
|
+
/**
|
|
994
|
+
* Describes the enum anyrun.v1.ClonePurpose.
|
|
995
|
+
*/
|
|
996
|
+
export declare const ClonePurposeSchema: GenEnum<ClonePurpose>;
|
|
997
|
+
/**
|
|
998
|
+
* anyrun.v1.PrivateWorkerWaitReason
|
|
999
|
+
*
|
|
1000
|
+
* @generated from enum anyrun.v1.PrivateWorkerWaitReason
|
|
1001
|
+
*/
|
|
1002
|
+
export declare enum PrivateWorkerWaitReason {
|
|
1003
|
+
/**
|
|
1004
|
+
* @generated from enum value: PRIVATE_WORKER_WAIT_REASON_PRIVATE_WORKER_WAIT_REASON_UNSPECIFIED = 0;
|
|
1005
|
+
*/
|
|
1006
|
+
PRIVATE_WORKER_WAIT_REASON_UNSPECIFIED = 0,
|
|
1007
|
+
/**
|
|
1008
|
+
* @generated from enum value: PRIVATE_WORKER_WAIT_REASON_PRIVATE_WORKER_WAIT_REASON_NO_CONNECTED_WORKERS = 1;
|
|
1009
|
+
*/
|
|
1010
|
+
PRIVATE_WORKER_WAIT_REASON_NO_CONNECTED_WORKERS = 1,
|
|
1011
|
+
/**
|
|
1012
|
+
* @generated from enum value: PRIVATE_WORKER_WAIT_REASON_PRIVATE_WORKER_WAIT_REASON_LABEL_MISMATCH = 2;
|
|
1013
|
+
*/
|
|
1014
|
+
PRIVATE_WORKER_WAIT_REASON_LABEL_MISMATCH = 2,
|
|
1015
|
+
/**
|
|
1016
|
+
* @generated from enum value: PRIVATE_WORKER_WAIT_REASON_PRIVATE_WORKER_WAIT_REASON_OWNER_FILTERED = 3;
|
|
1017
|
+
*/
|
|
1018
|
+
PRIVATE_WORKER_WAIT_REASON_OWNER_FILTERED = 3,
|
|
1019
|
+
/**
|
|
1020
|
+
* @generated from enum value: PRIVATE_WORKER_WAIT_REASON_PRIVATE_WORKER_WAIT_REASON_SHARED_ASSIGNMENT_FILTERED = 4;
|
|
1021
|
+
*/
|
|
1022
|
+
PRIVATE_WORKER_WAIT_REASON_SHARED_ASSIGNMENT_FILTERED = 4,
|
|
1023
|
+
/**
|
|
1024
|
+
* @generated from enum value: PRIVATE_WORKER_WAIT_REASON_PRIVATE_WORKER_WAIT_REASON_ALL_BUSY = 5;
|
|
1025
|
+
*/
|
|
1026
|
+
PRIVATE_WORKER_WAIT_REASON_ALL_BUSY = 5
|
|
1027
|
+
}
|
|
1028
|
+
/**
|
|
1029
|
+
* Describes the enum anyrun.v1.PrivateWorkerWaitReason.
|
|
1030
|
+
*/
|
|
1031
|
+
export declare const PrivateWorkerWaitReasonSchema: GenEnum<PrivateWorkerWaitReason>;
|
|
1032
|
+
/**
|
|
1033
|
+
* anyrun.v1.RestartReason
|
|
1034
|
+
*
|
|
1035
|
+
* @generated from enum anyrun.v1.RestartReason
|
|
1036
|
+
*/
|
|
1037
|
+
export declare enum RestartReason {
|
|
1038
|
+
/**
|
|
1039
|
+
* @generated from enum value: RESTART_REASON_RESTART_REASON_UNSPECIFIED = 0;
|
|
1040
|
+
*/
|
|
1041
|
+
RESTART_REASON_UNSPECIFIED = 0,
|
|
1042
|
+
/**
|
|
1043
|
+
* @generated from enum value: RESTART_REASON_RESTART_REASON_PROCESS_EXITED = 1;
|
|
1044
|
+
*/
|
|
1045
|
+
RESTART_REASON_PROCESS_EXITED = 1,
|
|
1046
|
+
/**
|
|
1047
|
+
* @generated from enum value: RESTART_REASON_RESTART_REASON_HEALTH_CHECK_FAILED = 2;
|
|
1048
|
+
*/
|
|
1049
|
+
RESTART_REASON_HEALTH_CHECK_FAILED = 2
|
|
1050
|
+
}
|
|
1051
|
+
/**
|
|
1052
|
+
* Describes the enum anyrun.v1.RestartReason.
|
|
1053
|
+
*/
|
|
1054
|
+
export declare const RestartReasonSchema: GenEnum<RestartReason>;
|
|
1055
|
+
/**
|
|
1056
|
+
* anyrun.v1.PodCreatingPhase
|
|
1057
|
+
*
|
|
1058
|
+
* @generated from enum anyrun.v1.PodCreatingPhase
|
|
1059
|
+
*/
|
|
1060
|
+
export declare enum PodCreatingPhase {
|
|
1061
|
+
/**
|
|
1062
|
+
* @generated from enum value: POD_CREATING_PHASE_POD_CREATING_PHASE_UNSPECIFIED = 0;
|
|
1063
|
+
*/
|
|
1064
|
+
POD_CREATING_PHASE_UNSPECIFIED = 0,
|
|
1065
|
+
/**
|
|
1066
|
+
* @generated from enum value: POD_CREATING_PHASE_POD_CREATING_PHASE_CLONE = 1;
|
|
1067
|
+
*/
|
|
1068
|
+
POD_CREATING_PHASE_CLONE = 1,
|
|
1069
|
+
/**
|
|
1070
|
+
* @generated from enum value: POD_CREATING_PHASE_POD_CREATING_PHASE_BUILD = 2;
|
|
1071
|
+
*/
|
|
1072
|
+
POD_CREATING_PHASE_BUILD = 2,
|
|
1073
|
+
/**
|
|
1074
|
+
* @generated from enum value: POD_CREATING_PHASE_POD_CREATING_PHASE_POST_CREATE = 3;
|
|
1075
|
+
*/
|
|
1076
|
+
POD_CREATING_PHASE_POST_CREATE = 3,
|
|
1077
|
+
/**
|
|
1078
|
+
* @generated from enum value: POD_CREATING_PHASE_POD_CREATING_PHASE_UPDATE_CONTENT = 4;
|
|
1079
|
+
*/
|
|
1080
|
+
POD_CREATING_PHASE_UPDATE_CONTENT = 4,
|
|
1081
|
+
/**
|
|
1082
|
+
* @generated from enum value: POD_CREATING_PHASE_POD_CREATING_PHASE_POST_START = 5;
|
|
1083
|
+
*/
|
|
1084
|
+
POD_CREATING_PHASE_POST_START = 5
|
|
1085
|
+
}
|
|
1086
|
+
/**
|
|
1087
|
+
* Describes the enum anyrun.v1.PodCreatingPhase.
|
|
1088
|
+
*/
|
|
1089
|
+
export declare const PodCreatingPhaseSchema: GenEnum<PodCreatingPhase>;
|
|
1090
|
+
/**
|
|
1091
|
+
* anyrun.v1.GitCloneFailureCategory
|
|
1092
|
+
*
|
|
1093
|
+
* @generated from enum anyrun.v1.GitCloneFailureCategory
|
|
1094
|
+
*/
|
|
1095
|
+
export declare enum GitCloneFailureCategory {
|
|
1096
|
+
/**
|
|
1097
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_UNSPECIFIED = 0;
|
|
1098
|
+
*/
|
|
1099
|
+
GIT_CLONE_FAILURE_CATEGORY_UNSPECIFIED = 0,
|
|
1100
|
+
/**
|
|
1101
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_IP_ALLOW_LIST = 1;
|
|
1102
|
+
*/
|
|
1103
|
+
GIT_CLONE_FAILURE_CATEGORY_IP_ALLOW_LIST = 1,
|
|
1104
|
+
/**
|
|
1105
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_INVALID_CREDENTIALS = 2;
|
|
1106
|
+
*/
|
|
1107
|
+
GIT_CLONE_FAILURE_CATEGORY_INVALID_CREDENTIALS = 2,
|
|
1108
|
+
/**
|
|
1109
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_SSO_REDIRECT = 3;
|
|
1110
|
+
*/
|
|
1111
|
+
GIT_CLONE_FAILURE_CATEGORY_SSO_REDIRECT = 3,
|
|
1112
|
+
/**
|
|
1113
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_PROXY_CONNECT = 4;
|
|
1114
|
+
*/
|
|
1115
|
+
GIT_CLONE_FAILURE_CATEGORY_PROXY_CONNECT = 4,
|
|
1116
|
+
/**
|
|
1117
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_CONNECTION_RESET = 5;
|
|
1118
|
+
*/
|
|
1119
|
+
GIT_CLONE_FAILURE_CATEGORY_CONNECTION_RESET = 5,
|
|
1120
|
+
/**
|
|
1121
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_TRANSPORT_INTERRUPTED = 6;
|
|
1122
|
+
*/
|
|
1123
|
+
GIT_CLONE_FAILURE_CATEGORY_TRANSPORT_INTERRUPTED = 6,
|
|
1124
|
+
/**
|
|
1125
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_REMOTE_FORBIDDEN = 7;
|
|
1126
|
+
*/
|
|
1127
|
+
GIT_CLONE_FAILURE_CATEGORY_REMOTE_FORBIDDEN = 7,
|
|
1128
|
+
/**
|
|
1129
|
+
* @generated from enum value: GIT_CLONE_FAILURE_CATEGORY_GIT_CLONE_FAILURE_CATEGORY_UPSTREAM_BAD_GATEWAY = 8;
|
|
1130
|
+
*/
|
|
1131
|
+
GIT_CLONE_FAILURE_CATEGORY_UPSTREAM_BAD_GATEWAY = 8
|
|
1132
|
+
}
|
|
1133
|
+
/**
|
|
1134
|
+
* Describes the enum anyrun.v1.GitCloneFailureCategory.
|
|
1135
|
+
*/
|
|
1136
|
+
export declare const GitCloneFailureCategorySchema: GenEnum<GitCloneFailureCategory>;
|
|
1137
|
+
/**
|
|
1138
|
+
* anyrun.v1.SnapshotState
|
|
1139
|
+
*
|
|
1140
|
+
* @generated from enum anyrun.v1.SnapshotState
|
|
1141
|
+
*/
|
|
1142
|
+
export declare enum SnapshotState {
|
|
1143
|
+
/**
|
|
1144
|
+
* @generated from enum value: SNAPSHOT_STATE_SNAPSHOT_STATE_UNSPECIFIED = 0;
|
|
1145
|
+
*/
|
|
1146
|
+
SNAPSHOT_STATE_UNSPECIFIED = 0,
|
|
1147
|
+
/**
|
|
1148
|
+
* @generated from enum value: SNAPSHOT_STATE_SNAPSHOT_STATE_CREATING = 1;
|
|
1149
|
+
*/
|
|
1150
|
+
SNAPSHOT_STATE_CREATING = 1,
|
|
1151
|
+
/**
|
|
1152
|
+
* @generated from enum value: SNAPSHOT_STATE_SNAPSHOT_STATE_READY = 2;
|
|
1153
|
+
*/
|
|
1154
|
+
SNAPSHOT_STATE_READY = 2,
|
|
1155
|
+
/**
|
|
1156
|
+
* @generated from enum value: SNAPSHOT_STATE_SNAPSHOT_STATE_FAILED = 3;
|
|
1157
|
+
*/
|
|
1158
|
+
SNAPSHOT_STATE_FAILED = 3
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
* Describes the enum anyrun.v1.SnapshotState.
|
|
1162
|
+
*/
|
|
1163
|
+
export declare const SnapshotStateSchema: GenEnum<SnapshotState>;
|