-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaliases.go
More file actions
694 lines (481 loc) · 24.8 KB
/
aliases.go
File metadata and controls
694 lines (481 loc) · 24.8 KB
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package gitpod
import (
"github.com/gitpod-io/gitpod-sdk-go/internal/apierror"
"github.com/gitpod-io/gitpod-sdk-go/shared"
)
type Error = apierror.Error
// An AutomationTrigger represents a trigger for an automation action. The `manual`
// field shows a start button in the UI for manually triggering the automation. The
// `post_machine_start` field indicates that the automation should be triggered
// after the machine has started, before the devcontainer is ready. This is used
// for machine-level services like security agents that need to start early. The
// `post_environment_start` field indicates that the automation should be triggered
// after the environment has started (devcontainer ready). The
// `post_devcontainer_start` field indicates that the automation should be
// triggered after the dev container has started. The `prebuild` field starts the
// automation during a prebuild of an environment. This phase does not have user
// secrets available. The `before_snapshot` field triggers the automation after all
// prebuild tasks complete but before the snapshot is taken. This is used for tasks
// that need to run last during prebuilds, such as IDE warmup. Note: The
// before_snapshot trigger can only be used with tasks, not services.
//
// This is an alias to an internal type.
type AutomationTrigger = shared.AutomationTrigger
// An AutomationTrigger represents a trigger for an automation action. The `manual`
// field shows a start button in the UI for manually triggering the automation. The
// `post_machine_start` field indicates that the automation should be triggered
// after the machine has started, before the devcontainer is ready. This is used
// for machine-level services like security agents that need to start early. The
// `post_environment_start` field indicates that the automation should be triggered
// after the environment has started (devcontainer ready). The
// `post_devcontainer_start` field indicates that the automation should be
// triggered after the dev container has started. The `prebuild` field starts the
// automation during a prebuild of an environment. This phase does not have user
// secrets available. The `before_snapshot` field triggers the automation after all
// prebuild tasks complete but before the snapshot is taken. This is used for tasks
// that need to run last during prebuilds, such as IDE warmup. Note: The
// before_snapshot trigger can only be used with tasks, not services.
//
// This is an alias to an internal type.
type AutomationTriggerParam = shared.AutomationTriggerParam
// This is an alias to an internal type.
type CountResponseRelation = shared.CountResponseRelation
// This is an alias to an internal value.
const CountResponseRelationUnspecified = shared.CountResponseRelationUnspecified
// This is an alias to an internal value.
const CountResponseRelationEq = shared.CountResponseRelationEq
// This is an alias to an internal value.
const CountResponseRelationGte = shared.CountResponseRelationGte
// This is an alias to an internal type.
type EnvironmentClass = shared.EnvironmentClass
// This is an alias to an internal type.
type EnvironmentClassParam = shared.EnvironmentClassParam
// EnvironmentVariableItem represents an environment variable that can be set
// either from a literal value or from a secret reference.
//
// This is an alias to an internal type.
type EnvironmentVariableItem = shared.EnvironmentVariableItem
// EnvironmentVariableItem represents an environment variable that can be set
// either from a literal value or from a secret reference.
//
// This is an alias to an internal type.
type EnvironmentVariableItemParam = shared.EnvironmentVariableItemParam
// EnvironmentVariableSource specifies a source for an environment variable value.
//
// This is an alias to an internal type.
type EnvironmentVariableSource = shared.EnvironmentVariableSource
// EnvironmentVariableSource specifies a source for an environment variable value.
//
// This is an alias to an internal type.
type EnvironmentVariableSourceParam = shared.EnvironmentVariableSourceParam
// The status code, which should be an enum value of
// [google.rpc.Code][google.rpc.Code].
//
// This is an alias to an internal type.
type ErrorCode = shared.ErrorCode
// This is an alias to an internal value.
const ErrorCodeCanceled = shared.ErrorCodeCanceled
// This is an alias to an internal value.
const ErrorCodeUnknown = shared.ErrorCodeUnknown
// This is an alias to an internal value.
const ErrorCodeInvalidArgument = shared.ErrorCodeInvalidArgument
// This is an alias to an internal value.
const ErrorCodeDeadlineExceeded = shared.ErrorCodeDeadlineExceeded
// This is an alias to an internal value.
const ErrorCodeNotFound = shared.ErrorCodeNotFound
// This is an alias to an internal value.
const ErrorCodeAlreadyExists = shared.ErrorCodeAlreadyExists
// This is an alias to an internal value.
const ErrorCodePermissionDenied = shared.ErrorCodePermissionDenied
// This is an alias to an internal value.
const ErrorCodeResourceExhausted = shared.ErrorCodeResourceExhausted
// This is an alias to an internal value.
const ErrorCodeFailedPrecondition = shared.ErrorCodeFailedPrecondition
// This is an alias to an internal value.
const ErrorCodeAborted = shared.ErrorCodeAborted
// This is an alias to an internal value.
const ErrorCodeOutOfRange = shared.ErrorCodeOutOfRange
// This is an alias to an internal value.
const ErrorCodeUnimplemented = shared.ErrorCodeUnimplemented
// This is an alias to an internal value.
const ErrorCodeInternal = shared.ErrorCodeInternal
// This is an alias to an internal value.
const ErrorCodeUnavailable = shared.ErrorCodeUnavailable
// This is an alias to an internal value.
const ErrorCodeDataLoss = shared.ErrorCodeDataLoss
// This is an alias to an internal value.
const ErrorCodeUnauthenticated = shared.ErrorCodeUnauthenticated
// This is an alias to an internal type.
type FieldValue = shared.FieldValue
// This is an alias to an internal type.
type FieldValueParam = shared.FieldValueParam
// Gateway represents a system gateway that provides access to services
//
// This is an alias to an internal type.
type Gateway = shared.Gateway
// This is an alias to an internal type.
type OrganizationRole = shared.OrganizationRole
// This is an alias to an internal value.
const OrganizationRoleUnspecified = shared.OrganizationRoleUnspecified
// This is an alias to an internal value.
const OrganizationRoleAdmin = shared.OrganizationRoleAdmin
// This is an alias to an internal value.
const OrganizationRoleMember = shared.OrganizationRoleMember
// This is an alias to an internal type.
type OrganizationTier = shared.OrganizationTier
// This is an alias to an internal value.
const OrganizationTierUnspecified = shared.OrganizationTierUnspecified
// This is an alias to an internal value.
const OrganizationTierFree = shared.OrganizationTierFree
// This is an alias to an internal value.
const OrganizationTierEnterprise = shared.OrganizationTierEnterprise
// This is an alias to an internal value.
const OrganizationTierCore = shared.OrganizationTierCore
// This is an alias to an internal value.
const OrganizationTierFreeOna = shared.OrganizationTierFreeOna
// This is an alias to an internal type.
type Principal = shared.Principal
// This is an alias to an internal value.
const PrincipalUnspecified = shared.PrincipalUnspecified
// This is an alias to an internal value.
const PrincipalAccount = shared.PrincipalAccount
// This is an alias to an internal value.
const PrincipalUser = shared.PrincipalUser
// This is an alias to an internal value.
const PrincipalRunner = shared.PrincipalRunner
// This is an alias to an internal value.
const PrincipalEnvironment = shared.PrincipalEnvironment
// This is an alias to an internal value.
const PrincipalServiceAccount = shared.PrincipalServiceAccount
// This is an alias to an internal value.
const PrincipalRunnerManager = shared.PrincipalRunnerManager
// This is an alias to an internal type.
type ProjectEnvironmentClass = shared.ProjectEnvironmentClass
// This is an alias to an internal type.
type ProjectEnvironmentClassParam = shared.ProjectEnvironmentClassParam
// ResourceRole represents roles that can be assigned to groups on resources These
// map directly to the roles defined in backend/db/rule/rbac/role/role.go
//
// This is an alias to an internal type.
type ResourceRole = shared.ResourceRole
// This is an alias to an internal value.
const ResourceRoleUnspecified = shared.ResourceRoleUnspecified
// This is an alias to an internal value.
const ResourceRoleOrgAdmin = shared.ResourceRoleOrgAdmin
// This is an alias to an internal value.
const ResourceRoleOrgMember = shared.ResourceRoleOrgMember
// This is an alias to an internal value.
const ResourceRoleOrgRunnersAdmin = shared.ResourceRoleOrgRunnersAdmin
// This is an alias to an internal value.
const ResourceRoleOrgProjectsAdmin = shared.ResourceRoleOrgProjectsAdmin
// This is an alias to an internal value.
const ResourceRoleOrgAutomationsAdmin = shared.ResourceRoleOrgAutomationsAdmin
// This is an alias to an internal value.
const ResourceRoleOrgGroupsAdmin = shared.ResourceRoleOrgGroupsAdmin
// This is an alias to an internal value.
const ResourceRoleOrgEnvironmentsReader = shared.ResourceRoleOrgEnvironmentsReader
// This is an alias to an internal value.
const ResourceRoleOrgAuditLogReader = shared.ResourceRoleOrgAuditLogReader
// This is an alias to an internal value.
const ResourceRoleGroupAdmin = shared.ResourceRoleGroupAdmin
// This is an alias to an internal value.
const ResourceRoleGroupViewer = shared.ResourceRoleGroupViewer
// This is an alias to an internal value.
const ResourceRoleUserIdentity = shared.ResourceRoleUserIdentity
// This is an alias to an internal value.
const ResourceRoleUserViewer = shared.ResourceRoleUserViewer
// This is an alias to an internal value.
const ResourceRoleUserAdmin = shared.ResourceRoleUserAdmin
// This is an alias to an internal value.
const ResourceRoleEnvironmentIdentity = shared.ResourceRoleEnvironmentIdentity
// This is an alias to an internal value.
const ResourceRoleEnvironmentAdmin = shared.ResourceRoleEnvironmentAdmin
// This is an alias to an internal value.
const ResourceRoleEnvironmentUser = shared.ResourceRoleEnvironmentUser
// This is an alias to an internal value.
const ResourceRoleEnvironmentViewer = shared.ResourceRoleEnvironmentViewer
// This is an alias to an internal value.
const ResourceRoleEnvironmentRunner = shared.ResourceRoleEnvironmentRunner
// This is an alias to an internal value.
const ResourceRoleRunnerIdentity = shared.ResourceRoleRunnerIdentity
// This is an alias to an internal value.
const ResourceRoleRunnerAdmin = shared.ResourceRoleRunnerAdmin
// This is an alias to an internal value.
const ResourceRoleRunnerLocalAdmin = shared.ResourceRoleRunnerLocalAdmin
// This is an alias to an internal value.
const ResourceRoleRunnerManagedAdmin = shared.ResourceRoleRunnerManagedAdmin
// This is an alias to an internal value.
const ResourceRoleRunnerUser = shared.ResourceRoleRunnerUser
// This is an alias to an internal value.
const ResourceRoleRunnerConfigurationReader = shared.ResourceRoleRunnerConfigurationReader
// This is an alias to an internal value.
const ResourceRoleHostAuthenticationTokenAdmin = shared.ResourceRoleHostAuthenticationTokenAdmin
// This is an alias to an internal value.
const ResourceRoleHostAuthenticationTokenUpdater = shared.ResourceRoleHostAuthenticationTokenUpdater
// This is an alias to an internal value.
const ResourceRoleProjectAdmin = shared.ResourceRoleProjectAdmin
// This is an alias to an internal value.
const ResourceRoleProjectUser = shared.ResourceRoleProjectUser
// This is an alias to an internal value.
const ResourceRoleProjectEditor = shared.ResourceRoleProjectEditor
// This is an alias to an internal value.
const ResourceRoleEnvironmentServiceAdmin = shared.ResourceRoleEnvironmentServiceAdmin
// This is an alias to an internal value.
const ResourceRoleEnvironmentServiceViewer = shared.ResourceRoleEnvironmentServiceViewer
// This is an alias to an internal value.
const ResourceRoleEnvironmentServiceUser = shared.ResourceRoleEnvironmentServiceUser
// This is an alias to an internal value.
const ResourceRoleEnvironmentServiceEnv = shared.ResourceRoleEnvironmentServiceEnv
// This is an alias to an internal value.
const ResourceRoleEnvironmentTaskAdmin = shared.ResourceRoleEnvironmentTaskAdmin
// This is an alias to an internal value.
const ResourceRoleEnvironmentTaskViewer = shared.ResourceRoleEnvironmentTaskViewer
// This is an alias to an internal value.
const ResourceRoleEnvironmentTaskUser = shared.ResourceRoleEnvironmentTaskUser
// This is an alias to an internal value.
const ResourceRoleEnvironmentTaskEnv = shared.ResourceRoleEnvironmentTaskEnv
// This is an alias to an internal value.
const ResourceRoleServiceAccountIdentity = shared.ResourceRoleServiceAccountIdentity
// This is an alias to an internal value.
const ResourceRoleServiceAccountAdmin = shared.ResourceRoleServiceAccountAdmin
// This is an alias to an internal value.
const ResourceRoleAgentExecutionUser = shared.ResourceRoleAgentExecutionUser
// This is an alias to an internal value.
const ResourceRoleAgentExecutionAdmin = shared.ResourceRoleAgentExecutionAdmin
// This is an alias to an internal value.
const ResourceRoleAgentExecutionRunner = shared.ResourceRoleAgentExecutionRunner
// This is an alias to an internal value.
const ResourceRoleAgentExecutionOutputsReporter = shared.ResourceRoleAgentExecutionOutputsReporter
// This is an alias to an internal value.
const ResourceRoleAgentExecutionViewer = shared.ResourceRoleAgentExecutionViewer
// This is an alias to an internal value.
const ResourceRoleAgentAdmin = shared.ResourceRoleAgentAdmin
// This is an alias to an internal value.
const ResourceRoleAgentViewer = shared.ResourceRoleAgentViewer
// This is an alias to an internal value.
const ResourceRoleAgentExecutor = shared.ResourceRoleAgentExecutor
// This is an alias to an internal value.
const ResourceRoleWorkflowAdmin = shared.ResourceRoleWorkflowAdmin
// This is an alias to an internal value.
const ResourceRoleWorkflowUser = shared.ResourceRoleWorkflowUser
// This is an alias to an internal value.
const ResourceRoleWorkflowViewer = shared.ResourceRoleWorkflowViewer
// This is an alias to an internal value.
const ResourceRoleWorkflowExecutor = shared.ResourceRoleWorkflowExecutor
// This is an alias to an internal value.
const ResourceRoleSnapshotAdmin = shared.ResourceRoleSnapshotAdmin
// This is an alias to an internal value.
const ResourceRoleSnapshotRunner = shared.ResourceRoleSnapshotRunner
// This is an alias to an internal value.
const ResourceRoleWebhookAdmin = shared.ResourceRoleWebhookAdmin
// This is an alias to an internal value.
const ResourceRoleWebhookViewer = shared.ResourceRoleWebhookViewer
// This is an alias to an internal value.
const ResourceRoleWarmpoolRunner = shared.ResourceRoleWarmpoolRunner
// This is an alias to an internal value.
const ResourceRoleWarmpoolAdmin = shared.ResourceRoleWarmpoolAdmin
// This is an alias to an internal value.
const ResourceRoleWarmpoolViewer = shared.ResourceRoleWarmpoolViewer
// This is an alias to an internal value.
const ResourceRoleSessionAdmin = shared.ResourceRoleSessionAdmin
// This is an alias to an internal value.
const ResourceRoleSessionUser = shared.ResourceRoleSessionUser
// This is an alias to an internal value.
const ResourceRoleTeamAdmin = shared.ResourceRoleTeamAdmin
// This is an alias to an internal value.
const ResourceRoleTeamViewer = shared.ResourceRoleTeamViewer
// This is an alias to an internal type.
type ResourceType = shared.ResourceType
// This is an alias to an internal value.
const ResourceTypeUnspecified = shared.ResourceTypeUnspecified
// This is an alias to an internal value.
const ResourceTypeEnvironment = shared.ResourceTypeEnvironment
// This is an alias to an internal value.
const ResourceTypeRunner = shared.ResourceTypeRunner
// This is an alias to an internal value.
const ResourceTypeProject = shared.ResourceTypeProject
// This is an alias to an internal value.
const ResourceTypeTask = shared.ResourceTypeTask
// This is an alias to an internal value.
const ResourceTypeTaskExecution = shared.ResourceTypeTaskExecution
// This is an alias to an internal value.
const ResourceTypeService = shared.ResourceTypeService
// This is an alias to an internal value.
const ResourceTypeOrganization = shared.ResourceTypeOrganization
// This is an alias to an internal value.
const ResourceTypeUser = shared.ResourceTypeUser
// This is an alias to an internal value.
const ResourceTypeEnvironmentClass = shared.ResourceTypeEnvironmentClass
// This is an alias to an internal value.
const ResourceTypeRunnerScmIntegration = shared.ResourceTypeRunnerScmIntegration
// This is an alias to an internal value.
const ResourceTypeHostAuthenticationToken = shared.ResourceTypeHostAuthenticationToken
// This is an alias to an internal value.
const ResourceTypeGroup = shared.ResourceTypeGroup
// This is an alias to an internal value.
const ResourceTypePersonalAccessToken = shared.ResourceTypePersonalAccessToken
// This is an alias to an internal value.
const ResourceTypeUserPreference = shared.ResourceTypeUserPreference
// This is an alias to an internal value.
const ResourceTypeServiceAccount = shared.ResourceTypeServiceAccount
// This is an alias to an internal value.
const ResourceTypeSecret = shared.ResourceTypeSecret
// This is an alias to an internal value.
const ResourceTypeSSOConfig = shared.ResourceTypeSSOConfig
// This is an alias to an internal value.
const ResourceTypeDomainVerification = shared.ResourceTypeDomainVerification
// This is an alias to an internal value.
const ResourceTypeAgentExecution = shared.ResourceTypeAgentExecution
// This is an alias to an internal value.
const ResourceTypeRunnerLlmIntegration = shared.ResourceTypeRunnerLlmIntegration
// This is an alias to an internal value.
const ResourceTypeAgent = shared.ResourceTypeAgent
// This is an alias to an internal value.
const ResourceTypeEnvironmentSession = shared.ResourceTypeEnvironmentSession
// This is an alias to an internal value.
const ResourceTypeUserSecret = shared.ResourceTypeUserSecret
// This is an alias to an internal value.
const ResourceTypeOrganizationPolicy = shared.ResourceTypeOrganizationPolicy
// This is an alias to an internal value.
const ResourceTypeOrganizationSecret = shared.ResourceTypeOrganizationSecret
// This is an alias to an internal value.
const ResourceTypeProjectEnvironmentClass = shared.ResourceTypeProjectEnvironmentClass
// This is an alias to an internal value.
const ResourceTypeBilling = shared.ResourceTypeBilling
// This is an alias to an internal value.
const ResourceTypePrompt = shared.ResourceTypePrompt
// This is an alias to an internal value.
const ResourceTypeCoupon = shared.ResourceTypeCoupon
// This is an alias to an internal value.
const ResourceTypeCouponRedemption = shared.ResourceTypeCouponRedemption
// This is an alias to an internal value.
const ResourceTypeAccount = shared.ResourceTypeAccount
// This is an alias to an internal value.
const ResourceTypeIntegration = shared.ResourceTypeIntegration
// This is an alias to an internal value.
const ResourceTypeWorkflow = shared.ResourceTypeWorkflow
// This is an alias to an internal value.
const ResourceTypeWorkflowExecution = shared.ResourceTypeWorkflowExecution
// This is an alias to an internal value.
const ResourceTypeWorkflowExecutionAction = shared.ResourceTypeWorkflowExecutionAction
// This is an alias to an internal value.
const ResourceTypeSnapshot = shared.ResourceTypeSnapshot
// This is an alias to an internal value.
const ResourceTypePrebuild = shared.ResourceTypePrebuild
// This is an alias to an internal value.
const ResourceTypeOrganizationLlmIntegration = shared.ResourceTypeOrganizationLlmIntegration
// This is an alias to an internal value.
const ResourceTypeCustomDomain = shared.ResourceTypeCustomDomain
// This is an alias to an internal value.
const ResourceTypeRoleAssignmentChanged = shared.ResourceTypeRoleAssignmentChanged
// This is an alias to an internal value.
const ResourceTypeGroupMembershipChanged = shared.ResourceTypeGroupMembershipChanged
// This is an alias to an internal value.
const ResourceTypeWebhook = shared.ResourceTypeWebhook
// This is an alias to an internal value.
const ResourceTypeScimConfiguration = shared.ResourceTypeScimConfiguration
// This is an alias to an internal value.
const ResourceTypeServiceAccountSecret = shared.ResourceTypeServiceAccountSecret
// This is an alias to an internal value.
const ResourceTypeAnnouncementBanner = shared.ResourceTypeAnnouncementBanner
// This is an alias to an internal value.
const ResourceTypeServiceAccountToken = shared.ResourceTypeServiceAccountToken
// This is an alias to an internal value.
const ResourceTypeRoleAssignment = shared.ResourceTypeRoleAssignment
// This is an alias to an internal value.
const ResourceTypeWarmPool = shared.ResourceTypeWarmPool
// This is an alias to an internal value.
const ResourceTypeNotification = shared.ResourceTypeNotification
// This is an alias to an internal type.
type RunsOn = shared.RunsOn
// This is an alias to an internal type.
type RunsOnDocker = shared.RunsOnDocker
// This is an alias to an internal type.
type RunsOnParam = shared.RunsOnParam
// This is an alias to an internal type.
type RunsOnDockerParam = shared.RunsOnDockerParam
// SecretRef references a secret by its ID.
//
// This is an alias to an internal type.
type SecretRef = shared.SecretRef
// SecretRef references a secret by its ID.
//
// This is an alias to an internal type.
type SecretRefParam = shared.SecretRefParam
// This is an alias to an internal type.
type SortParam = shared.SortParam
// This is an alias to an internal type.
type SortOrder = shared.SortOrder
// This is an alias to an internal value.
const SortOrderUnspecified = shared.SortOrderUnspecified
// This is an alias to an internal value.
const SortOrderAsc = shared.SortOrderAsc
// This is an alias to an internal value.
const SortOrderDesc = shared.SortOrderDesc
// Current state of the pull request
//
// This is an alias to an internal type.
type State = shared.State
// This is an alias to an internal value.
const StateUnspecified = shared.StateUnspecified
// This is an alias to an internal value.
const StateOpen = shared.StateOpen
// This is an alias to an internal value.
const StateClosed = shared.StateClosed
// This is an alias to an internal value.
const StateMerged = shared.StateMerged
// This is an alias to an internal type.
type Subject = shared.Subject
// This is an alias to an internal type.
type SubjectParam = shared.SubjectParam
// This is an alias to an internal type.
type Task = shared.Task
// This is an alias to an internal type.
type TaskExecution = shared.TaskExecution
// This is an alias to an internal type.
type TaskExecutionMetadata = shared.TaskExecutionMetadata
// This is an alias to an internal type.
type TaskExecutionPhase = shared.TaskExecutionPhase
// This is an alias to an internal value.
const TaskExecutionPhaseUnspecified = shared.TaskExecutionPhaseUnspecified
// This is an alias to an internal value.
const TaskExecutionPhasePending = shared.TaskExecutionPhasePending
// This is an alias to an internal value.
const TaskExecutionPhaseRunning = shared.TaskExecutionPhaseRunning
// This is an alias to an internal value.
const TaskExecutionPhaseSucceeded = shared.TaskExecutionPhaseSucceeded
// This is an alias to an internal value.
const TaskExecutionPhaseFailed = shared.TaskExecutionPhaseFailed
// This is an alias to an internal value.
const TaskExecutionPhaseStopped = shared.TaskExecutionPhaseStopped
// This is an alias to an internal type.
type TaskExecutionSpec = shared.TaskExecutionSpec
// This is an alias to an internal type.
type TaskExecutionSpecPlan = shared.TaskExecutionSpecPlan
// This is an alias to an internal type.
type TaskExecutionSpecPlanStep = shared.TaskExecutionSpecPlanStep
// This is an alias to an internal type.
type TaskExecutionSpecPlanStepsTask = shared.TaskExecutionSpecPlanStepsTask
// This is an alias to an internal type.
type TaskExecutionStatus = shared.TaskExecutionStatus
// This is an alias to an internal type.
type TaskExecutionStatusStep = shared.TaskExecutionStatusStep
// This is an alias to an internal type.
type TaskMetadata = shared.TaskMetadata
// This is an alias to an internal type.
type TaskMetadataParam = shared.TaskMetadataParam
// This is an alias to an internal type.
type TaskSpec = shared.TaskSpec
// This is an alias to an internal type.
type TaskSpecParam = shared.TaskSpecParam
// This is an alias to an internal type.
type UserStatus = shared.UserStatus
// This is an alias to an internal value.
const UserStatusUnspecified = shared.UserStatusUnspecified
// This is an alias to an internal value.
const UserStatusActive = shared.UserStatusActive
// This is an alias to an internal value.
const UserStatusSuspended = shared.UserStatusSuspended
// This is an alias to an internal value.
const UserStatusLeft = shared.UserStatusLeft