-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshared.ts
349 lines (282 loc) · 7.86 KB
/
shared.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Shared from './shared';
import { EnvironmentClassesPage, TaskExecutionsPage, TasksPage } from '../pagination';
/**
* An AutomationTrigger represents a trigger for an automation action. The
* `post_environment_start` field indicates that the automation should be triggered
* after the environment has started. The `post_devcontainer_start` field indicates
* that the automation should be triggered after the dev container has started.
*/
export interface AutomationTrigger {
manual?: boolean;
postDevcontainerStart?: boolean;
postEnvironmentStart?: boolean;
}
export interface EnvironmentClass {
/**
* id is the unique identifier of the environment class
*/
id: string;
/**
* runner_id is the unique identifier of the runner the environment class belongs
* to
*/
runnerId: string;
/**
* configuration describes the configuration of the environment class
*/
configuration?: Array<FieldValue>;
/**
* description is a human readable description of the environment class
*/
description?: string;
/**
* display_name is the human readable name of the environment class
*/
displayName?: string;
/**
* enabled indicates whether the environment class can be used to create new
* environments.
*/
enabled?: boolean;
}
/**
* The status code, which should be an enum value of
* [google.rpc.Code][google.rpc.Code].
*/
export type ErrorCode =
| 'canceled'
| 'unknown'
| 'invalid_argument'
| 'deadline_exceeded'
| 'not_found'
| 'already_exists'
| 'permission_denied'
| 'resource_exhausted'
| 'failed_precondition'
| 'aborted'
| 'out_of_range'
| 'unimplemented'
| 'internal'
| 'unavailable'
| 'data_loss'
| 'unauthenticated';
export interface FieldValue {
key?: string;
value?: string;
}
export type OrganizationRole =
| 'ORGANIZATION_ROLE_UNSPECIFIED'
| 'ORGANIZATION_ROLE_ADMIN'
| 'ORGANIZATION_ROLE_MEMBER';
export type Principal =
| 'PRINCIPAL_UNSPECIFIED'
| 'PRINCIPAL_ACCOUNT'
| 'PRINCIPAL_USER'
| 'PRINCIPAL_RUNNER'
| 'PRINCIPAL_ENVIRONMENT'
| 'PRINCIPAL_SERVICE_ACCOUNT';
export interface RunsOn {
docker: RunsOn.Docker;
}
export namespace RunsOn {
export interface Docker {
environment?: Array<string>;
image?: string;
}
}
export interface Subject {
/**
* id is the UUID of the subject
*/
id?: string;
/**
* Principal is the principal of the subject
*/
principal?: Principal;
}
export interface Task {
id: string;
/**
* dependencies specifies the IDs of the automations this task depends on.
*/
dependsOn?: Array<string>;
environmentId?: string;
metadata?: TaskMetadata;
spec?: TaskSpec;
}
export interface TaskExecution {
id: string;
metadata?: TaskExecutionMetadata;
spec?: TaskExecutionSpec;
status?: TaskExecutionStatus;
}
export interface TaskExecutionMetadata {
/**
* completed_at is the time the task execution was done.
*/
completedAt?: string;
/**
* created_at is the time the task was created.
*/
createdAt?: string;
/**
* creator describes the principal who created/started the task run.
*/
creator?: Subject;
/**
* environment_id is the ID of the environment in which the task run is executed.
*/
environmentId?: string;
/**
* started_at is the time the task execution actually started to run.
*/
startedAt?: string;
/**
* started_by describes the trigger that started the task execution.
*/
startedBy?: string;
/**
* task_id is the ID of the main task being executed.
*/
taskId?: string;
}
export type TaskExecutionPhase =
| 'TASK_EXECUTION_PHASE_UNSPECIFIED'
| 'TASK_EXECUTION_PHASE_PENDING'
| 'TASK_EXECUTION_PHASE_RUNNING'
| 'TASK_EXECUTION_PHASE_SUCCEEDED'
| 'TASK_EXECUTION_PHASE_FAILED'
| 'TASK_EXECUTION_PHASE_STOPPED';
export interface TaskExecutionSpec {
/**
* desired_phase is the phase the task execution should be in. Used to stop a
* running task execution early.
*/
desiredPhase?: TaskExecutionPhase;
/**
* plan is a list of groups of steps. The steps in a group are executed
* concurrently, while the groups are executed sequentially. The order of the
* groups is the order in which they are executed.
*/
plan?: Array<TaskExecutionSpec.Plan>;
}
export namespace TaskExecutionSpec {
export interface Plan {
steps?: Array<Plan.Step>;
}
export namespace Plan {
export interface Step {
/**
* ID is the ID of the execution step
*/
id?: string;
dependsOn?: Array<string>;
label?: string;
serviceId?: string;
task?: Step.Task;
}
export namespace Step {
export interface Task {
id?: string;
spec?: Shared.TaskSpec;
}
}
}
}
export interface TaskExecutionStatus {
/**
* failure_message summarises why the task execution failed to operate. If this is
* non-empty the task execution has failed to operate and will likely transition to
* a failed state.
*/
failureMessage?: string;
/**
* log_url is the URL to the logs of the task's steps. If this is empty, the task
* either has no logs or has not yet started.
*/
logUrl?: string;
/**
* the phase of a task execution represents the aggregated phase of all steps.
*/
phase?: TaskExecutionPhase;
/**
* version of the status update. Task executions themselves are unversioned, but
* their status has different versions. The value of this field has no semantic
* meaning (e.g. don't interpret it as as a timestamp), but it can be used to
* impose a partial order. If a.status_version < b.status_version then a was the
* status before b.
*/
statusVersion?: string;
/**
* steps provides the status for each individual step of the task execution. If a
* step is missing it has not yet started.
*/
steps?: Array<TaskExecutionStatus.Step>;
}
export namespace TaskExecutionStatus {
export interface Step {
/**
* ID is the ID of the execution step
*/
id?: string;
/**
* failure_message summarises why the step failed to operate. If this is non-empty
* the step has failed to operate and will likely transition to a failed state.
*/
failureMessage?: string;
/**
* phase is the current phase of the execution step
*/
phase?: Shared.TaskExecutionPhase;
}
}
export interface TaskMetadata {
/**
* created_at is the time the task was created.
*/
createdAt?: string;
/**
* creator describes the principal who created the task.
*/
creator?: Subject;
/**
* description is a user-facing description for the task. It can be used to provide
* context and documentation for the task.
*/
description?: string;
/**
* name is a user-facing name for the task. Unlike the reference, this field is not
* unique, and not referenced by the system. This is a short descriptive name for
* the task.
*/
name?: string;
/**
* reference is a user-facing identifier for the task which must be unique on the
* environment. It is used to express dependencies between tasks, and to identify
* the task in user interactions (e.g. the CLI).
*/
reference?: string;
/**
* triggered_by is a list of trigger that start the task.
*/
triggeredBy?: Array<AutomationTrigger>;
}
export interface TaskSpec {
/**
* command contains the command the task should execute
*/
command?: string;
/**
* runs_on specifies the environment the task should run on.
*/
runsOn?: RunsOn;
}
export type UserStatus =
| 'USER_STATUS_UNSPECIFIED'
| 'USER_STATUS_ACTIVE'
| 'USER_STATUS_SUSPENDED'
| 'USER_STATUS_LEFT';
export type TasksTasksPage = TasksPage<Task>;
export type TaskExecutionsTaskExecutionsPage = TaskExecutionsPage<TaskExecution>;
export type EnvironmentClassesEnvironmentClassesPage = EnvironmentClassesPage<EnvironmentClass>;